

.lightbox {
    /** Hide the lightbox */
    display: none;

    /** Apply basic lightbox styling */
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 10%;
    left: 0;
    color:#fff;
    }

.lightbox:after {
    content: '';
    display: table;
    clear: both;
}

.lightbox a i {
    color: #fff;
}

.lightbox .box {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    min-width:500px;
    margin: 2% auto;
    padding:0px;
    background-color:#2c80e0;
    box-shadow: 0px 1px 26px -3px #777777;
    border-radius: 5px;
    }

.lightbox .imagem{
    width: 40%;
    flex-direction: column;
}

.lightbox .texto{
    width: 60%;
    padding-left: 80px;
    padding-top: 20px;
    flex-direction: column;
}

.texto h4{
    color: #fff;
    font-weight: bold;
    letter-spacing: .8px;
}

.texto p{
    font-size: 12px;
    margin-bottom: 50px;
    color: #fff;
}

.texto .button_flutuante{
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    color: #0069de;
    font-weight: 500;
}

.texto .button_flutuante:hover{
    background-color: #0069de;
    color: #fff;
}

.lightbox .title {
    margin:0;
    padding:0 0 10px 0px;
    border-bottom:1px #ccc solid;
    font-size:22px;
    }

.lightbox .content {
    display:flex;
    padding:10px 0 0 0px;
    font-size:18px;
    line-height:22px;
    }

.lightbox .content img{
    max-width: 300px;
}

.lightbox .close {
    float:right;
    display:block;
    text-decoration:none;
    font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:22px;
    color:#858585;
    }

.lightbox .open {
    /** Show lightbox when mouse leaves the browser window */
    display: block;
    outline: none;
    
}