/* Description: configure Flipboxes
Create: 2025-02-27
Update: 2025-02-27 18:39:09
Workspace: AntSoftWSPHP
Relative path: vendor\css\flipcard.css
Autor(s): William Costa Rodrigues
Copyright(c) 2025, William Costa Rodrigues
Dependency: Informe the dependencies
*/
.flip-card {
    cursor: pointer;
}

.flip-card {
    /* background-color: transparent; */
    width: 100%;
    height: 200px;
    border: 1px solid #f1f1f1;
    background-color: #ffe0b3;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */

}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */

}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: #50423f;
    color: white;
    transform: rotateY(180deg);
}

img.flip-card-front {
    vertical-align: middle !important;
    margin-top: auto;
}