/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss ***!
  \****************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, Rubik, serif;
}

body {
  color: #1E1E1E;
  background: #FFF;
}

a {
  text-decoration: none;
  color: initial;
}

img {
  max-width: 100%;
}

.tfbd__main {
  padding: 80px 0 100px 0;
  min-height: calc(100vh - 170px);
}

.container {
  padding: 0 128px;
  margin: 0 auto;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.tfbd-green {
  color: #05694A;
}
.tfbd-green b {
  color: #05694A !important;
}

@media screen and (max-width: 960px) {
  .container {
    padding: 0 64px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 32px;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  .tfbd__main {
    padding: 80px 0 40px 0;
  }
}
.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.h100v {
  height: 100vh;
}

.h100p {
  height: 100%;
}

.w100p {
  width: 100%;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs24 {
  font-size: 24px;
}

.fs28 {
  font-size: 28px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

/*!
 * Toastify js 1.12.0
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 12px 20px;
  color: #ffffff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-right,
  .toastify-left {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}
.tfbd__social_login {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tfbd__social_login_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  color: #7B807B;
  margin-top: 40px;
}
.tfbd__social_login_header .tfbd-line {
  width: 100%;
  height: 1px;
  background: #D6D6D6;
}
.tfbd__social_login_text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: center;
  color: #7B807B;
}
.tfbd__social_login_items ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tfbd__dashheader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 80px;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid #f2f2f2;
}
.tfbd__dashheader_container {
  width: 100%;
  max-width: 1266px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tfbd__dashheader_dropdown {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: auto;
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 90;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.tfbd__dashheader_dropdown * {
  user-select: none;
}
.tfbd__dashheader_dropdown.tfbd-active {
  opacity: 1;
  pointer-events: all;
}
.tfbd__dashheader_dropdown_list {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
  background: transparent;
  display: flex;
  justify-content: end;
}
.tfbd__dashheader_dropdown_items {
  height: auto;
  width: 353px;
  border-radius: 8px;
  padding: 20px 32px;
  background: #fff;
  box-shadow: 0px 15px 200px rgba(5, 105, 74, 0.1);
}
.tfbd__dashheader_dropdown_items .tfbd__dashheader_dropdown_item:nth-child(1) {
  padding-top: 0;
}
.tfbd__dashheader_dropdown_items .tfbd__dashheader_dropdown_item:nth-last-child(1) {
  border-bottom: 0;
  padding-bottom: 0;
}
.tfbd__dashheader_dropdown_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #F2F2F2;
}
.tfbd__dashheader_dropdown_item_left {
  display: flex;
  gap: 16px;
}
.tfbd__dashheader_dropdown_item_left svg,
.tfbd__dashheader_dropdown_item_left img {
  width: 24px;
  height: 24px;
}
.tfbd__dashheader_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 126px;
  height: 47px;
}
.tfbd__dashheader_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tfbd__dashheader_menu {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
}
.tfbd__dashheader_menu_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 27px;
}
.tfbd__dashheader_menu_list .menu-item a {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #1e1e1e;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tfbd__dashheader_menu_list .menu-item a:hover {
  color: #000;
}
.tfbd__dashheader_menu_list .menu-item .sub-menu {
  display: none;
}
.tfbd__dashheader_menu_buttons {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 24px;
  cursor: pointer;
}
.tfbd__dashheader_menu_profile {
  width: 40px;
  height: 40px;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.tfbd__dashheader_menu_profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tfbd__dashheader_menu_username {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: #4D504D;
  cursor: pointer;
  user-select: none;
}
.tfbd__dashheader_menu_dropdown {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.tfbd__dashheader_menu_dropdown svg {
  width: 100%;
  height: 100%;
}
.tfbd__dashheader_menu_notification {
  width: 24px;
  height: 24px;
  display: none;
}
.tfbd__dashheader_menu_notification_lg {
  height: 40px;
  min-width: 156px;
  width: auto;
  border-radius: 8px;
  padding: 12px 24px;
  background: #05694A;
  border: 1px solid #05694A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  user-select: none;
}
.tfbd__dashheader_menu_notification_lg:hover {
  background: #fff;
  color: #05694A;
}
.tfbd__dashheader_menu_notification svg {
  width: 100%;
  height: 100%;
}
.tfbd__dashheader_menu_control {
  width: 36px;
  height: 36px;
  display: none;
}
.tfbd__dashheader_menu_control svg {
  width: 100%;
  height: 100%;
}

.tfbd__logout, .tfbd__report {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 150px 30px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.tfbd__logout.tfbd-active, .tfbd-active.tfbd__report {
  opacity: 1;
  pointer-events: all;
}
.tfbd__logout .tfbd__logout_popup, .tfbd__report .tfbd__logout_popup, .tfbd__report .tfbd__report_popup {
  width: 100%;
  max-width: 500px;
  padding: 32px;
  background: #FFFFFF;
  box-shadow: 4px 4px 14px 6px rgba(25, 126, 231, 0.01);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin: 0 auto;
}
.tfbd__logout .tfbd__logout_popup .tfbd__logout_popup_close, .tfbd__report .tfbd__logout_popup .tfbd__logout_popup_close, .tfbd__report .tfbd__report_popup .tfbd__logout_popup_close, .tfbd__report .tfbd__report_popup .tfbd__report_popup_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.tfbd__logout .tfbd__logout_title, .tfbd__report .tfbd__logout_title, .tfbd__report .tfbd__report_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #1E1E1E;
}
.tfbd__logout .tfbd__logout_summery, .tfbd__report .tfbd__logout_summery, .tfbd__report .tfbd__report_summery {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  column-rule: #4D504D;
}
.tfbd__logout .tfbd__logout_buttons, .tfbd__report .tfbd__logout_buttons, .tfbd__report .tfbd__report_buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
.tfbd__logout .tfbd__logout_buttons button, .tfbd__report .tfbd__logout_buttons button, .tfbd__report .tfbd__report_buttons button,
.tfbd__logout .tfbd__logout_buttons a,
.tfbd__report .tfbd__logout_buttons a,
.tfbd__report .tfbd__report_buttons a {
  border: none;
  outline: none;
  background: transparent;
  color: #7B807B;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.tfbd__logout .tfbd__logout_buttons button.tfbd-button-active, .tfbd__report .tfbd__logout_buttons button.tfbd-button-active, .tfbd__report .tfbd__report_buttons button.tfbd-button-active,
.tfbd__logout .tfbd__logout_buttons a.tfbd-button-active,
.tfbd__report .tfbd__logout_buttons a.tfbd-button-active,
.tfbd__report .tfbd__report_buttons a.tfbd-button-active {
  height: 48px;
  width: 156px;
  left: 88px;
  top: 0px;
  border-radius: 8px;
  padding: 16px 46px 16px 46px;
  background: #05694A;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
}

.tfbd__report {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tfbd__report.tfbd-active {
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease;
}
.tfbd__report_input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tfbd__report_input label {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__report_input input,
.tfbd__report_input textarea {
  width: 100%;
  padding: 12px;
  color: #000;
  height: auto;
  min-height: 48px;
  border: 1px solid #C1D9D2;
  border-radius: 6px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  transition: all 0.3s ease;
}
.tfbd__report_input input::placeholder,
.tfbd__report_input textarea::placeholder {
  color: #7B807B;
}
.tfbd__report_input input:focus,
.tfbd__report_input textarea:focus {
  border: 1px solid #05694A;
}
.tfbd__report_input textarea {
  height: 140px;
}
.tfbd__report_input.tfbd-attachment input {
  display: none;
}
.tfbd__report_input_attachment {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 72px;
  border: 1px dashed #C1D9D2;
  cursor: pointer;
}
.tfbd__report_input_attachment span {
  color: #05694A;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 1490px) {
  .tfbd__report_popup {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .tfbd__report_popup::-webkit-scrollbar {
    width: 8px;
    border-top-right-radius: 8px;
  }
  .tfbd__report_popup::-webkit-scrollbar-track {
    background: #ccc;
  }
  .tfbd__report_popup::-webkit-scrollbar-thumb {
    background: #05694A;
  }
}
@media screen and (max-width: 1200px) {
  .tfbd__dashheader_container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .tfbd__dashheader_container {
    padding: 0 15px;
  }
  .tfbd__dashheader_menu_list {
    position: fixed;
    top: 80px;
    left: 0;
    background: #fff;
    min-height: 100vh;
    justify-content: start;
    padding: 15px;
    gap: 15px;
    z-index: 10;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: start;
    gap: 15px;
    overflow-y: scroll;
    opacity: 0;
    z-index: -10;
    left: -100%;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .tfbd__dashheader_menu_list.tfbd-show {
    opacity: 1;
    z-index: 10;
    left: 0;
    pointer-events: all;
  }
  .tfbd__dashheader_menu_buttons {
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
  }
  .tfbd__dashheader_menu_control {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tfbd__dashheader_menu_profile {
    width: 36px;
    height: 36px;
  }
  .tfbd__dashheader_menu_notification {
    display: initial;
  }
  .tfbd__dashheader_menu_notification_lg {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .tfbd__dashheader_dropdown {
    min-height: calc(100vh - 80px);
    background: #fff;
    align-items: start;
  }
  .tfbd__dashheader_dropdown_list {
    height: 100%;
  }
  .tfbd__dashheader_dropdown_items {
    height: 100%;
    min-height: calc(100vh - 80px);
  }
  .tfbd__logout, .tfbd__report {
    padding: 100px 30px;
  }
  .tfbd__logout_popup, .tfbd__report .tfbd__report_popup {
    max-width: 100%;
    padding: 50px 25px;
  }
  .tfbd__logout_title, .tfbd__report .tfbd__report_title {
    font-size: 20px;
    line-height: 28px;
  }
  .tfbd__logout_summery, .tfbd__report .tfbd__report_summery {
    font-size: 16px;
    line-height: 24px;
  }
  .tfbd__logout_buttons, .tfbd__report .tfbd__report_buttons {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .tfbd__logout_buttons button, .tfbd__report .tfbd__report_buttons button,
  .tfbd__logout_buttons a,
  .tfbd__report .tfbd__report_buttons a {
    width: 100%;
    height: 48px;
  }
  .tfbd__report {
    padding: 0;
  }
  .tfbd__report_popup {
    min-height: 100vh;
    overflow-y: scroll;
    max-width: 100%;
    padding: 50px 25px;
  }
  .tfbd__report_popup::-webkit-scrollbar {
    display: none;
  }
  .tfbd__report_title {
    font-size: 20px;
    line-height: 28px;
  }
  .tfbd__report_summery {
    font-size: 16px;
    line-height: 24px;
  }
  .tfbd__report_buttons {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .tfbd__report_buttons button,
  .tfbd__report_buttons a {
    width: 100%;
    height: 48px;
  }
}
.tfbd__form {
  margin: 40px auto 0 auto;
}
.tfbd__form h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 39px;
  color: #1E1E1E;
  margin-bottom: 0;
}
.tfbd__form h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 25px;
  color: #05694A;
}
.tfbd__form h3 {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0em;
  color: #05694A;
}
.tfbd__form .tfbd-form-head {
  margin-top: 20px;
}
.tfbd__form .tfbd-body-text {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #4D504D;
}
.tfbd__form .tfbd-body-text b {
  font-weight: 500;
  color: #1E1E1E;
}
.tfbd__form .tfbd-color-warning {
  color: #CF1019;
}
.tfbd__form .fw500 {
  font-weight: 500;
}
.tfbd__form .fz14 {
  font-size: 14px;
  line-height: 24px;
}
.tfbd__form .tfbd-form-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 14px;
}
.tfbd__form .tfbd-form-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: #05694A;
  text-transform: uppercase;
  border: 1px solid #05694A;
  border-radius: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.tfbd__form .tfbd-form-button:hover {
  background: #05694A;
  color: #FFFFFF;
}
.tfbd__form .tfbd-buttons-group {
  margin-top: 30px;
}
.tfbd__form .tfbd-buttons-group .tfbd-btn {
  margin-right: 20px;
}
.tfbd__form .tfbd-buttons-group .tfbd-btn:last-child {
  margin-right: 0;
}
.tfbd__form .tfbd-btn {
  height: 48px;
  border-radius: 8px;
  min-width: 150px;
  padding: 16px 32px;
  border: 1px solid #05694A;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: #05694A;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  background: transparent;
}
.tfbd__form .tfbd-btn:hover {
  background: #05694A;
  color: #FFFFFF;
}
.tfbd__form_message {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  background-color: #05694A;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}
.tfbd__form .tfbd-hide-group {
  display: none !important;
}
.tfbd__form .tfbd-hide {
  display: none !important;
}
.tfbd__form .tfbd-form-desc,
.tfbd__form .gform_wrapper.gravity-theme .gfield_description {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #7B807B;
  margin-top: 8px;
  padding-top: 0;
}
.tfbd__form .gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}
.tfbd__form .tfbd-form-desc-bold {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  color: #4D504D;
  margin-top: 10px;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_fields {
  grid-gap: 0 30px;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_save_link.button,
.tfbd__form .gform_wrapper.gravity-theme input[type=submit].gform_button {
  height: 48px;
  min-width: 196px;
  width: auto;
  border-radius: 8px;
  padding: 16px 26px;
  background: #05694A;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_save_link.button svg,
.tfbd__form .gform_wrapper.gravity-theme input[type=submit].gform_button svg {
  display: none;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_save_link.button:hover,
.tfbd__form .gform_wrapper.gravity-theme input[type=submit].gform_button:hover {
  background: #094a35;
}
.tfbd__form .tfbd-group-heading {
  margin-top: 40px;
  margin-bottom: 0;
}
.tfbd__form .tfbd-group-subheading {
  margin-top: 20px;
  margin-bottom: 0;
}
.tfbd__form .gform_wrapper.gravity-theme .gfield_required {
  display: none !important;
}
.tfbd__form .gform_wrapper.gravity-theme .gfield_label {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  color: #1E1E1E;
  margin-top: 20px;
  margin-bottom: 10px;
}
.tfbd__form .gform_wrapper.gravity-theme input,
.tfbd__form .gform_wrapper.gravity-theme textarea,
.tfbd__form .gform_wrapper.gravity-theme select {
  height: 48px;
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #C1D9D2;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #7B807B;
  color: #000;
}
.tfbd__form .gform_wrapper.gravity-theme input::placeholder,
.tfbd__form .gform_wrapper.gravity-theme textarea::placeholder,
.tfbd__form .gform_wrapper.gravity-theme select::placeholder {
  color: #7B807B;
}
.tfbd__form .gform_wrapper.gravity-theme textarea {
  height: auto;
  min-height: 80px;
}
.tfbd__form .gf_placeholder {
  color: #7B807B;
}
.tfbd__form .gform_wrapper.gravity-theme select {
  cursor: pointer;
}
.tfbd__form .gform_wrapper.gravity-theme fieldset {
  margin-top: 20px;
}
.tfbd__form .gform_wrapper.gravity-theme .gfield_radio {
  display: flex;
  gap: 24px;
}
.tfbd__form .gform_wrapper.gravity-theme .gfield_radio input {
  height: 20px;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_footer {
  flex-wrap: wrap;
  gap: 20px;
}
.tfbd__form .gform_wrapper.gravity-theme .gform_footer button {
  margin: 0;
}
.tfbd__form .form_saved_message {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.tfbd__form .form_saved_message > span:nth-child(1) {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.tfbd__form .form_saved_message > span:nth-child(1) form {
  display: none;
}

@media screen and (max-width: 1290px) {
  .tfbd__form .gform_wrapper.gravity-theme .gfield_label {
    font-size: 12px;
  }
  .tfbd__form .tfbd-body-text,
  .tfbd__form .gform_wrapper.gravity-theme input,
  .tfbd__form .gform_wrapper.gravity-theme select {
    font-size: 14px;
  }
}
@media screen and (max-width: 1110px) {
  .tfbd__form .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
}
@media screen and (max-width: 768px) {
  .tfbd__form .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }
  .tfbd__form .tfbd-form-buttons {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .tfbd__form .tfbd-form-buttons .tfbd-form-button {
    margin: 0;
  }
}
.tfbd__registration {
  padding: 0 318px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tfbd__registration_container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  gap: 65px;
}
.tfbd__registration_steps {
  width: 100%;
  max-width: 205px;
  opacity: 0;
}
.tfbd__registration_steps_title {
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  color: #1E1E1E;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.tfbd__registration_steps_list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 120px;
}
.tfbd__registration_steps_list_item {
  font-size: 15px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 14px;
  color: #7B807B;
  cursor: pointer;
  position: relative;
}
.tfbd__registration_steps_list_item img {
  width: 18px;
  height: 18px;
}
.tfbd__registration_steps_list_item .tfbd-icon-active {
  display: none;
}
.tfbd__registration_steps_list_item.tfbd-active {
  color: #05694A;
}
.tfbd__registration_steps_list_item.tfbd-active .tfbd-icon {
  display: none;
}
.tfbd__registration_steps_list_item.tfbd-active .tfbd-icon-active {
  display: block;
}
.tfbd__registration_steps_list_item::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 20px;
  background: #7B807B;
  opacity: 0.5;
  top: 21px;
  left: 8.3px;
  z-index: 2;
}
.tfbd__registration_steps_list_item:nth-last-child(1)::before {
  display: none;
}
.tfbd__registration_form {
  width: 100%;
  max-width: 730px;
}
.tfbd__registration_head img {
  width: 100%;
  max-width: 730px;
  height: 272px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}
.tfbd__registration_head h2 {
  margin-bottom: 10px;
}
.tfbd__registration_head ul {
  padding: 0;
  margin: 0;
  padding-left: 24px;
}
.tfbd__registration_head ul li {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #4D504D;
}
.tfbd__registration_head .tfbd-form-desc {
  margin-top: 10px;
}

@media screen and (max-width: 1350px) {
  .tfbd__registration {
    padding: 0 250px 0 50px;
  }
}
@media screen and (max-width: 1290px) {
  .tfbd__registration {
    padding: 0 150px 0 50px;
  }
}
@media screen and (max-width: 1110px) {
  .tfbd__registration {
    padding: 0 100px 0 50px;
  }
  .tfbd__registration_container {
    gap: 35px;
  }
  .tfbd__registration .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
  .tfbd__registration_steps_list_item {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  .tfbd__registration {
    padding: 0 50px 0 50px;
  }
  .tfbd__registration_container {
    flex-direction: column;
    gap: 0;
  }
  .tfbd__registration_steps {
    display: none;
  }
  .tfbd__registration_form {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tfbd__registration {
    padding: 0 30px 0 30px;
    overflow: hidden;
    max-width: 100%;
  }
  .tfbd__registration_head img {
    height: 200px;
  }
  .tfbd__registration .gform_wrapper.gravity-theme .gfield.gfield--width-quarter {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }
}
@media screen and (max-width: 380px) {
  .tfbd__registration {
    padding: 0 15px;
  }
}
.tfbd__application {
  width: 100%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tfbd__application_container {
  width: 100%;
  max-width: 730px;
}
.tfbd__application .tfbd-step-title {
  display: none;
}
.tfbd__application .tfbd-input-error {
  border: 1px solid crimson !important;
}
.tfbd__application .tfbd-group-heading {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.tfbd__application .tfbd-group-heading * {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.tfbd__application .gform_wrapper.gravity-theme input[type=submit].gform_button {
  margin-left: 0;
}
.tfbd__application .tfbd-step-indicator {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tfbd__application .tfbd-step-indicator-item {
  width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.tfbd__application .tfbd-step-indicator-item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #E6F0ED;
}
.tfbd__application .tfbd-step-indicator-item-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: #7B807B;
}
.tfbd__application .tfbd-step-indicator-item.tfbd-active .tfbd-step-indicator-item-icon {
  border: 1.5px solid #05694A;
}
.tfbd__application .tfbd-step-indicator-item.tfbd-active .tfbd-step-indicator-item-title {
  color: #05694A;
}
.tfbd__application .tfbd-step-indicator svg {
  margin-top: 18px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .tfbd__application {
    padding: 0 15px;
  }
  .tfbd__application .tfbd-step-indicator {
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30x;
  }
  .tfbd__application .tfbd-step-indicator-item {
    width: 50px;
    gap: 8px;
    margin: 5px auto;
  }
  .tfbd__application .tfbd-step-indicator-item-icon {
    width: 30px;
    height: 30px;
  }
  .tfbd__application .tfbd-step-indicator-item-title {
    font-size: 10px;
    line-height: 12px;
  }
  .tfbd__application .tfbd-step-indicator svg {
    display: none;
  }
}
.tfbd__resume {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  margin-top: 40px;
  background: #F5FCFA;
  border: 1px solid rgba(5, 105, 74, 0.15);
  border-radius: 4px;
  padding: 24px;
  position: relative;
  transition: all 0.7s ease-in-out;
  overflow: hidden;
}
.tfbd__resume.tfbd-hide {
  opacity: 0;
  height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tfbd__resume_header {
  display: flex;
  gap: 20px;
}
.tfbd__resume_icon {
  width: 32px;
  height: 32px;
}
.tfbd__resume_icon img,
.tfbd__resume_icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tfbd__resume_texts {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__resume_container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 102px;
}
.tfbd__resume_buttons {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.tfbd__resume_button {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7B807B;
}
.tfbd__resume_button.tfbd-continue {
  height: 40px;
  border-radius: 8px;
  padding: 12px 24px 12px 24px;
  background: #05694A;
  text-transform: uppercase;
  color: #fff;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: center;
}
.tfbd__resume_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .tfbd__resume {
    max-width: calc(100% - 30px);
  }
}
.tfbd__status {
  padding: 40px 15px;
}
.tfbd__status * {
  user-select: none;
}
.tfbd__status_container {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tfbd__status_notice {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  background: #F5FCFA;
  border: 2px solid rgba(5, 105, 74, 0.15);
  border-radius: 8px;
  padding: 20px 40px;
  min-height: 82px;
}
.tfbd__status_notice svg {
  width: 40px;
  height: 40px;
}
.tfbd__status_notice_text {
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  color: #05694A;
}
.tfbd__status_overview {
  background: #FAFCFC;
  border-radius: 8px;
  padding: 30px 68px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tfbd__status_overview_heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 31px;
  text-align: left;
  color: #05694A;
}
.tfbd__status_overview_table {
  display: flex;
  flex-direction: column;
}
.tfbd__status_overview_row {
  display: flex;
  align-items: center;
  justify-content: start;
}
.tfbd__status_overview_row_key {
  width: 100%;
  max-width: 285px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.tfbd__status_overview_row_key_icon {
  width: 24px;
  height: 24px;
}
.tfbd__status_overview_row_key_icon img,
.tfbd__status_overview_row_key_icon svg {
  width: 100%;
  height: 100%;
}
.tfbd__status_overview_row_key_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__status_overview_row_value {
  width: 100%;
  max-width: calc(100% - 285px);
}
.tfbd__status_overview_row_border {
  margin: 20px 0;
  margin-left: 44px;
  border-bottom: 1px solid #E8EBEA;
}

@media screen and (max-width: 600px) {
  .tfbd__status_notice {
    padding: 20px 20px;
    gap: 10px;
  }
  .tfbd__status_notice svg {
    width: 30px;
    height: 30px;
  }
  .tfbd__status_notice_text {
    font-size: 16px;
    line-height: 24px;
  }
  .tfbd__status_overview {
    padding: 30px 20px;
  }
  .tfbd__status_overview_heading {
    font-size: 22px;
    line-height: 32px;
  }
  .tfbd__status_overview_row {
    flex-direction: column;
    gap: 20px;
  }
  .tfbd__status_overview_row_key {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
  }
  .tfbd__status_overview_row_key_icon {
    width: 20px;
    height: 20px;
  }
  .tfbd__status_overview_row_key_title {
    font-size: 14px;
    line-height: 16px;
  }
  .tfbd__status_overview_row_value {
    width: 100%;
    max-width: 100%;
  }
  .tfbd__status_overview_row_border {
    margin: 20px 0;
    margin-left: 0;
    border-bottom: 1px solid #E8EBEA;
  }
}
.tfbd__user_profile {
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.tfbd__user_profile_container {
  width: 100%;
  max-width: 1110px;
}
.tfbd__user_profile_banner {
  width: 100%;
  height: 150px;
  margin-bottom: 30px;
}
.tfbd__user_profile_banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tfbd__user_profile_body {
  display: flex;
  gap: 30px;
}
.tfbd__user_profile_left {
  width: 100%;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.tfbd__user_profile_youtube {
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.tfbd__user_profile_youtube iframe {
  width: 100%;
  height: 100%;
}
.tfbd__user_profile_right {
  width: 100%;
  max-width: 825px;
  display: flex;
  gap: 30px;
}
.tfbd__user_profile_links {
  width: 100%;
  max-width: 255px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.tfbd__user_profile_links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
  background: #FAFAFA;
  border-radius: 4px;
  transition: all 0.7s ease-in-out;
}
.tfbd__user_profile_links a:hover {
  background: #F5FCFA;
}
.tfbd__user_profile_links a span {
  font-family: Poppins;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0em;
  text-align: left;
  color: #4D504D;
}
.tfbd__user_profile_links a svg {
  width: 20px;
  height: 20px;
}
.tfbd__user_profile_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 540px;
}
.tfbd__user_profile_info_header {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #F5FCFA;
  border-radius: 4px;
  width: 100%;
}
.tfbd__user_profile_info_header img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}
.tfbd__user_profile_info_header_texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tfbd__user_profile_info_header_title {
  font-family: Poppins;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: 0em;
  text-align: left;
  color: #05694A;
}
.tfbd__user_profile_info_item_texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tfbd__user_profile_info_text {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
}
.tfbd__user_profile_info_text b {
  font-weight: 500;
}
.tfbd__user_profile_info_border {
  border-top: 1px solid #E8EBEA;
}
.tfbd__user_profile_info_notice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #F7F7F7;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
}
.tfbd__user_profile_info_notice_heading {
  font-family: Poppins;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__user_profile_info_notice_body {
  display: flex;
  gap: 16px;
}
.tfbd__user_profile_info_notice_body img {
  width: 170px;
  height: auto;
}
.tfbd__user_profile_info_notice_body p {
  font-family: Poppins;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-align: left;
  color: #4D504D;
}
.tfbd__user_profile_feed {
  width: 100%;
  max-width: 255px;
}

@media screen and (max-width: 1024px) {
  .tfbd__user_profile_body {
    flex-direction: column-reverse;
  }
  .tfbd__user_profile_left {
    max-width: 100%;
  }
  .tfbd__user_profile_links {
    max-width: 100%;
  }
  .tfbd__user_profile_right {
    max-width: 100%;
  }
  .tfbd__user_profile_info {
    max-width: calc(100% - 285px);
  }
}
@media screen and (max-width: 400px) {
  .tfbd__user_profile_right {
    flex-direction: column;
  }
  .tfbd__user_profile_info {
    max-width: 100%;
  }
  .tfbd__user_profile_feed {
    max-width: 100%;
  }
}
.tfbd__profile {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tfbd__profile_topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tfbd__profile_image {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  position: relative;
}
.tfbd__profile_image img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #F5F5F5;
}
.tfbd__profile_image input {
  display: none;
}
.tfbd__profile_image label {
  position: absolute;
  bottom: 11px;
  right: 11px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.tfbd__profile_image label svg {
  width: 100%;
  height: 100%;
}
.tfbd__profile h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__profile_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 376px;
  margin: 0 auto;
}
.tfbd__profile_input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.tfbd__profile_input label {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  color: #1E1E1E;
}
.tfbd__profile_input input {
  border: 1px solid #C1D9D2;
  border-radius: 6px;
  outline: none;
  padding: 12px;
  color: #1E1E1E;
}
.tfbd__profile_buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.tfbd__profile_buttons button {
  height: 48px;
  width: 156px;
  border-radius: 8px;
  padding: 16px 60px;
  border: none;
  outline: none;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background: #05694A;
  cursor: pointer;
}

.tfbd__footer {
  width: 100%;
  background-color: #05694A;
  color: #FFFFFF;
}
.tfbd__footer_container {
  width: 100%;
  max-width: 1266px;
  padding: 30px 0;
  margin: 0 auto;
}
.tfbd__footer_primary {
  width: 100%;
  padding-bottom: 31px;
  border-bottom: 1px solid #167F5E;
}
.tfbd__footer_menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 24px;
}
.tfbd__footer_menu_item {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  color: #FFFFFF;
}
.tfbd__footer_menu_item a {
  color: #FFFFFF;
}
.tfbd__footer_secondary {
  width: 100%;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tfbd__footer_copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #FFFFFF;
  opacity: 0.6;
}
.tfbd__footer_social {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}
.tfbd__footer_social_item {
  width: 24px;
  height: 24px;
}
.tfbd__footer_social_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 1360px) {
  .tfbd__footer_container {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 600px) {
  .tfbd__footer_menu {
    align-items: center;
    justify-content: center;
  }
  .tfbd__footer_secondary {
    flex-direction: column;
    gap: 30px;
  }
}
