@charset "utf-8";
/* CSS Document */

/* Body - Default Font and Layout */
body {
	font-family: "Urbanist", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #2e3b4c;

	background-color: #fff;
}

:focus {
  outline: none !important;
}

/* Body - Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Body - Links */
a {
	color: #3C3C4F;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1px;

	transition: 0.3s;
}
	a:hover {
		color: #3C3C4F;
		text-decoration: underline;
		text-decoration-style: solid;
		text-decoration-thickness: 1px;

		transition: 0.3s;
	}

/* Body - Lines */
hr {
	border-top: 2px solid #3C3C4F;
}

/* Body - Lists */
ul.custom {
	list-style-type: "\2605";

	padding: 0;
	margin: 0;
}
ul.custom li {
	padding: 0;
}

ul.inline {
	list-style: none;

	padding: 0;
	margin: 0;
}
ul.inline li {
	padding: 0;
}

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "Urbanist", sans-serif;
	font-weight: 700;
}
	h1 {
		font-size: 72px;
	}
	h2 {
		font-size: 64px;
	}
	h3 {
		font-size: 56px;
	}
	h4 {
		font-size: 48px;
	}
	h5 {
		font-size: 32px;
	}

/* Body - Default Buttons */
button {
	box-shadow: none !important;

	outline: none !important;
}
	button:focus {
		box-shadow: none !important;

		outline: none !important;
	}
	button:active {
		box-shadow: none !important;

		outline: none !important;
	}

/* Body - Disable Scroll */
.scroll-disable {
	/*
		position: fixed;
		overflow-y: scroll;
	*/

    overflow-y: hidden;

    width: 100%;

	touch-action: none;
}

/* Body - Default Navigation - Sticky */
.sticky-element {
    position: sticky;
    top: 0;

	background: #ffffff;

    z-index: 10;
}

/* Text Lines Truncate */
/* Truncate by Word, Not Character - Use the PHP Function - Found in includes/functions.php */
.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
}
.truncate-small {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.truncate-medium {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.truncate-large {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Images */
.image-fit {
	object-fit: cover;
	overflow-clip-margin: unset;
}
.image-width-01 {
	width: 50px;
}
.image-width-02 {
	width: 100px;
}
.image-width-03 {
	width: 150px;
}
.image-width-04 {
	width: 200px;
}
.image-width-05 {
	width: 300px;
}
.image-width-06 {
	width: 500px;
}

.image-height-01 {
	height: 50px;
}
.image-height-02 {
	height: 100px;
}
.image-height-03 {
	height: 150px;
}
.image-height-04 {
	height: 200px;
}
.image-height-05 {
	height: 300px;
}
.image-height-06 {
	height: 500px;
}

/* */
.image-round {
    border-radius: 50%;
}
	.image-round.xsmall {
		width: 40px;
		height: 40px;
	}
	.image-round.small {
		width: 50px;
	    height: 50px;
	}
	.image-round.medium {
		width: 80px;
	    height: 80px;
	}
	.image-round.large {
		width: 140px;
	    height: 140px;
	}

/* */
.image-with-text {
	position: relative;

    width: 100%;
	height: 100%;
}
	.image-with-text img {
		width: 100%;
		height: 250px;

		filter: brightness(0.6);
	}
	.image-with-text__content {
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;

		width: 100%;
		height: auto;

		color: #fff;

		padding: 0 15px;
	}

/* */
.image-section {
	position: absolute;
	top: 0;

	z-index: -1;
}
.image-section__right {
    position: relative;

    float: right;

    width: 50%;
    height: 100%;
}
.image-section__left {
    position: relative;

    float: left;

    width: 50%;
    height: 100%;
}

/* Tooltip */
.tip {
	position: relative;
	display: inline;

	line-height: normal;

	cursor: pointer;
}
	.tip .tooltiptext {
		background-color: #43525b;
		border-radius: 4px;

		font-size: 12px;
		color: #fff;
		text-transform: none;
		white-space: nowrap;

		width: auto;
		height: auto;

		padding: 6px 12px;
		margin-left: -20px;

	  	visibility: hidden;

		position: absolute;
		bottom: 100%;
		left: 50%;

  	  	z-index: 1;
	}

	.tip:hover .tooltiptext {
	  visibility: visible;
	  transition-delay: 0.3s;
	}

	/*
	<div class="tip">
		<i class="fa-solid fa-circle-question"></i>
		<span class="tooltiptext">
			 Tooltip content
		</span>
	</div>
	*/

/* Alert Popup */
.swal-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}
.swal-title {
	font-size: 28px;
	font-weight: 700;
	color: #000000;
}
.swal-text {
	font-size: 18px;
	color: #000000;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}

.swal-icon--success {
	border-color: #000000;
}
.swal-icon--success__line {
	background-color: #000000;
}
.swal-icon--success__ring {
	border: 4px solid #000000;
}
.swal-overlay:before {
	height: auto;
}

.swal-button-container button {
    background: #f27d0a;
    border: none;

	font-size: 18px;
    color: #fff;
}
    .swal-button-container button:hover {
        background: #f27d0a;

		font-size: 18px;
        color: #fff;
    }

.swal-content__input {
	background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    padding: 0 15px;

    width: 100%;
    height: 50px;
}
	.swal-content__input:focus {
		border: 1px solid #dee2e6;
	}

/* Modal - Hack */
body.modal-open {
    overflow: auto !important;
}
body.modal-open[style] {
    padding-right: 0px !important;
}
.modal::-webkit-scrollbar {
    width: 0 !important;
}
.modal-header, .modal-body {
	padding: 20px;
}
.modal-content {
	border: none;
}
.modal-header {
	border: none;

	margin: 0;
	padding: 20px;

	display: block;
	text-align: center;
}
	.modal-header h5 {
		font-size: 28px;
	}
	.modal-header .close {
		font-size: 24px;

	    position: absolute;
		top: 10px;
	    right: 15px;

	    padding: 0;
	    margin: 0;

		opacity: 0.5;
	    float: none;
	}
.modal-body {
	padding: 20px;

	display: block;

	color: #3C3C4F;
}
.modal-footer {
	border: none;

	padding: 20px;
}
.modal.show {
	animation: showSweetAlert 0.3s;
}
.modal.fade .modal-dialog {
	transform: none;
}
