/*
    Filnamn: ../css/navbar-loader.css
*/


.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(39,39,39,1) 0%, rgba(0,0,0,1) 100%);
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 800;
}


.load_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    text-align: center;
    max-width: 90vw;
}


.loadIcon {
    width: 75px;
    height: 75px;
    border: 15px solid rgb(250, 250, 250);
    border-top-color: rgb(0, 0, 0);
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
    margin-bottom: 15px;
}


.time{
    font-size: large;
    align-self: center;
    left: 50%;
}


@keyframes loading{
    from {transform: rotate(0turn)}
    to {transform: rotate(1turn)}
}
.loader--hidden{
    opacity: 0;
    visibility: hidden;
}


.MyCustomHtmlBg{
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(39,39,39,1) 0%, rgba(0,0,0,1) 100%);
    display: block;
    height: 800px;
}








#mail_progress_output {
    margin-top: 20px;
    font-family: monospace;
    font-size: 0.95em;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    text-align: left;
    width: 90%;
    max-width: 500px;

    scrollbar-color: #888 #333;
    scrollbar-width: thin;
}


#mail_progress_bar {
    width: 90%;
    max-width: 500px;
    margin-top: 10px;
    display: none;
    height: 12px;
    appearance: none;
    background-color: #444;
    border: none;
    border-radius: 5px;
}


#mail_progress_bar::-webkit-progress-bar {
    background-color: #333;
    border-radius: 5px;
}
#mail_progress_bar::-webkit-progress-value {
    background-color: #ffd700;
    border-radius: 5px;
}