﻿.btn-enviar {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #1acc8d;
}

.btn-enviar:hover {
    background: #17b57d;
}

.enviado {
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius:20px;
}


#header2 {
    height: 80px;
    z-index: 997;
    transition: all 0.5s;
    background: rgba(1, 4, 136, 0.9);
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}


#header2 h1 a, #header2 h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header2 {
    padding: 0;
    margin: 0;
    max-height: 40px;
}


.header_titulo {
    color: rgba(1, 4, 136, 1);
    font-weight: 600;
}


#snacklgpd {
    visibility: hidden; /* Hidden by default. Visible on click */
    width: 100%;
    min-width: 250px; /* Set a default minimum width */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: left; /* Centered text */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 999; /* Add a z-index if needed */
    bottom: 0px; /* 30px from the bottom */
    border-radius: 0;
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
#snacklgpd.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
}



@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.button-accept {
    position: absolute;
    bottom: 12px;
    right: 5px;
}
