* {
  box-sizing: border-box;
}

/* icons */
.icon {
  font-family: gwr;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-user:before {
  content: "\e01d";
}

.icon-grid:before {
  content: "\e00c";
}

.icon-pencil:before {
  content: "\e91a";
}

.icon-shield:before {
  content: "\e90e";
}

.icon-exit:before {
  content: "\e601";
}

.dashboard-wrap h1 {
  margin-bottom: 1em;
}

.login-page-wrap {
  background-image: url(/images/bg-login.jpg);
}

html {
  scroll-behavior: smooth;
}

.application-process {
  background: #16062e url(/images/css/blue-bg-2.png) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  padding: 0;
  position: relative;
  z-index: 0;
  min-height: 100vh;
}

.application-process .application-container {
  max-width: 940px;
  margin: 0 auto;
  padding: 1em;
  background-color: rgba(255, 255, 255, .6);
  border: 3px solid rgba(255, 255, 255, .5);
  border-radius: 10px;
  position: relative;
  z-index: 10
}

.application-process .application-box {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #b9bec8;
  padding: 1em;
  transition: all .5s;
  position: relative
}

.application-process .application-process-steps-title {
  margin: 0 0 1em 0;
}

.application-process h2 {
  font-size: 26px;
  font-family: 'rubik_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.application-box h2 {
  margin-top: 0;
}

.dashboard-wrap-inner {
  padding: 1em;
}

.title-style-d {
  margin-top: 1em;
  border-bottom: 1px solid #ddd;
  padding-bottom: .5em;
  margin-bottom: 1em;
}

.viewGuidelines-title {
  color: #14ade4;
  cursor: pointer;
}

@media (min-width: 480px) {
  .application-process {
      padding: 2em 1em;
  }

  .application-process .application-container {
      padding: 1em;
  }
}

@media (min-width: 768px) {
  .dashboard-wrap h1 {
      font-size: 40px;
  }

  .dashboard-wrap h2 {
      font-size: 28px;
  }
}

@media (min-width: 1200px) {
  .dashboard-wrap-inner {
      padding: 2em;
  }
}

@media (min-width: 1060px) {
  .application-process, .application-process .application-box, .application-process .application-container {
      padding: 3em;
  }

  .application-process .application-container {
      border: 6px solid rgba(255, 255, 255, .5);
  }
}

/* Buttons */
.button, .button.MuiLoadingButton-root {
  position: relative;
  outline: 0;
  display: inline-block;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
  padding: 1em 2em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  color: #fff;
  background-color: #44ad49;
  text-decoration: none;
  -webkit-font-smoothing: subpixel-antialiased;
  box-shadow: 0 3px 3px 0 rgb(0 0 0 / 30%);
  letter-spacing: .25px;
  transition: all .25s;
  max-width: 100%;
}

.button:hover, .button.MuiLoadingButton-root:hover {
  background-color: #338237;
}

.button:active {
  box-shadow: inset 0 -2px 2px rgb(0, 0, 0, 0.15);
}

.button.application-button {
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  text-align: center;
  border-radius: 0;
  width: 100%;
  margin-bottom: 1em;
  border: none;
  padding: 15px 20px;
  box-shadow: none;
}

.application-buttons {
  display: flex;
  flex-direction: column-reverse;
}

.application-buttons .application-button {
  display: inline-block;
  min-width: 150px;
  width: auto;
  margin: 1em;
}

.text-center {
  text-align: center;
}

.button.application-button.continue {
  background-color: #45ad49;
  color: #fff;
}

.button.application-button.continue.Mui-disabled {
  background-color: #ccc;
  color: #000;
}

.button.application-button>span {
  position: relative;
  z-index: 5;
}

.button.application-button.continue:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 2px;
  background-color: #457e3a;
  transition: height .2s;
}

.button.application-button.continue:hover:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 100%;
}

.button.application-button.previous {
  border: 1px solid #113457;
  transition: background-color .3s;
  color: #113457;
  font-weight: 300;
  background-color: #fff;
}

.button.application-button.previous:hover {
  background-color: #113457;
  color: #fff;
}

.button.secondary {
  background-color: #14ade4;
  color: #fff;
}

.button.secondary:hover, .button.secondary:focus, .button.secondary:active {
  background-color: #123457;
}

.button.red {
  background-color: #df3a56
}

button.button.red.setting-btn {
  background-color: #df3a56;
}

.button.red:hover, .button.red:focus, .button.red:active {
  background-color: #9b243e
}

.button.orange {
  background-color: #ff6730
}

.button.orange:hover, .button.orange:focus, .button.orange:active, .button.orange.active {
  background-color: #e55d2b
}

.button.white {
  background-color: #fff;
  color: #000
}

.button.white:hover, .button.white:focus, .button.white:active, .button.white.active {
  background-color: #44ad49;
  color: #fff
}

.button.ghost {
  background-color: transparent;
  border: 2px solid #14ade4;
  color: #14ade4
}

.button.ghost:hover, .button.ghost:focus, .button.ghost:active, .button.ghost.active {
  background-color: #14ade4;
  color: #fff
}

.button.ghost.orange {
  border: 2px solid #ff6730;
  color: #ff6730
}

.button.ghost.orange:hover, .button.ghost.orange:focus, .button.ghost.orange:active, .button.ghost.orange.active {
  background-color: #ff6730;
  color: #fff
}

.button.ghost.white, a.button.ghost.white {
  border: 2px solid #fff;
  color: #fff
}

.button.ghost.white:hover, .button.ghost.white:focus, .button.ghost.white:active, .button.ghost.white.active {
  background-color: #fff;
  color: #000
}

.button.ghost.black {
  border: 2px solid #000;
  color: #000
}

.button.ghost.black:hover, .button.ghost.black:focus, .button.ghost.black:active, .button.ghost.black.active {
  background-color: #000;
  color: #fff
}

.button.grey {
  background-color: #cfcfcf;
  color: #000
}

.button.grey:hover, .button.grey:focus, .button.grey:active, .button.grey.active {
  background-color: #cfcfcf;
  color: #000
}

.application-process .MuiLoadingButton-loadingIndicator {
  z-index: 99;
  display: inline-block;
  vertical-align: middle;
  line-height: 2;
}

/* dashboard buttons */
.dashboard-apply-account-btn {
  display: block;
  margin-bottom: 2em;
}

.apply-btn-wrap, .setting-btn-wrap {
  display: block;
  margin-bottom: 1em;
}

.dashboard-apply-account-btn .button {
  position: relative;
  outline: 0;
  display: block;
  margin-bottom: 0;
  padding: 1em 1em 1em 4em;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0;
  color: #fff;
  background-color: #44ad49;
  text-decoration: none;
  text-align: left;
  line-height: 1.4;
  font-family: 'rubik_medium';
  text-transform: uppercase;
}

.setting-btn-wrap .button.setting-btn {
  background-color: #ff6730;
}

.apply-btn-wrap:before, .setting-btn-wrap:before {
  font-family: gwr;
  padding: 2px 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 10px;
  z-index: 5;
  position: absolute;
  display: inline-block;
  left: 1em;
  color: #fff;
}

.apply-btn-wrap:before {
  content: "\e91a";
}

.setting-btn-wrap:before {
  content: "\e01d";
}

.dashboard-apply-account-btn .button:after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 0;
  background-color: rgba(0, 0, 0, .25);
  transition: height .2s;
}

.dashboard-apply-account-btn .button:hover:after {
  height: 100%;
}

.dashboard-apply-account-btn span {
  z-index: 3;
  position: relative;
}

.apply-btn-wrap .button, .setting-btn-wrap .button {
  width: 100%;
  height: auto;
}

.application-process h1 {
  margin-bottom: 1em;
  font-family: 'rubik_regular', "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.button input[type="file"] {
  display: none;
}

@media (min-width: 48em) {
  .apply-btn-wrap, .setting-btn-wrap {
      width: 49%;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin-bottom: 0;
  }

  .apply-btn-wrap {
      margin-right: 2%;
  }

  .apply-btn-wrap:before, .setting-btn-wrap:before {
      left: 0;
  }

  .application-buttons .application-button {
      min-width: 250px;
  }

  .application-process h1 {
      font-size: 28px;
  }

  .application-buttons {
      display: block;
  }
}

/* Profile */
.profie-wrap form {
  max-width: 800px;
  background-color: #fff;
}

#profie-wrap h1 {
  padding: 1em 0 0 1em;
}

.profie-wrap form h2 {
  padding: 0.5em;
  background: #14ade4;
  color: #fff;
  margin-bottom: 1em;
  font-size: 26px;
  line-height: 1.4;
}

.profie-wrap form section>div, .profie-wrap form>div {
  padding: 1em;
}

@media (min-width: 768px) {
  .profie-wrap form {
      margin-left: 1em;
  }

  .profie-wrap form section>div, .profie-wrap form>div {
      padding: 2em;
  }

  .profie-wrap form h2 {
      padding: 0.5em 1em;
  }
}

@media (min-width: 1200px) {
  .profie-wrap form {
      margin-left: 2em;
  }
}

/* Continue application */
.app-summary-wrap h1 {
  padding: 1em 0 0 1em;
}

.app-summary {
  max-width: 1200px;
}

.app-summary label.MuiFormLabel-root {
  font-family: 'rubik_medium';
  color: #000;
  margin-top: 0;
}

#unsubmittedAppFormContinue h2 {
  padding: 0.5em;
  background: #14ade4;
  color: #fff;
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.4;
}

.app-summary-wrap .continue-app-wrapper .continue-app-main {
  background-color: #fff;
  margin-bottom: 1em;
}

.app-summary-wrap .continue-app-wrapper .continue-app-consents {
  background-color: #fff;
  margin-bottom: 1em;
}

.app-summary-wrap .continue-app-wrapper .continue-app-consents .applicant-radio-wrap {
  margin-top: 1em;
}

.app-summary-wrap .continue-app-wrapper .continue-app-consents .applicant-radio-wrap label {
  margin-top: 1em;
}

.app-summary-wrap .continue-app-wrapper .continue-app-consents .button {
  margin: 1em;
  border-radius: 6px;
  padding: .2em .5em;
}

.app-summary-wrap .continue-app-wrapper .continue-app-aside {
  padding: 0 1em 1em 1em;
  margin-bottom: 1em;
}

.summary-sections {
  border-bottom: 1px solid #f0f0f8;
  display: block;
  width: 100%;
  padding: 1em 1em;
}

.continue-app-aside .dashboard-apply-account-btn {
  margin: 0;
}

.continue-app-aside .dashboard-apply-account-btn .continue-btn-wrap, .continue-app-aside .dashboard-apply-account-btn .cancel-btn-wrap {
  display: block;
  margin-bottom: 1em;
  width: 100%;
  position: relative;
}

.continue-app-aside .dashboard-apply-account-btn .button {
  width: 100%;
}

.continue-app-aside .dashboard-apply-account-btn .button.red {
  background-color: #df3a56;
}

.continue-app-aside .dashboard-apply-account-btn .continue-btn-wrap:before, .continue-app-aside .dashboard-apply-account-btn .cancel-btn-wrap:before, .deactivate-buttons .dashboard-apply-account-btn .continue-btn-wrap:before, .deactivate-buttons .dashboard-apply-account-btn .cancel-btn-wrap:before, .profile-aside .dashboard-apply-account-btn .cancel-btn-wrap:before {
  content: "\e91a";
  font-family: gwr;
  padding: 2px 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 10px;
  z-index: 5;
  position: absolute;
  display: inline-block;
  left: 0;
  color: #fff;
}

.continue-app-aside .dashboard-apply-account-btn .cancel-btn-wrap:before, .deactivate-buttons .dashboard-apply-account-btn .cancel-btn-wrap:before, .profile-aside .dashboard-apply-account-btn .cancel-btn-wrap:before {
  content: "\e00d";
}

.app-summary .continue-app-wrapper {
  display: flex;
  flex-direction: column-reverse;
}

#unsubmittedAppFormContinue .applications-comments .panel-header, #unsubmittedAppFormContinue .applications-comments .panel-header h2 {
  background-color: #44ad49;
  font-size: 20px;
}

#unsubmittedAppFormContinue .applications-comments .panel-header h2 {
  padding: 0;
}

.applications-comments .comments .comment {
  padding: 1em;
}

.applications-comments .comments .comment:nth-child(odd) {
  background-color: #f0f0f8;
}

.comment-header time {
  display: block;
  color: #8b8b8b;
  font-size: 12px;
}

.comment-content p:last-child {
  margin: 0;
}

.comment-message {
  padding: 1em;
}

.comment-message input, .button.MuiLoadingButton-root {
  border-radius: 0;
}

.comment-message input[type="textarea"] {
  padding: 10px;
}

.summary-sections .button.apply-btn {
  padding: .2em .5em;
}

.comments-wrap.applications-comments {
  width: 100%;
}

.section-evidence-add-add div:not(:first-child), .section-evidence-add-add button {
  margin: 1em;
}

.section-evidence-add-add {
  padding-bottom: 1em;
}

.terms-conditions-wrap .continue-btn-wrap p {
  cursor: pointer;
  text-decoration: underline;
  color: #147997;
  margin: 0;
}

.terms-conditions-wrap .continue-btn-wrap p:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .app-summary {
      margin-left: 1em;
  }

  .summary-sections {
      width: 100%;
      display: flex;
  }

  .applications-comments .comments .comment {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      padding: 2em;
  }

  .comment-header {
      width: 30%;
  }

  .comment-content {
      width: 70%;
      padding-left: 1em;
  }

  .comments h5 {
      margin: 0;
  }

  .comment-message form {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
  }

  .comment-message .button, .comment-message .button.MuiLoadingButton-root {
      padding: .3em .5em;
      width: 30%;
      margin-left: 1em;
  }

  .summary-sections>div:nth-child(2) {
      padding-left: 1em;
  }

  #unsubmittedAppFormContinue .applications-comments .panel-header {
      padding: 1em 2em;
  }

  .comment-message {
      padding: 2em;
  }

  .section-evidence-add-add div:not(:first-child), .section-evidence-add-add button {
      margin: 1em 2em;
  }
}

@media (min-width: 900px) {
  .app-summary .continue-app-wrapper {
      flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .app-summary {
      margin-left: 2em;
  }

  .summary-sections {
      padding: 2em;
  }
}

/* radio buttons images */
.qulifying-q1-group-wrap .yes-radio>span:first-child {
  background-image: url(/images/css/team.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: 1em;
}

.qulifying-q1-group-wrap .yes-radio>span.Mui-checked:first-child {
  background-image: url(/images/css/team-g.png);
}

.qulifying-q1-group-wrap .no-radio>span:first-child {
  background-image: url(/images/css/me.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: 1em;
}

.qulifying-q1-group-wrap .no-radio>span.Mui-checked:first-child {
  background-image: url(/images/css/me-g.png);
}

.qulifying-q1-group-wrap .yes-radio>span.Mui-checked:first-child:after, .qulifying-q1-group-wrap .no-radio>span.Mui-checked:first-child:after {
  content: '';
  position: absolute;
  top: 40%;
  right: -15px;
  background: url(/images/css/cb-yes-confirm.svg) !important;
  width: 35px;
  height: 35px;
  background-size: contain !important;
  background-color: #fff !important;
  border-radius: 50% !important;
}

.application-process .qq-radio>span:first-child {
  flex-direction: row;
  background-image: url(/images/css/cb-plain.svg) !important;
  background-size: cover !important;
  border: 0;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.application-process .qq-radio>span.Mui-checked:first-child {
  flex-direction: row;
  background-image: url(/images/css/cb-yes-confirm.svg) !important;
}

@media (max-width: 1106px) {
  .qulifying-q1-group-wrap .yes-radio>span:first-child {
      width: 100px;
      height: 100px;
  }

  .qulifying-q1-group-wrap .no-radio>span:first-child {
      width: 100px;
      height: 100px;
  }
}

/* Deactivate */
.deactivate-wrap {
  max-width: 750px;
  background-color: #fff;
}

.deactivate-wrap>div {
  padding: 1em 2em;
}

h2.deactivate-header {
  background: #14ade4;
  color: #fff;
  padding: 0.8em 1.1em;
  font-size: 24px;
}

.deactivate-wrap .deactivate-buttons {
  text-align: center;
  padding-top: 0;
}

.deactivate-buttons .dashboard-apply-account-btn>div {
  display: inline-block;
  margin: 1em;
  position: relative;
}

.deactivate-buttons .dashboard-apply-account-btn {
  margin: 0;
}

.deactivate-wrap p:nth-last-child(1) {
  margin: 0;
}

/* Profile */
.profie-wrap {
  margin-bottom: 1em;
}

.profie-wrap .MuiFormControl-root {
  margin-bottom: .5em;
}

.profie-wrap input {
  z-index: 1;
  border-radius: 0;
  border: 2px solid #e4e4e4;
  padding: 10px;
}

.profie-wrap .Mui-error input {
  border: 2px solid #ff0021;
}

.profie-wrap input:hover {
  border: 0;
  border: 2px solid #14ade4;
}

.profie-wrap fieldset {
  border-radius: 0;
  background-color: #f9f9f9;
}

.profie-wrap .MuiSelect-select {
  padding: 10px;
}

.profie-wrap .MuiSelect-select {
  z-index: 1;
}

.profie-wrap .MuiInputBase-formControl:hover .MuiOutlinedInput-notchedOutline {
  border: 0;
}

.profie-wrap .MuiInputAdornment-root {
  z-index: 1;
}

#main .profie-wrap .MuiFormLabel-root {
  font-weight: 500;
  font-family: rubik_medium, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.profie-wrap .applicant-radio-wrap input {
  display: none;
}

.fied-optional-label {
  font-size: 15px;
  color: #8b8b8b;
  margin-top: 9px;
  margin-left: 10px;
}

.help-text {
  font-size: 15px;
  color: #8b8b8b;
  line-height: 1.2;
  margin-top: 8px;
}

.cancel-btn-wrap {
  position: relative;
}

#profie-wrap {
  margin-bottom: 1em;
}

.profile-aside button.button.red.setting-btn {
  width: 100%;
}

#main .MuiSelect-icon {
  z-index: 1;
  color: #14ade4;
}

.profie-wrap .MuiInputBase-formControl .MuiSelect-select {
  border: 2px solid #e4e4e4;
  border-radius: 0;
}

.profie-wrap .MuiInputBase-formControl:hover .MuiSelect-select {
  border: 2px solid #14ade4;
}

#profie-wrap .button.application-button.continue {
  width: auto;
}

@media (min-width: 1000px) {
  .profie-wrap {
      display: inline-block;
      width: 67%;
      vertical-align: top;
  }

  .profile-aside {
      display: inline-block;
      width: 30%;
      float: right;
  }
}

/* General */
#main .MuiFormHelperText-root {
  font-size: 15px;
  margin-left: 0;
}

#main .MuiFormLabel-root {
  color: #333;
  font-size: inherit;
}

.application-process .MuiOutlinedInput-root:hover fieldset {
  border-color: #14ade4;
}

.MuiLoadingButton-loading span:nth-child(2) {
  opacity: 0;
}

.MuiLoadingButton-loading>span:first-child {
  position: absolute !important;
  right: 1em;
  top: 1em;
  display: block !important;
}

/* alerts */
.gwr-alert {
  width: 100%;
}

.gwr-alert .MuiAlert-outlined {
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  justify-content: center;
}

.gwr-alert .MuiStack-root {
  width: 100%;
  text-align: center;
}

/* consultant */
.application-process #ifBC .MuiFormControl-root {
  width: auto;
}

#ifBC input {
  position: absolute;
}

.application-process #ifBC .MuiFormControl-root>span {
  text-align: left;
  display: block;
  padding-left: 0;
}

.submit-record-update .button.application-button.continue {
  margin-top: 0;
  line-height: 1.25;
}

/* Toast Override */
.Toastify__toast-container.Toastify__toast-container--top-right {
  top: auto;
  bottom: 5em;
  left: 1em;
  right: 1em;
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
}

.MuiTextField-root label {
  z-index: 3;
}

/* App Form */
.about-org .status-pending {
  margin-top: -1em;
  margin-bottom: 2em;
}

.field-errors.age-rest-error {
  border: 2px solid;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 0;
}

/* Evidence type */
.application-process .evidence-wizard-nav {
  border-top: 1px solid #ccc !important;
  margin-left: -18px;
  margin-right: -18px;
  background: #f9f9f9;
  margin-bottom: -18px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 1em !important;
  text-align: center;
  margin-top: 3em;
}

h1.eve-wiz-title {
  padding-bottom: .5em;
  border-bottom: 1px solid #ccc;
}

.upload-evidence-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.upload-evidence-overlay .upload-evidence-box {
  width: 41%;
  margin-top: 20px;
  background: floralwhite;
  padding: 2em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 8px 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.evidence-group .evidence-group-list div:nth-child(1) {
  width: 90%;
}

@media (max-width: 768px) {
  .upload-evidence-overlay .upload-evidence-box {
    width: 90%;
  }
}

.upload-evidence-overlay .upload-evidence-box p {
  font-size: 1rem;
  font-weight: 600;
}

.upload-btn.button.application-button {
  width: 260px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}

.evidence-group .evidence-group-list {
  border: 1px solid #ccc;
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.delete-evidence-button {
  border: 1px solid #000;
  width: 28px;
  height: 28px;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 4px;
  display: inline-block;
}

.delete-evidence-confirm {
  cursor: pointer;
  /* margin: 0 0.5rem; */
  padding: 0.5rem 1rem;
}

.delete-evidence-button:hover, .delete-evidence-confirm:hover {
  background-color: #000;
  color: #fff;
}

.form-field-wrap {
  margin-bottom: 1em;
}

.application-process .record-h-holder .MuiTextField-root {
  margin-bottom: 5px;
}

.application-form-wrap label {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

/* Evidence type */
#evidenceCheckbox input[type=checkbox] {
  display: none;
}

#evidenceCheckbox label span {
  font-weight: 600;
}

#grantNoSensitiveData input[type=radio], #grantRights input[type=radio] {
  display: none;
}

section#content-consent-data h3 {
  margin: 0;
  font-size: 21px;
}

#recordHolder .application-buttons button {
  margin-left: 0;
  background-color: #113457;
}

#addLink .button.application-button.continue {
  color: #fff;
  background-color: #113457;
  border-radius: 0;
  margin: 0;
  padding: 10px 0;
  min-height: 53px;
  min-width: 80px;
}

#addLink .button.application-button.continue:after, #recordHolder .application-buttons button:after {
  background-color: #14ade4;
}

.addLink-list ul {
  margin: 0;
  padding: 0;
}

.addLink-list ul li:first-child {
  margin-top: 1em;
}

.addLink-list ul li {
  list-style: none;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}

h2.header-blue-bg {
  padding: 0.5em;
  background: #14ade4;
  color: #fff;
  margin-bottom: 1em;
  font-size: 26px;
  line-height: 1.4;
}

#notFinishedYet .header-blue-bg, #finishedEvidenceUpload .header-blue-bg {
  margin-top: 3em;
}

#notFinishedYet .button.application-button.continue, #finishedEvidenceUpload .button.application-button.previous {
  width: auto;
  margin-bottom: 1em;
}

section#grantRights label {
  margin-bottom: 1em;
  vertical-align: top;
  align-items: flex-start;
}

.application-process .evidence-wizard-nav>div>span {
  color: #147997;
  cursor: pointer;
  margin-bottom: 1em;
  display: inline-block;
}

.upload-image-wrap {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #ccc;
}

.upload-image-wrap div {
  max-width: 100px;
}

.upload-image-wrap hr {
  width: 100%;
  clear: both;
  display: block;
}

#evidenceUpload .button.application-button.continue {
  width: auto;
  min-width: 200px;
}

#evidenceUpload input[type="file"] {
  border: none;
  padding: 0;
}

#addLink .header-blue {
  color: #fff;
  background-color: #14ade4;
  padding: .5em 1em;
  margin-top: 2em;
}

.status-Cancelled, .status-Expired, .status-Rejected, .status-ACTION.REQUIRED {
  color: #c20000;
}

.status-Requested.Further.Evidence, .status-Requested.Further.Information, .status.Awaiting.Final.Approval {
  color: #b8923c;
}

.status-Current.Record.Holder {
  color: green;
}

@media (min-width: 768px) {
  .application-process .evidence-wizard-nav>div:first-child {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
  }

  .upload-image-wrap div {
      margin-right: 1em;
  }

  .application-process .evidence-wizard-nav>div>span {
      margin-bottom: 0;
  }

  .evidence-buttons-right {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 50%;
  }

  .evidence-wizard-nav .button.application-button.continue, .evidence-wizard-nav .button.application-button.previous {
      margin-bottom: 0;
      margin-left: 1em;
  }

  .upload-image-wrap {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
  }
}

@media (min-width: 1060px) {
  .application-process .evidence-wizard-nav {
      margin-left: -54px;
      margin-right: -54px;
      background: #f9f9f9;
      margin-bottom: -54px;
      margin-top: 5em;
  }
}

span.MuiFormControlLabel-asterisk {
  display: none !important;
}

.uploaded-list p {
  margin: 0;
  border: 1px solid rgb(204, 204, 204);
  padding: 10px 30px;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5em;
}

.uploaded-list p span, .success-label {
  font-weight: 600;
  color: #fff;
  background-color: #44ad49;
  padding: 2px 3px;
  font-size: 12px;
  margin-left: 1em;
}

.status-gen {
  text-transform: uppercase;
  font-size: 13px;
}

/* Date picker */
#app .react-datepicker-popper {
  z-index: 2;
}

.profie-wrap form h2.react-datepicker__current-month {
  margin: 0;
  background: initial;
  color: #333;
}

input.dob-picker {
  min-height: 3.5em;
  border-radius: 0;
}

input.dob-picker:hover {
  border-width: 2px;
}

.capctcha-wrap {
  margin-bottom: 1em;
}

input.dob-picker {
  min-height: 57px;
}

.html-rtl .login-page-wrap {
  background-image: url(/images/bg-login-ae.jpg)
}

.filesize-kb {
  color: #4b4b4b;
  font-size: 12px;
}

/* rtl - .ae */
.html-rtl .dashboard-apply-account-btn .button {
  text-align: right;
  padding: 1.5em 4em 1em 1em;
}

.html-rtl .apply-btn-wrap:before, .html-rtl .setting-btn-wrap:before {
  left: auto;
  right: 1em;
}

.html-rtl .panel-title {
  margin: 0 !important;
}

.html-rtl .dashboard-nav .page-tabs ul button {
  text-align: right;
}

.html-rtl .dashboard-nav .page-tabs li span {
  padding-left: 0;
  padding-right: 10px;
}

.html-rtl .dashboard-nav .page-tabs span.sub-nav-kids:first-child {
  padding-right: 0;
}

.html-rtl .app-summary-wrap h1, .html-rtl #profie-wrap h1 {
  padding: 1em 1em 0 0;
}

.html-rtl .continue-app-aside .dashboard-apply-account-btn .continue-btn-wrap:before, .html-rtl .continue-app-aside .dashboard-apply-account-btn .cancel-btn-wrap:before, .html-rtl .deactivate-buttons .dashboard-apply-account-btn .continue-btn-wrap:before, .html-rtl .deactivate-buttons .dashboard-apply-account-btn .cancel-btn-wrap:before, .html-rtl .profile-aside .dashboard-apply-account-btn .cancel-btn-wrap:before {
  left: auto;
  right: 0;
}

.html-rtl #recordHolder .application-buttons button {
  margin-right: 0;
  margin-left: 1em;
}

.html-rtl .qulifying-q1-group-wrap .yes-radio {
  margin-right: 0;
  margin-left: 2%;
}

.html-rtl .application-process .qq-radio>span:first-child {
  margin-left: 10px;
  margin-right: 0;
}

.html-rtl .alert.alert-notice.tooltip-alert.show.in {
  padding: 24px 20px 24px 40px;
}

.html-rtl .text-left {
  text-align: initial;
}

.html-rtl #main .MuiFormHelperText-root {
  text-align: inherit;
  margin-right: 0;
}

@media (min-width: 768px) {
  .html-rtl .app-summary {
      margin-right: 1em;
      margin-left: 0;
  }

  .html-rtl #editApp form {
      margin-left: 0;
      margin-right: 2em;
  }

  .html-rtl .profie-wrap form {
      margin-left: 1em;
      margin-right: 1em;
  }

  .html-rtl .alert.alert-notice.tooltip-alert.show.in {
      padding: 24px 80px 24px 40px;
  }

  .html-rtl .apply-btn-wrap {
      margin-right: 0;
      margin-left: 2%;
  }
}

@media (min-width: 1000px) {
  .html-rtl .profile-aside {
      float: none;
  }
}

@media (min-width: 1200px) {
  .html-rtl .app-summary {
      margin-right: 2em;
      margin-left: 0;
  }

  .html-rtl #editApp form {
      margin-left: 0;
      margin-right: 2em;
  }

  .html-rtl .profie-wrap form {
      margin-left: 1em;
      margin-right: 2em;
  }
}

@media (min-width: 48em) {
  .html-rtl .apply-btn-wrap:before, .html-rtl .setting-btn-wrap:before {
      right: 0;
  }

  .html-rtl .tabular-header .tabular-title {
      padding-left: 2em;
      padding-right: 0;
  }

  .html-rtl .dashboard-nav .page-tabs li.active {
      border-right: 3px solid #14ade4;
      border-left: 0;
  }
}

@media (min-width: 1060px) {
  .application-kids .application-search-result-record-text-wrap .button.application-button.continue {
      max-width: 250px;
  }

  .html-rtl .record-title-apply h4 {
      margin-right: inherit;
      margin-left: 2em;
  }
}

.application-search-result-record-text-wrap .button.MuiLoadingButton-root {
  max-width: 250px;
}


#content {
  page-break-inside: auto;
}

h3, p, li {
  page-break-inside: avoid;
  break-inside: avoid;
}

.header-img-h {
display: none;
}

.pdf-down .header-img-h {
display: block;
}

.pdf-down .footer-img-h {
min-height: 80px;
}

.pdf-down p, .pdf-down ul, .pdf-down li {
  page-break-inside: avoid;
}

.page-break {
  page-break-before: always;
  break-before: page;
  height: 0;
}

.pdf-down p, .pdf-down ol, .pdf-down ul, .pdf-down img, .pdf-down table, .pdf-down h1, .pdf-down h2, .pdf-down h3, .pdf-down h4, .pdf-down h5, .pdf-down h6 {
    page-break-inside: avoid;
    break-inside: avoid;
    page-break-after: avoid;
    break-after: avoid;
  }
  .pdf-down .page-break {
    page-break-before: always;
    break-before: page;
  }
  body .pdf-down {
    line-height: 1.5;
  }
  @page {
    margin: 10mm;
  }