@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: #2e3b4c;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1px;

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

		transition: 0.3s;
	}
	a[href^=tel]{
		text-decoration: none;
	}

/* 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;
}

/* Video */
.video-banner {
	width: 670px;
	height: 475px;
}

/* Body - Underline */
.underline {
	text-decoration: underline;
	text-decoration-color: #de3673;
	text-decoration-style: wavy;
}

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "Urbanist", sans-serif;
	font-weight: 700;
}
	h1 {
		font-size: 52px;
	}
	h2 {
		font-size: 50px;
	}
	h3 {
		font-size: 48px;
	}
	h4 {
		font-size: 36px;
	}
	h5 {
		font-size: 28px;
	}

/* 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: 75px;
}
.image-width-03 {
	width: 100px;
}
.image-width-04 {
	width: 200px;
}
.image-width-05 {
	width: 300px;
}
.image-width-06 {
	width: 500px;
}

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

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

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

    float: right;

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

    float: left;

	width: 100%;
    height: auto;
}

/* */
.image-featured {
	position: relative;
}
.image-featured::after {
    content: "Featured";

	background: #e22066;
	border-radius: 0 0 4px 0;

	font-size: 12px;
	font-weight: 600;
	color: #fff;

	position: absolute;
	top: 0;
	left: 0;

	padding: 4px 8px;
}

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

    width: 100%;
	height: 100%;
}
	.image-with-text img {
		filter: brightness(0.5);
	}
	.image-with-text__content {
		position: absolute;
		top: 20px;
		left: 0;
		right: 0;

		width: 100%;
		height: auto;

		color: #fff;

		padding: 0 15px;
	}

/* */
.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;
	}

/* 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>
	*/

/* */
.background-img-wrapper .dropdown button {
	background: #eff3f4;
	border: none;
    border-radius: 4px;

    padding: 12px 15px !important;
    width: 100%;

	color: #2e3b4c;
	font-weight: 500;
	text-align: left;
}
	.background-img-wrapper .dropdown .dropdown-menu {
		background: #f9f9f9;
	}
	.background-img-wrapper .dropdown .dropdown-item {
		color: #2e3b4c;
		font-weight: 500;

		cursor: pointer;
	}
		.background-img-wrapper .dropdown .dropdown-item:hover {
			color: #fff;
		}
	.background-img-wrapper .btn-medium a {
		padding: 12px 15px !important;
	}

	.dropdown-menu {
		background-color: #eff3f4;
	    border: none;
	    border-radius: 2px;

		font-size: 16px;

		width: 100%;
	    padding: 0;
	    margin: 2px 0;
	}
	.dropdown-item {
		text-decoration: none;

		padding: 15px;
	}
		.dropdown-item:hover {
			background-color: #de3673;

			color: #fff;
		}

.dropdown-toggle::after {
	position: relative;
    top: 3px;

    font-size: 14px;
    font-family: 'FontAwesome', serif;
    content: "\f107";

	float: right;

	margin: 0;
	padding: 0;

	border: none;
}

/* Accordion */
.accordion button {
    background: none;
    border: none;
    border-bottom: 1px dotted #ccc;

    font-size: 16px;
	font-weight: 500;
	color: #2e3b4c !important;
    text-align: left;

    width: 100%;

    padding: 20px 0;
    margin-bottom: 10px;
}
	.accordion i {
		position: relative;
		top: 2px;
	}
    .accordion button:last-of-type {
        border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
    }
	.accordion .panel {
		position: relative;

		padding: 0 30px;

		text-align: left;
	}
	.accordion .panel p:first-child {
		padding: 30px 0 10px 0;
	}
	.accordion .panel::before {
        font-family: "Font Awesome 5 Free";
        font-size: 22px;
        font-weight: 900;
        color: #2e3b4c;
        content: "\f10d";

        position: absolute;
        top: 0;
        left: 0;
    }

/* Tables */
.table {
	font-size: 14px;
	color: #2e3b4c;

	margin: 0;
	padding: 0;
}
.table thead th {
	border-top: none;
	border-bottom: 1px solid #ddd;
}
.table td, .table th {
	border-top: 1px solid #ddd;

	vertical-align: middle;
}
	.table td:last-child, .table th:last-child {
		text-align: right;
	}

/* Progress Bar */
.progress {
	background-color: #eff3f4;

	height: 30px;
}
.progress-bar {
	background-color: #de3673;

	font-size: 16px;

	height: auto;
}

/* Misc */
.favourites {
	position: absolute;
	top: 6px;
	right: 6px;
}
.responsive-blob {
	width: 200px;
}

/* Alert Popup */
.swal-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}
.swal-title {
	font-size: 24px;
	font-weight: 700;
	color: #3C3C4F;

	padding: 40px 40px 0;
	margin: 0 !important;

	line-height: 1.5;
}
.swal-footer {
	padding: 0 40px 20px;
	margin: 0 !important;
}
.swal-text {
	font-size: 16px;
	font-weight: 500;
	color: #3C3C4F;
	text-align: center;

	width: 100%;

	padding: 0 40px 30px;
	margin: 0 !important;
}
.swal-content {
	padding: 0 40px 30px !important;
	margin: 0 !important;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}

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

.swal-button-container {
	display: inline-flex;

    border-radius: 4px;

	margin: 0;
}
.swal-button-container button {
	display: block;
	padding: 12px 20px;
	margin-left: 6px;

    z-index: 20;

    border-radius: 4px;
    border: none;

	font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: 0.2s;
    transition-delay: 0.1s;
}
	.swal-button-container button:before {
	    content: "";

	    position: absolute;
	    top: -100%;
	    left: 0;
	    z-index: -1;

	    border-radius: 0;

	    width: 100%;
	    height: 100%;

	    transition: 0.2s;
		transition-delay: 0.1s;
	}
	.swal-button-container button:hover {
		color: #fff;
	    transition-delay: 0.1s;

	    border-radius: 4px;
    }
	.swal-button-container button:hover:before {
	    top: 0;
	}

	/* */
	.swal-button-container .btn-pink {
	    background: #de3673;

	    color: #fff;
	}
	.swal-button-container .btn-pink:hover {
	    color: #fff;
	}
	.swal-button-container .btn-pink:before {
	    background: #af1d52;

	    color: #fff;
	}
	.btn-pink.swal-button:not([disabled]):hover {
		background-color: #af1d52;
	}

	/* */
	.swal-button-container .btn-grey {
	    background: #2e3b4c;

	    color: #fff;
	}
	.swal-button-container .btn-grey:hover {
	    color: #fff;
	}
	.swal-button-container .btn-grey:before {
	    background: #19273a;

	    color: #fff;
	}
	.btn-grey.swal-button:not([disabled]):hover {
		background-color: #2e3b4c;
	}

.swal-content__input {
	background: #eff3f4;
    border: none;
    border-radius: 4px;

    padding: 0 15px;

	font-size: 16px;

    width: 100%;
    height: 50px;
}
	.swal-content__input:focus {
		background: #eff3f4;
		border: none;
	}

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

	margin: 0;
	padding: 40px;

	display: block;
	text-align: center;
}
	.modal-header h5 {
		font-size: 24px;
	}
.modal-body {
	padding: 0 40px;

	display: block;

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

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

/* Modal Menu */
.modal-menu .modal-content {
	background-color: #2e3b4c;
	border-radius: 12px;
}
.modal-menu .modal-header .close {
	color: #aab5c3;
	text-shadow: none;

	opacity: 1;
}
.modal-menu .modal-body {
	padding-top: 0px;
}
	.modal-menu .modal-body .divider {
		border-top: 1px solid #3f4d60;
	}
	.modal-menu .modal-body ul {
		margin: 4px 0 0 0;
		padding: 0;
	}
	.modal-menu .modal-body li {
		display: block;
	}
	.modal-menu .modal-body li a {
		display: block;

		color: #fff;
		text-decoration: none;

		padding: 15px 25px;
	}
	.modal-menu .modal-body li a:hover {
		background: #de3673;
		border-radius: 4px;

		color: #fff;
	}
	.modal-menu .modal-body li a i {
		position: relative;
		top: 6px;

		font-size: 12px;
		float: right;
	}
