/* Empty. Add your own CSS if you like */
#modalScan.scroll-content {
    position: absolute;
    //top: 0;
    right: 0;
    //bottom: none;
    left: 0;
    overflow: hidden;
    margin-top: -1px;
    padding-top: 1px;
    margin-bottom: -1px;
    width: auto;
    height: auto;
    background-color: rgba(0,0,0,0);
}

.popup-buttons {
    flex-direction: column;
}

.scroll-content {
    background-color: #eee;
}

.menu .scroll-content {
    background-color: #fff;
}


.animated {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    border:3px solid green;

}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.pulse {
    animation-name: pulse;
}
