﻿img.ui.fluid.rounded.image {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer.divider.IE {
    display:none
}

footer.IE {
    position: inherit;
    padding-top: 1rem;
}

@media (max-width: 767px){
    .footer.divider {
        margin-top: 4.2rem !important;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 768px) {
    .footer.divider {
        margin-top: 4.2rem !important;
        margin-bottom: 0 !important;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #00693C;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
}

.my-float {
    margin-top: 22px !important;
    margin-left: 3px !important;
    font-size: 18px !important;
}
/* hidden on default */
.float {
    display: none;
}

.float:hover {
    color: #fff;
}

/* use a media query to filter small devices */
@media only screen and (max-device-width:768px) {
    /* show the popup */
    .float {
        display: block;
    }
}

/**ARRASTRAR ARCHIVO*/
.files {
    position: relative;
    border: 3px dashed #23a145;
    text-align: center;
    margin: 0;
    width: 100% !important;
    height: 250px;
    overflow: hidden;
}

    .files input {
        width: 100% !important;
        height: 200px;
        border: none;
        padding: 0;
        background: transparent;
        text-align: center;
    }

.files {
    position: relative
}

    .files:after {
        pointer-events: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 70px;
        right: 0;
        height: 70px;
        content: "";
        background-image: url(../Imagenes/fileupload.svg);
        display: block;
        margin: 0 auto;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .files:before {
        content: "Buscar o arrastrar el archivo ";
        position: absolute;
        bottom: 55px;
        ;
        left: 0;
        right: 0;
        display: block;
        text-align: center;
        color: #23a145;
        font-weight: bold;
    }