body {
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    background: #22242A;
    padding: 20px;
    width: 100%;
    height: 70px;
}

.left_area h3 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 900;
}

.left_area span {
    color: #1DC4E7;
}

.logout {
    padding: 5px;
    background: #19B3D3;
    text-decoration: none;
    float: right;
    margin-top: -30px;
    margin-right: 40px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: 0.5s;
    transition-property: background;
}

    .logout:hover {
        background: #0D9DBB;
    }

.sidebar {
    background: #3b4b77;
    /*background-image: linear-gradient(141deg, #853b8a 5%, #01605d 50%, #853b8a 95%);*/
    background-image: linear-gradient(55deg, rgba(6,50,125,1) 0%, rgba(3,173,173,1) 56%, rgba(68,184,117,1) 68%, rgba(255,174,19,1) 96%, rgba(255,174,19,1) 190%);
    margin-top: 0px;
    padding-top: 30px;
    position: fixed;
    left: 0;
    width: 250px;
    height: 100%;
    transition: 0.5s;
    transition-property: left;
}

    .sidebar .profile_image {
        width: auto;
        height: 100px;
        border-radius: 100px;
        margin-bottom: 10px;
    }

    .sidebar h4 {
        color: #ccc;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .sidebar a {
        color: #fff;
        display: block;
        width: 100%;
        line-height: 50px;
        text-decoration: none;
        padding-left: 40px;
        box-sizing: border-box;
        transition: 0.5s;
        transition-property: background;
    }

        .sidebar a:hover {
            background: #00bfa6;
        }

    .sidebar i {
        padding-right: 10px;
    }

label #sidebar_btn {
    z-index: 1;
    color: #fff;
    position: fixed;
    cursor: pointer;
    left: 220px;
    font-size: 20px;
    margin-top: -30px;
    transition: 0.5s;
    transition-property: color;
}

    label #sidebar_btn:hover {
        color: #19B3D3;
    }

#check:checked ~ .sidebar {
    left: -190px;
}

    #check:checked ~ .sidebar a span {
        display: none;
    }

    #check:checked ~ .sidebar a {
        font-size: 20px;
        margin-left: 170px;
        width: 80px;
    }

    #check:checked ~ .sidebar label i {
        margin-left: -200px;
    }

#check {
    display: none;
}

.content {
    margin-left: 260px;
    margin-top: 0px;
}

#check:checked ~ .content {
    margin-left: 100px;
}

.scrollImage {
    width: 100px;
    height: 1000px;
}
.btn_new_green {
    display: inline-block;
    width: 100px;
    height: 40px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #4CAF50, #45a049, #4CAF50); /* Muted green */
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .btn_new_green:hover {
        background-position: right;
    }

.btn_new_red {
    display: inline-block;
    width: 100px;
    height: 40px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #E57373, #EF5350, #E57373); /* Muted red */
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .btn_new_red:hover {
        background-position: right;
    }

.btn_new_blue {
    display: inline-block;
    width: 100px;
    height: 40px;
    border-radius: 25px;
    outline: none;
    border: none;
    background-image: linear-gradient(to right, #64B5F6, #42A5F5, #64B5F6); /* Muted blue */
    background-size: 200%;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .5s;
}

    .btn_new_blue:hover {
        background-position: right;
    }

.title {
    color: #32be8f;
}

.thumb {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.testTile {
    margin-bottom: 8px;
    display: inline-block;
    width: 60px;
    height: 40px;
    outline: none;
    border: none;
    background-size: 200%;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 1rem 0;
    cursor: pointer;
    transition: .2s;
}

.testTile:hover {
    background-color: #32be8f;
    color: white;
}

.progress {
    background: white;
    justify-content: flex-start;
    border-radius: 20px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 40px;
    width: 500px;
}

.progress-value {
    animation: load 10s normal forwards;
    border-radius: 20px;
    background-image: linear-gradient(to right, #29a7a8, #35dbdc, #29a7a8);
    height: 30px;
    width: 0;
    content: "399";
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes progress-value {
    50% {
        content: "40%";
        color: red;
    }
}
