﻿@import url(https://pro.fontawesome.com/releases/v5.10.0/css/all.css);
.item {
    overflow: hidden;
    transition: height 300ms ease;
}

.btn-success {
    background-color: #0fa412;
    border-style: none;
}

.btn-success:hover {
    background-color: #18ce1c;
}

.btn-success:active {
    background-color: #00cc2e !important;
}

.btn-success-disabled {
    display: none;
    color: white;
    background-color: #81ef55;
}

.btn-continue {
    display: unset;
    color: white;
    background-color: #0fa412;
}

.btn-continue-disabled {
    display:none;
    color: white;
    background-color: #81ef55;
}

.btn-restart {
    color: white;
    background-color: #173272;
    padding: 0;
}

.h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
    margin: 0;
}

.pop {
    transition: 200ms ease;
}

.pop:hover {
    transform: translateY(-.5rem);
    box-shadow: 0px 10px 10px 0 #aaa;
}

.pop::before {
    position: relative;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.pop:hover::before {
    position: absolute;
    content: '';
    bottom: -.5rem;
}

.progress-bar {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.progress-bg {
    background-color: lightgray;
    width: 100%;
    height: 1.5em;
    color:white;
    font-size:12px;
    border-radius:100px;
    border-style:solid;
    border-width:1px;
    border-color:#808080
}

.progress-fill {
    text-align: center;
    background-color: #173272;
    height: 100%;
    border-radius: 100px;
    min-width:3em;
    transition: width 500ms ease;
}

section {
    margin-bottom: 1em;
    margin-top: .75em;
}

.progress {
    box-shadow: 0 0 3px gray inset;
}

.row {
    margin-left:0;
    margin-right:0;
}

/*New style - 10/07/2021*/

.text-primary {
    color: #153272 !important;
}
.btn-primary {
    background-color: #153271;
    border-color: #153271;
}
.status-icon li {
    position: relative;
    padding-left: 10px;
}
.status-icon li::marker {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}
.status-icon li.text-warning-icn::marker,
.status-icon li.text-warning::marker {
    content: "\f071";
}
.status-icon li.text-success-icn::marker,
.status-icon li.text-success::marker {
    content: "\f058";
}
.status-icon li.text-danger-icn::marker,
.status-icon li.text-danger::marker {
    content: "\f057";
}
.status-icon li.text-info-icn::marker,
.status-icon li.text-info::marker {
    content: "\f05a";
}

@media screen and (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        left: 0px;
        width: 100%;
        top: 100%;
        z-index: 1;
        background: rgb(255, 255, 255);
        box-shadow: 0 6px 11px 0 #ddd;
        border-top: 1px solid #ddd;
    }
}

.nav-item {
    display: flex;
    justify-content: center;
    min-width: 19%;
}

.nav-link {
    color: #0056b3 !important;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    text-align: center;
    border-radius: .5rem;
    box-shadow: 0 0 5px 0 lightgray;
    margin: 3px;
    transition: transform 300ms ease, color 300ms ease, background-color 300ms ease, border-radius 300ms ease, border-color 300ms ease;
}

.nav-link:hover {
    color: white !important;
    background-color: #142b87 !important;
    border-radius: 1rem;
}

.nav-link:active {
    transform: scale(.95);
}

.navbar {
    padding: .5rem .5rem;
    background-color: rgba(55, 149, 69, 1) !important;
}

.navbar-toggler {
    margin-right: 1rem;
}

.navbar-nav {
    justify-content: space-between;
}

.navbar-brand {
    transition: transform 200ms ease;
}

.navbar-brand:hover {
    transform:scale(1.02);
}

.navbar-collapse {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

nav .container {
    margin:0; 
    max-width:1920px; 
    background-color:white!important; 
    border-radius:5px; 
    box-shadow: 0 0 5px black;
}

footer > div:nth-of-type(2) * {
    margin: 0;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: gray;
}

::-webkit-scrollbar-track {
    background-color: lightgray;
}