﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*display: grid;*/
    /*place-items: center;*/
    /*background-color: #000;*/
}

.progress {
    display: none;
    position: fixed;
    /*padding-top:20px;*/
    top: 3%;
    left: 75%;
    transform: translate(-50%, -50%);
    background: #ddd;
    height: 30px;
    width: 400px;
    border-radius: 20px;
    z-index: 1051;
}

.progress-done {
    float: left;
    font-family: sans-serif;
    font-weight: bolder;
    color: #fff;
    height: 100%;
    /*background: linear-gradient(to left,rgb(253, 2, 140), rgb(240, 199, 230));*/
    background: linear-gradient(to left,rgb(61,30,121), rgb(24,185,245));
    border-radius: 20px;
    display: grid;
    place-items: center;
    width: 0;
    box-shadow: 0 0 3px -5px rgb(253, 2, 140), 0 3px 150px rgb(255, 0, 140);
    transition: width .5s ease;
}

/* The Close Button */
.close-Progress {
    display:none;
    color: #aaaaaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    margin-top:4%;
    margin-right:4%;
}

    .close-Progress:hover,
    .close-Progress:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.text-style-modal {
    font-size: 13px;
}
