body {
    box-sizing: border-box;
    margin: 0;
}

#divPopup {
    z-index: 99999999;
    background-color: transparent;
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
}

#divPopup .overlay-popup {
    background-color: black;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    height: 100%;
}

#divPopup .conteudo-popup {
    background-color: white;
    margin: auto;
    border-radius: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 10px;
    max-width: none;
}

#divPopup .conteudo-popup .btn-popup {
    margin-top: 10px;
    display: flex;
    flex-direction: row-reverse;
}

#divPopup .conteudo-popup .btn-popup a{
    background-color: #2C6886;   
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Ubuntu Condensed', sans-serif;
    cursor: pointer;
}

@media(max-width: 500px) {
    #divPopup .conteudo-popup {
        max-width: 90%;
    }
}