#page-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}

.app-brand-text.demo {
	font-size: 1.4rem !important;
	letter-spacing: -0.5px;
	text-transform: uppercase !important;
}

.required::after {
	content: " *";
	color: #dc3545;
}

.datatable-paginate-center ul.pagination {
	justify-content: center !important;
}

.table-datatables {
	font-size: .8rem !important;
}

.table-datatables #datatable_paginate ul.pagination {
	--bs-pagination-font-size: .8rem !important;
}

.datatable-hide-thead thead {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}

figure.table > :not(caption) > * > * {
	color: #697a8d !important;
}

figure.table tr {
	border-bottom-width: 0 !important;
}

figure.table td {
	border-style: none !important;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
	.sticky-top-120 {
		position: -webkit-sticky;
		position: sticky;
		top: 120px;
		z-index: 1019;
	}
}

.user-profile-badge-image,
.user-profile-badge-qr {
	cursor: pointer;
	transition: box-shadow .3s;
}

.user-profile-badge-image:hover,
.user-profile-badge-qr:hover {
	box-shadow: 0 0 20px rgba(33,33,33,.3);
}

.user-profile {
	border-radius: 50%;
	object-fit: cover;
}

.user-profile-crop-20 {
	width: 20px;
	height: 20px;
}

.user-profile-crop-30 {
	width: 30px;
	height: 30px;
}

.user-profile-crop-35 {
	width: 35px;
	height: 35px;
}

.user-profile-crop-40 {
	width: 40px;
	height: 40px;
}

.user-profile-crop-50 {
	width: 50px;
	height: 50px;
}

.user-profile-crop-60 {
	width: 60px;
	height: 60px;
}

.user-profile-crop-75 {
	width: 75px;
	height: 75px;
}

.user-profile-crop-80 {
	width: 80px;
	height: 80px;
}

.user-profile-crop-100 {
	width: 100px;
	height: 100px;
}

.user-profile-crop-120 {
	width: 120px;
	height: 120px;
}

.user-profile-crop-150 {
	width: 150px;
	height: 150px;
}

.user-profile-crop-180 {
	width: 180px;
	height: 180px;
}

.gallery-container {
	position: relative;
	overflow: hidden;
	height: 100px;
	width: 100px;
}

@media only screen and (max-width: 600px) {
	.gallery-container {
		height: 120px;
	}
}

.gallery-image-responsive {
	position: absolute;
	width: auto;
	height: 100%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.gallery-thumb {
	object-fit: cover;
}

.ck-editor__editable_inline {
    min-height: 400px;
}

.post-content-description h1 {
	font-size: 2.5rem !important;
}

.post-content-description h2 {
	font-size: 2rem !important;
	font-weight: 600 !important;
}

.post-content-description h3 {
	font-size: 1.5rem !important;
}

.post-content-description h4 {
	font-size: .95rem !important;
}

.post-content-description h5,
.post-content-description h6 {
	font-size: .875rem !important;
}

.swal2-container {
	z-index: 9999 !important;
}

.grow {
	transition: all .2s ease-in-out;
}

.grow:hover {
	transform: scale(1.2);
}

.pull-up {
	position: relative;
	top: 0;
	transition: top ease 0.3s;
}

.pull-up:hover {
	top: -2px;
}

.avatar-group .avatar-item:first-child {
	margin-left: 0;
}

.avatar-group .avatar-item {
	margin-left: -1rem;
}

.avatar-group .avatar-item img {
	border: 2px solid #fff;
}

.content-map {
	position: relative;
    padding-bottom: 60%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}

.content-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.content-scrollable {
	overflow: auto;
}

/* Timeline */
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

.datatables_action {
	display: none;
}

.datatables_with_action:hover > .datatables_action {
	display: block;
}

#featured-image-container {
	position: relative;
	height: 200px;
}

#featured-image-container > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-image-overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-image-text {
	position: absolute;
	top: 85px;
	right: 0;
	bottom: 10px;
	left: 0;
	padding: 1.5rem;
	border-radius: 0.5rem;
}

.card-hover-content {
	display: none;
}

.card-hover:hover .card-hover-content {
	display: block;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}