/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 table {
    font-family: "Poppins";
    width: 100%;
    margin-bottom: 2.618em;
    border-collapse: collapse;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  .job-detail-container{
    max-width: 1200px;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
  }
  .job-detail-container .nb-row h3 {
    text-align: center;
  }
  .job-detail-container .nb-row p {
    text-align: center;
  }
  .job-detail{
    display: flex;
    flex-direction: column;
  }
  .job-detail > .nb-input-wrap {
    text-align: left;
    width: 100%;
  }
  #add_candidate_form label {
    font-weight: inherit;
    font-size: inherit;
  }
  .talent-acquisition-job-title{
    border-left: 2px solid transparent;
  }
  .talent-acquisition-job-title:hover{
    border-left: 2px solid #2D2D2D;
  }
  
  #submit_application_btn {
    margin-top: 20px;
  }
   /* Styling for all pagination links */
  .pagination a {
    display: inline-block !important;
    padding: 5px 10px !important;
    margin-right: 5px !important;
    text-decoration: none !important;
    color: #000 !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
  }
   /* Styling for active pagination link */
  .pagination a.active {
    background-color: #2D2D2D !important;
    color: #fff !important;
    border-color: #2D2D2D !important;
  }

  form input[type=number] {
    max-width: 100% !important;
  }
  .error{
    color: red !important;
    font-size: 12px !important;
  }
.nb-input-wrap {
  box-sizing: border-box;
  margin-bottom: 20px;
  
}

/* Clear floats after the columns */

.nb-row:after {
  content: "";
  display: table;
  clear: both;
}
#submit_application_btn{
	display: block;
    margin: 0 auto;
}
#add_candidate_form label{
	display:block;
}
.nb-row {
  width: 80%;
  margin: 0 auto;
}
.job-title-container strong{
	float:right;
	padding-top:22px;
}
.job-title-container{
	margin-top:20px;
}

@media only screen and (max-width: 768px) {
  .job-title-container {
    display: flex !important;
    flex-direction: column !important;
  }
}