/*!
 * Copyright MystIQ
 */
.background-login {
    background-image: url({{ASSETS_ROOT}}/img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.disabled {
    filter: grayscale(100%) brightness(40%);
}

.text-border:after,
.text-border:before {
    content: "";
    display: inline-block;
    width: 30%;
    height: 1px;
    position: relative;
    vertical-align: middle
}

.text-border:after {
    background: linear-gradient(90deg, hsla(0, 0%, 46%, .4), hsla(0, 0%, 46%, .4), transparent)
}

.text-border:before {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 46%, .4), hsla(0, 0%, 46%, .4));
    right: .5em;
    margin-left: -50%
}

.text-border:after {
    left: .5em;
    margin-right: -50%
}

.profile-page .card-profile {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-page .card-profile img {
    border-radius: 12px;
}

.profile-page .avatar {
    margin-top: -60px;
}

.profile-page .card-category {
    font-weight: 600;
    color: #5A189A;
}

.profile-page .card-title {
    font-weight: 700;
    color: #03045E;
}

.profile-page .card-description {
    font-size: 0.875rem;
    color: #6D6875;
}

.wordwrap {
    white-space: pre-wrap;
    /* CSS3 */
    white-space: -moz-pre-wrap;
    /* Firefox */
    white-space: -pre-wrap;
    /* Opera <7 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* IE */
}

/* Canstellation Profile */

.constellation-map {
    position: relative;
    margin: 0 auto;
    width: 400px;
    height: 400px;
}

.constellation-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.avatar-xxl {
    width: 150px;
    height: 150px;
    z-index: 2;
}

.card-hover-effect {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.card .icon-shape {
    border-radius: 50%;
    padding: 20px;
}

.card .font-weight-bold {
    font-size: 1.1rem;
}

.page-header {
    background-position: center;
    background-size: cover;
}

.position-relative.overflow-hidden {
    overflow: hidden;
}

/* Image Loader */

.loader-overlay {
    transform: translate(-50%, -50%);
    z-index: 10;
}

#loader {
    display: block; /* Show loader by default */
}

#dynamic-image {
    transition: opacity 0.5s ease-in-out;
    opacity: 0; /* Initially invisible */
}

.loader-overlay {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}