#modal-panel {
    display: block;
    width: 100%;
    height: 100%;
    overflow: auto;
}

#modal-content {
    background-color: lightcyan;
    margin: 15% auto;
    padding: 20px;
    text-align: center;
    width: 200px;
}

#modal-text {
    font-weight: 900;
}

#modal-span {
    font-size: 1.8em;
    font-weight: bolder;
}

#modal-span img {
    height: 190px;
    width: 95%;
}

#spinner {
    content: " ";
    width: 100px;
    height: 100px;
    margin: 15px auto auto auto;
    border-radius: 50%;
    border: 15px solid;
    border-color: green transparent blue transparent;
    animation: spinner 1s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}