/* 
  Date : 14 Agustus 2024
  Template Job Vacancy
  Created by IT Programmer Govindo Group
*/

@font-face {
  font-family: "Montserrat";
  src: url("Montserrat-Regular.otf") format('opentype');
  font-weight: normal;
}

/* Part::Variable */
:root {
  /* Color */
  --color-primary: #4D485B;
  --color-secondary: #EBEBF1;
  --color-black: #1E1E1E;
  --color-white: #ffffff;
  /* --------------------------------------- */
  /* Font */
  --brand-font-1: "Montserrat", sans-serif;
  /* --------------------------------------- */
  /* IMG */
  --img: "";
  /* --------------------------------------- */
}

/* ------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-secondary);
  scroll-behavior: smooth;
  height: auto;
}
body.disabled {
  height: 100vh;
  overflow: hidden;
}

.navbar.bg-light {
  background-color: var(--color-white) !important;
  transition: .8s;
  box-shadow: none;
}
.navbar.scroll {
  transition: .8s;
  box-shadow: 0px 1px 10px #1E1E1E5e;
}
.navbar-brand {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.navbar-brand img {
  max-width: 180px;
  object-fit: contain;
}
.navbar-brand span {
  font-family: var(--brand-font-1);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
}
.wrap-list-card {
  gap: 30px;
}
.list-card {
  background-color: var(--color-white);
  padding: 10px;
  font-family: var(--brand-font-1);
}

.list-card .header-card {
  margin-top: 15px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 10px 5px;
  border-radius: 8px;
  border: 1px solid var(--color-secondary);
  position: relative;
  gap: 15px;
}
.list-card .header-card img {
  width: 40px;
  height: 40px;
}

.list-card .header-card .wrap-title-job {
  display: flex;
  flex-direction: column;
  line-height: 18px;
  width: 100%;
}
.list-card .header-card .wrap-title-job span:nth-child(1) {
  font-weight: 400;
  font-size: 12px;
}
.list-card .header-card .wrap-title-job span:nth-child(2) {
  font-weight: 700;
  font-size: 15px;
}
.list-card .header-card .wrap-title-job span:nth-child(3) {
  font-weight: 500;
  font-size: 13px;
}

.list-card .detail-card {
  margin-top: 5px;
  width: 100%;
  font-family: var(--brand-font-1);
  font-size: 12px;
  padding: 5px 15px;
}


/* ::result-page */
.greeting-user {
  font-size: 14px;
  font-weight: 500;
}
table {
  width: 100%;
}
table tr td:first-child{
  min-width: 90px;
  vertical-align: top;
}
table tr td:nth-child(1){
  vertical-align: top;
  white-space: nowrap;
}
table tr td:nth-child(3), table tr td:nth-child(2){
  vertical-align: top;
}
.progress-bar {
  background-color: var(--color-primary);
}
.wrap-progress {
  margin: 25px 0 35px;
  position: relative;
}
.wrap-progress .checkpoint {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 4vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
.wrap-progress .checkpoint div {
  position: relative;
  width: calc(4vw + 15px);
  height: calc(4vw + 15px);
  border-radius: 100%;
  background-color: var(--color-secondary);
}
.wrap-progress .checkpoint div.not-qualify {
  background-color: #fb3232;
}
.wrap-progress .checkpoint div.archived {
  background-color: orange;
}
.wrap-progress .checkpoint div.active {
  background-color: var(--color-primary);
}

#id-onProcess::after {
  content: "On Process";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  /* width: 80px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  font-family: var(--brand-font-1);
  font-family: 400;
  font-weight: 14px;
  white-space: nowrap;
}
#id-onProcess.archived::after {
  content: "Archived";
}
#id-qualify::after {
  content: "Qualified";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  /* width: 80px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  font-family: var(--brand-font-1);
  font-family: 400;
  font-weight: 14px;
  white-space: nowrap;
}
#id-qualify.not-qualify::after {
  content: "Not Qualify";
  color: #fb3232;
}
#id-interview::after {
  content: "Interview";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  /* width: 80px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  font-family: var(--brand-font-1);
  font-family: 400;
  font-weight: 14px;
  white-space: nowrap;
}
#id-interview.not-qualify::after {
  content: "Failed Job Interview";
  color: #fb3232;
}
#id-joined::after {
  content: "Joined";
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  /* width: 80px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  font-family: var(--brand-font-1);
  font-family: 400;
  font-weight: 14px;
  white-space: nowrap;
}
#id-joined.not-qualify::after {
  content: "Failed to Join";
  color: #fb3232;
}

/* ::desktop */
@media screen and (min-width: 992px) {
  .list-card {
    border-radius: 10px;
    padding: 18px;
  }
  .list-card .header-card {
    margin-top: 0;
    gap: 15px;
  }
  .list-card .header-card img {
    width: 60px;
    height: 60px;
  }
  .list-card .header-card .wrap-title-job {
    line-height: 22px;
  }
  .list-card .header-card .wrap-title-job span:nth-child(1) {
    font-size: 14px;
  }
  .list-card .header-card .wrap-title-job span:nth-child(2),
  .list-card .header-card .wrap-title-job span:nth-child(3) {
    font-size: 18px;
  }
  .list-card .detail-card .period,
  .list-card .detail-card {
    font-size: 14px;
  }
  .wrap-progress .checkpoint div {
    width: calc(40px);
    height: calc(40px);
  }
}

