.custom-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px -3px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    width: 100%;
    font-size: 0.875rem;
    transition: ease-in-out 300ms;
    cursor: pointer;
    text-decoration: none;
    min-height: 12rem;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.custom-card-primary {
    background-image: linear-gradient(45deg, #cd69de, #9124A3);;
    color: white;
}
.custom-card-success {
    background-image: linear-gradient(45deg, #a3d7a5, #4CAF50);;
    color: white;
}
.custom-card-white{
    background-image: linear-gradient(80deg, #afb1aa, #d2d3ce);
    color: white;
}
.custom-card-warning {
    background-image: linear-gradient(45deg, #ffcc80, #FF9800);;
    color: white;
}
.custom-card-danger {
    background-image: linear-gradient(45deg, #f99d97, #F44336);;
    color: white;
}
.custom-card-orange {
    background-image: linear-gradient(45deg, #f79765, #ea580c);;
    color: white;
}
.custom-card-emeral {
    background-image: linear-gradient(45deg, #40efb5, #10b981);;
    color: white;
}
.custom-card-cyan {
    background-image: linear-gradient(45deg, #46e0fa, #06b6d4);;
    color: white;
}
.custom-card-rose {
    background-image: linear-gradient(45deg, #f8879b, #f43f5e);;
    color: white;
}
.custom-card-white {
    background-image: linear-gradient(45deg, #ffffff, #e6e6e6);;
    color: black;
}
.custom-card-gray {
    background-image: linear-gradient(45deg, #cccccc, #999999);;
    color: white;
}
.custom-card-dark {
    background-image: linear-gradient(45deg, #404040, #000000);;
    color: white;
}

/* .custom-card-left {
    position: absolute;
    width: 50%;
    left: 1rem;
    top: 100%;
    bottom: 1rem;
    transition: ease-in-out 300ms;
}

.custom-card-title {
    font-size: 1.0625rem;
    line-height: 1.4em;
    margin-bottom: 3px;
}
.custom-card-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    line-height: 1.5em;
    font-weight: 500;
    margin-bottom: 0.5rem
}
.custom-card-text {
    font-size: 0.875rem;
    margin-bottom: 1rem
} */

.custom-card-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
    width: 100%;
    transition: ease-in-out 300ms;
    transform: translateZ(40px)
}

.custom-card-image {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.custom-card-icon {
    font-size: 5rem;
}

/* .custom-card:hover .custom-card-left {
    top: 1rem;
} */

/* .custom-card:hover .custom-card-right {
    transform: translateX(30%);
} */

.bg-purple{
    background-color: #9124A3 !important;
}