.cookies-card {
    width: 520px;
    padding: 30px;
    color: #ffffff;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #3d3d3d;
    border-radius: 5px;
}

.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #000;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}

.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #bfbfbf;
    color: #000;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #e11b1b;
}

.input-popup p.success::before {
    content: "\f058";
    color: #17ad5a;
}

.profile-image-card,
.profile-details-card {
    /* A darker card background */
    border: 1px solid hsl(var(--base), 0.1);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid hsl(var(--base));
}

.profile-image-upload-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: hsl(var(--base));
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.profile-image-upload-btn:hover {
    background-color: hsl(var(--base), 0.8);
}

.profile-image-upload-btn i {
    font-size: 1.2rem;
}

#profileImageInput {
    display: none;
}

.profile-user-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-align: center;
}

.profile-user-info p {
    color: #979797;
    /* Lighter text color */
    font-size: 0.9rem;
    text-align: center;
}

.profile-details-card .card-header {
    padding: 1.5rem;
}



.profile-details-card .card-body {
    padding: 2rem;
}

.remove-btn {
    background-color: hsl(var(--danger));
    color: hsl(var(--white));
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropdown--filter .engine-list-item {
    padding: 12px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    border-radius: 12px;
    background: hsl(var(--gray-three));
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    cursor: pointer;
    align-items: center;
}

.dropdown--filter .engine-list-item.border--gradient {
    --border-gradient: linear-gradient(hsl(var(--gray-two)) 0 0);
}

.dropdown--filter .engine-list-item:hover.border--gradient {
    --border-gradient: var(--gradient);
}

.dropdown--filter .engine-list-item:not(:last-child) {
    margin-bottom: 8px;
}

.dropdown--filter .engine-list-item__thumb {
    --size: 48px;
    width: var(--size);
    height: var(--size);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 4px;
    border-radius: 8px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 575px) {
    .dropdown--filter .engine-list-item__thumb {
        --size: 16px;
    }
}

.dropdown--filter .engine-list-item__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.dropdown--filter .engine-list-item__title {
    font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
    .dropdown--filter .engine-list-item__title {
        font-size: 0.875rem;
    }
}

.dropdown--filter .engine-list-item__desc {
    color: hsl(var(--gray));
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
}

@media screen and (max-width: 575px) {
    .dropdown--filter .engine-list-item__desc {
        font-size: 0.75rem;
    }
}


.gallary-details-card-loader {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallary-details-card-loader__text {
    font-weight: 600;
    font-style: italic;
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    font-size: 0.875rem;
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .gallary-details-card-loader__text {
        margin-top: 40px;
    }
}

@media screen and (max-width: 575px) {
    .gallary-details-card-loader__text {
        margin-top: 30px;
    }
}

@media screen and (max-width: 424px) {
    .gallary-details-card-loader__text {
        margin-top: 24px;
    }
}

@media screen and (max-width: 374px) {
    .gallary-details-card-loader__text {
        margin-top: 16px;
    }
}

.gallary-details-card-loader .sparkle {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 1199px) {
    .gallary-details-card-loader .sparkle {
        --size: 250px;
    }
}

@media screen and (max-width: 575px) {
    .gallary-details-card-loader .sparkle {
        --size: 200px;
        margin-top: 16px;
    }
}

@media screen and (max-width: 424px) {
    .gallary-details-card-loader .sparkle {
        --size: 150px;
    }
}

@media screen and (max-width: 374px) {
    .gallary-details-card-loader .sparkle {
        --size: 120px;
    }
}



.gallary-details-card-loader .sparkle .path {
    fill: url(#starGradient);
    stroke: url(#starGradient);
    -webkit-transform-origin: center;
    transform-origin: center;
    transform-box: fill-box;
    color: hsl(var(--base));
    -webkit-animation: path 1.5s ease 0.5s infinite;
    animation: path 1.5s ease 0.5s infinite;
}

.gallary-details-card-loader .sparkle .path:nth-child(1) {
    --scale_path_1: 1.25;
}

.gallary-details-card-loader .sparkle .path:nth-child(2) {
    --scale_path_2: 1.25;
}

.gallary-details-card-loader .sparkle .path:nth-child(3) {
    --scale_path_3: 1.25;
}


.music-generated {
    height: 100%;
    position: relative;
}

.music-generated-img {
    height: 100%;
}

.music-generated-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-generated-play {
    --size: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    display: grid;
    place-content: center;
    font-size: calc(var(--size) * 0.375);
    padding: 0px !important;
    animation: circleAnimation ease-in-out infinite 1.5s;
}

@media screen and (max-width: 575px) {
    .music-generated-play {
        --size: 48px;
    }
}

@media screen and (max-width: 424px) {
    .music-generated-play {
        --size: 40px;
    }
}

@keyframes circleAnimation {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base) / 0.4);
        box-shadow: 0 0 0 0 hsl(var(--base) / 0.4);
    }

    50% {
        -webkit-box-shadow: 0 0 0 16px hsl(var(--base) / 0);
        box-shadow: 0 0 0 16px hsl(var(--base) / 0);

    }

    100% {
        -webkit-box-shadow: 0 0 0 0 hsl(var(--base) / 0);
        box-shadow: 0 0 0 0 hsl(var(--base) / 0);
    }
}

.btn--no {
    color: hsl(var(--white));
    border-color: #999999;
    background-color: #999999;
}

.btn--no:hover {
    color: hsl(var(--white));
    border-color: #6e6e6e;
    background-color: #6e6e6e;
}