html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.no-box-shadow {
    box-shadow: none !important;
}

#notfound {
    position: relative;
    height: 100vh
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

.notfound {
    max-width: 920px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px
}

    .notfound .notfound-404 {
        position: absolute;
        height: 100px;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: -1
    }

        .notfound .notfound-404 h1 {
            font-family: maven pro,sans-serif;
            color: #ececec;
            font-weight: 900;
            font-size: 276px;
            margin: 0;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%)
        }

    .notfound h2 {
        font-family: maven pro,sans-serif;
        font-size: 46px;
        color: #000;
        font-weight: 900;
        text-transform: uppercase;
        margin: 0
    }

    .notfound p {
        font-family: maven pro,sans-serif;
        font-size: 16px;
        color: #000;
        font-weight: 400;
        text-transform: uppercase;
        margin-top: 15px
    }

    .notfound a {
        font-family: maven pro,sans-serif;
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        background: #189cf0;
        display: inline-block;
        padding: 16px 38px;
        border: 2px solid transparent;
        border-radius: 40px;
        color: #fff;
        font-weight: 400;
        -webkit-transition: .2s all;
        transition: .2s all
    }

        .notfound a:hover {
            background-color: #fff;
            border-color: #189cf0;
            color: #189cf0
        }

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 h1 {
        font-size: 162px
    }

    .notfound h2 {
        font-size: 26px
    }
}

.progress {
    background-color: transparent !important;
}

.progress-bar {
    transition: width 0.6s ease, background-color 0.6s ease !important;
    background-image: none !important; /* Remove any background images */
}

.hamburger-menu .progress-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/ /* Full viewport height to center vertically */
}

.hamburger-menu .progress-circle {
    width: 150px;
    height: 150px;
    background: conic-gradient(green 0%, green 0%, #f3f3f3 0%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .hamburger-menu .progress-circle::before {
        content: '';
        position: absolute;
        width: 85%;
        height: 85%;
        background: white;
        border-radius: 50%;
    }

    .hamburger-menu .progress-circle .progress-value {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }

    .hamburger-menu .progress-circle .progress-label {
        font-size: 16px;
        color: #999;
    }

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
}

    .footer-content p {
        margin: 5px 0;
    }

.powered-by {
    font-weight: bold;
    color: #ff6600; /* Fantastic color */
}
.errorPage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FEFEFE;
}
.errorPage .container {
    text-align: center;
    margin: auto;
    padding: 4em;
}

    .errorPage .container img {
        width: 70vw;
        height: 70vh;
    }

    .errorPage .container h1 {
        margin-top: 1rem;
        font-size: 35px;
        text-align: center;
    }

        .errorPage .container h1 span {
            font-size: 60px;
        }

    .errorPage.container p {
        margin-top: 1rem;
    }

        .errorPage .container p {
            font-size: 15px;
        }

            .errorPage .container p.info a {
                text-decoration: none;
                color: #5454ce;
            }
.col.outer-card {
    min-width: 190px;
}
.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: flex-start;
    flex: 1;
}
.flex-col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}