/* -- -- FOOTER -- -- */
.footer_tel_mail, .footer_copy, .footer_social, .footer_politic {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_copy {
    flex-direction: column;
}

.footer_social li {
    padding: 10px;
}

.footer_social .linkicon {
    color: white;
    padding: 0px;
    height: 30px;
    width: 30px;
}

.footer_social .linkicon:hover {
    color: #0080a8;
}

.footer_social svg {
    height: 30px !important;
    width: 30px !important;
}

.footer_politic p {
    padding: 10px;
}

.footer_politic a {
    text-decoration: none;
    color: white;
}

.footer_politic a:hover {
    color: #0080a8;
}

@media screen and (max-width: 1120px) {
    .footer_tel_mail {
        flex-direction: column;
    }
    .footer_politic {
        flex-direction: column;
    }
    .footer_politic p {
        margin: 0px;
        padding: 0px;
    }
    .f_p_espai {
        display: none;
    }
}

/* -- -- MODALS -- -- */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.modal-inner {
    background: #fff;
    color: #222;
    box-shadow: 0 5px 25px #454545;
    max-width: 1000px;
    max-height: 600px;
    overflow-y: auto;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
.modal-header {
    padding: 10px !important;
    background-color: #ccc;
    display: flex;
    justify-content: space-between !important;
    align-items: center !important;

    position: sticky;
    top: 0;
    z-index: 10;
}
.modal-header h2 {
    color: #0080a8;
    margin: 0;
    /* padding-left: 2%; */
    padding-left: 20px;
}
.modal-content {
    /* border-color: transparent; */
    padding: 30px;

    overflow-y: auto;
    max-height: calc(600px - 60px);
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: .3rem !important;
    border-bottom-right-radius: .3rem !important;
}
.close-modal {
    font-size: 18px;
    background: #0080a8;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    cursor: pointer;
    /* margin: 2%; */
    margin: 20px;
}
.close-modal:hover {
    background-color: red;
    transition: .3s;
}
.modal-footer {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
}
.modal-footer .close-modal {
    width: 25%;
}

.div_firma img {
    width: 25%;
    display: block;
    margin-left: auto;
}
.div_firma p {
    color: #888888;
    font-size: 10px;
    margin-left: auto;
    text-align: end;
}

@media screen and (max-width: 600px) {
    .modal-header {
        justify-content: center !important;
    }
    .modal-header h2 {
        font-size: 1.5rem !important;
    }
    .close-modal {
        font-size: 1rem;
        padding: 0px 8px;
        margin: 10px;
    }
    .modal-content h4 {
        font-size: 1rem;
        text-decoration: underline;
    }
    .modal-content p li {
        font-size: 0.5rem;
        /* text-align: justify; */
    }
}
