﻿
/* Animaciones */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 10px;
    padding-right: 10px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}

.spin-boleta {
    color: #1d9cd8;
    border-color: #1e80c2;
}

.texto_filtros {
    font-family: ui-sans-serif;
    color: #758488;
}
.recaptcha-boleta {
    margin-left: 23px;
}
.pdf-icon {
    width: 30px;
    margin-bottom: 1rem;
    margin-left:.5rem;
}

.inputsoft-icon {
    width: 250px;
    margin-bottom: 2rem;
}


.btn-buscar {
    background-color: #1d9cd8;
    border-color: #1e80c2;
    border-radius: 25px;
}

.btn-buscar span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn-buscar span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn-buscar:hover span {
    padding-right: 25px;
}

.btn-buscar:hover span:after {
    opacity: 1;
    right: 0;
}

.btn-buscar:active, .btn-buscar:focus, .btn-buscar:hover {
    background-color: #1e80c2;
    border-color: #1d9cd8;
}

.footer-boleta {
    text-align: center;
    font-family: inherit;
    font-size: large;
}

.texto-boleta {
    text-align: start;
    margin-top: .5rem;
}

.jumbotron {
    background-color: aliceblue !important;
}

#rc-imageselect, .g-recaptcha {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
}

/* Responsive: Portrait tablets and up */
@media screen and (max-width: 240px) {
    .g-recaptcha {
        transform: scale(0.58);
        -webkit-transform: scale(0.58);
    }
}

@media screen and (min-width: 320px) {
    .jumbotron {
        padding-bottom: 0px !important;
        margin-bottom: 10px !important;
    }
}

    @media screen and (min-width: 768px) {
        .jumbotron {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
            background-color: aliceblue !important;
            margin-top: 20px !important;
        }

        .input-boleta {
            margin-left: 10px !important;
        }

        .body-content {
            padding: 0;
        }

        body {
            padding-top: 0px;
            padding-bottom: 20px;
        }

        input,
        select,
        textarea {
            max-width: 280px;
        }


        .pdf-icon {
            width: 30px;
            margin-bottom: 1rem;
            margin-left: .5rem;
        }

        .inputsoft-icon {
            width: 350px;
        }

        .header-boleta {
            display: flex;
            align-items: center;
            text-align: end;
        }

        .btn-buscar {
            background-color: #1d9cd8;
            border-color: #1e80c2;
            border-radius: 25px;
        }

            .btn-buscar span {
                cursor: pointer;
                display: inline-block;
                position: relative;
                transition: 0.5s;
            }

                .btn-buscar span:after {
                    content: '\00bb';
                    position: absolute;
                    opacity: 0;
                    top: 0;
                    right: -20px;
                    transition: 0.5s;
                }

            .btn-buscar:hover span {
                padding-right: 25px;
            }

                .btn-buscar:hover span:after {
                    opacity: 1;
                    right: 0;
                }

            .btn-buscar:active, .btn-buscar:focus, .btn-buscar:hover {
                background-color: #1e80c2;
                border-color: #1d9cd8;
            }

        .footer-boleta {
            text-align: center;
            font-family: inherit;
            font-size: large;
        }

        .texto-boleta {
            text-align: end;
            margin-top: .5rem;
        }
    }

