/* ========================================================================
	CSS DONE BY		: NCS
	LAST UPDATED ON	:
======================================================================== */

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ====================================
	COLOR
==================================== */

:root {
	--color-border-lt-grey: #CCC;
	--font-color-carousel: #CCC;
}

.text-primary-blue {
	color: var(--color-primary);
}
.text-dark-blue {
	color: var(--color-dk-blue);
}
.text-secondary-blue {
	color: var(--background-dk-cyan);
}
.text-purple {
	color: var(--background-purple);
}
.text-passion-pink {
	color: var(--color-passion-pink);
}
.text-ncs-blue {
	color: var(--color-ncs-blue);
}
.text-grey-1 {
	color: var(--color-border-primary);
}
.text-grey-2 {
	color: var(--font-color-primary);
}
.text-grey-3 {
	color: var(--color-border-lt-grey);
}
.text-grey-4 {
	color: var(--background-grey);
}
.text-grey-5 {
	color: var(--color-bordered-bg);
}
.text-grey-6 {
	color: var(--background-lt-grey);
}
.text-black {
	color: #000;
}

.bg-primary-blue {
	background-color: var(--color-primary);
}
.bg-dark-blue {
	background-color: var(--color-dk-blue);
}
.bg-cyan {
	background-color: var(--background-cyan);
}
.bg-secondary-blue {
	background-color: var(--background-dk-cyan);
}
.bg-purple {
	background-color: var(--background-purple);
}
.bg-lime-green {
	background-color: var(--background-green);
}
.bg-orange {
	background-color: var(--color-orange);
}

.bg-grey-1 {
	background-color: var(--color-border-primary);
}
.bg-grey-2 {
	background-color: var(--font-color-primary);
}
.bg-grey-3 {
	background-color: var(--color-border-lt-grey);
}
.bg-grey-4 {
	background-color: var(--background-grey);
}
.bg-grey-5 {
	background-color: var(--color-bordered-bg);
}
.bg-grey-6 {
	background-color: var(--background-lt-grey);
}
.bg-black {
	background-color: #000;
}

.fs-bigger {
	font-size: 8em;
}

.mw-600 {
	max-width: 600px;
}

/* ====================================
	HEADER - ADJUSTMENT
==================================== */

/*header {
	border-bottom: 1px solid #F0F0F0;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}*/

/* ====================================
	FOOTER - ADJUSTMENT
==================================== */

@media (max-width: 991.98px) {
	footer .social-bar.split-row  {
		display: flex;
		flex-direction: column;
	}
	footer .social-bar.split-row div a {
		margin: 1rem;
	}
}

@media (min-width: 992px) {
	footer .social-bar {
		grid-column: 3 / -1;
	}
	footer .social-bar.split-row div {
		display: flex;
		column-gap: 2em;
	}
}

/* ====================================
	PARTNERS - COMBINED
==================================== */

.partners-box.all-partners {
	column-gap: 0;
	row-gap: 0;
	position: relative;
}
.partners-box.all-partners::after {
	content: '';
	position: absolute;
	display: block;
	bottom: calc(-.675rem / 2);
	left: 0;
	right: 0;
	width: auto;
	height: .675rem;
	background-color: #FFF;
	z-index: 2;
}
.partner-single-holder {
	position: relative;
	padding: 1.5rem 1rem;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 12.5rem;
}
.partner-single-holder::before {
	content: '';
	position: absolute;
	width: 2rem;
	height: 2rem;
	background-color: #FFF;
	bottom: -1rem;
	right: -1rem;
	display: block;
	z-index: 1;
}
.partner-single-holder::after {
	content: '';
	position: absolute;
	width: calc(.5rem + 1px);
	height: calc(.5rem + 1px);
	bottom: -5px;
	right: -5px;
	background-color: #CCC;
	border-radius: 50%;
	z-index: 2;
}

@media (min-width: 992px) {
	.partners-box.all-partners {
		grid-template-columns: repeat(5, 1fr);
	}
	.partners-box.all-partners .partner-single-holder:nth-child(5n) {
		border-right-width: 0;
	}
	.partners-box.all-partners .partner-single-holder:nth-child(5n)::before,
	.partners-box.all-partners .partner-single-holder:nth-child(5n)::after {
		display: none;
	}
}

@media  (min-width: 768px) and (max-width: 991.98px) {
	.partners-box.all-partners .partner-single-holder:nth-child(3n) {
		border-right-width: 0;
	}
	.partners-box.all-partners .partner-single-holder:nth-child(3n)::before,
	.partners-box.all-partners .partner-single-holder:nth-child(3n)::after {
		display: none;
	}
}

@media (max-width: 767.98px) {
	.partners-box.all-partners .partner-single-holder:nth-child(3n) {
		border-right-width: 1px;
	}
	.partners-box.all-partners .partner-single-holder:nth-child(2n) {
		border-right-width: 0;
	}
	.partners-box.all-partners .partner-single-holder:nth-child(2n)::before,
	.partners-box.all-partners .partner-single-holder:nth-child(2n)::after {
		display: none;
	}
	/*.tabs-holder .partners-box.all-partners {
		margin-top: 3rem;
	}*/
}
/* ====================================
    PARTNERS - BADGE
==================================== */

.partner-badge-logo-wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.partner-badge {
	margin-bottom: 1.5rem;
}

.partner-badge img {
	height: 32px;
	width: auto;
	margin-right: 8px;
}

.partner-badge span {
	font-size: 0.875rem;
	line-height: 32px;
}

.partner-badge-gold span {
	color: #002158;
}

.partner-badge-platinum span {
	color: #00ACFF;
}

/* ====================================
	TABS - GENERAL
==================================== */

.tabs-holder .nav-pills .nav-link {
	border-radius: 0;
	font-size: var(--h4-size-mobile);
	color: var(--color-dk-blue);
	padding-left: 2rem;
	padding-right: 2rem;
}

.tabs-holder .nav-pills .nav-link.active, 
.tabs-holder .nav-pills .show > .nav-link {
	background: none;
	color: var(--color-unity-indigo);
	border-bottom: .375rem solid var(--color-unity-indigo);
	font-weight: 600;
}

.section .header + .tabs-holder {
	margin-top: 5rem;
}


@media (min-width: 768px) {
	.tabs-holder .nav-pills .nav-item + .nav-item {
		margin-left: 2rem;
	}
}

@media (max-width: 767.98px) {
	.tabs-holder .nav-pills .nav-link {
		padding-left: 1.125rem;
		padding-right: 1.125rem;
		font-size: var(--h6-size-mobile);
	}
	.section .header + .tabs-holder {
		margin-top: 3rem;
	}
}

/* ====================================
	IMAGE AND TEXT CARD COMPONENT
==================================== */

.image-text-card-single-component {
	border: 0;
	border-radius: 0;
	background: none;
	height: 100%;
}
.image-text-card-single-component > .card-img {
	width: 100%;
	max-width: 25rem;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0;
	padding: 1rem 0;
}
.image-text-card-single-component > .card-img > img {
	height: 10rem;
	display: inline-block;
}
.image-text-card-single-component > .card-body:not(:last-child) {
	padding-bottom: 0;
}
.image-text-card-single-component > .card-footer {
	background: none;
	border: none;
}
.image-text-card-single-component > .card-img.text-overlay-img {
	height: 100%;
}
.image-text-card-single-component > .card-img.text-overlay-img > img {
	max-width: 100%;
	height: auto;
}
.image-text-card-single-component > .card-img.text-overlay-img > div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.image-text-card-single-component > .card-img.text-overlay-img > div h6 {
	margin-bottom: 0;
}

@media (max-width: 1599.98px) {
	.image-text-card-single-component > .card-img {
		max-width: calc(15rem + 8vw);
	}
}

/* ====================================
	ARTICLE DETAILS -  RIGHT NAV
==================================== */

.article-sticky-section {
	margin-bottom: 1.5rem;
}
.article-sticky-section + .article-sticky-section {
	border-top: 1px solid var(--color-border-lt-grey);
	border-color: var(--color-primary);
	padding-top: 1.5rem;
}
.article-share.sticky .article-sticky-section p > span {
	font-size: 0.875em;
}
.article-share.sticky .article-sticky-section .share-icons {
	display: block;
	border: 0;
	padding: 0;
}

.article-share.sticky .article-sticky-section .share-icons-title {
	text-align: center;
}

.article-share .article-sticky-section .share-icons .share-icons-item {
	margin: 0 1rem;
	color: var(--color-dk-blue);
	border-color: var(--color-dk-blue);
}
.article-share .article-sticky-section .share-icons .share-icons-item:hover {
	/*background-color: var(--color-primary);*/
	background-color: var(--color-dk-blue);
	color: #FFF;
}
.article-share .article-sticky-section .article-listing {
	margin-top: 0;
}

.article-sticky-section.d-flex > div + div {
	margin-left: 1rem;
}
.article-sticky-section.d-flex > div > img {
	max-width: 5rem;
}

@media (min-width: 992px) {
	.article-share.sticky .article-sticky-section .share-icons-title {
		text-align: left;
	}

	.article-share .article-sticky-section .share-icons .share-icons-item {
		margin-left: 0;
		margin-right: 1rem;
	}
}

@media (min-width: 1200px) {
	.article-sticky-section.d-flex > div + div {
		margin-left: 1.5rem;
	}
	.article-sticky-section.d-flex > div > img {
		max-width: 6.25rem;
	}
}

@media (min-width: 1600px) {
	.article-share.sticky {
		max-width: 20rem;
	}
}

/* ====================================
	ARTICLE DETAILS - 
	CONTENT SPECIFIC
==================================== */

#article h1,
#article h2,
#article h3,
#article h4,
#article h5,
#article h6 {
	text-transform: none;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

#article h1 {
	font-size: calc(1.375rem + 1.5vw);
}
#article h2 {
	font-size: calc(1.325rem + 0.9vw);
}
#article h3 {
	font-size: calc(1.3rem + 0.6vw);
}
#article h4 {
	font-size: calc(1.275rem + 0.3vw);
}
#article h5 {
	font-size: 1.25em;
}
#article h6 {
	font-size: 1em;
}

@media (min-width: 1200px) {
	#article h1 {
		font-size: 2.5em;
	}
	#article h2 {
		font-size: 2em;
	}
	#article h3 {
		font-size: 1.75em;
	}
	#article h4 {
		font-size: 1.5em;
	}
}

/* ====================================
	MILESTONES
==================================== */

.milestones .swiper {
	overflow: visible;
	width: 80%;
	max-width: 1088px;
	margin-left: auto;
	margin-right: auto;
}
.milestones .image-container .img-circle {
	position: relative;
}
.milestones .image-container .img-circle img {
	width: 100%;
	height: 100%;
	object-fit: none;
	object-position: unset;
}
.slide-inner.card {
	border-radius: 0;
	border: 0;
	background: none;
}
.slide-inner.card:hover {
	cursor: grab;
}
.slide-inner.card:active {
	cursor: grabbing;
}
.slide-inner.card .card-img {
	display: flex;
	justify-content: center;
	position: relative;
}
.slide-inner.card .card-img::after {
	content: '';
	position: absolute;
	/*border-top: 1px dashed #707070;*/
	left: 0;
	right: 0;
	top: 50%;
	width: auto;
	height: 2px;
	margin-top: -1px;
	background-image: linear-gradient(to right, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0) 0%);
    background-position: bottom;
    background-size: 8px 8px;
    background-repeat: repeat-x;
}
.swiper-wrapper .swiper-slide:first-child .card-img::after {
	left: 50%;
}
.swiper-wrapper .swiper-slide:last-child .card-img::after {
	right: 50%;
}

.slide-inner.card .imagefill-holder {
	overflow: hidden;
	position: relative;
	/*width: 360px;
	height: 360px;*/
	width: 240px;
	height: 240px;
	border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: .5s;
	transform: scale(0.25);
	background-color: #FFF;
	z-index: 2;
}

.milestones .swiper-slide-active .slide-inner.card .imagefill-holder {
	border-color: var(--color-primary);
	transform: scale(1);
    box-shadow: 0 0 40px rgb(0 0 0 / 7.5%);
	/*background: radial-gradient(#EEE 25%, transparent);*/
	background: #ffffff;
	/* background: radial-gradient(circle, rgba(238,238,238,.9) 50%, rgba(255,255,255,0) 100%); */
}

.slide-inner.card .imagefill-holder::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
	border-radius: 50%;
	border: 1rem solid var(--color-dk-blue);
	z-index: 2;
}
.milestones .swiper-slide-active .slide-inner.card .imagefill-holder::after {
	border-color: var(--color-primary);
	border-width: .5rem;
}

@media screen and (min-width: 768px) {
	.milestones .card .card-body {
		width: 165%;
	}
}

.slide-inner.card .imagefill-holder.no-image {
	border-width: .25rem;
}
.slide-inner.card .imagefill-holder.no-image::before {
	content: '';
	position: absolute;
	width: 50%;
	height: 50%;
	background-color: var(--color-primary);
	border-radius: 50%;
	display: none;
	z-index: 1;
}

.swiper-slide-active .slide-inner.card .imagefill-holder {
	background-color: var(--background-grey);
}
.swiper-slide-active .slide-inner.card .imagefill-holder.no-image::before {
	display: block;
}
.swiper-slide-active .slide-inner.card .imagefill-holder.no-image::after {
	border-style: dashed;
	border-width: 2px;
}
.slide-inner.card .imagefill-holder img {
	width: 80%;
	height: auto;
	transition: .3s;
}
.img-cover {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.swiper-slide-active .slide-inner.card .imagefill-holder.no-image > img {
	width: auto;
	height: 1.75rem;
	position: relative;
	z-index: 2;
	-webkit-animation: slow-move 10s ease infinite;
	-moz-animation: slow-move 10s ease infinite;
	animation: slow-move 10s ease infinite;
	animation-delay: 1s;
	display: none;
}
@-moz-keyframes slow-move {
	50% { 
		-moz-transform: scale(1.1); 
	} 
	100% { 
		-moz-transform: scale(1); 
	} 
}
@-webkit-keyframes slow-move {
	50% { 
		-webkit-transform: scale(1.1); 
	}
	100% { 
		-webkit-transform: scale(1); 
	}
}
@keyframes slow-move {
	50% {
		-webkit-transform: scale(1.1); 
		transform: scale(1.1);
	} 
	100% {
		-webkit-transform: scale(1); 
		transform: scale(1);
	}
}

.milestones .year {
	user-select: none;
}

.milestones .slide-inner.card .details h3 {
	line-height: 1.2;
}

.swiper-slide-active .slide-inner.card .imagefill-holder.no-image::after {
	-webkit-animation: spin 120s linear infinite;
	-moz-animation: spin 120s linear infinite;
	animation: spin 120s linear infinite;
}
@-moz-keyframes spin {
	100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
	100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
	100% {
		-webkit-transform: rotate(360deg); 
		transform: rotate(360deg); 
	} 
}

.swiper-slide-active .slide-inner.card .imagefill-holder.no-image > span::before,
.swiper-slide-active .slide-inner.card .imagefill-holder.no-image > span::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #FFF;
	display: block;
	top: 50%;
	left: 50%;
	z-index: 0;
	-webkit-animation: bling 3s ease infinite;
	-moz-animation: bling 3s ease infinite;
	animation: bling 3s ease infinite;
}
.swiper-slide-active .slide-inner.card .imagefill-holder.no-image > span::after {
	animation-delay: .3s;
	-webkit-animation-delay: .3s;
	background-color: var(--color-primary);
}
@-moz-keyframes bling {
	75% {
		-moz-transform: scale(6);
		opacity: 0;
	} 
	100% {
		-moz-transform: scale(6);
		opacity: 0;
	} 
}
@-webkit-keyframes bling {  
	75% {
		-webkit-transform: scale(6);
		opacity: 0;
	}
	100% {
		-webkit-transform: scale(6);
		opacity: 0;
	} 
}
@keyframes bling { 
	75% {
		transform: scale(6);
		-webkit-transform: scale(6); 
		opacity: 0;
	} 
	100% {
		transform: scale(6);
		-webkit-transform: scale(6); 
		opacity: 0;
	} 
}

/*@media (min-width: 1600px) {
	.slide-inner.card .imagefill-holder.imagefill-holder.no-image {
		width: 240px;
		height: 240px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
}*/

@media (min-width: 768px) {
	.milestones .carousel-control > *:last-child {
		margin-right: -1.5em;
	}
}

@media (max-width: 1599.98px) {
	.slide-inner.card .imagefill-holder::after {
		border-width: .5rem;
	}
}
@media (min-width: 768px) and (max-width: 1599.98px) {
	.milestones .slide-inner.card .imagefill-holder {
		width: 240px;
		height: 240px;
	}
}
@media (max-width: 767.98px) {
	.milestones .slide-inner.card .imagefill-holder {
		width: 180px;
		height: 180px;
	}
}


/* ====================================
	MILESTONES (ALTERNATE DESIGN)
==================================== */

.alt-design .slide-inner.card .imagefill-holder {
	width: 80px;
	height: 80px;
}
.alt-design .slide-inner.card .imagefill-holder::after {
	border-width: 8px;
}

@media (min-width: 1600px) {
	.alt-design .slide-inner.card .details p {
		font-size: 1.125em;
	}
}

/* ====================================
	DATA CARDS HOLDER
==================================== */
.data-card-single-holder {
	border-radius: 0;
	height: 100%;
	text-align: left;
	border-width: 1px 0 0 0;
	border-color: var(--color-border-lt-grey);
	border-style: solid;
	position: relative;
}
.data-card-holder .row .col:nth-child(1) .data-card-single-holder {
	border-top-width: 0;
}
.data-card-single-holder .card-body {
	padding: 2rem;
}
.data-card-number {
	font-weight: bold;
	display: table-cell;
	vertical-align: middle;
}
.data-card-number > small {
	margin-bottom: 0;
}
.data-card-single-holder .card-footer {
	padding: 2rem;
	padding-top: 0;
	background: none;
	border: 0;
}

.data-card-single-holder .card-body img {
	display: block;
	height: 5rem;
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	transition: .3s;
}

/* small  */
.data-card-single-holder.small {
	padding: 20px 10px;
}
.data-card-single-holder.small .card-body {
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.data-card-single-holder.small .card-body img {
	height: auto;
  width: 4.5rem;
	margin: 0;
}
.data-card-single-holder.small .card-body .card-title {
	margin-left: 10px;
}
.data-card-single-holder.small .card-footer {
	margin-left: calc(4.5rem + 10px);
	margin-top: 10px;
	padding: 0;
}
.data-card-single-holder.small .card-footer.no-img {
	margin-left: 10px;
}

@media (min-width: 768px) {
	.data-card-single-holder {
		border-right-width: 1px;
	}
	.data-card-holder .row .col:nth-child(2) .data-card-single-holder {
		border-top-width: 0;
	}

	.data-card-holder .row .col:nth-child(2n) .data-card-single-holder {
		border-right-width: 0;
	}
	.data-card-holder .row .col .data-card-single-holder::before {
		content: '';
		position: absolute;
		width: 3rem;
		height: 3rem;
		background-color: #FFF;
		right: -1.5rem;
		top: -1.5rem;
		z-index: 2;
	}
	.data-card-holder .row .col:nth-child(1) .data-card-single-holder::before,
	.data-card-holder .row .col:nth-child(2n) .data-card-single-holder::before {
		display: none;
	}
}

@media (min-width: 1200px) {
	.data-card-holder .row .col:nth-child(3) .data-card-single-holder {
		border-top-width: 0;
	}
	.data-card-holder .row .col:nth-child(2n) .data-card-single-holder {
		border-right-width: 1px;
	}
	.data-card-holder .row .col:nth-child(3n) .data-card-single-holder {
		border-right-width: 0;
	}
	.data-card-holder .row .col:nth-child(2n) .data-card-single-holder::before {
		display: block;
	}
	.data-card-holder .row .col:nth-child(2) .data-card-single-holder::before,
	.data-card-holder .row .col:nth-child(3n) .data-card-single-holder::before {
		display: none;
	}
	.data-card-single-holder .card-body img {
		height: 6rem;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
	/* small  */
	.data-card-single-holder.small {
		padding: 20px;
	}
	.data-card-single-holder.small .card-body img {
		width: 5rem;
	}
	.data-card-single-holder.small .card-body .card-title {
		margin-left: 15px;
	}
	.data-card-single-holder.small .card-footer {
		margin-left: calc(5rem + 15px);
	}
	.data-card-single-holder.small .card-footer.no-img {
		margin-left: 15px;
	}
}

@media (min-width: 1650px) {
	.data-card-single-holder .card-body,
	.data-card-single-holder .card-footer {
		padding-left: 3rem;
		padding-right: 5rem;
	}
	.data-card-number {
		height: 90px;
	}
	/* .data-card-number.display-1 {
		font-size: 120px;
	} */
	.data-card-number.display-2 {
		font-size: 6.25em;
	}
}
@media (max-width: 767.98px) {
	.data-card-number.display-1 {
		font-size: 4.409em;
	}

	.data-card-number.display-1 small {
		font-size: 0.6em;
	}

	.data-card-number.display-2 {
		font-size: 3.75em;
	}
}

/* ====================================
	JOB LISTING SEARCH
==================================== */

.job-listing-filter-holder {
	text-align: center;
	max-width: 1088px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.job-listing-filter-holder .input-search {
	width: 100%;
	border-color: #002158;
	border-width: 2px;
}
.job-listing-filter-holder .input-search button {
	background-color: #002158;
	color: #FFF;
}
.job-listing-filter-holder .dropdown .dropdown-menu {
	width: 100%;
}

.carousel-pagination span.swiper-pagination-current {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 0.5em;
}

.light .carousel-pagination span.swiper-pagination-current {
    border-color: white;
    color: white;
}

.carousel-pagination span.swiper-pagination-total {
    display: inline-block;
    margin-left: 0.5em;
}


/* ====================================
	PAGE HERO BANNER
==================================== */

.page-hero-banner.section {
	padding: 0;
	min-height: auto;
}
.page-hero-banner.section > img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

/* ====================================
	VIDEO TEXT HOLDER
==================================== */

.video-w-text-box.image-w-text-box>div:first-child,
.video-w-text-box.image-w-text-box>div:nth-child(2) {
	transform: translate(0);
}
.video-w-text-box.image-w-text-box>div:nth-child(2)>div {
	background: none;
}
.video-w-text-box .is-text-holder > div {
	padding: 1rem;
}

.video-w-text-box.image-w-text-box .video-container {
	padding: 0;
}

@media (min-width: 992px) {
	.video-w-text-box .is-text-holder > div {
		padding: 3rem;
	}
}

@media (max-width: 767.98px) {
	.video-w-text-box .is-video-holder {
		order: 1;
	}
	.video-w-text-box .is-text-holder {
		order: 2;
	}
	.video-w-text-box .is-text-holder > div {
		padding: 0;
		padding-top: 1rem;
	}
}
/* ====================================
	DISTINGUISED ENGINEERS
==================================== */

.article-achievement-holder {
	padding: 1rem 2rem;
	background-color: #F8F8F8;
	display: inline-flex;
	border-radius: .5rem;
	align-items: center;
	margin-bottom: 1.5rem;
}
.article-achievement-holder > img {
	height: 2.75rem;
	margin-right: 1rem;
	margin-left: -.5rem;
}

.article-author-holder {
	padding: 1.5rem 2.5rem;
	background-color: #F8F8F8;
	margin-bottom: 1.5rem;
}
.article-author-details {
	display: flex;
	align-items: center;
	margin-bottom: 1.25rem;
}
.article-author-details > img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-right: 1.25rem;
}

/* ====================================
	MASONRY JS - 
	DISTINGUISED ENGINEERS + LEADERS
==================================== */

.masonry .grid-item .card {
	display: flex;
	margin-top: 0;
	margin-bottom: 0;
	height: 100%;
	overflow: hidden;
}
.masonry .grid-item .card:before {
	position: absolute;
}
.masonry .grid-item .details {
	display: flex;
	flex-direction: column;
	height: 1px;
}
.masonry .grid-item .card > .details {
	padding-top: calc(1.5rem + 8px);
}

/* ====================================
	REGIONAL OFFICE
==================================== */

.offices-container {
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.offices-container .office {
	border-right: none !important;
	display: flex;
	flex-direction: column;
	height: calc(100% - 1.5rem);
}
.offices-container .office > div {
	margin-top: 0 !important;
	display: flex !important;
	margin-bottom: .75rem;
	line-height: 1.3 !important;
}
.offices-container .office > div a:hover {
	text-decoration: underline;
}
.offices-container .office .phone, 
.offices-container .office .fax, 
.offices-container .office .email-address,
.offices-container .office .internet, 
.offices-container .office .email {
	align-items: center;
}
.offices-container .office .phone {
	margin-right: 1.5rem;
}
.offices-container .office .address::before,
.offices-container .office .phone::before, 
.offices-container .office .fax::before,
.offices-container .office .email::before,
.offices-container .office .internet::before,
.offices-container .office .formLink::before {
	width: 2rem;
	margin-right: 0;
	padding-right: 1rem;
	opacity: .75;
}
.offices-container .office span+span {
	border: none !important;
}
.offices-container > .row > div:nth-child(n+2) .office {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: rgba(255,255,255,.1);
	padding-top: 2rem;
}

.offices-container {
	position: relative;
}
/*.offices-container.focus-office + .offices-container {
	margin-top: 5rem;
}
.offices-container.focus-office + .offices-container::before {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	top: -2.5rem;
	width: auto;
	height: 1px;
	background-color: rgba(0,0,0,0.15);
	display: block;
}*/
.offices-container:not(.focus-office) {
	background: none;
	padding: 0;
	border-bottom-right-radius: 0;
}

.offices-container:not(.focus-office) .office {
	background-color: var(--background-dk-blue);
	border-bottom-right-radius: 50px;
	padding: 1.75rem 3rem 1rem 2rem !important;
	height: calc(100% - 1.5rem);
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.offices-container .office {
		padding-right: 3rem;
	}
	.offices-container > .row > div:nth-child(2) .office {
		border-top-width: 0;
		padding-top: 0;
	}
	.offices-container > .row > div:nth-child(n+3) .office {
		border-top-width: 1px;
	}
}
@media (min-width: 992px) {
	.offices-container .office {
		margin-bottom: 1.5rem;
	}
	.offices-container > .row > div:nth-child(3) .office {
		border-top-width: 0;
		padding-top: 0;
	}
	.offices-container > .row > div:nth-child(n+4) .office {
		border-top-width: 1px;
	}
	.offices-container:not(.focus-office) > h2 {
		font-size: var(--h4-size);
	}
}

@media (min-width: 992px) {
	.masonry.industry-panel .grid.row {
		padding-left: 12.5%;
		padding-right: 12.5%;
	}
	.masonry.distinguish-engineers .grid.row {
		padding-left: 12.5%;
		padding-right: 12.5%;
	}
	.masonry.alumni-committee .grid.row {
		padding-left: 12.5%;
		padding-right: 12.5%;
	}
}

/* ====================================
    SECTION 2 COLUMNS
    IMAGE / TEXT COMPONENT
==================================== */

@media (max-width: 991.98px) {
    .section.columns-2 .feature-image {
        order: 1;
    }
    .section.columns-2 .section-body {
        order: 2;
    }
}

/* ====================================
	AUSTRALIA CAMPAIGN
==================================== */

.video-masthead {
	position: relative;
}
/*.video-masthead::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
	background-color: rgba(0 , 0, 0, .5);
	z-index: 1;
}*/
.video-masthead .video-container {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.video-masthead .section-body {
	position: relative;
	z-index: 2;
}

.modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-moz-transition: -moz-transform 0.3s ease-out;
	-o-transition: -o-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}



/* ====================================
	AUSTRALIA CAMPAIGN -
	HERO BANNER + TEXT
==================================== */

.hero-banner-with-text-section {
	position: relative;
	margin: 0;
	display: flex;
	align-items: center;
	text-align: left;
}
.hero-banner-with-text-section .hero-banner-holder {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
}
.hero-banner-with-text-section .hero-banner-holder::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: auto;
	height: auto;
	z-index: 1;
}
.hero-banner-with-text-section.theme-dk-blue .hero-banner-holder::before {
	/*background: linear-gradient(-90deg, rgba(0,0,0,0) 15%, rgba(0,0,0,.85) 50%);*/
	background: linear-gradient(-90deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.5) 65%);
}
.hero-banner-with-text-section.theme-grey .hero-banner-holder::before {
	background: linear-gradient(-90deg, rgba(237,237,237,0) 15%, rgba(237,237,237,0) 25%, rgba(237,237,237,1) 60%);
}

.hero-banner-with-text-section .hero-banner-holder > img {
	height: 100%;
	width: 100%;
	transition: 0.3s;
	z-index: 0;
}
.img-cover {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
/*.hero-banner-with-text-section a:not(.arrow) {
	text-decoration: underline;
}
.hero-banner-with-text-section a:not(.arrow):hover {
	text-decoration: none;
}*/
.hero-banner-with-text-section .section-body {
	position: relative;
	z-index: 2;
}

.image-desktop-mobile-holder {
	position: relative;
	overflow: hidden;
	height: 400px;
}
.image-desktop-mobile-holder > img {
	height: 100%;
	width: 100%;
	transition: 0.3s;
	z-index: 0;
}


@media (min-width: 1200px) {
	.hero-banner-with-text-section .section-body > div {
		padding: 1.5rem 3.5rem;
	}
}

@media (max-width: 991.98px) {
	.hero-banner-with-text-section {
		min-height: auto !important;
		display: grid;
	}
	.hero-banner-with-text-section .hero-banner-holder {
		position: relative;
		height: 400px;
		margin-top: -80px;
		margin-left: -15px;
		margin-right: -15px;
		width: 100vw;
	}
	.hero-banner-with-text-section .hero-banner-holder::before {
		display: none;
	}
	.hero-banner-with-text-section .section-body > div {
		padding: 1.5rem;
		padding-top: 4.5rem;
	}
}

@media (max-width: 767.98px) {
	.hero-banner-with-text-section .hero-banner-holder {
		margin-top: -60px;
	}
	.image-desktop-mobile-holder {
		height: 300px;
	}
	.hero-banner-with-text-section .hero-banner-holder {
		height: 280px;
	}
}


/* ====================================
	AUSTRALIA CAMPAIGN -
	IMAGE + SUPPORT + TEXT
==================================== */

.img-wrap-with-text-section {
	position: relative;
}

.hero-banner-with-text-section h2,
.img-wrap-with-text-section h2 {
	line-height: 1;
}
.hero-banner-with-text-section p,
.img-wrap-with-text-section p {
	line-height: 1.5;
}

.image-wrap-holder {
	position: relative;
}
.img-support {
	display: flex;
	justify-content: center;
	position: absolute;
	right: 3rem;
	bottom: -5rem;
}
.img-support > img {
	display: block;
	max-width: 480px;
	bottom: 0;
	margin-top: -4rem;
}
.img-banner {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.img-banner > img {
	height: 100%;
	width: 100%;
	transition: 0.3s;
	z-index: 0;
}
.img-wrap-with-text-section div[class^='container'] {
	position: relative;
}
.side-phone-image {
	width: 50%;
	position: absolute;
	right: 0;
	bottom: 0;
	text-align: center;
}
.side-phone-image > img {
	display: inline-block;
	width: 480px;
}

.img-wrap-with-text-section a:not(.arrow) {
	text-decoration: underline;
}
.img-wrap-with-text-section a:not(.arrow):hover {
	text-decoration: none;
}


@media (max-width: 991.98px) {
	.image-wrap-holder {
		margin-top: -80px;
		margin-left: -25px;
		width: 100vw;
	}
	.img-support {
		position: relative;
		max-width: 200px;
		bottom: auto;
		width: 100%;
		margin: 0 auto;
		top: -3rem;
		right: auto;
	}
	.img-support > img {
		max-width: 100%;
	}
	.img-wrap-with-text-section .section-body > div {
		padding: 1.5rem;
		margin-top: -3rem;
	}

	.side-phone-image > img {
		width: 400px;
	}
}

@media (max-width: 767.98px) {
	.image-wrap-holder {
		margin-top: -60px;
	}
	.img-wrap-with-text-section .section-body {
		position: relative;
	}
	.img-banner {
		height: 400px;
	}
	.img-wrap-with-text-section .section-body > div {
		padding-top: 10rem;
	}
	.side-phone-image {
		width: 100%;
		bottom: auto;
		top: -400px;
		text-align: left;
	}
	.side-phone-image > img {
		width: 320px;
		left: -64px;
		position: relative;
	}
}

/* ====================================
	CONTACT FORM (COMPONENT)
==================================== */

input.underline {
	border-radius: 0;
}
a.bordered:not(.white), 
button.bordered:not(.white) {
	color: var(--color-dk-blue);
}
.component-form-holder .form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.bg-custom-img {
	background-image: url(../../images/bg-form.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.component-form-holder .text,
.component-form-holder .text .form-header-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.component-form-holder .text .form-title {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.component-form-holder .text .form-title .close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}
.component-form-holder .contact-method-holder {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	margin-bottom: .5rem;
}
.contact-method-single {
	display: flex;
	align-items: center;
	gap: .75rem;
}
.contact-method-icon {
	display: flex;
	width: 40px;
	height: 40px;
	border: 1px solid var(--font-color-primary);
	border-radius: 50%;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.contact-method-info {
	font-size: 1.25em;
	font-weight: 600;
}
.component-form-holder.text-white h1,
.component-form-holder.text-white h2 {
	color: #FFF;
}
.component-form-holder.text-white .contact-method-icon {
	border-color: #FFF;
}
.component-form-holder.text-white textarea.underline {
	width: 100%;
	background: transparent;
	padding: 0;
	padding-bottom: 1em;
	font-weight: 300;
	border: 0;
	border-bottom: 1px solid #505050;
	letter-spacing: 0.2rem;
	text-decoration: none;
} 
.component-form-holder.text-white input.underline,
.component-form-holder.text-white textarea.underline {
	color: white;
	border-bottom: 1px solid white;
}
.component-form-holder.text-white input.underline::placeholder,
.component-form-holder.text-white textarea.underline::placeholder {
	color: white;
}
.component-form-holder form .form-group {
	margin-bottom: 1.5rem;
}
.component-form-holder form .dropdown.select .dropdown-toggle {
	position: relative;
}
.component-form-holder form .dropdown.select .dropdown-toggle::after {
	margin-left: 12px;
	margin-right: 8px;
}
.component-form-holder form .dropdown.select .dropdown-toggle > span {
	max-width: 100%;
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* ====================================
	MAGNOLIA FORM
==================================== */

header + .ncs-form {
	padding-top: 100px;
}
.ncs-form .form {
	display: flex;
	flex-direction: column;
	overflow: initial;
	height: auto;
	gap: 0;
}
.ncs-form .form .text h1 {
	padding-top: 0;
}
.ncs-form .form .form-wrapper {
	margin-top: 0;
}
.ncs-form .form-row input, 
.ncs-form .form-row select {
	height: 44px;
	padding-bottom: 4px;
}
.ncs-form .button-wrapper input {
	box-shadow: 0 0 0 2px #FFF;
}

#formErrorsDisplay {
	border: 1px solid rgba(255,255,255,0.5);
	padding: 1rem;
}

.error-title {
	padding: .5rem;
}
.error-listing li {
	margin-bottom: 2px;
}

.ncs-form .contact:before,
.ncs-form .email:before {
	background-repeat: no-repeat;
}

.form-row > label.d-block {
	margin-bottom: .75rem;
	font-weight: 600;
}
.form-row > label.d-block > span > *[title='required'] {
	color: red;
}
.form-row > label + fieldset {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
}
.form-row > label + fieldset > .form-item {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.form-row input[type='radio'],
.form-row input[type='checkbox'] {
	width: 16px;
	height: 16px;
}
.form-row input[type='radio'] + label,
.form-row input[type='checkbox'] + label {
	display: inline-block;
}


@media (max-width: 767.98px) {
    .ncs-form .form .form-row {
		width: 95%;
	}
}
.partner-dedescription a {
	color: blue;
}

/* ====================================
	JOB DETAILS
==================================== */

.job-details-holder .jobTitle {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}
.job-details-holder h1#job-title {
	font-size: 2.5em;
	margin-bottom: 0;
	flex: 1 1 auto;
	text-transform: none;
	line-height: 1.3;
}
.job-details-holder .applylink a {
	font-size: 1.125em;
	padding-top: 1rem;
	padding-bottom: 1rem;
	transition: 0.3s all ease-out;
}
.job-details-holder .applylink a.active {
	opacity: 1;
  pointer-events: all;
}
.job-details-holder .applylink a.active span{
	display: none;
}
.job-details-holder .jobInfo {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}
.job-details-holder .jobInfo > p {
	font-size: 1.125em;
	margin-bottom: 0 !important;
}

.job-details-holder .job, 
.job-details-holder #similar-jobs {
	font-size: 1.125em;
}
.job-details-holder .job a,
.job-details-holder #similar-jobs-links a {
	color: var(--color-primary);
}
.job-details-holder .job a:hover,
.job-details-holder #similar-jobs-links a:hover {
	text-decoration: underline;
}

@media (max-width: 767.98px) {
	.job-details-holder .jobTitle {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}


/* ====================================
	JOB LISTING (DATA TABLE)
==================================== */

.data-sort-table table thead th {
	font-weight: 500;
	pointer-events: none;
}
.data-sort-table table thead th::before,
.data-sort-table table thead th::after {
	display: none !important;
}
.data-sort-table table thead th span {
	font-weight: 300;
}
.data-sort-table .dataTables_scroll {
	position: relative;
}
.data-sort-table .dataTables_scrollFoot {
	position: absolute;
	top: 42px;
}
.data-sort-table .dataTables_scrollHead {
	padding-bottom: 51px;
}
table.dataTable tfoot th, table.dataTable tfoot td {
	padding: 10px !important;
}
.data-sort-table table th,
.data-sort-table table td {
	padding: .75rem 1.25rem;
	transition: .3s;
}
.data-sort-table table th {
	background-color: #fff;
	color: #000;
}
.data-sort-table table td a:hover {
	text-decoration: underline;
}
.data-sort-table table tfoot input {
	width: 100%;
	border: 1px solid #c1c1c1;
	border-radius: 4px;
	padding: 4px 6px;
}
.data-sort-table table tfoot input::placeholder {
	font-weight: 300;
}
.data-sort-table .dataTables_scrollBody tfoot{
	display: none;
}
.data-sort-table table.dataTable.table-striped>tbody>tr.odd>* {
	box-shadow: none;
	/*--bs-table-accent-bg: rgba(0, 172, 255, .05);*/
}
.data-sort-table .table>:not(:last-child)>:last-child>* {
	border-bottom-color: inherit;
}
.data-sort-table table.dataTable thead>tr>th.sorting {
	padding-right: 36px;
}
.data-sort-table table.dataTable thead>tr>th.sorting:before,
.data-sort-table table.dataTable thead>tr>th.sorting:after {
	font-size: 0.5625em !important;
	line-height: 1.125;
	right: 16px;
	opacity: .52;
}
.data-sort-table table.dataTable thead>tr>th.sorting_asc:before, 
.data-sort-table table.dataTable thead>tr>th.sorting_desc:after, 
.data-sort-table table.dataTable thead>tr>td.sorting_asc:before, 
.data-sort-table table.dataTable thead>tr>td.sorting_desc:after {
	opacity: 1;
}

.data-sort-table .dataTables_length,
.data-sort-table .dataTables_filter,
.data-sort-table .dataTables_info,
.data-sort-table .dataTables_paginate {
	padding: 1rem 0;
	font-size: 1em;
}
.data-sort-table .dataTables_info {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 1rem 0;
}

.data-sort-table .pagination {
	align-items: center;
	gap: 8px;
}
.data-sort-table .dataTables_paginate .page-item .page-link,
.data-sort-table .dataTables_paginate .page-item .page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
}
.data-sort-table .dataTables_paginate .page-item .page-link:hover {
	color: var(--color-primary);
	background-color: transparent;
}
.data-sort-table .dataTables_paginate .page-item .page-link:focus {
	background-color: transparent;
}
.data-sort-table .dataTables_paginate .page-item.previous .page-link,
.data-sort-table .dataTables_paginate .page-item.next .page-link {
	width: auto;
	height: auto;
	border-radius: 0;
	color: var(--font-color-primary);
}
.data-sort-table .page-item.disabled .page-link {
	color: var(--font-color-primary);
	opacity: .3;
}
.data-sort-table .dataTables_paginate .page-item.active .page-link {
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	background-color: transparent;
	font-weight: 600;
}

.data-sort-table div.dataTables_filter label,
.data-sort-table div.dataTables_length label,
.data-sort-table div.dataTables_filter label .form-control,
.data-sort-table div.dataTables_length label .form-select {
	font-size: 1em;
}
.data-sort-table div.dataTables_filter label {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	gap: 8px;
	font-size: 1em;
}
.data-sort-table div.dataTables_filter label .form-control {
	min-height: auto;
	height: 40px;
	flex: 1 1 auto;
	font-size: 1em;
	padding: .5rem .75rem;
}
.data-sort-table div.dataTables_length label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 1em;
}
.data-sort-table div.dataTables_length label .form-select {
	min-height: auto;
	height: 40px;
	font-size: 1em;
}
.data-sort-table .form-control::-webkit-input-placeholder {
	color: rgba(0,0,0,.25);
}
.data-sort-table .form-control:-ms-input-placeholder {
	color: rgba(0,0,0,.25);
}
.data-sort-table .form-control::placeholder {
	color: rgba(0,0,0,.25);
}
.data-sort-table .dataTables_length,
.data-sort-table .dataTables_filter {
	display: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.previous:hover::before,
.dataTables_wrapper .dataTables_paginate .paginate_button.next:hover::before {
	color: var(--color-primary) !important;
} 
div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled.previous:hover, 
div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled.previous:active, 
div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled.next:hover, 
div.dataTables_wrapper .dataTables_paginate .paginate_button.disabled.next:active {
	color: #fff !important;
	background-color: #fff !important;
	border: none !important;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled::before,
	div.dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled::before {
	color: #c1c1c1 !important;
	pointer-events: none;
}
div.dataTables_wrapper .dataTables_paginate span .paginate_button:hover {
	color: #000 !important;
	background: #fff !important;
	border: 1px solid #000 !important;
}
div.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
div.dataTables_wrapper .dataTables_paginate .paginate_button.next {
	color: #fff !important;
	position: relative;
	background: #fff !important;
	border: none;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.previous::before {
	content: '«';
	position: absolute;
	color: #000;
	font-size: 1.5em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.dataTables_wrapper .dataTables_paginate .paginate_button.next::before {
	content: '»';
	position: absolute;
	color: #000;
	font-size: 1.5em;
	top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}
div.dataTables_wrapper .dataTables_paginate span .paginate_button.current, 
div.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
	background: #fff;
	color: var(--color-primary) !important;
	border: 1px solid var(--color-primary) !important;
	font-weight: 400;
}


@media (min-width: 768px) {
	.data-sort-table .dataTables_wrapper > .row:first-child > div:first-child {
		order: 2;
	}
	.data-sort-table .dataTables_wrapper > .row:first-child > div:last-child {
		order: 1;
	}
	.data-sort-table div.dataTables_filter {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
	}
	.data-sort-table div.dataTables_filter label .form-control {
		min-height: auto;
		height: 40px;
		flex: 1 1 auto;
		font-size: 1em;
		padding: .5rem .75rem;
		max-width: 400px;
	}
	.data-sort-table div.dataTables_length {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		height: 100%;
	}
	.data-sort-table div.dataTables_length label {
		justify-content: flex-end;
	}
}

@media (min-width: 992px) {
	.data-sort-table table th,
	.data-sort-table table td {
		font-size: 1em;
	}
	.data-sort-table .dataTables_scrollHeadInner,
	.data-sort-table .dtfc-has-left,
	.data-sort-table table {
		width: 100% !important;
	}
	.data-sort-table .dataTables_scrollHead {
		padding-bottom: 53px;
	}
	.data-sort-table .dataTables_scrollFoot {
		top: 45px;
	}
	.data-sort-table .dataTables_wrapper .dataTables_info {
		margin-top: 50px;
	}
	.data-sort-table .dataTables_wrapper .dataTables_paginate {
		margin-top: 50px;
	}
}

@media (min-width: 1200px) {
	.data-sort-table table th,
	.data-sort-table table td {
		padding: .75rem 1.25rem;
	}
}
@media (max-width: 1199.98px) {
	.data-sort-table table th,
	.data-sort-table table td {
		white-space: nowrap;
	}
}
@media (max-width: 767.98px) {
	.data-sort-table .dataTables_info {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: .75rem;
	}
}
