[class*="app-"] {
    --app-primary: #002856;
    --app-secondary: #fff;
    --app-accent: #5B94D3;
    --app-thumb: #e9efff;
    --app-text-heading-color: #233A80; 
    --app-text-color: #233A80; 
    --app-text-content: #696b84; 
    --app-text-light: #B2B4BB;
    --app-border-light: #dde0ff;
    --app-border-light-x: #ebefff;
    --app-link-color: #0d6efd;
    --app-danger: #db3646;
    --app-shadow: 0 3px 10px -2px rgba(67, 90, 176, 0.2);
    --app-shadow-hover: 0 6px 50px -2px rgba(67, 90, 176, 0.3);
}
[class*="app-"] img {
    max-width: 100%;
}
body {
    overflow-x: hidden;
    counter-reset: faq-item;
    min-height: 100dvh;
}
.app-section {
    padding-block: 40px;
}
.app-section-top {
    margin-bottom: 40px;
}
.app-section-bottom {
    margin-top: 40px;
}
.app-text {
    color: #878787;
}
.app-bold {
    font-weight: 600;
}
.app-link {
    text-decoration: none;
    color: var(--app-link-color);
}
.app-cursor {
    cursor: pointer;
}
.app-link-over {
    text-decoration: none;
    color: inherit;
}
.app-link-over:hover {
    text-decoration: underline;
    color: var(--app-link-color);
}
.app-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 40px;
}
.app-panel .app-panel-logo {
    max-width: 150px;
}

.app-panel .app-panel-caption h1.app-panel-uc {
    color: var(--primary, var(--app-primary));
	font-size: 5rem;
	line-height: 1;
	margin: 0 0 20px;
	text-shadow: 4px 4px 6px rgba(0,0,0,0.3);
	font-weight: 800;
}
.app-panel .app-panel-caption h3 {
	font-size: 2.2rem;
	line-height: 1;
	margin: 0 0 20px;
}
.app-panel .app-panel-caption {
    max-width: 700px;
}
.app-panel .app-panel-caption p {
	font-size: 1rem;
	line-height: 1.5;
    color: var(--app-text-light);
    margin: 0;
}
.app-panel .app-panel-action {
    display: block;
    padding-top: 40px;
}
.app-panel .app-panel-action {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

article br {
	display: block;
	margin: 0;
}
.text-bold {
    font-weight: 600;
}
article,
article p,
article ul,
article ul li,
article ol,
article ol li {
	color: var(--text-color, var(--app-text-color));
    line-height: 1.7;
}
article p {
	margin-bottom: 10px !important;
}
article strong, strong {
    font-weight: 600;
	color: var(--text-heading-color, var(--app-text-heading-color));
}
article p:has(strong) {
	margin-bottom: 0 !important;
}
article ul, article ol {
	padding-left: 30px;
	margin-bottom: 20px;
}

table {
	border-collapse: collapse;
	width: 100%;
}
article table > thead, .app-table > thead {
    position: relative;
    z-index: 2;
}
article table > thead::after, .app-table > thead::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    box-shadow: 0 5px 10px -5px var(--primary, var(--app-primary));
}
article table > thead > tr > th, .app-table > thead > tr > th {
	background: linear-gradient(to right, var(--primary, var(--app-primary)), var(--accent, var(--app-accent)));
	color: var(--secondary, var(--app-secondary));
	border: none;
	padding: 10px;
    font-weight: 600;
}
article table > tbody > tr > th, .app-table > tbody > tr > th,
article table > tbody > tr > td, .app-table > tbody > tr > td {
    --app-table-border: #e4e1ff;
	padding: 6px 10px;
    border-top: 1px solid var(--app-table-border);
    border-bottom: 1px solid var(--app-table-border);
    vertical-align: top;
}
article table > tbody > tr:first-child > th, .app-table > tbody > tr:first-child > th,
article table > tbody > tr:first-child > td, .app-table > tbody > tr:first-child > td {
    border-top: none;
}
article table > tbody > tr > td:not(:first-child), .app-table > tbody > tr > td:not(:first-child) {
    border-left: 1px solid #f4f3ff;
}
[align="left"] {
	text-align: left;
}
[align="center"] {
	text-align: center;
}
[align="right"] {
	text-align: right;
}
article table > tbody > tr:nth-child(2n+2) > td, .app-table > tbody > tr:nth-child(2n+2) > td {
	background-color: #fafbff;
}
.app-table-img {
	max-width: 50px !important;
}
.table-responsive {
	padding-bottom: 15px;
	border: none;
}

.quick-call {
    position: fixed;
    min-height: 34px;
    min-width: 34px;
    left: 5%;
    bottom: 8%;
    z-index: 101;
    border-radius: 25px;
    box-shadow: 0px 9px 20.8px 1.2px rgba(16, 37, 65, 0.3);
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}
.quick-call.qc-popup-right {
    left: auto;
    right: 5%;
}
.quick-call img {
    max-width: 100%;
}
.call-ico {
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	color: #fff;
	animation: buffering 1s infinite ease-in-out;
	bottom: 0;
	margin: auto;
}
.quick-call > .call-caption {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 18px 0 45px;
    margin-left: -3px;
    border-radius: 25px;
    background-color: #20c55d;
    color: #FFF;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
}
.call-ico::before, .app-gl-play::before {
    content: "";
    position: absolute;
    border: 1px solid #25D366;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    animation: pulse 1s linear infinite
}

.call-ico::after, .app-gl-play::after {
    content: "";
    position: absolute;
    border: 1px solid #25D366;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    animation-delay: 0.3s
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 0
    }
    50% {
        transform: scale(1);
        opacity: 1
    }
    100% {
        transform: scale(1.3);
        opacity: 0
    }
}
@-webkit-keyframes buffering {
    0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

.app-messages-panel.app-ms-column {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}
.app-ms-grids {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.app-ms-column .app-ms-grids {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}
.app-ms-item {
    margin-bottom: 40px;
}
.app-ms-profile {
    flex: 0 0 300px;
}
.app-ms-zigzag .app-ms-item:nth-child(even) .app-ms-profile {
    order: 2;
}
.app-ms-zigzag .app-ms-item:nth-child(even) .app-ms-sosial {
    text-align: right;
}
.app-ms-zigzag .app-ms-item:nth-child(even) .app-social-media {
    justify-content: flex-end;
}
.app-ms-column .app-ms-profile {
    flex: auto;
}
.app-ms-profile-box {
	padding: 20px;
	background-color: #fff;
	box-shadow: var(--app-shadow);
}
.app-ms-profile-box:hover {
    box-shadow: var(--app-shadow-hover);
}
.app-ms-thumb {
    width: 100%;
	aspect-ratio: 1/1.1;
    overflow: hidden;
}
.app-thumb-x {
    aspect-ratio: auto;
}
.app-ms-thumb img {
    min-height: 100%;
}
.app-ms-info {
    padding-top: 20px;
}
.app-ms-info p {
    margin-bottom: 10px;
}
.app-ms-name {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-ms-info p:last-child {
    margin-bottom: 0;
}
.app-ms-sosial {
	box-shadow: 0 3px 6px -2px rgba(67, 90, 176, 0.15);;
	padding: 20px;
    margin-top: 20px;
}
.app-ms-m .app-ms-profile {
    flex: 0 0 400px;
}
.app-ms-xl .app-ms-profile {
    flex: 0 0 50%;
}
.app-ms-xl .app-ms-profile img {
    width: 100%;
}

.app-social-media {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
.app-social-media > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1; 
    border-radius: 50%; 
    text-decoration: none;
    background-color: var(--primary, var(--app-primary));
    color: var(--secondary, var(--app-secondary));
    font-size: 1rem;
    line-height: 1;
}
.app-social-media.app-media-small > li > a {
    width: 32px;
    font-size: 14px;
}
.app-social-media.app-media-small {
    gap: 5px;
}
.app-social-media > li:hover > a {
    background-color: var(--accent, var(--app-accent));
}
.app-404 {
	font-size: 6rem;
	color: red;
}
.bold-shadow {
    text-shadow: 2px 3px 4px rgba(125, 144, 189, 0.5);
    font-weight: 800;
}

.app-post-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.app-post-card {
    box-shadow: var(--app-shadow);
    text-decoration: none;
    color: var(--text-heading-color, var(--app-text-heading-color));
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.app-post-card:hover {
    box-shadow: var(--app-shadow-hover);
}
.app-post-thumb {
    width: 100%;
	aspect-ratio: 1/.6;
	overflow: hidden;
	display: flex;
	justify-content: center;
    align-items: center;
    background-color: var(--app-thumb);
}
.app-post-icon {
	position: relative;
	font-size: 3rem;
	color: inherit;
	padding: 30px 20px 10px;
}
.app-post-card img {
    width: 100%;
    min-height: 100%;
}
.app-post-card img[src*="not-found.png"] {
    width: auto;
    min-height: auto;
}
.app-post-caption {
    width: 100%;
    box-sizing: border-box;
	padding: 20px;
	display: flex;
	flex-direction: column;
    flex: 1;
}
.app-post-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-heading-color, var(--app-text-heading-color));
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.app-post-title:hover {
    color: var(--primary, var(--app-primary));
}
.app-post-category, .app-post-category p {
    color: var(--app-text-light);
}
.app-post-category {
	color: var(--app-text-light);
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
    margin-bottom: 10px;	
}
.app-post-category p {
    margin: 0;
}
.app-post-category p:not(:last-child)::after {
    content: ",";
}
.post-content {
    flex: 1;
}
.post-content, .post-content p {
    color: var(--text-color, var(--app-text-color));
    margin: 0;
}
.post-content p, .text-clamp-2, .text-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-clamp-2, .text-clamp-2 p {
    -webkit-line-clamp: 2;
}
.app-post-link {
	margin: 10px 0 0;
    color: var(--app-link-color);
    text-decoration: none;
}
.app-post-link i.ti-angle-double-right {
    font-size: .75rem;
}
.app-post-action {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
    margin-top: 20px;
    min-height: 38px;
}
.app-post-action .app-post-link {
    margin: 0;
    text-decoration: none;
    color: var(--primary, var(--app-primary));
    font-weight: 600;
}
.app-paginations {   
    margin-top: 40px; 
    padding-block: 20px;
    border-top: 1px solid #f1f4ff;
    border-bottom: 1px solid #f1f4ff;
    margin-bottom: 20px;
}
.app-paginations p,
.app-paginations .pagination {
    margin: 0;
}
.pagination {
	--bs-pagination-active-bg: var(--primary, var(--app-primary)) !important;
	--bs-pagination-active-border-color: var(--primary, var(--app-primary)) !important;
	--bs-pagination-color: var(--primary, var(--app-primary)) !important;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}
.pagination > li .page-link {
	padding-block: 3px 4px;
	border-radius: 0 !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}
.app-pdf-viewer {
    width: 100%;
    aspect-ratio: 1;
}
.app-pdf-button {
    display:flex;
    gap:20px;
    align-items:center;
    border:1px solid var(--app-border-light);
    padding:10px 15px;
    margin-top:20px;
    border-radius:2px;
}

.app-faq-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.app-faq-item:not(:last-child)::after {
	position: absolute;
	content: "";
	top: 45px;
	left: 20px;
	bottom: 5px;
	border-left: 1px dotted var(--primary, var(--app-primary));
	z-index: -1;
}
.app-faq-item .app-faq-thumb {
    flex: 0 0 40px;
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
}
.app-faq-item .app-faq-thumb::after {
    position: absolute;
    counter-increment: faq-item;
    content: counter(faq-item);
    inset: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;    
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, var(--app-primary));
}
.app-faq-bordered {
    border: 1px solid var(--primary, var(--app-primary));
}
.app-faq-title {
    margin-bottom: 10px;
}
.app-faq-item:not(:last-child) {
    padding-bottom: 20px;
}

.app-dialog {
	position: fixed;
	z-index: 10000;
	inset: 0 -20px 0 0;
	display: flex;
	justify-content: center;
    align-items: flex-start;
	background-color: rgba(26, 20, 66, 0.37);
	backdrop-filter: blur(3px);
    overflow-y: auto;
    padding: 0 40px 0 20px;
}
.app-dialog-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-dialog-content {
    width: 100%;
    max-width: 750px;
    min-height: 400px;
    position: relative;    
    margin: 40px 0;    
}
.app-dialog-content:has(.app-dialog-body) {
    background-color: #fff;
    box-shadow: 0 13px 45px -4px rgba(0,0,0,0.3);
}
.app-dialog-content:not(:has(.app-dialog-body)) img {
    box-shadow: 0 13px 45px -4px rgba(0,0,0,0.3);
}
.app-dialog-close {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;    
	padding: 0 !important;
	border: none;
	background-color: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    outline: none !important; 
    z-index: 10;   
}
.app-dialog-close:active {
    top: 2px;
}
.app-dialog-body {
    padding: 30px;
}
.app-dialog-fadeout {
    transform: scale(0);
}
.app-post-search {
	padding: 10px 20px;
	margin: 20px 0 30px;
	background-color: #f1f5ff;
}
form {
    margin: 0;
}
.app-search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.app-search-box > div {
    flex: 1;
}
.app-post-input {
    max-width: 300px;
    display: flex;
    gap: 5px;
}
.app-input {
    width: 100%;
    height: 38px;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid var(--app-border-light);
}
.app-input:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
textarea.app-input {
    resize: vertical;
    min-height: 100px;
}
.app-button {
	min-height: 38px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
	padding-inline: 18px;
	font-size: .9rem;
	line-height: 1;
    text-transform: uppercase;
	font-weight: 600;
	margin: 0;
	background-color: var(--primary, var(--app-primary));
	color: var(--secondary, var(--app-secondary));
	border-radius: 2px;
	border: none;
	outline: none !important;    
	white-space: nowrap;
    text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;	
}
.app-button.app-button-large {
    min-height: 46px;
    padding-inline: 20px;
}
.app-button.app-button-small {
	min-height: 32px;
	padding-inline: 12px;
}
.app-button:hover, .app-button.active {
    background-color: var(--accent, var(--app-accent));
}
.app-button + .app-button {
    margin-left: 5px;
}
.app-input-group input {
    border-right: none;
}
.app-input-group input + [type="submit"] {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.mb-4 {
    margin-bottom: 1.5rem;
}

.app-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}
.app-card {
    position: relative;
    z-index: 1;
    background-color: #fff;
    filter: drop-shadow(0 3px 5px rgba(67, 90, 176, 0.15));
}
.app-card::after {
	position: absolute;
	content: "";
	z-index: -1;
	inset: 20px 0 -20px 0;
	background-color: #ffff;
	transform: skewY(6deg);
}
.app-card:hover {
    filter: drop-shadow(0 6px 30px rgba(67, 90, 176, 0.3));
}
.app-card-thumb {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1/1.1;
	overflow: hidden;
    background-color: var(--app-thumb);
}
.app-card-thumb img:not([src*="not-found.png"]) {
    width: 100%;
    min-height: 100%;
}
.app-card-thumb:has(img[src*="not-found.png"]) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-card-caption {	
	padding: 20px 20px 6px;
    color: var(--text-color, var(--app-text-color));
}
.app-card-caption p, .app-card-caption {
	margin: 0 0 6px;
}
.app-card-title {
	font-size: 1rem;
	margin-bottom: 10px;
	font-weight: 600;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-card-proff {
	text-transform: uppercase;
	font-size: .9rem;
    color: var(--app-text-light);
}
.app-card-des {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    color: var(--app-text-light);
}
.app-card-link {
	position: absolute;
	left: 20px;
	bottom: -34px;
	width: 40px;
	height: 40px;
	background-color: var(--primary, var(--app-primary));
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--app-secondary);
	border-radius: 50%;
	text-decoration: none;
	font-size: 17px;
	outline: none;
    box-shadow: 0 2px 5px -3px var(--primary, var(--app-primary));
}
.app-card-link:hover {
    background-color: var(--accent, var(--app-accent));
}
.app-card-shares {
    position: absolute;    
    bottom: 0;
    right: 20px;
    z-index: 5;
}
.app-card-share {	
	width: 35px;
	height: 35px;
    background-color: var(--primary, var(--app-primary));
    color: var(--secondary, var(--app-secondary));
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% 50% 0 0;
    position: relative;
    z-index: 5;
}
.app-card-shares:hover .app-card-share {
    transform: translateY(40px);
}
.app-card-social {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
    transform: translateY(100%);
}
.app-card-shares:hover .app-card-social {
    transform: translateY(0);
}
.app-card-social > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    text-decoration: none;
    outline: none;
    background-color: var(--primary, var(--app-primary));
    color: var(--secondary, var(--app-secondary));
    border-radius: 50%;    
}
.app-card-social > li:hover > a {
    background-color: var(--accent, var(--app-accent));
}
.app-card-social > li > a > i {
    -webkit-transition: all 1.7s;
    transition: all 1.7s;
}
.app-card-shares:hover .app-card-social > li > a > i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.app-q-item {
    background-color: #fff;
}
.app-q-item:not(:last-child) {
    margin-bottom: 15px;
}
.app-q-item .app-q {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
    padding: 20px;
    box-shadow: var(--app-shadow);
}
.app-q-item .app-q-ico {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-q-item .app-ans {    
    padding: 20px;
}
.app-q-item:not(:first-child) .app-ans {
    display: none;
}

.app-contacts {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px; 
    margin-bottom: 40px;   
}
.app-contacts .app-con-form, .app-contacts .app-con-info {
    flex: 1;
}
.text-danger {
    color: var(--app-danger);
}
.invalid-feedback > strong {
    color: var(--app-danger);
}
label:has(+.app-input) {
    margin-bottom: 10px;
}
.mb-4 {
    margin-bottom: 1.5rem;
}


.app-con-form-box {
	background-color: #FFF;
	padding: 40px 60px 40px 0;
	box-shadow: 55px 0 75px 0px rgba(114, 132, 162, 0.3);
}
.app-google-map {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 20px;
}
.app-google-map iframe {
    margin-bottom: -5px;
}
.app-con-label {
    margin-bottom: 30px;
}
.app-con-gorup {
    margin-bottom: 50px;
}
.app-con-thumbnail {
    width: 100%;
    aspect-ratio: 1/.35;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}
.app-con-thumbnail img {
    width: 100%;
    min-height: 100%;
}
.app-con-title, .app-form-title {
	font-size: 1.4rem;
	font-weight: 600;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-form-title {
	font-size: 2.3rem;
}
.app-con-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.app-form-label {
    margin-bottom: 30px;
}
.app-con-item .app-con-thumb {
	--app-icon-ratio: 50px;
	flex: 0 0 var(--app-icon-ratio);
	width: var(--app-icon-ratio);
	height: var(--app-icon-ratio);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary, var(--app-primary));
	color: var(--secondary, var(--app-secondary));
	border-radius: 50%;
    font-size: 24px;
}
.app-con-item .app-con-thumb img {
	max-width: 32px;
}
.app-con-gorup-item .app-con-item:not(:last-child) {
	margin-bottom: 15px;
}
.app-con-info article p:last-child{
    margin-bottom: 0 !important;
}
.app-con-item a {
    color: inherit;
    text-decoration: none;
}
.app-con-item a:hover {
    color: var(--app-link-color);
}
.app-contact-grid.app-grid-x {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

[data-tooltip] {
    position: relative;
    cursor: pointer;
}
[data-tooltip]::before {
	position: absolute;
	bottom: 100%;
	content: attr(data-tooltip);
	background-color: #000;
	color: #9d9d9d;
	z-index: 5;
	padding: 0 10px;
	font-weight: 600;
	font-size: 14px;
	border-radius: 2px;
	margin-bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	box-shadow: 0 10px 10px -4px rgba(0, 0, 0, 0.3);
	cursor: auto;
	display: none;
	height: 31px;
	align-items: center;
}
[data-tooltip]::after {
	content: "▼";
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	color: black;
	margin-bottom: 3px;
	display: none;
	height: 13px;
	align-items: center;
}
[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    display: flex;
}
[data-placement="left"]::before {
	left: auto;
	right: 100%;
	margin: auto 10px auto 0;
	top: 0;
	bottom: 0;
	transform: none;
}
[data-placement="left"]::after {
	margin: auto 2px auto 0;
	left: auto;
	right: 100%;
	transform: translate(0) rotate(-90deg);
	top: 0;
	bottom: 0;
}

.app-gl-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.app-gl-grid.app-gl-grid-large, .app-card-grid.app-gl-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}
.app-card-grid.app-gl-grid-medium {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.app-gl-category {
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    gap: 5px;
}
.app-gl-category .app-button {
    margin: 0;
}
.app-gl-item {
    transform: scale(1);
}
.app-gl-hide {
    transform: scale(0);
}

.app-gl-grid .app-gl-item {
    background-color: #fff;
	padding: 10px;
    box-shadow: var(--app-shadow);
}
.app-gl-grid .app-gl-thumb {
    width: 100%;
    aspect-ratio: 1/.7;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-gl-grid.app-gl-grid-portrait .app-gl-thumb {
    aspect-ratio: 1/1.2;
}
.app-gl-caption {
    position: absolute;
    inset: auto 0 -100% 0;
    padding: 40px 20px 20px;
    background-image: linear-gradient(transparent, var(--primary, var(--app-primary)));
    color: var(--secondary, var(--app-secondary));
}
.app-gl-caption.caption-visible, .app-gl-caption.caption-in-out {
    bottom: 0;
}
.app-gl-item:hover .app-gl-caption {
    bottom: 0;
}
.app-gl-item:hover .caption-in-out {
    bottom: -100%;
}
.app-gl-title {
	font-size: 1rem;
	font-weight: 600;
}
.app-gl-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;    
}
.app-gl-cats span:not(:last-child)::after {
    content: ",";
}
.app-gl-cats > span {
	opacity: .6;
	text-transform: uppercase;
	font-size: .8rem;
	line-height: 1;
	font-weight: 600;
    position: relative;
}
.app-gl-grid .app-gl-thumb img {
    width: 100%;
    min-height: 100%;
}
.app-gl-gird-masonry {
    column-count: 1;
    column-gap: 30px;
}
.app-gl-gird-masonry .app-gl-item {
	break-inside: avoid;
	display: flex;
	margin-bottom: 30px;
	justify-content: center;
}
.app-gl-gird-masonry .app-gl-thumb {
	position: relative;
	overflow: hidden;
	z-index: 1;
	border-radius: 20px;
	box-shadow: var(--app-shadow);
	display: flex;
	justify-content: center;
	align-items: center;
}
.app-gl-play {
	position: absolute;
	z-index: 10;
	width: 40px;
	height: 40px;
	background-color: #ff0000;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 14px;
	color: #fff;
	animation: buffering 1s infinite ease-in-out;
	opacity: .75;
}
.app-gl-play i {
	position: relative;
	left: 2px;
}
.app-gl-play::after {
    border-color: #ff0000;
}
.app-gl-play::before {
    border-color: #ff4444;
}

.alert {
    border: none;
    border-radius: 2px;
    font-size: 14px;
}
.alert-success {
	background-color: #d9ffd8;
	color: #10c245;	
}
.alert-danger {
	background-color: #ffe9e9;
	color: #c21010 !important;
}
.alert strong {
    color: inherit !important;
}
.alert-dismissible .btn-close {
	top: 3px;
	font-size: 11px;
    box-shadow: none !important;    
    outline: none !important;
}
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.app-grid-m {
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.app-grid-l {
	grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
}

.app-posts {
    display: flex;
    gap: 40px;
}
.app-posts .app-pst-aside {
    flex: 0 0 300px;
    position: relative;
    background-color: #fff;	
}
.app-posts > .app-pst-aside:not(:last-child) {
    box-shadow: 20px -15px 25px -8px rgba(207, 213, 238, 0.3);
}
.app-posts .app-pst-list {
    flex: 1;
}
.app-pst-widgets {
	position: sticky;
	top: 0;
}
.app-pst-widget {
    padding: 20px 30px 20px 0;    
}
.app-pst-widget:not(:last-child){
    border-bottom: 1px solid var(--app-border-light-x);
}
.app-pst-widget-input {
    display: flex;
}
.app-pst-widget-input:not(.app-icon-inside) input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}
.app-pst-widget-input:not(.app-icon-inside) .app-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.app-icon-inside {
    position: relative;
    z-index: 1;
}
.app-icon-inside input {
    padding-right: 50px;
}
.app-icon-inside .app-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    z-index: 2;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;  
    margin-top: 20px;  
}
.app-tags > * {
	border: 1px solid var(--app-border-light-x);
	border-radius: 20px;
	padding: 2px 10px 4px;
    cursor: pointer;
    position: relative;
}
.app-tags > *:hover {
    color: var(--primary, var(--app-primary));
}
.app-pst-widget-head {
	margin-bottom: 15px;
}
.app-pst-widget-title {
	font-size: 1.6rem;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-pst-widget-list {
	padding: 0;
	margin-left: 17px;
	display: grid;
	gap: 6px;
    list-style-type: disc;
    color: var(--primary, var(--app-primary));
}
.app-pst-widget-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-pst-widget-list li a:hover {
    color: var(--app-link-color);
    text-decoration: underline;
}
.app-posts > .app-pst-aside:last-child {
    box-shadow: -20px -15px 25px -8px rgba(207, 213, 238, 0.3);
}
.app-posts > .app-pst-aside:last-child .app-pst-widget {
    padding: 20px 0 20px 30px;    
}

.form {
    display: block;
}
.form:has(.column) {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-end;
}
.form:not(:last-child) {
    margin-bottom: 15px;
}
.form > .column {
	flex: 1;
	flex-basis: 150px;
}
.form label {
    color: var(--text-heading-color, var(--app-text-heading-color));
}
textarea {
    min-height: 100px;
    resize: vertical;
}

.app-blog-section:not(:last-child) {
    margin-bottom: 30px;
}
.app-pst-title {
	font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--text-heading-color, var(--app-text-heading-color));
    margin-bottom: 15px;
}
.app-pst-attributes, .app-pst-cats {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px 15px;
    align-items: center;
    font-style: italic;
    color: var(--app-text-light);
    font-weight: 500;
}
.app-pst-cats {
    gap: 5px;
}
.app-pst-attributes li {
    font-size: 1rem;
}
.app-pst-attributes li a {
    color: inherit;
    text-decoration: none;
}
.app-pst-attributes li a:hover {
    color: var(--app-link-color);
}
.app-pst-attributes i {
	font-size: 12px;
	position: relative;
	top: -1px;
}
.app-boundry {
    border-top: 1px solid var(--app-border-light-x);
    border-bottom: 1px solid var(--app-border-light-x);
    padding-block: 8px;
}

.app-pst-cats .app-button {
    margin: 0;
}
.app-pst-attributes:not(:last-child) {
    margin-bottom: 15px;
}
.app-item-loops > *:not(:last-child)::after {
    content: ",";
}
.app-input-group {
    display: flex;
}


.app-pst-sectitle {
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-pst-create-comment {
    padding: 35px 40px;
    border: 1px solid var(--app-border-light);
}

.app-pst-rlt-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-decoration: none;
}
.app-pst-rlt-thumb {
	flex: 0 0 95px;
    width: 95px;
	aspect-ratio: 1/.7;
	overflow: hidden;
    background-color: var(--app-thumb);
}
.app-pst-rlt-caption {
    flex: 1;
}
.app-pst-rlt-thumb img {
    min-height: 100%;
}
.app-pst-rlt-title {
	font-size: 1rem;
    font-weight: 600;
    color: var(--text-heading-color, var(--app-text-heading-color));
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 4px;
}
.app-pst-rlt-item:hover .app-pst-rlt-title {
    color: var(--app-link-color);
}
.app-pst-rlt-time {
	font-size: .9rem;
	color: var(--app-text-light);
	font-style: italic;
	margin-bottom: 0;
}
.app-pst-rlt-item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--app-border-light-x);
}
.app-text-gray {
    color: var(--app-text-light);
}
.app-pst-commets {
    margin-top: 30px;
}
.app-comments {
    list-style: none;
    margin: 0;
    padding: 0;    
}
.app-comments > li {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 1;
    padding-bottom: 15px;
}
.app-comments > li:not(:last-child)::before {
	position: absolute;
	content: "";
	inset: 55px auto 5px 25px;
	border-left: 1px dashed var(--app-border-light);
	z-index: -1;
}
.app-cmnt-thumb {
	flex: 0 0 50px;
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
}
.app-cmnt-thumb:has(img[src*="not-found.png"]) img {
	width: 26px !important;
}
.app-cmnt-name {
	font-size: 1.1rem;
	font-weight: 600;
    color: var(--text-heading-color, var(--app-text-heading-color));
}
.app-cmnt-name .app-cmnt-time {
    color: var(--app-text-light);
    font-weight: normal;
    font-size: 1rem;
}
.app-cmnt-text {
    margin: 0;
    color: var(--text-color, var(--app-text-color));
}
.app-cmnt-action {
    color: var(--app-text-light);
    font-size: .8rem;
    font-style: italic;
}

.app-cmnt-action .app-cmnt-btn {
    cursor: pointer;
}
.app-cmnt-action .app-cmnt-btn:hover {
    color: var(--app-link-color);
}
[contenteditable="true"] {
    border: 1px solid var(--app-border-light);
    padding: 10px 20px;
}
.app-relative {
    position: relative;
    z-index: 1;
}

[app-loader="true"] {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 10000;
    background-color: #FFF;
}
[app-loader="true"]::after {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 10001;
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #e9e9f4;
    border-top-color: var(--primary, var(--app-primary));
    animation: spin 600ms infinite linear;
}
[app-circle="top"]::after {
	bottom: auto;
	top: calc(100dvh - 70dvh);
}
.app-payload[app-loader="true"] {
    position: fixed;
    z-index: 10;
}
body:has(.app-payload:not([app-overflow="true"])) {
    overflow: hidden !important;
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
.app-cmnt-actionbar {
	display: flex;
	justify-content: center;
	border-top: 1px solid var(--app-border-light-x);
	padding-block: 20px;
}
.app-loading i {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    margin-left: 5px;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.init-hide {
    display: none;
}
.init-hide.init-off {
    display: flex;
}
.app-asidebar {
    display: grid;
    gap: 30px;
    max-width: 400px;
}

.app-widget-title {
	font-size: 1.2rem;
	padding: 15px 20px;
    margin-bottom: 20px;
	background-color: var(--primary, var(--app-primary));
	color: var(--secondary, var(--app-secondary));
	font-weight: 500;
	box-shadow: 0 5px 10px -5px var(--app-primary);
}
.app-widget-body {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}
.app-widget-thumb {
    display: flex;
    justify-content: center;
    align-items: center;       
}
.app-widget-download .app-section-bottom {
    margin-top: 0;
}
.app-widget-galleries {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 20px;
}
.app-widget-galleries .app-widget-gl-item {
    width: 100%;
    aspect-ratio: 1/.8;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-widget-gl-item img {
    min-width: 100%;
    min-height: 100%;
}
.app-widget-gl-item:hover img {
    transform: scale(1.1);
}
.app-widget-thumb:has(+div), .app-widget-content:has(+div), .app-widget-galleries:has(+div) {
    margin-bottom: 20px;
}
.app-book-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 50px 30px;
}
.app-book-post-grid.app-grid-m {
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.app-book-post-grid.app-grid-l {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.app-book-post-grid .app-post-cover {
    position: relative;
    z-index: 1;
    perspective: 1000px;
    background-size: cover;
    background-position: center;
    background-color: var(--app-thumb);
}
.app-book-post-grid .app-post-cover::after {
	position: absolute;
	content: "";
	inset: 3px 8px 3px 0;
	background-color: #fff;
	z-index: -1;
	box-shadow: 3px 0 2px -1px #000;
}
.app-book-post-grid .app-post-card {
    box-shadow: none;    
}
.app-book-post-grid .app-post-thumb {
    aspect-ratio: 1/1.5;    
    transition: transform 0.6s;
    transform-style: preserve-3d;
    transform-origin: left;
}
.app-book-post-grid .app-post-thumb:hover,
.app-book-post-grid .app-post-cover:has(+.app-post-action > .app-button:hover) > .app-post-thumb {
  transform: rotateY(-40deg);
}

.app-navbar {
    display: none;
    justify-content: space-between;
    align-items: center;
}
.app-nav-toggler {
    border: none;
    background-color: transparent;
    outline: none;
    position: relative;
    z-index: 1;
    width: 40px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding: 0;
}
.app-nav-toggler::after {
	position: absolute;
	content: "";
	inset: 0;
	background-color: #fff;
	z-index: -1;
	opacity: .15;
}
.app-website {
	font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin: 0;
}
.app-nav-mobile {
	position: fixed;
	top: 0;
	left: -450px;
	height: 100dvh;
	background-color: #fff;
	box-shadow: 20px 0 80px 0 rgba(0,0,0,0.3);
	width: calc(100dvw - 80px);
	max-width: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
.app-nav-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--app-border-light-x);
    position: relative;
    z-index: 1;
}
.app-nav-logo {
	max-width: 150px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.app-nav-logo img {
    max-height: 100%;
}
.app-nav-header .app-website {
    margin-top: 10px;
}
.app-nav-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	font-size: 20px;
	border: none;
	padding: 0;
	outline: none;
	background-color: transparent;
	opacity: .3;
    z-index: 3;
}
.app-nav-body {
    padding-bottom: 20px;
}
.app-nav-body ul {
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
}
.app-nav-body ul > li {
    position: relative;
}
.app-nav-body ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 20px 8px 0;
    color: var(--text-heading-color, var(--app-text-heading-color));
    text-decoration: none; 
    position: relative;   
}
.app-nav-body ul > li > a:has(+ul)::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
}
.app-nav-body ul > li > a:has(+ul[style*="block"])::after {
    content: "\f106";
}
.app-nav-body ul ul {
    display: none;
    padding-left: 30px;
}
.app-nav-body ul ul > li > a::before {
	position: absolute;
	content: "--";
	font-family: "Font Awesome 6 Pro";
	top: 6px;
	left: -15px;
	opacity: .8;
}
.app-nav-body ul li.active > a {
    color: var(--primary, var(--app-primary));
    font-weight: 600;
}

.app-testimonial .slick-track {
    display: flex !important;
    align-items: center;
    gap: 30px;
    padding-block: 60px;
}
.app-testimonial .slick-dots {
    bottom: 0 !important;
}
.slick-prev::before, .slick-next::before {
    color: var(--primary, var(--app-primary)) !important;
    opacity: .2 !important;
}
.slick-prev:hover::before, .slick-next:hover::before {
    opacity: 1 !important;
}
.slick-dots li {
	width: 8px !important;
}
.app-tstm-item {
    background-color: #fff;
    box-shadow: 0 0 1px rgba(129, 163, 227, 0.5);
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.app-tstm-item:hover {
    box-shadow: var(--app-shadow-hover);
}
.app-tstm-thumbnail {
	margin-bottom: 20px;
	display: flex;
	gap: 20px;
	align-items: center;
}
.app-tstm-thumb {
	width: 80px;
	aspect-ratio: 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
    background-color: var(--app-thumb);
}
.app-tstm-thumb img {
    width: 100%;
    min-height: 100%;
}
.app-tstm-thumb img[src*="not-found"] {
    width: auto;
    min-height: auto;
}
.app-tstm-info {
	display: grid;
	gap: 5px;
}
.app-tstm-info p {
	margin: 0;
	color: var(--app-text-light);
	font-size: .9rem;
	text-transform: uppercase;
}
.app-tstm-name {
	font-size: 1.1rem;
	color: var(--text-heading-color, var(--app-text-heading-color));
	margin: 0;
    font-weight: 600;
}
.app-rating-list {
	font-size: 14px;
	display: flex;
	gap: 5px;
	color: orange;
}
.app-tstm-caption p {
    color: var(--text-color, var(--app-text-color));
}
.app-tstm-caption {
	display: flex;
	flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.app-tstm-social {
	padding-top: 15px;
}

/************ START FLOATING ACTION BUTTON ************/
.floating-action-button {
    --floating-button-width: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: grid;
    gap: 5px;
    z-index: 1000;
}
.floating-action-button > li > a {
    position: relative;
    width: var(--floating-button-width);
    aspect-ratio: 1;
    background-color: var(--primary);
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 17px;
    border-radius: 50%;
    -webkit-user-select: none;
    user-select: none;  
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;  
}
.floating-action-button > li:last-child > a {
    transform: scale(1.1);
    margin-top: 2px;
    background-color: var(--accent);
    box-shadow: 0 8px 15px -8px var(--accent);
}
.floating-action-button > li > a:hover {
    background-color: var(--accent);
    box-shadow: 0 8px 15px -8px var(--accent);
}
.floating-action-button > li > a[data-floating-title]:hover::before {
	position: absolute;
	content: attr(data-floating-title);
	inset: 3px calc(100% + 8px) 3px auto;
	padding: 2px 20px;
	background-color: #000;
	border-radius: 2px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 400;
	color: rgba(255,255,255,.8);
}
.floating-action-button > li > a[data-floating-title]:hover::after {
    position: absolute;
    content: "\f0da";
    font-family: "Font Awesome 6 Pro";    
    inset: 0 calc(100% + 2px) 0 auto;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #000;
}
.floating-action-button > li:not(:last-child) {
    display: none;
    animation: floatingOut .3s linear;
    animation-fill-mode:  forwards;
}
.floating-action-button:has(> li.active) > li:not(:last-child) {
    position: relative;
    bottom: auto;
    animation: floatingIn .1s linear;
    animation-fill-mode:  forwards;
}
.floating-action-button:has(> li.active) > li:not(:last-child) a i {   
    animation: floatingRotateIn .7s linear;
    animation-fill-mode:  forwards;
}
.floating-action-button > li:not(:last-child) a i {   
    animation: floatingRotateOut .3s linear;
    animation-fill-mode:  forwards;
}
@keyframes floatingIn{
    from {opacity: 0; transform: scale(0);}
    to {opacity: 1; transform: scale(1);}
}
@keyframes floatingOut{
    from {opacity: 1; transform: scale(1);}
    to {opacity: 0; transform: scale(0);}
}
@keyframes floatingRotateIn{
    from {rotate: 0deg;}
    to {rotate: 360deg}
}
@keyframes floatingRotateOut{
    from {rotate: 360deg;}
    to {rotate: 0deg}
}
@media(max-width: 767px) {
    .floating-action-button {
        right: 20px;
        bottom: 20px;
    }
}
/************ END FLOATING ACTION BUTTON ************/



.slick-prev::before, .slick-next::before,
.app-tstm-item,
.app-nav-mobile,
.app-widget-gl-item img,
.app-cmnt-action .app-cmnt-btn,
.app-pst-rlt-title,
.app-pst-attributes li a,
.app-pst-widget-list li a,
.app-tags > *,
.app-gl-item,
.app-gl-hide,
.app-gl-caption,
.app-con-item a,
.app-card-social,
.app-card-share,
.app-card-social > li > a,
.app-card,
.app-card-link,
.app-button,
.app-link-over,
.app-dialog-fadeout,
.app-post-title,
.app-post-card,
.app-ms-profile-box,
.app-social-media > li > a {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.app-thumb {
    overflow: hidden;
    background-color: var(--app-thumb);
}
.app-thumb:has(img[src*="not-found.png"]) {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-thumb:has(img[src*="not-found.png"]) img {
    width: auto;
    min-height: auto;
}
.app-card-des, .app-pst-rlt-title {
    display: -webkit-box;    
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 600px) {
  .app-gl-gird-masonry {
    column-count: 2;
  }
}

@media (min-width: 900px) {
  .app-gl-gird-masonry {
    column-count: 3;
  }
  .app-gl-gird-masonry.app-gl-grid-large {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .app-gl-gird-masonry {
    column-count: 4;
  }
  .app-gl-gird-masonry.app-gl-grid-large {
    column-count: 3;
  }
}
@media(max-width: 992px) {
    .app-dialog-close {
        left: auto;
        right: 0;
        margin-left: 0;
    } 
    .app-dialog-body {
        padding: 30px 20px;
    }
    .app-navbar {
        display: flex;
    }
    .app-nav-mobile {
        display: block;
    }
    .app-nav {
        display: none !important;
    }
}
@media(max-width: 767px) {
    .app-contacts {
        flex-direction: column;
    }
    .app-con-form-box {
        padding: 30px;
        box-shadow: 0 30px 75px 0px rgba(114, 132, 162, 0.3);
    }
    .app-con-info {
        order: 1;
    }
    .app-con-form {
        order: 2;
    }
    .quick-call {
        left: 30px;
        bottom: 70px;
    }
    .quick-call .call-caption {
        display: none;
    }
    .app-ms-grids {
        flex-direction: column;
        gap: 20px;
    }
    .app-ms-grids > * {
        flex: auto;
    }
    .app-posts {
        flex-direction: column;
    }
    .app-pst-aside {
        order: 2;
    }
}
@media(max-width: 575px) {
    .app-paginations .justify-content-between {
        justify-content: center !important;
    }
    .app-faq-item {
        gap: 20px;
    }
    .app-search-box {
        flex-direction: column;
        gap: 15px;
    }    
}
@media(max-width: 400px) {
    .app-tstm-thumbnail {
        flex-direction: column;
        text-align: center;
    } 
    .app-tstm-item .app-rating-list, .app-tstm-item .app-social-media {
        justify-content: center;
    }
    .app-tstm-caption {
        text-align: center;
    }
}