/* text styling */
.text-center { text-align: center; }
.text-italic { font-style: italic; }

/* text sizing */
.heading-small  {   font-size: 1.25rem;    }
.heading-medium {   font-size: 1.5rem;     } 
.heading-big    {   font-size: 1.75rem;    }

/* text colors */
.text-red    {   color: red;     }
.text-blue   {   color: blue;    }
.text-green  {   color: green;   }

/* background colors */
.bg-dark-blue   { background: #062e51; }
.bg-light-blue  { background: #336ea2; }

/* container */

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* progress bar */ 

.progressbar-main{
    background: rgb(240, 240, 240);
    border: 1px solid rgb(202, 202, 202);
    border-radius: 3px;
    height: 1rem;
}

.progressbar-green{
    background: rgb(108, 255, 115);
    color: rgb(82, 82, 82);
    text-align: right;
    height: 0.9rem;
    font-size: 0.85rem;
    font-family: Arial, Helvetica, sans-serif;   
}

