label.error {

    color: #7c1012;

    font-size: 100%;

    /*font-weight: 600;*/
    font-weight: bold;
    margin-bottom: 0;

    line-height: 20px;

}

/*label.error {

    color: #d50c30  !important;

    font-size: 100%;

    font-weight: bold;

    margin-bottom: 0;

    line-height: 20px;

}*/

.well {

    min-height: 20px;

    font-size: 20px;

    padding: 19px;

    margin-bottom: 20px;

    background-color: #f5f5f5;

    border: 1px solid #e3e3e3;

    border-radius: 4px;

    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);

    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);

}

.clsFavorite{

    background: red !important;

}

.clsLike{

    background: red !important;

}

.colarge-gal {

    /*position: absolute;*/

    /*border: 2px solid #c11619;

    bottom: 0;

    left: 0;

    z-index: 3;*/

    box-shadow: 3px 7px 13pxrgba(0,0,0,.5);

    -webkit-box-shadow: 3px 7px 13px rgb(0 0 0 / 50%);

}.pt-30 {

    padding-top: 8px;

}
  .highlight-glow {
    box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.6);
    border: 2px solid red;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.blink {
    animation: blink 1s infinite;
}

.shake {
    animation: shake 0.5s ease-in-out infinite;
}

/* Optional: use once instead of infinite if you want to limit it */
.shake-once {
    animation: shake 0.5s ease-in-out 1;
}
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 10px 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
    border: 2px solid #007bff;
    border-radius: 10px;
}
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(1deg); }
}

.wiggle {
    animation: wiggle 0.3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.shimmer-effect {
    background: linear-gradient(
        to right,
        #ffffff 8%,
        #f0f0f0 18%,
        #ffffff 33%
    );
    background-size: 1000px 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 10px;
}.file_item:hover {
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}