/* Box Principal */

#modalLink {
    position: fixed;
    width: 400px;
    max-width: 90%;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 13px -4px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 13px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 13px -4px rgb(0 0 0 / 75%);
    display: none;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    z-index: 99999999;
}

#modalLink .clearModal {
    clear: both;
}

/* Posicionamento */

#modalLink.esquerdaCima {
    left: 15px;
    top: 15px;
}

#modalLink.esquerdaBaixo {
    left: 15px;
    bottom: 15px;
}

#modalLink.direitaCima {
    right: 15px;
    top: 15px;
}

#modalLink.direitaBaixo {
    right: 15px;
    bottom: 15px;
}

/* Fecha Modal */

#modalLink .fechaModal {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
}

#modalLink .fechaModal img {
    width: 12px;
}

/* Imagem */

#modalLink .logoModal img {
    max-width: 100px!important;
    margin-right: 15px;
}

/* Conteúdo */

#modalLink .conteudo .tituloModal {
    color: #000;
    font-size: 13px;
    display: inline-block;
    font-weight: bold;
}

#modalLink .conteudo .textoModal {
    color: #000;
    font-size: 13px;
    margin-top: 5px;
    display: inline-block;
}