html,
body {
    height: 100%;
    margin: 0;
}
.page-contentClass{
    flex: 1 0 auto;
}

#sticky-footer {
    flex-shrink: none;
}

/* .border-template{
    border: 2px solid #3066be;
    border-radius: 5px;
}

.background-template-color{
    background-color: #293133;
}

.background-template-color2{
    background-color: #b4c5e4;
}

.background-template-text{
    background-color: #b4c5e4;
}

.text-template-background{
    color: #3066be;
}

.text-template-color{
    color:  #fbfff1;
} */

/* main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 100% !important;
}
main div{
    border: 1px solid black;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}
main div img{
    aspect-ratio: 1 / 1;
    max-width: 400px;
    height: auto;

}
.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; } */

/* main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 100% !important;
    overflow: hidden;
    position: relative;
}

.sepelio {
    border: 1px solid black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: calc(50% - 5px);
    height: 100%;
    transition: transform 1s ease-in-out;
}

.sepelio.saliendo {
    transform: translateX(-100%);
}

.sepelio.entrando {
    transform: translateX(200%);
}

.sepelio.activo {
    transform: translateX(0);
}

.sepelio img {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    height: auto;
}

#sepelio1, #sepelio3 { left: 0; }
#sepelio2, #sepelio4 { right: 0; } */

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    height: 100% !important;
    overflow: hidden;
    position: relative;
}

.sepelio {
    border: 1px solid black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: calc(50% - 5px); /* Accounting for grid gap */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.sepelio.saliendo {
    transform: translateX(-100%);
}

.sepelio.entrando {
    transform: translateX(100%);
}

.sepelio.activo {
    transform: translateX(0);
}

.sepelio img {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    height: auto;
}

#sepelio1 { left: 0; }
#sepelio2 { right: 0; }
#sepelio3 { right: 0; transform: translateX(100%); }

.validateOK{
    background-color: #00f50063 !important;
}

.validateERROR{
    background-color: #ff333363 !important;
}