/* Submit div */
.jb-submit {
	margin-bottom: 10px;
}

.jb-submit:after {
	content: "";
	clear: both;
	display: table;
}

/* Searchbar */
#jb-searchbar {
	width: 80%;
	height: 47px;
        font-size: 14px;
}

/* Submit button */
#jb-submitbutton {
	float: right;
	width: 19%;
	height: 47px;
        font-size: 14px;
	color: #254697;
	background-color: #fff;
	border-width: 1px;
	border-color: #254697;
	border-radius: 0px;
	padding: 8px 15px;
	transition: all .2s;
}

#jb-submitbutton:hover {
	color: #fff;
	background-color: #254697;
}

@media screen and (max-width: 915px) {
	#jb-searchbar {
		width: 100%;
		margin-bottom: 5px;
	}

	#jb-submitbutton {
		float: none;
		width: 100%;
	}
}

/* Filter warning div */
#jb-filters {
	border: 1px solid transparent; 
	transition: all .3s;
}

.jb-filter-warning {
	border: 1px solid red !important;
	background-color: rgba(255,0,0,.3);
}

/* Filter toggle button */
.jb-filter-toggle {
	position: relative;
	cursor: pointer;
	width: intrinsic; /* browser support max-content */
	width: -moz-max-content; /* browser support max-content */
	width: -webkit-max-content; /* browser support max-content */
	width: max-content;
}

.jb-filter-toggle-text {
	display: inline-block;
	margin-left: 10px;
	padding-right: 6px;
	font-size: 14px;
	color: #254697;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}

.jb-filter-toggle-arrow {
	border-color: #254697 transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	width: 0;
	height: 0;
	margin-left: -2px;
	top: 50%;
	margin-top: -2px;
	position: absolute;
}

/* Filter checkboxes */
#jb-filter-container {
	display: none;
	margin-bottom: 6px;
	font-size: 13px;
	margin-left: 6px;
	column-count: 3;
	column-width: 200px;
	/*max-width: max-content;*/
	width: 100%;
}

@media screen and (max-width: 915px) {
	#jb-filter-container {
		column-width: auto;
		column-count: 1;
	}
}

.jb-filter-checkbox {
}

.jb-filter-checkbox label {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}

.jb-filter-checkbox input {
}

.jb-filter-checkbox input:checked + label {
}

/* Table */
#jb-table {
	border-collapse: collapse;
	width: 100%;
}

#jb-table td, #jb-table th {
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #254697;
	overflow-wrap: break-word;
        word-wrap: break-word;
}

#jb-table tr:hover:not(.jb-tablehead) {
	color: #fff;
	background-color: #254697;
}

.jb-responsive {
	overflow-x:auto;
}

@media screen and (max-width: 700px) {
	#jb-table, #jb-table tr, #jb-table td {
		padding: 0;
	}

	#jb-table {
		border: none;
		margin-top: 1em;
	}

	#jb-table thead {
		display: none;
	}

	#jb-table tr {
		float: left;
		width: 100%;
		margin-bottom: 1em;
	}

	#jb-table td {
		position: relative;
		float: left;
		width: 100%;
		padding: .2em;
		padding-left: 50%;
	}

	#jb-table td:first-child {
		background-color: #254697;
		color: white;
	}

	#jb-table td:before {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		content: attr(data-label);
		word-wrap: break-word;
		width: 45%;
		float: left;
		padding: .2em .2em .2em .5em;
		font-weight: bold;
	}
}

/* Modal */
.jb-job {
        cursor: pointer; 
        transition: all .2s;
}

#jb-modal {
        display: none;
        position: fixed;
        z-index: 100001;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.4);
}

.jb-modal-content {
	margin: auto;
	display: block;
        width: 80%;
        max-width: 700px;
        box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
        margin: auto;
        background-color: #fff;
        position: relative;
        padding: 0;
        outline: 0;
        animation: opac 0.8s;
}

@keyframes opac {
        from {opacity: 0}
        to {opacity: 1}
}

.jb-modal-header {
        padding: 0.01em 16px;
        color: #fff !important;
        background-color: #c71621 !important;
}

.jb-modal-header h2 {
	color: #fff !important;
	margin: 0.83em 0 0.83em 0;
	font-size: 1.5em !important;
}

.jb-modal-header a {
	position: absolute;
	right: 16px;
	top: 18.6833px;
	background-color: #fff;
	color: black !important;
	padding: 5px;
	font-weight: bold;
}

.jb-modal-bar {
        padding: 0.01em 16px;
        width: 100%;
        overflow: hidden;
        padding: 16px;
}

.jb-modal-bar div {
        width: 50%;
        float: left;
}

.jb-modal-bar div h4 {
	color: #000;
	font-size: 1em;
	margin: 0;
}

.jb-modal-description {
        padding: 16px;
        border-top: 1px solid #ccc !important;
}

.jb-modal-description p {
	margin: 0 !important;
	color: #000;
}

.jb-modal-description p p {
        margin: 0 0 10px 0;
}

.jb-modal-description p p:last-child {
        margin: 0;
}

#jb-modal-close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
}

#jb-modal-close:hover, #jb-modal-close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
        .jb-modal-content {
        	width: 100%;
        }
}

/* Modal color-dots */
#jb-modal-green-dot {
        height: 10px;
        width: 10px;
        background-color: green;
        border-radius: 100%;
        display: inline-block;
}
 
#jb-modal-yellow-dot {
        height: 10px;
        width: 10px;
        background-color: orange;
        border-radius: 100%;
        display: inline-block;
}
 
#jb-modal-red-dot {
        height: 10px;
        width: 10px;
        background-color: red;
        border-radius: 100%;
        display: inline-block;
}
