a:active,a:focus{
	outline: none;
}

.bluebtn{
  font-size:12px;
}
.btn-blue{
	background-color: #15284C;
	color:#fff;
}
.btn-disabled{
	background-color: #eee;
	color:#a2a0a0;
}
.employer-table{
  font-size: 12px;
}
.tableheader{
  font-size: 14px;
}
.navlink a{
  margin-right:5px;
}

.navlink{
  margin-bottom: 10px;
}

.seperator{
	border-right: 1px solid;
	height: 20px;
	margin-top: 10px;
}

.job-card{
	/* height:200px;
	padding:10px 80px; */
	min-height:200px;
	padding:10px 20px;
}

.signupcard{
	cursor: pointer
}
.signupcard div label{
	cursor: pointer
}
.nav-item{
	font-size: 12px;
}

#application_form .modal-content{
	padding: 0 30px;
}

.training-request .card{
	margin-bottom: 20px
}

.application-card{
	margin-bottom: 20px
}

.interview-form .form-input{
	margin:30px 0;
}
.interview-form .slot{
	text-align: left !important;
}

/* Custom Checkbox */
.container_checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: -8px;
}
.container_checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark_checkbox {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #e4e4e4;
	border: 1px solid #b4b4b4;
    border-radius: 2px;
}
.container_checkbox:hover input ~ .checkmark_checkbox {
	background-color: #ccc;
}
.container_checkbox input:checked ~ .checkmark_checkbox {
	background-color: #15284c;
}
.checkmark_checkbox:after {
	content: "";
	position: absolute;
	display: none;
}
.container_checkbox input:checked ~ .checkmark_checkbox:after {
	display: block;
}
.container_checkbox .checkmark_checkbox:after {
	left: 8px;
	top: 3px;
	width: 7px;
	height: 15px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}