﻿/* BOTON IR ARRIBA */
#scrollUp {
    font-size: 30px;
    bottom: 80px;
    right: 20px;
    padding: 1px 12px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 100%;
    border: none;
    -webkit-animation: slideInRight 0.5s ease;
    animation: slideInRight 0.5s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none;
}

@media print {
    #scrollUp {
        display: none !important;
    }
}