.vertical-centering {
    align-items: center;
    min-height: 100vh;
}

.container {
    padding-top: 1rem;
    padding-bottom: 5rem;

}

.wizard-container__content {
    border-radius: 5px;
    padding: 1rem 0;
    display: flex;
}



.wizard-container__content {
    flex-wrap: wrap;
}

.title {
    margin-top: 36px;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    text-align: center;
    color: #3a3a3a;
    font-family: "Syne", sans-serif;
}

.wizard-container__content .subtitle {
    font-size: 1rem;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff
}

.wizard-container__content ul {
    width: 100%;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wizard-container__content#select-type li {
    width: 45.5%;
}

.wizard-container__content ul li {
    width: 28.8%;
    margin: .5rem;
    background-color: white;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.wizard-container__content ul li:nth-child(odd) {
    /*margin-left:0*/
}

.wizard-container__content ul li:nth-child(even) {
    /* margin-right:0*/
}

.wizard-container__content ul li img,
.wizard-container__content ul li svg {
    max-width: 100%;
    border-radius: 5px;
}

.wizard-container__content ul li:hover {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.image-wrapper {
    width: 32.6%;
    /* Ancho del contenedor */
    padding-top: 32.6%;
    /* Esto crea la altura igual al ancho, formando un cuadrado */
    position: relative;
    /* Posicionamiento relativo para posicionar absolutamente la imagen dentro */
    overflow: hidden;
    /* Ocultar cualquier parte de la imagen que exceda el contenedor */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    margin: 1px
}

.modal-actions {
    display: flex;
    justify-content: space-around;
}

.modal-actions a, .modal-actions button {
    background: transparent!important;
    border:0;
    padding: 1rem;
    display: flex;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    position:relative;
    z-index: 2;
}

.image-card {
    position: relative;
}

.image-card img {
    width: 100%;
    border-radius: 10px;
    padding: 2px;
    overflow: hidden;
    cursor: pointer;
}

.image-card .info {
    color: #3a3a3a;
    font-weight: bold;
    font-size: .8rem;
    text-align: center;
    padding: 5px 0;
}

.image-card .heart-info {
    position: absolute;
    top: 10px;
    right: 20px;
}

.image-card .heart-info svg {
    width: 15px;
    height: 15px;
    fill:#ff738d;
    color:#ff738d;
}

.image-card .heart-info p span {
    font-size: .8rem;
    font-weight: bold;
    color:#ff738d;
    margin-left:2px
}


#imageModal img {
    border-radius: 10px;
}

#imageModal .modal-content{
    background-color: #000000c9;
}

#imageModal .modal-header button{
    background: #000;
    border: 0;
    margin: 0 0 0 auto;
}

.modal-actions button svg{
    /* fill:#ff738d; */
    color:#ff738d;
}

.modal-actions button.voted svg{
    fill:#ff738d;
}