:root {
  --dark-gray: #484848;
  --brand-yellow: #f7bb16;
  --brand-green: #35a750;
  --brand-red: #e94436;
  --brand-blue: #547dbd;
  --brand-pastel-yellow: rgba(247, 187, 22, 0.6);
  --brand-pastel-green: rgba(53, 167, 80, 0.6);
  --brand-pastel-red: rgba(233, 68, 54, 0.6);
  --brand-pastel-blue: rgba(84, 125, 189, 0.6);
  --brand-light-blue: rgba(84, 125, 189, 0.3);
  --brand-gray: #231f20;
  --light-gray: lightgray;
}

@media (min-width: 530px) {
  html,
  body,
  main {
    height: none;
  }
}

/* html,
body,
main {
	height: 100%;
} */

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/*
    Alerts
 */
.alert-message {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  margin: 0;
  padding: 1em;
  color: white;
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s; /* Safari */
}

.alert-message.fail {
  background: var(--brand-red);
}

.alert-message.success {
  background: var(--brand-green);
}

.alert-message.info {
  background: var(--dark-gray);
}

.alert {
  border: 1px solid;
  padding: 1rem 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.alert.alert-error {
  background-color: #d32f2f;
  color: #ffffffde;
}

.alert.alert-success {
  background-color: #1ec183;
  color: #ffffffde;
}

/*
    Tooltip Styles
 */
.tooltip {
  margin-left: 0.2em;
  cursor: pointer;
  transition: color 0.5s ease 0s;
  -webkit-transition: color 0.5s ease 0s; /* Safari */
  color: var(--brand-green);
}

.fa.tooltip {
  font-size: 22px;
}

.tooltip:hover {
  color: var(--brand-yellow);
}

#tooltipWrap {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: rgba(71, 71, 71, 0.6);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooltipInner {
  width: 90%;
  height: auto;
}

.tooltipInner video {
  width: 100%;
  height: auto;
}

#tooltipClose {
  color: var(--brand-yellow);
  font-size: 30px;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

#tooltipClose:hover {
  color: var(--brand-pastel-yellow);
}

.no-scroll {
  overflow: hidden;
}

/*
    Modal
 */
.modal {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.modal.active {
  display: block;
}

.modal-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.modal-inner {
  max-width: 640px;
  background-color: #ffffff;
  /* max-height: calc(100% - var(--modal-margin)); */
  /* overflow-y: scroll; */
  margin: var(--modal-margin);
  --modal-margin: 2em;
  width: 100%;
  display: flex;
  flex-flow: column;
  max-height: 100%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  border-bottom: 1px solid #eeeeee;
  align-items: center;
  flex: 1.5rem;
  flex-grow: 0;
  flex-shrink: 0;
}

.modal-title {
  font-weight: 400;
  color: #4a4a4a;
  margin: 0 0.5rem;
}

.modal-close {
  color: var(--brand-pastel-red);
  padding: 0 0.25rem;
  cursor: pointer;
}

.modal-body {
  padding: 0.5rem;
  overflow-y: auto;
}

/*
    Job Post Applicant Modal
 */
.job-post-context h5 {
  margin: 0.5rem;
  font-weight: 400;
  font-size: 1.25rem;
}

.job-post-context h5 span {
}

.add-applicant-form {
  width: auto;
  margin: 0;
  padding: 0 0.5rem;
}

.add-applicant-form input {
  padding: 0.5rem;
}

/*
  Tabbed navigation
 */
.nav.nav-tabs {
  display: flex;
  list-style: none;
  margin: 1em 0 0;
  padding: 0 1.75em;
  border-bottom: 1px solid #eeeeee;
  flex-flow: wrap;
}

.nav.nav-tabs.nav-tabs--no-padding {
  padding: 0;
}

.nav-tabs .nav-item {
  border-bottom: 1px solid #eeeeee;
}

.nav.nav-tabs .nav-link {
  text-decoration: none;
  color: #004b96;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-top: 1px solid;
  border-left: 1px solid;
  border-right: 1px solid;
  border-radius: 3px 3px 0 0;
  margin: 0 1px;
  font-size: 12px;
  border-color: #aaaaaa;
  background-color: #fafafa;
}

.nav.nav-tabs .nav-link.active {
  background-color: #cdcdcd;
  font-weight: 700;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

ul.no-style {
  list-style: none;
  padding: 0;
}

.warn {
  color: var(--brand-pastel-red);
  font-weight: 700;
}

.tab-pane.company-postings.active {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.layout.internal-layout-grid {
  display: grid;
  grid-template-areas: 'sidebar-menu-header header-navbar' 'sidebar-menu main-content' 'sidebar-menu company-footer';
  grid-template-rows: 3.75rem auto 9rem;
  grid-template-columns: 250px auto;
  height: 100%;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.full-height {
  height: 100vh;
}

.full-height-percent {
  height: 100%;
  min-height: min-content;
}

.flex-1 {
  flex: 1;
}

.flex-column {
  flex-flow: column;
}

.bread-crumbs a {
  text-decoration: none;
  color: var(--brand-blue);
}

.bread-crumbs a:hover {
  color: var(--brand-green);
}

.postings-row__heading a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

.postings-row__heading a:visited {
  color: var(--brand-blue);
}

.postings-row__heading a:hover {
  color: var(--brand-green);
}

.internal-layout-grid .sidebar-menu-header {
  grid-area: sidebar-menu-header;
  color: #ffffff;
  background-color: var(--brand-blue);
  padding: 1.25rem;
}

.internal-layout-grid .sidebar-menu {
  grid-area: sidebar-menu;
  max-width: 15.625rem;
  display: flex;
  flex-flow: column;
  width: 100%;
}

.internal-layout-grid .header-navbar {
  grid-area: header-navbar;
  background-color: #ebf1f6;
  border-bottom: 1px solid #cccccc;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 1em;
}

.breadcrumb {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: #183351;
  text-decoration: none;
  text-transform: uppercase;
  transition: text-decoration 0.5s ease 0s;
  -webkit-transition: text-decoration 0.5s ease 0s; /* Safari */
}

.breadcrumb:hover {
  text-decoration: underline;
}

.internal-layout-grid .main-content {
  grid-area: main-content;
}

.company-footer {
  grid-area: company-footer;
  border-top: 1px solid #cccccc;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1.5rem 3.5rem;
}

.layout .sidebar-menu-header {
  background-image: url('../images/bmt-icon.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-color: white;
  background-position: center;
}

.site-title {
  display: none;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.sidebar-menu__content {
  color: #ffffff;
  background-color: var(--brand-blue);
  overflow: hidden;
  padding: 1.5rem 1rem;
  flex: 1;
}

.sidebar-menu__group {
  margin-bottom: 1.5rem;
}

.sidebar-menu__group-title {
  margin: 0;
}

.sidebar-menu-icon svg * {
  fill: none;
  stroke: #ffffff;
}

.sidebar-menu-icon svg {
  width: 1rem;
}

.sidebar-menu-icon {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 1.5rem;
}

.menu-item {
  margin: 0.5rem 0;
}

.menu-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.875rem;
}

.search-form-input {
  border: 1px solid #90a7b2;
  padding: 0.5rem;
  border-radius: 0.3125rem;
}

.user-menu__profile-image img {
  display: block;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.search-form {
  margin: 1rem 0 1rem 1rem;
}

.user-menu {
  margin: 1rem;
}

.search-form-input {
  color: #3a3a3a;
  outline: none;
}

.light-placeholder::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #b2b2b2;
}

.light-placeholder::-moz-placeholder {
  /* Firefox 19+ */
  color: #b2b2b2;
}

.light-placeholder:-ms-input-placeholder {
  /* IE 10+ */
  color: #b2b2b2;
}

.light-placeholder:-moz-placeholder {
  /* Firefox 18- */
  color: #b2b2b2;
}

.dashboard-title svg {
  width: 1.5rem;
  color: var(--brand-blue);
  vertical-align: middle;
}

.dashboard-title {
  color: var(--brand-blue);
  font-size: 1.3125rem;
}

.main-content {
  display: flex;
}

.pending-jobs {
  flex: 1;
}

.dashboard-header {
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid #dfe6e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-nav {
  border-left: 1px solid #dfe6e8;
}

.dashboard-nav__content {
  padding: 1.5rem;
}

.dashboard-nav__block {
  background-color: #90a7b2;
  padding: 2rem 1.5rem;
  border-radius: 0.25rem;
  -webkit-transition: 0.2s opacity ease-in-out 0s;
  -moz-transition: 0.2s opacity ease-in-out 0s;
  -ms-transition: 0.2s opacity ease-in-out 0s;
  -o-transition: 0.2s opacity ease-in-out 0s;
  transition: 0.2s opacity ease-in-out 0s;
}

.dashboard-nav__block:hover {
  opacity: 0.8;
}

.dashboard-nav__block + .dashboard-nav__block {
  margin-top: 1.5rem;
}

.dashboard-nav__block a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.dashboard-nav__block svg {
  width: 5vw;
  max-width: 10rem;
  min-width: 3rem;
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid;
}

.dashboard-title path,
.dashboard-title circle,
.dashboard-title line {
  stroke: var(--brand-blue);
  fill: none;
}

.dashboard-nav-title {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
}

.dashboard-nav-title__sub {
  display: block;
  font-weight: 400;
  text-transform: none;
  font-size: 1.3125rem;
}

.dashboard-nav__block.dashboard-applicants {
  background-color: var(--brand-blue);
}

.dashboard-nav__block.dashboard-applicants svg * {
  stroke: #acd0e8;
}

.dashboard-nav__block.dashboard-applicants svg {
  border-color: #acd0e8;
}

.dashboard-nav__block.dashboard-companies {
  background-color: var(--brand-red);
}

.dashboard-nav__block.dashboard-companies svg * {
  stroke: #e97466;
}

.dashboard-nav__block.dashboard-companies svg {
  border-color: #e97466;
}

.dashboard-nav__block.dashboard-jobs {
  background-color: var(--brand-yellow);
}

.dashboard-nav__block.dashboard-jobs svg * {
  stroke: #fcda79;
}

.dashboard-nav__block.dashboard-jobs svg {
  border-color: #fcda79;
}

.footer-links a {
  text-decoration: none;
  color: #343434;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  display: inline-block;
}

.footer-phone {
  display: inline-block;
  margin-right: 1rem;
}

.footer-email {
  display: inline-block;
  margin-right: 1rem;
}

.footer-links {
  display: inline-block;
}

.footer-links li + li {
  margin-left: 1rem;
}

.copyright {
  margin: 0;
  color: #3a3a3a;
}

.company-footer__name h5 {
  color: #3a3a3a;
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  word-spacing: 0.15rem;
}

@media all and (max-width: 1024px) {
  .dashboard-nav__block svg {
    width: 3rem;
  }

  .layout.internal-layout-grid {
    grid-template-areas: 'sidebar-menu-header header-navbar' 'sidebar-menu main-content' 'company-footer company-footer';
  }

  .main-content {
    flex-direction: column-reverse;
  }
}

.pending-jobs__list {
  padding: 1rem;
}

.postings-table__content {
  display: table;
  width: 100%;
  font-size: 0.875rem;
}

.postings-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr 1fr 1fr;
  /* margin: 0.5rem 0; */
  color: #3a3a3a;
  /*display: table-row;*/
  position: relative;
  transition: all 0.7s ease 0s;
  -webkit-transition: all 0.7s ease 0s; /* Safari */
}

.company-jobs .searchWrap {
  width: auto;
  margin: 0;
}

.company-jobs.postings-row {
  display: block;
  grid-template-columns: none;
}

.company-jobs.postings-row.postings-row--header {
  display: grid;
  grid-template-areas: 'post-open post-edit post-date post-days post-title post-admin';
  grid-template-columns: none;
}

.company-jobs.postings-row .company-posting-info {
  display: grid;
  grid-template-areas: 'post-open post-edit post-date post-days post-title post-admin';
  grid-template-columns: none;
}

.company-jobs.postings-row .searchResults.infoWrap {
  position: static;
  display: none;
}

.company-jobs.postings-row .optionWrap.active .searchResults.infoWrap {
  display: block;
}

.company-jobs.postings-row .optionWrap {
  display: block;
  grid-template-columns: none;
  grid-column-gap: unset;
  flex: none;
}

.company-jobs-applicants.postings-row {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.company-jobs-applicants.postings-row.active {
  padding-bottom: 7em;
}

.company-jobs .add-applicant-btn,
.company-jobs .import-applicant-btn {
  text-decoration: none;
  padding: 4px 8px;
  background-color: var(--brand-yellow);
  color: #ffffff;
  white-space: nowrap;
  border: none;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  margin: 0.3em 0;
}

/* Company Postings Listing */
.company-postings-table {
  width: 100%;
  border-collapse: collapse;
}

.company-jobs.company-jobs-header {
  font-weight: 700;
  color: var(--brand-blue);
}

.company-posting-column {
  padding: 0.25rem 0.5rem;
}

.company-posting-column.column-open {
  width: 50px;
  text-align: center;
}

.company-posting-column.column-edit {
  width: 50px;
  text-align: center;
}

.company-posting-column.column-posted {
  width: 110px;
  text-align: center;
}

.company-posting-column.column-days {
  text-align: center;
  width: 50px;
}

.company-posting-column.column-admin {
  width: 240px;
}

.company-jobs-table {
  width: 100%;
  border-collapse: collapse;
}

.company-jobs-results {
  padding: 0;
}

.company-posting-column {
  user-select: none;
}

.company-posting-column.sortable {
  cursor: pointer;
}

.company-posting-column.sortable.active {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}

.dataTables_wrapper select {
  max-width: inherit;
  display: initial;
  padding: 0.15rem 0.25rem;
  width: auto;
  background: none;
  -webkit-appearance: menulist-button;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #ffffff;
}

.dataTables_wrapper label {
  font-weight: 500;
  color: #333333;
}

.dataTables_length {
  padding: 0.5rem;
}

.dataTables_filter label {
}

.dataTables_filter input[type='search'] {
  display: inline-block;
  width: auto;
  padding: 0.15rem 0.25rem;
  border-radius: 3px;
  border: 1px solid #cccccc;
}

table.dataTable.compact thead th,
table.dataTable.compact thead td {
  font-weight: 500;
  /* font-family: Helvetica; */
  font-size: 0.85rem;
  letter-spacing: -0.05rem;
  color: #4a4a4a;
  background-color: rgba(53, 167, 80, 0.19);
}

table.dataTable tbody th,
table.dataTable tbody td {
  /* font-family: Helvetica; */
  font-size: 0.85rem;
  color: #4a4a4a;
}

.dataTable a {
  text-decoration: none;
  color: var(--brand-pastel-green);
  font-weight: 500;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #4a4a4a !important;
  border-radius: 5px;
  border: 1px solid #cccccc;
}

.dataTables_wrapper .dataTables_paginate {
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.dataTables_wrapper .dataTables_info {
  padding: 0.5rem;
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
}

.dataTables_wrapper {
  margin: 1rem 0;
}

/*
    Company Applicant Table
 */
.applicant-results {
  max-width: 100%;
  background-color: #fafafa;
  display: none;
}

.applicant-results.active {
  display: table-row;
  width: 100%;
}

.applicant-data-header {
  color: var(--brand-blue);
  font-weight: 700;
  display: table-row;
}

.applicant-results-inner {
  width: 100%;
}

.applicant-row-data.applicant-name a {
  color: var(--brand-green);
  text-decoration: none;
  font-weight: 500;
}

.applicant-results-inner .date-applied {
  width: 130px;
  text-align: center;
}

.applicant-results-inner .applicant-row {
  display: none;
}

.applicant-results-inner .applicant-row.activeSearchPosts {
  display: table-row;
}

.applicant-results-controls .postings-search-prev,
.applicant-results-controls .postings-search-next {
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.applicant-results-controls .postings-search-prev.active,
.applicant-results-controls .postings-search-next.active {
  visibility: visible;
}

.searchResults.infoWrap {
  display: grid;
  height: auto;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 1rem;
}

.optionWrap .paginationWrap {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.optionWrap.active .paginationWrap {
  display: grid;
}

.get-applicants {
  z-index: 100;
  position: relative;
}

.postings-row.postings-row--new {
  font-weight: 700;
}

.postings-row.postings-row--header {
  color: var(--brand-blue);
  font-weight: 700;
  text-align: left;
  /*display: table-row;*/
}

.postings-row__heading {
  /*display: table-cell;*/
  padding: 0.25rem 0.5rem 1rem 0.5rem;
}

.company-postings .postings-row__heading {
  text-align: center;
}

.postings-row-data {
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  text-align: left;
  font-size: 0.875rem;
  /*display: table-cell;*/
  padding: 0.5rem;
  /*max-width: 100px;*/
}

.postings-row-data[data-column='days_pending'] {
  width: 110px;
  text-align: center;
}

.company-postings .postings-row-data {
  text-align: center;
}

.postings-row-data[data-column='date_posted'] {
  width: 110px;
  text-align: center;
}

.company-postings .postings-row-data[data-column='date_posted'],
.company-postings .postings-row-data[data-column='days_pending'] {
  width: 100%;
}

.infoWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s; /* Safari */
}

.infoWrap p {
  display: inline;
}

.no-cell {
  display: flex;
}

.more-info-row {
  display: none;
}
.btn-option {
  background: var(--brand-green);
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4em;
  border-radius: 7px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
  transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s; /* Safari */
  box-sizing: border-box;
}
.btn-option:hover {
  background: var(--brand-blue);
}
.btn-option.trans-sheet:hover {
  color: #fff !important;
}
.fa-group::before,
.fa-users::before {
  content: '\f0c0';
  font-size: 11px;
}
.optionWrap {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1em;
}
.clipboardButton i:before {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out; /* Safari */
}

.clipboardButton i.fa-clipboard:before,
.clipboardButton i.fa-check:before {
  opacity: 1;
}

.postings-row.active {
  padding-bottom: 4em;
}

.optionWrap.active .infoWrap {
  visibility: visible;
  /*transition: all 0.5s ease 0s;*/
  /*-webkit-transition: all 0.5s ease 0s; !* Safari *!*/
}

.optionWrap .infoWrap p,
.optionWrap .infoWrap p > a {
  color: transparent;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s; /* Safari */
}

.optionWrap.active .infoWrap p {
  color: inherit;
}

.optionWrap.active .infoWrap p > a {
  color: var(--brand-green);
}

.infoWrap p:first-child {
  margin-right: 1em;
}

.noWrap {
  white-space: nowrap;
}

/*
    Login page styles
 */

.login-layout-grid {
  display: flex;
  height: 100%;
}

.login-layout-grid .login-form {
  flex: 1;
  padding: 2.5rem 6.875rem;
  color: #3a3a3a;
}

.login-layout-grid .login-bg {
  flex: 2;
  background-image: url(/images/bmt-icon.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.login-form .site-title {
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 1rem;
}

.login-form .login-heading {
  font-size: 3.25rem;
  font-weight: 300;
  margin: 1rem 0;
}

.login-form .login-sub-heading {
  font-size: 1.25rem;
  margin: 2.5rem 0 6.875rem;
}

.login-header-group {
  margin-top: 9.375rem;
}

.login-status {
  margin: 1rem 0;
}

.login-form form {
  margin: 0;
  width: auto;
}

.login-field-group {
  border: 1px solid #cccccc;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.login-field-group + .login-field-group {
  border-top: none;
}

input[type='email'].login-textfield__input,
input[type='password'].login-textfield__input {
  border: none;
  border-radius: 0;
  font-weight: 600;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  height: 0;
  transition: 0.3s;
  line-height: 1.5;
  margin: 0 1.875rem 1.25rem;
  padding: 0;
}

label.login-textfield__label {
  display: block;
  font-weight: 300;
  color: #b2b2b2;
  padding: 1.25rem 1.875rem 0;
  user-select: none;
}

input.login-textfield__input:focus,
input.login-textfield__input.active {
  height: 1.5rem;
}

.login-password-group {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.login-password-group label {
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

.login-password-group input[type='checkbox'] {
  vertical-align: middle;
  margin: 0;
}

.login-password-group a {
  color: #2e2e2e;
  font-weight: 700;
  text-decoration: none;
}

.login-button-group .btn {
  font-weight: 300;
  text-transform: unset;
  font-size: 1.4375rem;
  padding: 1rem 3.125rem;
}

.login-button-group .btn + .btn {
  margin-left: 1rem;
}

.login-button-group .btn.signup-button {
  background-color: #ffffff;
  color: #828282;
  border: 1px solid #828282;
}

.login-copyright {
  margin: 5.5rem 0 1rem;
  color: #343434;
  font-weight: 300;
  font-size: 0.9rem;
}

@media all and (max-width: 1024px) {
  .login-layout-grid .login-bg {
    flex: 50%;
    background-image: url(/images/bg-login.jpg);
    background-size: contain;
    background-position: center;
  }

  .login-layout-grid .login-form {
    flex: 50%;
    padding: 2.5rem;
  }

  .login-button-group .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
}

@media all and (max-width: 640px) and (orientation: portrait),
  all and (max-height: 480px) and (orientation: landscape),
  all and (max-width: 768px) and (orientation: portrait) {
  .login-layout-grid {
    flex-flow: column-reverse;
    height: auto;
  }

  .login-layout-grid .login-bg {
    background-size: cover;
    background-image: url(/images/bg-login-full.jpg);
    flex: 2;
    height: 200px;
  }

  .login-layout-grid .login-form {
    flex: none;
    padding: 1rem;
  }

  .login-header-group {
    margin-top: 2rem;
  }

  .login-form .login-sub-heading {
    margin: 1.5rem 0 3rem;
  }
}

/*
    Job Search Page
 */
.underline {
  text-decoration: underline;
}

#submitButton,
.submitButton,
.form-submit-button {
  width: 100%;
  max-width: 300px;
  margin: 1em 0;
  border-radius: 0;
  background: var(--brand-green);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  border: none;
  padding: 1em 2em;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

#submitButton:hover,
.submitButton:hover,
.form-submit-button:hover {
  background: var(--brand-blue);
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--brand-blue);
}

label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-blue);
}

input[type='text'],
input[type='search'],
input[type='tel'],
input[type='email'],
input[type='password'],
input[type='date'],
input[type='number'],
input[type='url'],
textarea {
  display: block;
  border: 1px solid #90a7b2;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #343434;
  border-radius: 4px;
  padding: 0.7em;
  margin-top: 0.5em;
  background-color: white;
  width: 91%;
  max-width: 60%;
  min-width: 100px;
}

@media (max-width: 450px) {
  input[type='text'],
  input[type='search'],
  input[type='tel'],
  input[type='email'],
  input[type='password'],
  input[type='date'],
  input[type='number'],
  input[type='url'],
  textarea {
    max-width: 265px;
  }
}
.top-05 {
  margin-top: 0.5em;
}

.top-1 {
  margin-top: 1em;
}

.bottom-1 {
  margin-bottom: 1em;
}

.left-1 {
  margin-left: 1em;
}

.left-1_5 {
  margin-left: 1.5em;
}

.margin-top-1 {
  margin-top: 1em;
}

.margin-top-2 {
  margin-top: 2em;
}

.margin-top-2_5 {
  margin-top: 2.5em;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-2 {
  margin-bottom: 2em;
}

.margin-bottom-1 {
  margin-bottom: 1em;
}

.margin-bottom-2_5 {
  margin-bottom: 2.5em;
}

.margin-left-2 {
  margin-left: 2em;
}

.margin-left-1 {
  margin-left: 1em;
}

.margin-right-3 {
  margin-right: 3em;
}

.no-decorate {
  text-decoration: none;
}

.bottom-border-thin {
  border-bottom: 1px solid var(--brand-blue);
}

select {
  display: block;
  width: 100%;
  max-width: 300px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* remove default arrow */
  background-image: url('/images/drop_down_arrow.svg'); /* add custom arrow */
  background-repeat: no-repeat;
  background-position: 95% center;
  padding: 1em;
  width: 100%;
  background-size: 12px;
  border: 1px solid #90a7b2;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #343434;
  border-radius: 4px;
  background-color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.two-column {
  grid-template-columns: auto auto;
}

.two-column-100-auto {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.four-column {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.three-column {
  grid-template-columns: auto auto auto;
}

.auto-column {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.short-long-column {
  grid-template-columns: 1fr 2fr;
}

.two-column-min-first {
  grid-template-columns: min-content auto;
}

.row-gap-1 {
  grid-row-gap: 1rem;
}

.column-gap-1 {
  grid-column-gap: 1rem;
}

.column-gap-05 {
  grid-column-gap: 0.5rem;
}

.pad-lr-05 {
  padding: 0 0.5rem;
}

.pad-lr-15 {
  padding: 0 1.5rem;
}

#searchResults .searchResultsPageWrap {
  display: none;
}

#searchResults .searchResultsPageWrap.active {
  display: block;
}

#searchResults #paginationWrap {
  display: block;
}

#rightCreate {
  text-decoration: none;
}

a,
.link {
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

a:hover,
.link:hover {
  color: var(--brand-blue);
}

.sub-headline {
  font-size: 1rem;
}

.sidebar-menu__group a:hover {
  color: white;
  text-decoration: underline;
}

.btn {
  background: var(--brand-green);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-width: 250px;
  transition: background 0.5s ease 0s;
  -webkit-transition: background 0.5s ease 0s; /* Safari */
}

.btn:hover {
  background: var(--brand-blue);
  color: white;
}

.btn.btn-sm {
  font-size: 12px;
}

.btn-shrink {
  min-width: none;
}

.credits {
  padding: 0.5em 1em;
  color: var(--dark-gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.credits.good {
  background: var(--brand-green);
  color: white;
}

.credits.empty {
  background: var(--brand-yellow);
}

.plain-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

.max-width-50 {
  max-width: 50%;
}

.search-header {
  border-top: 1px solid #dfe6e8;
}

.data-row {
  display: none;
}

.data-row.activeSearchPosts {
  display: grid;
}

#previousSearchPage,
#nextSearchPage {
  visibility: hidden;
}

#previousSearchPage.active,
#nextSearchPage.active {
  visibility: visible;
}

.inline-block {
  display: inline-block;
}

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

.icon-md {
  font-size: 22px;
}

.green {
  color: var(--brand-green);
}

.red {
  color: var(--brand-red);
}

.yellow {
  color: var(--brand-yellow);
}

#modal-exit-details .modal-inner {
  padding: 1rem;
}

/*
    New Job Post
 */
form,
.searchWrap {
  width: 77%;
  margin: 0 0 0 1.5em;
}

form .grid {
  margin-top: 1em;
}

.light {
  border: 1px solid #dfe6e8;
}

.rightCreate {
  text-decoration: none;
  padding: 0.4em 1em;
  font-size: 13px;
}

/*
    Loading Overlay
 */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(50, 50, 50, 0.7);
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
}

.loading-overlay.active {
  display: flex;
}

.loading-overlay .modal-content {
  text-align: center;
}

.dots {
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: guw-bouncer 1.4s infinite ease-in-out both;
  animation: guw-bouncer 1.4s infinite ease-in-out both;
}

.dot1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.dot2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes guw-bouncer {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes guw-bouncer {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*
    New Job / Edit Job Form
 */
.company-item {
  padding: 5px;
  background-color: #fefefe;
  color: #3a3a3a;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.company-item:hover {
  background-color: #f9f9f9;
}

.company__name {
  font-weight: 700;
}

.company__email {
  font-size: 0.9rem;
  margin: 0.25rem 0;
  display: inline-block;
}

.company-item + .company-item {
  border-top: 1px solid #cccccc;
}

#jobPostForm input[type='text'],
#jobPostForm input[type='search'] {
  width: 100%;
  box-sizing: border-box;
}

#companySearchResults {
  display: none;
  border: 1px solid #cccccc;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

#companySearchResults.active {
  display: block;
}

#selectedCompany {
}

#selectedCompany .company-item-column {
  margin: 0.5rem 0.5rem 1rem;
}
/**
    New Company form
 **/
#clientSearchResults {
  display: none;
  border: 1px solid #cccccc;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

#clientSearchResults.active {
  display: block;
}

.client-item {
  padding: 5px;
  background-color: #fefefe;
  color: #3a3a3a;
  user-select: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.client-item:hover {
  background-color: #f9f9f9;
}

.client__name {
  font-weight: 700;
}

.client__email {
  font-size: 0.9rem;
  margin: 0.25rem 0;
  display: inline-block;
}

#selectedClient {
}

#selectedClient .client-item-column {
  margin: 0.5rem 0.5rem 1rem;
}

/**
    Application Form Styles
 */
.application-form,
.internal-page {
  box-shadow: 0 0 10px var(--brand-gray);
  padding: 1rem;
  max-width: 700px;
  width: 90%;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-btn {
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
  background-color: white;
  padding: 8px 20px;
  width: 100%;
  border-radius: 4px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

.upload-btn-wrapper input[type='file']:hover + .file-btn {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.upload-btn-wrapper input[type='file'] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.top-border {
  border-top: 3em solid var(--brand-blue);
}

.bottom-border {
  border-bottom: 3em solid var(--brand-blue);
}

.no-margin {
  margin: 0;
}

.main-content .application-form {
  box-shadow: none;
}

/**
    Mindset Form styles
 */
#mindsetForm {
  margin: 0;
}

.clone-add,
.clone-remove {
  color: var(--brand-green);
  font-size: 30px;
  cursor: pointer;
  transition: color 0.5s ease 0s;
  -webkit-transition: color 0.5s ease 0s; /* Safari */
}

.clone-add:hover,
.clone-remove:hover {
  color: var(--brand-blue);
}

.fa.clone-remove {
  display: none;
}

.clone-remove.active {
  display: inherit;
}

.full-width {
  width: 100%;
}

#questionsWrap {
  position: relative;
}

.score-wrap {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s; /* Safari */
}

#nextMindsetQuestion {
  opacity: 0;
  background: var(--light-gray);
  cursor: not-allowed;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

#nextMindsetQuestion.activeNextButton {
  opacity: 1;
}

#nextMindsetQuestion.completedRequirements {
  background: var(--brand-green);
  cursor: pointer;
}

#mindsetSubmit {
  background: var(--light-gray);
  cursor: not-allowed;
}

#mindsetSubmit.completedRequirements {
  background: var(--brand-green);
  cursor: pointer;
}

#nextMindsetQuestion.completedRequirements:hover,
#mindsetSubmit.completedRequirements:hover {
  background: var(--brand-blue);
}

.score-wrap.active {
  opacity: 1;
  z-index: 30;
}

.score-block {
  color: var(--brand-gray);
  width: 26px;
  border-radius: 3px;
  border: 3px solid transparent;
  display: block;
  padding: 1rem;
  margin: 0.2rem 0.2rem 0 0.2rem;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

.score-block.selected {
  transform: scale(0.9);
  border: 3px solid var(--brand-gray);
}

.score-block:hover {
  opacity: 0.6;
}

.score-section > div > p {
  font-size: 19px;
  width: 100%;
  /*opacity: 0.7;*/
  color: var(--brand-gray);
  padding: 0 0.5rem;
  font-weight: 700;
}

@media screen and (max-width: 700px) {
  .score-section > div > p {
    font-size: 15px;
  }
}

.answer-text {
  width: 100%;
  padding: 0.7em;
}

.score-section:nth-child(4) .score-block:first-child {
  margin-top: 0;
}

.score-section .right-score .score-block.disabled,
#mindsetSubmit.disabled,
#mindsetSubmit.disabled:hover {
  background: var(--light-gray);
  cursor: not-allowed;
  pointer-events: none;
}

.score-section:nth-child(3) .score-block,
.score-section:nth-child(3) .answer-text {
  background: var(--brand-pastel-green);
}

.score-section:nth-child(4) .score-block,
.score-section:nth-child(4) .answer-text {
  background: var(--brand-pastel-blue);
}

.score-section:nth-child(5) .score-block,
.score-section:nth-child(5) .answer-text {
  background: var(--brand-pastel-red);
}

.score-section:nth-child(6) .score-block,
.score-section:nth-child(6) .answer-text {
  background: var(--brand-pastel-yellow);
}

.score-section:nth-child(7) .score-block,
.score-section:nth-child(7) .answer-text {
  background: rgba(61, 174, 176, 0.6);
}

.score-section:nth-child(8) .score-block,
.score-section:nth-child(8) .answer-text {
  background: rgba(80, 122, 146, 0.6);
}

.score-section:nth-child(9) .score-block,
.score-section:nth-child(9) .answer-text {
  background: rgba(201, 54, 71, 0.61);
}

.score-section:nth-child(10) .score-block,
.score-section:nth-child(10) .answer-text {
  background: rgba(211, 186, 109, 0.6);
}

.score-section:nth-child(11) .score-block,
.score-section:nth-child(11) .answer-text {
  background: rgba(90, 198, 152, 0.6);
}

.score-section:nth-child(12) .score-block,
.score-section:nth-child(12) .answer-text {
  background: rgba(67, 83, 115, 0.6);
}

.score-section:nth-child(13) .score-block,
.score-section:nth-child(13) .answer-text {
  background: rgba(233, 147, 71, 0.61);
}

.score-section:nth-child(14) .score-block,
.score-section:nth-child(14) .answer-text {
  background: rgba(238, 225, 133, 0.6);
}

.score-section:nth-child(15) .score-block,
.score-section:nth-child(15) .answer-text {
  background: rgba(59, 175, 177, 0.6);
}

.score-section:nth-child(16) .score-block,
.score-section:nth-child(16) .answer-text {
  background: rgba(200, 55, 72, 0.61);
}

.score-section:nth-child(17) .score-block,
.score-section:nth-child(17) .answer-text {
  background: rgba(46, 171, 169, 0.61);
}

.score-section:nth-child(18) .score-block,
.score-section:nth-child(18) .answer-text {
  background: rgba(209, 183, 100, 0.6);
}

.uppercase {
  text-transform: uppercase;
}

.total {
  /*padding: 1.4rem 3.8rem;*/
  /*color: white;*/
  font-size: 30px;
  border-radius: 6px;
}

.subtotal {
  padding: 0.3rem;
  color: white;
  font-size: 22px;
  border-radius: 6px;
  width: 60px;
}

.bwd-tab-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* background: black;
	grid-gap: 1px;
	border: 1px solid black; */
}

.bwd-stat {
  color: black;
  font-weight: bold;
  font-size: 22px;
  margin-left: 5px;
}

.bwd-stat--container {
  background: white;
}

.score-right {
  width: 30%;
}

.mindset-score-arrow-lg {
  font-size: 40px;
}

.mindset-score-arrow-sm {
  font-size: 25px;
}

/* Mindset Score styles */

.score-1-3,
.total-25 {
  background-color: var(--brand-pastel-blue);
  color: rgba(255, 255, 255, 0.7);
}

.score-4-6,
.total-50 {
  background-color: var(--brand-pastel-red);
  color: rgba(255, 255, 255, 0.7);
}

.score-7-9,
.total-75 {
  background-color: var(--brand-pastel-yellow);
  color: rgba(255, 255, 255, 0.7);
}

.score-10-12,
.total-100 {
  background-color: var(--brand-pastel-green);
  color: rgba(255, 255, 255, 0.7);
}

.icon-lg {
  font-size: 40px;
}

.hover-opacity {
  transition: opacity 0.5s ease 0s;
  -webkit-transition: opacity 0.5s ease 0s; /* Safari */
}

.hover-opacity:hover {
  opacity: 0.5;
}

.notice {
  font-size: 14px;
  margin: 20px 0;
  max-width: 400px;
}

@media screen and (max-width: 600px) {
  .mobile-block {
    display: block;
  }

  .mobile-block .score-right {
    width: 100%;
  }

  .mobile-block .mindset-score-arrow-lg {
    text-align: center;
    width: 100%;
    transform: rotate(90deg);
  }

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

/* Applicant Styles */
.half-flex {
  width: 49%;
}

.one-third-flex {
  width: 33%;
}

.one-quarter-flex {
  width: 25%;
}

.icon {
  text-align: left;
  padding: 0.5em 1em;
  background: white;
  color: var(--brand-gray);
  border: 1px solid var(--brand-gray);
  border-radius: 4px;
  /*max-width: 30%;*/
  margin-top: 0;
}

.two-column-1-97 {
  grid-template-columns: 1fr 97fr;
}

.max-width-30 {
  max-width: 30%;
}

.applicant-info-container .btn {
  display: inline-block;
  font-size: 14px;
}

.applicant-info-top {
  margin: 1em 3em 1em 1em;
}

.applicant-notes {
  margin: 1em;
  flex: 1;
  /*max-width: 50%;*/
}

.applicant-note-history {
  padding: 20px;
  background-color: #fafafa;
  margin: 0 0 1em;
  overflow-y: scroll;
  height: 150px;
}

.applicant-new-note form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.applicant-new-note textarea {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 1em;
  /*height: 80px;*/
  resize: vertical;
}

/* Profile Styles */
.member {
  color: var(--brand-gray);
  background: var(--brand-yellow);
  padding: 0.5em 1em;
  margin: 0 0 0 0.7em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#cardUpdateAlert {
  display: none;
  padding: 1em 2em;
  width: 40%;
  text-align: center;
}

#cardUpdateAlert.success {
  background: var(--brand-pastel-green);
  color: var(--dark-gray);
}

#cardUpdateAlert.fail {
  background: var(--brand-yellow);
  color: var(--dark-gray);
}

.five-column {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.five-column.auto {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@-webkit-keyframes in {
  0% {
    -webkit-transform: scale(0) rotate(12deg);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes in {
  0% {
    transform: scale(0) rotate(12deg);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes out {
  0% {
    -webkit-transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    -webkit-transform: scale(0) rotate(-12deg);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes out {
  0% {
    transform: scale(1) rotate(0);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: scale(0) rotate(-12deg);
    opacity: 0;
    visibility: hidden;
  }
}

#cardUpdateAlert.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}

#cardUpdateAlert.hide {
  -webkit-animation: out 700ms ease both;
  animation: out 700ms ease both;
}

/* Confirm Styles */
.confirmWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 50, 50, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.confirmInner {
  width: 30%;
  background: white;
  padding: 2em;
  box-shadow: 0 0 10px var(--brand-green);
}

.no-scroll {
  overflow: hidden;
}

.confirmHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--dark-gray);
  padding-bottom: 1em;
}

.confirmHeader h3 {
  margin: 0;
  padding: 0;
}

i.confirmClose {
  font-size: 26px;
  color: var(--brand-red);
  cursor: pointer;
  transition: color 0.5s ease 0s;
  -webkit-transition: color 0.5s ease 0s; /* Safari */
}

.confirmClose:hover {
  color: var(--brand-blue);
}

.confirmFooter {
  border-top: 2px solid var(--dark-gray);
  padding-top: 1em;
}

.confirmFooter #cancel {
  background: var(--light-gray);
  padding: 1em 2em;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-right: 1em;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
}

.confirmFooter #confirmAction {
  background: var(--brand-green);
  padding: 1em 2em;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: white;
  cursor: pointer;
  transition: background-color 0.5s ease 0s;
  -webkit-transition: background-color 0.5s ease 0s; /* Safari */
}

.confirmFooter #cancel:hover {
  background-color: var(--dark-gray);
  color: white;
}

.confirmFooter #confirmAction:hover {
  background-color: var(--brand-blue);
}

@media screen and (max-width: 1000px) {
  .mobile-block-1000 {
    display: block;
  }

  .mobile-block-1000 .applicant-score-wrap {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 760px) {
  .applicant-score-wrap .mobile-block {
    display: block;
  }

  .applicant-score-wrap .mobile-block .mindset-score-arrow-lg {
    text-align: center;
    width: 100%;
    transform: rotate(90deg);
  }

  .applicant-score-wrap .mobile-block .max-width-30 {
    max-width: 100%;
  }

  .applicant-info-top {
    display: block;
  }
}
