/* OTROS COMPONENTES - SEPARADOR */

.separator {
    display: block;
    margin: 0 auto;
    height: 10vh;
    width: 95vw;
    box-sizing: border-box;
    /* background-color: #ccc5002b; */
}

.link {
    color: #fff;
    display: block;
    margin-top: 2rem;
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-font-size);
    color: var(--second-text-color);
    letter-spacing: 2px;
}

.money {
    color: #4e4e4e;
    background-color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.3rem;
}


/* VERSION PARA MODAL-FOTO CON DESCRIPCIÓN */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: #33333366;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal__componente {
    width: 80vw;
    height: 80vh;
    border: 3px solid white;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    position: relative;
}

.modal_simple__componente-exit,
.modal__componente-exit {
    cursor: pointer;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 1;
}

.modal__componente-exit:hover {
    background-color: #ececec;
}

.modal__componente-exit>* {
    color: #333;
}

.modal_simple__componente-foto,
.modal__componente-foto {
    width: 70%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_simple__componente-foto img,
.modal__componente-foto img {
    width: 100%;
}


/* VERSIÓN PARA MODAL-FOTO SIMPLE */

.modal_simple__componente {
    position: relative;
}

.modal_simple__componente-foto {
    max-height: 90vh;
    max-width: 90vw;
}

.modal_simple__componente-foto {
    width: 100%;
}


/* FIN DE LA VERSION MODAL-FOTO SIMPLE */

.modal__componente-info {
    background-color: transparent;
    width: 30%;
    padding: 1rem;
    position: relative;
}

.modal__componente-info * {
    padding: 0.5rem;
}

.modal__componente-info-titulo {
    color: rgb(76, 76, 76);
}

.modal__componente-info-descripcion {
    color: #5d5d5d;
}

.modal__componente-info-ubicacion {
    color: #949494;
    display: inline-block;
    vertical-align: top;
}

.modal__componente-info-loved {
    display: inline-block;
    width: 40px;
    padding: 0;
}


/* Reaccion me encanta (Corazon) */

.modal__componente-info-loved input[type="checkbox"] {
    display: none;
}

.modal__componente-info-loved label {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__componente-info-loved label svg {
    /* border: 1px solid red; */
    padding: 0;
    width: 50px;
}

.modal__componente-info-loved input {
    display: none;
}

.modal__componente-info-loved input[type="checkbox"]:checked~label svg[id*="empty"],
.modal__componente-info-loved input[type="checkbox"]:not(input:checked)~label svg[id*="full"] {
    display: none;
}


/************ MEDIA QUERIES ************/

@media (max-width: 900px) {
    .modal__componente {
        display: flex;
        flex-direction: column;
    }
    .modal__componente-foto,
    .modal__componente-info {
        width: 100%;
    }
    .modal__componente-info {
        font-size: 14px;
        box-sizing: border-box;
    }
    .modal__componente-info p {
        font-size: 12px;
    }
}