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

/* Body - Default Font and Layout */
body {
	font-family: "Domine", serif;
	font-size: 16px;
	font-weight: 400;
	color: #353535;

	background-color: #ffffff;
}

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

/* Body - Links */
a {
	color: #353535;
	text-decoration: none;

	transition: 0.3s;
}
	a:hover {
		color: #464646;
		text-decoration: none;

		transition: 0.3s;
	}

/* Body - Lines */
hr {
	border-top: 1px solid #e5e5e5;
}

/* 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;
}
ul.inline li a {
	display: block;

	text-decoration: none;

    padding: 8px 20px 8px 0;
}
ul.inline li a.active {
	color: #3B5998;
	font-weight: 500;

	text-decoration: underline;
}

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

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

/* Tables */
.table {
	font-size: 14px;
	color: #3C3C4F;

	margin: 0;
	padding: 0;
}
.table thead th {
	border-top: none;
	border-bottom: 1px solid #dee2e6;
}
.table td, .table th {
	vertical-align: middle;
}
	.table td:last-child, .table th:last-child {
		text-align: right;
	}
.table img {
	border-radius: 25px;
	width: 40px;
	height: 40px;
}
.table.large-image img {
	border-radius: 4px;
	width: 70px;
	height: 70px;
}

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

    overflow-y: scroll;

    width: 100%;

	touch-action: none;
}

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

    z-index: 20;
}

.scroll-overlay {
	background: rgb(0, 0, 0, 0.8);

    position: absolute;
	z-index: 10003;

    width: 100%;
    height: 100%;

	transition: 0.5s;
	transition-timing-function: ease;
}

/* Text Lines Truncate */
.truncate-xsmall {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.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;
}
.truncate-xlarge {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}

/* Images */
.image-fit {
	object-fit: cover;
	overflow-clip-margin: unset;
}
.image-expand {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	display: block;
	width: 100%;
	height: 100%;
}
.image-width-01 {
	width: 50px;
}
.image-width-02 {
	width: 80px;
}
.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: 80px;
}
.image-height-03 {
	height: 150px;
}
.image-height-04 {
	height: 200px;
}
.image-height-05 {
	height: 300px;
}
.image-height-06 {
	height: 500px;
}

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

    float: right;

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

    float: left;

    width: 50%;
    height: 100%;
}

/* */
.image-hover-wrapper {
    overflow: hidden;
}
.image-hover img:not(.no-hover) {
    transition: all 0.3s ease;
}
.image-hover:hover img:not(.no-hover) {
    filter: brightness(0.7);
	transform: scale(1.2);

	transition: all 0.3s ease;
}

/* */
.image-round {
    border-radius: 50%;
}
	.image-round.tiny {
		width: 15px;
		height: 15px;
	}
	.image-round.small {
		width: 50px;
	    height: 50px;
	}
	.image-round.medium {
		width: 110px;
	    height: 110px;
	}
	.image-round.large {
		width: 180px;
	    height: 180px;
	}

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

    width: 100%;
	height: auto;
}
	.image-with-text.large img {
		border-radius: 4px;

		width: auto;
		height: 600px;

		object-fit: cover;
	}
	.image-with-text.small img {
		border-radius: 4px;

		width: auto;
		height: 350px;

		object-fit: cover;
	}
	.image-with-text .grad {
		background-image: linear-gradient(rgba(255, 0, 0, 0), rgba(0, 0, 0, 1));
	    position: absolute;
	    bottom: 0;
		border-radius: 0 0 4px 4px;

	    z-index: 20;

	    width: 100%;
	    height: 150px;
	}
	.image-with-text .content {
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;

		width: 100%;
		height: auto;

		color: #fff;

		margin: 0 auto;

		z-index: 30;
	}

/* */
.image-alert {
    border-radius: 0 12px 12px 0;

	position: absolute;
	top: 10px;
	left: 0;

	padding: 6px 15px;

	z-index: 10;
}
.image-info {
    border-radius: 12px 0 0 12px;

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

	padding: 6px 15px;

	z-index: 10;
}

/* Dropdowns */
.dropdown a {
	color: #353535;
	text-decoration: none;
}
	.dropdown a:hover {
		color: #353535;
		text-decoration: none;
	}
.dropdown-menu {
	border: 1px solid #dee2e6;

	padding: 0;
	margin: 10px 0 0;
}
	.dropdown-item {
		padding: 12px 25px 12px 15px;

		transition: 0.1s;
	}
	.dropdown-item:hover {
		background-color: #f5f5f5;

		transition: 0.1s;
	}
	.table .dropdown-item {
		font-size: 14px;

		padding: 10px 25px 10px 15px;

		transition: 0.1s;
	}

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

	line-height: normal;

	cursor: pointer;
}
	.tip .tooltiptext {
		background-color: #353535;
		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-title {
	font-size: 20px;
	font-weight: 700;
	color: #353535;
}
.swal-text {
	font-size: 16px;
	color: #353535;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}

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

.swal-button-container button {
    border: none;

	font-size: 16px;
    color: #fff;
}
    .swal-button:hover {
        background-color: #000000 !important;
    }
	.swal-button--cancel:hover {
        background-color: #f5f5f5 !important;
    }

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

	font-size: 16px;

    padding: 0 15px;

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

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

	margin: 26px 0 13px 0;
	padding: 13px 16px;

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

.modal-body {
	padding: 0 15px;

	display: block;

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

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