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

/* Body - Default Font and Layout */
body {
	font-family: "Roboto Slab", serif;
	font-optical-sizing: auto;
	font-size: 16px;
	color: #3C3C4F;

	background-color: #fff;
}

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

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

	transition: 0.3s;
}
	a:hover {
		color: inherit;
		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.no-list {
	list-style: none;

	padding: 0;
	margin-left: 20px;
}
ul.no-list li {
	padding: 3px 0;
}

ul.inline {
	list-style: none;

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

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "Aleo", serif;
	font-optical-sizing: auto;
	font-weight: 900;
}
	h1 {
		font-size: 66px;
	}
	h2 {
		font-size: 60px;
	}
	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;

    width: 100%;

	touch-action: none;
}

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

    z-index: 10;
}

/* Text Lines Truncate */
.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: 350px;
}
.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: 350px;
}
.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-round.xlarge {
		width: 350px;
	    height: 350px;
	}

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

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

	line-height: normal;

	cursor: pointer;
}
	.tip .tooltiptext {
		background-color: #3C3C4F;
		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>
	*/

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

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

	font-size: 16px;

	height: auto;
}

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

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

/* Dropdowns */
.dropdown-menu {
	padding: 0;
	margin: 9px 0 0;
}
	.dropdown-item {
		background: #fff;
		border: 1px solid #ddd;
		border-radius: 4px;

        font-size: 14px;
		color: #3C3C4F;
		text-decoration: none;

        margin: 5px 0;
        padding: 10px;

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

		transition: 0.1s;
	}
	.dropdown-item i {
		position: relative;
        top: 6px;

        font-size: 12px;

        float: right;
	}
/* Alert Popup */
.swal-title {
	font-family: "Aleo", serif;
    font-optical-sizing: auto;
	font-size: 24px;
	font-weight: 900;
	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;
	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: #3b5998;
}
.swal-icon--success__line {
	background-color: #3b5998;
}
.swal-icon--success__ring {
	border: 4px solid #3b5998;
}
.swal-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}
.swal-overlay:before {
	height: auto;
}

.swal-button-container button {
    background-color: #3b5998 !important;
    border: none !important;

	font-size: 16px;
	font-weight: 500 !important;
    color: #fff !important;
}
    .swal-button-container button:hover {
        background-color: #5773ae !important;

		font-size: 16px;
		font-weight: 500 !important;
        color: #fff !important;
    }
	.swal-button-container button.swal-button--cancel {
		background-color: #fff !important;
		color: #3C3C4F !important;
	}

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

	font-size: 16px;

    padding: 0 15px;

    height: 52px;

    transition: 0.5s;
}
	.swal-content__input:focus {
		background: #cce5ff;
	    border: none;
	    box-shadow: none;

	    color: #004085;

	    outline: none;

	    transition: 0.5s;
	}

/* 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-footer button {
		background-color: #3b5998;
		border: none;
		border-radius: 4px;

		font-size: 16px;
		font-weight: 400;
		color: #fff;

		padding: 10px 24px;
    	margin: 5px;
	}
	.modal-footer button.cancel {
		background-color: #fff;
		color: #3C3C4F;
	}
.modal.show {
	animation: showSweetAlert 0.3s;
}
.modal.fade .modal-dialog {
	transform: none;
}
