/* Home Page */
#home {
    background: linear-gradient(177deg, rgb(141 180 239 / 90%), rgb(2 63 241 / 90%)), url('../img/BannerBG.jpg') center center / cover no-repeat;
}
/* Register Page */
.qualifications a,
.qualifications h3,
.qualifications header,
.qualifications footer {
    display: none;
}
fieldset:not(:first-of-type) {
    display: none;
}
#progressbar {
    color: lightgrey
}
#progressbar .active {
    color: #673AB7;
}
#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 33.33%;
    float: left;
    position: relative;
    font-weight: 400;
}
#progressbar li:before {
    content: attr(data-step);
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    color: #ffffff;
    font-weight: bold;
    background: lightgray;
    border-radius: 50%;
    margin: 5px auto 10px auto;
}
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}
#progressbar li.active:before,
#progressbar li.active:after {
    background: #673AB7;
}
.card {
    z-index: 1;
}
.progress {
    height: 20px;
}
.progress-bar {
    background-color: #673AB7;
}
@media (max-width: 768px) {
    #progressbar li {
        font-size: 12px;
        transition: 300ms;
    }
}

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 2;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    left: 22px;
    width: 16px;
    height: 16px;
    z-index: 3;
    border: 3px solid #ffcc00;
}
.dashboard-banner-container {
    border-radius: 10px;
    z-index: 1;
}
.dashboard-banner-container::before,
.dashboard-banner-container::after {
    content: '';
    position: absolute;
    height: 500px;
    width: 500px;
    border-radius: 60% 50% 80% / 60% 60% 60%;
    z-index: -1;
}
.dashboard-banner-container::before {
    top: -150px;
    left: -75px;
    width: 700px;
    height: 700px;
    background-color: #ffd93f;
    border: 50px solid #009;
}
.dashboard-banner-container::after {
    top: -150px;
    right: 30px;
    transform: translate(40%, 40%);
    background-color: #009;
    border: 45px solid #ffd93f;
}
@media (max-width: 576px) {
    .dashboard-banner-container::before,
    .dashboard-banner-container::after {
        display: none !important;
    }
}

.top-selling .card-body {
    min-height: 500px;
}