.wttj-header {
	display: inline-flex;
	align-items: center;
}

.contract-select {
	position: relative;
    display: flex;
    width: 12em;
    height: 2.5em;
    overflow: hidden;
    border-width: 2px;
    border-radius: 5px;
    border-color: #999999;
    padding: 0 1em;
    background-color: #ffffff;
    cursor: pointer;
	margin-top: 20px;
	margin-bottom: 30px;
	font-size: 16px;
}

.wttj-powered-by {
	position: absolute;
	display: flex;
	right:20px;
	align-items: center;
}

#wttj-powered-by-label {
	margin-right: 15px;
    font-family: montserrat light;
    font-size: 14px;
}

#wttj-powered-by-logo {
	width: 110px;
}

@media (max-width:767px) {
	.contract-select {
		font-size: 13px;
	}
	
	.wttj-powered-by {
		flex-direction: column;
		align-items: flex-end;
		width: 40%;
	}
	
	#wttj-powered-by-label {
		font-size: 11px;
		margin-right:0px;
		margin-bottom: 5px;
	}

	#wttj-powered-by-logo {
		width: 70px;
	}
	
}

.wttj-job-listing * {
    box-sizing: border-box;
}

.wttj-job-listing .wttj-job-preview {
	position: relative;
	background-color: #ebecee;
	border: 2px solid #e9e9e9;
    border-radius: 4px;
    margin-bottom: 15px;
    display: table;
    width: 100%;
	transition: 0.2s ease-out;
}

.wttj-job-listing .wttj-job-preview .wttj-job-content {
	display: table-cell;
    height: 100%;
    padding: 15px 10px 15px 25px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wttj-job-listing .wttj-job-preview .wttj-job-content h5 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
    color: black;
    margin: 0 0 10px;
}

.wttj-job-listing .wttj-job-preview .wttj-job-content .wttj-job-additional-information {
	display: block;
    margin-top: -5px;
    font-size: 14px;
    line-height: 26px;
    color: #373737;
    font-weight: 500;
}

.wttj-job-listing .wttj-job-preview .wttj-job-content .wttj-job-additional-information .wttj-published-at {
	font-size: 12px;
	font-weight: 300;
	font-style: italic;
	line-height: 15px;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta {
    display: table-cell;
    text-align: right;
    width: 35%;
    height: 100%;
    vertical-align: middle;
    padding: 15px 25px 15px 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn {
	background-color: #2558a5;
    padding: 15px 50px;
    border-bottom: 50px;
	border-radius: 10px;
    transition: all 0.6s ease;
    display: flex;
	align-items: center;
	justify-content: center;
    text-align: center;
	margin: 0px auto;
    width: 80%;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn span{
	font-family: montserrat;
    font-size: 16px;
	font-weight: 500;
    line-height: 22px;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
	position: absolute;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover span {
    -webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover .wttj-job-cta-label {
    -webkit-transform: translateX(-40%);
	transform: translateX(-40%);
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover .wttj-job-cta-label-navbar {
    -webkit-transform: translateX(-30%);
	transform: translateX(-30%);
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn .wttj-icon {
	position: relative;
    left: 35%;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn .wttj-icon-navbar {
	position: relative;
    left: 65%;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn .wttj-icon-navbar-mobile {
	position: relative;
    left: 15%;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn img {
	width: 30px;
    transform: scale(0);
    opacity: 0;
	transition: all 0.25s ease-out;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover img {
    transform: scale(1.0);
    opacity: 1.0;
}

.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover {
	background-color: #009d5c;
}

@media (max-width: 639px) {
	.wttj-job-listing .wttj-job-preview {
		display: block;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-content {
		display: block;
		padding-bottom: 0;
		padding: 15px 25px 0px 25px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-content h5 {
		font-size: 16px;
		line-height: 20px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-content .wttj-job-additional-information {
		font-size: 12px;
		line-height: 20px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta {
		display: block;
		width: 100%;
		padding: 15px 25px 15px 25px;
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn {
		margin: 0 auto;
		padding: 10px 0px;
		width: 65%;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn span {
		font-size: 13px;
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover span{
		-webkit-transform: translateX(-25%);
		transform: translateX(-25%);
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn img{
		left: 30%;
		width: 25px;
	}
}

@media (min-width: 640px) and (max-width: 768px) {
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta  {
		padding: 15px 0px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn  {
		padding: 15px 5px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn span {
		font-size: 14px;
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover span{
		-webkit-transform: translateX(-25%);
		transform: translateX(-25%);
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn img{
		left: 35%;
		width: 25px;
	}
}

@media (min-width: 769px) and (max-width: 979px) {
	.wttj-job-listing .wttj-job-preview .wttj-job-content h5 {
		font-size: 18px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta  {
		padding: 15px 0px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn  {
		padding: 15px 5px;
	}
	
	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn span {
		font-size: 14px;
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn:hover span{
		-webkit-transform: translateX(-30%);
		transform: translateX(-30%);
	}

	.wttj-job-listing .wttj-job-preview .wttj-job-cta .apply-btn img{
		left: 50px;
		width: 27px;
	}
}


.wttj-job-listing .wttj-no-jobs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: auto;
	/* height: 100px; */
	padding: 25px;
	margin-bottom: 0px;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message .wttj-prefix {
	margin-right: 10px;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message .wttj-finger {
	font-size: 24px;
	margin-right: 10px;
	margin-left: 10px;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message a {
    position: relative;
    /* display: inline-block; */
	display: flex;
    justify-content: center;
    text-decoration: none; /* Remove the underline from the link */
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-right: 5px;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message a span{
	position: absolute;
	top: 0;
	font-family: montserrat;
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-uicore_dark );
    text-transform: uppercase;
    text-decoration: none;
	transition-delay: 0.25s;
    transition: opacity 0.5s; /* Add a transition for a smoother effect */
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message a img {
    visibility: hidden;
	width: 30px;
	transform: scale(0);
    opacity: 0;
	transition: 0.3s;
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message a:hover img {
    visibility: visible;
    opacity: 1;
	transform: scale(1.0);
}

.wttj-job-listing .wttj-no-jobs .wttj-no-jobs-message a:hover span {
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 639px) {
	.wttj-job-listing .wttj-no-jobs {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		height: auto;
		padding: 25px;
		margin-bottom: 0px;
	}
}

@media (min-width: 640px) and (max-width: 768px) {

}

@media (min-width: 769px) and (max-width: 979px) {

}