﻿.status {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px 40px;
    display: none;
}

.output {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px 40px;
    display: none;
}

    .output span {
        font-weight: bold;
    }

        .output span:hover {
            color: #65a4e9;
            cursor: pointer;
        }

.error_output {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    padding: 10px 40px;
    display: none;
}

    .error_output p {
        font-size: 1.2rem;
    }

    .another_file {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        display: none;
    }

.progress_box {
    padding: 50px;
    display: none;
}

.progress {
    width: 100%;
    background-color: #ddd;
}

.progress_bar {
    width: 1%;
    height: 30px;
    background-color: #04AA6D;
    transition: width 0.3s ease-in-out;
}

.text_link {
    cursor: pointer;
    font-size: smaller;
    color: #1E90FF;
}

.loader-progress {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader-message {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    text-justify: auto;
    padding-top: 20px;
}

.loaderFrame {
    display: none;
    /*margin-top: 20vh;*/
}

    .loaderFrame div:first-child {
        margin: auto;
    }

.modalLoaderFrame {
    display: none;
    /*margin-top: 20vh;*/
}

    .modalLoaderFrame div:first-child {
        margin: auto;
    }

.modalMain {
    background-color: white;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    border-radius: 0.25rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
