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

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

	background-color: #ffffff;

	top: 0px !important;
}

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

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

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

		transition: 0.3s;
	}

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

/* Body - Paragraphs */
p:last-of-type {
	margin-bottom: 0;
}

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

	padding-left: 15px;
	margin: 0;
}
ul.stars li {
	padding-left: 15px;
}

ul.inline {
	list-style: none;

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

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "Outfit", sans-serif;
	font-weight: 700;

	margin-bottom: 2px;
}
	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;
	}

/* 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:not(.exclude-image) {
	border-radius: 25px;
	width: 40px;
	height: 40px;
}
.table.large-image img:not(.exclude-image) {
	border-radius: 4px;
	width: 90px;
	height: 70px;
}

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

    overflow-y: scroll;

    width: 100%;

	touch-action: none;
}
.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;
}

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

    z-index: 10;
}

/* Images */
.image-fit {
	object-fit: cover;
	overflow-clip-margin: unset;
}
.image-width-xxsmall {
	width: 40px;
}
.image-width-xsmall {
	width: 50px;
}
.image-width-small {
	width: 160px;
}
.image-width-medium {
	width: 280px;
}
.image-width-large {
	width: 480px;
}

.image-height-xsmall {
	height: 85px;
}
.image-height-small {
	height: 120px;
}
.image-height-medium {
	height: 250px;
}
.image-height-large {
	height: 450px;
}
.image-height-xlarge {
	height: 595px;
}

.thumbnails.image-height-medium {
	height: 175px;
}

/* */
.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-featured {
	position: relative;
}
.image-featured::after {
    content: "Featured";

	background: #7209b7;

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

	position: absolute;
	left: 0;

	padding: 4px 8px;
}

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

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

/* 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;
		text-align: left;

		height: auto;

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

	  	visibility: hidden;

		position: absolute;
		bottom: 100%;

  	  	z-index: 1;
	}

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

	.tip .tooltiptext.width-auto {
		width: auto;
		white-space: nowrap;
	}
	.tip .tooltiptext.width-fixed {
		width: 300px;
	}
	.tip .tooltiptext.right {
		left: 50%;
	}
	.tip .tooltiptext.left {
		right: 105%;
	}

/* Gallery */
.lb-nav a.lb-prev {
	background: url(../images/icons/icon-prev.svg) left 48% no-repeat;
	background-size: 50px;
}
.lb-nav a.lb-next {
	background: url(../images/icons/icon-next.svg) right 48% no-repeat;
	background-size: 50px;
}
.lb-data .lb-close {
	background: url(../images/icons/icon-close.svg) top right no-repeat;
	background-size: 50px;

	width: 50px;
	height: 50px;

	margin-top: -5px;

	opacity: 1;
}

/* Alert Popup */
.swal-title {
	font-size: 24px;
	font-weight: 700;
	color: #43525b;
}
.swal-text {
	font-size: 16px;
	color: #43525b;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}
.swal-content-special {
	text-align: left;
}
.swal-content-special ul {
	margin: 15px 0 25px 0;
	padding-left: 15px;

	list-style: none;
}

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

/* Dropdowns */
.dropdown a {
	color: #43525b;
	text-decoration: none;
}
	.dropdown a:hover {
		color: #43525b;
		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;
	}

/* Progress Bar */
.progress-bar {
	background-color: #7209b7;
}

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

.modal-body {
	padding: 0 15px;

	display: block;

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

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

/* Misc */
#totalError {
	font-size: 16px;
}

#foundLocation {
	margin: 0;
	padding: 0;
	list-style: none;
}
#foundLocation li {
	background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

    padding: 12px 15px;
	margin-top: 6px;

    width: 100%;

	cursor: pointer;
}
#foundLocation span {
	background: #7209b7;
	border-radius: 4px;

	padding: 4px 8px;

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

	float: right;
}
#foundLocation li.selected span {
	background: #44AC8E;
}

.card-panel .container-circle {
	width: 35px;
	height: 35px;
	line-height: 35px;
}
.card-panel .addFavourites {
	position: absolute;
	top: 6px;
	right: 6px;
}
