<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#popup-cta{
	display: none;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 101;
}

#popup-cta .content {
	position: relative;
    width: 650px;
    max-width: 90%;
    margin: 60px auto;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-sizing: border-box;
}

#popup-cta img {
    max-width: 100%;
}

#popup-cta span {
    display: block;
    text-align: center;
    color: #00a6fc;
    font-weight: 300;
    font-size: 30px;
    padding: 15px 0;
}

#popup-cta p {
    padding: 15px 30px;
}

#popup-cta .boton, #popup-cta .boton:visited, #popup-cta .boton:active {
    color: black;
    background-color: #00caff;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #3789ff;
    transition: color .5s, background-color .5s;
    margin: 15px 0;
    display: inline-block;
    border-radius: 50px;
}

#popup-cta .boton:hover{
	background-color: white;
}

#popup-cta a.boton:visited, #popup-cta  a.boton:active {
    color: black;
}

#popup-cta a.close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 25.5px;
    line-height: 25px;
    text-align: center;
    background: black;
    border: 1px solid white;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: .1s;
}</pre></body></html>