﻿@import url("fonts.css");

* {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: grey;
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Global */

body {
    min-height: 100vh;
}

#OuterPage {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.31) 100%), url(../img/loginBG.png) no-repeat;
    background-size: 100% 100%;
}

.ErrorMainSection {
    width: 100%;
    max-height: 76vh;
    overflow-y: auto;
    z-index: 2 !important
}

#InnerPage {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(99, 72, 116, 0.85) 100%, rgba(99, 72, 116, 0.85) 100%), url(../img/bg.png) no-repeat;
    background-size: cover;
}

.outerWrapper {
    position: relative;
    width: 1500px;
    height: 95vh;
    min-height: 550px;
    background-color: white; /* White background for the main container */
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
}

    .outerWrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/ErrorPageBG.png) no-repeat center;
        background-size: cover;
        opacity: 0.5; /* Adjust the opacity for blending effect */
        border-radius: 20px;
        z-index: 1; /* Keep the pseudo-element behind the content */
    }

    .outerWrapper > * {
        position: relative;
    }

.wrapper {
    position: relative;
    width: 95%;
    height: 95vh;
    background: rgba(245.60, 243.62, 246.70, 0.95);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    overflow: hidden;
}

/* ----------------------------- OUTER PAGES ----------------------------- */

/* Outer Pages / Start */

.overlay {
    display: none;
    background-color: rgb(255 255 255 / 59%);
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1060;
}

.error {
    color: red;
}

.container-fluid {
    padding: 0 !important;
}

    .container-fluid header {
        padding: 14px 50px;
        background: linear-gradient(90deg, #F9F1FE 0%, #F9F1FE 39%, rgba(255, 255, 255, 0.94) 68%, rgba(255, 255, 255, 0.88) 98%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

        .container-fluid header .logo a img {
            width: 65%;
        }

        .container-fluid header nav {
            display: flex;
            align-items: center;
            margin-left: auto;
            position: relative;
        }

            .container-fluid header nav ul {
                margin: 0;
                padding: 0;
                list-style-type: none;
            }

                .container-fluid header nav ul li {
                    padding: 10px 30px;
                    background: rgba(61.74, 61.74, 61.74, 0.05);
                    color: #3E3E3E;
                    border-radius: 20px;
                    display: inline-flex;
                    align-items: center;
                    margin-left: 10px;
                    cursor: pointer;
                    z-index: 999;
                    position: relative;
                }

                    .container-fluid header nav ul li:hover {
                        color: purple;
                        background-color: white;
                        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                    }

                        .container-fluid header nav ul li:hover span {
                            color: purple;
                        }

                    .container-fluid header nav ul li .ti {
                        font-size: 1.4rem;
                        margin-right: 6px;
                    }

    .container-fluid main .card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-40%);
        min-width: 600px;
        max-width: 720px;
        padding: 30px 50px 45px 50px;
        max-height: 65vh;
        overflow: hidden;
        overflow-y: auto;
    }

.card::-webkit-scrollbar {
    width: 4px;
}

.card::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.card::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    .card::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

.container-fluid main .card .logo {
    text-align: center;
}

    .container-fluid main .card .logo img {
        width: 180px;
    }

.container-fluid main .card .f-29 {
    font-size: 29px;
}

.container-fluid main .card .f-23 {
    font-size: 23px;
}

    .container-fluid main .card .f-23 strong {
        color: #712E8D;
        font-size: 23px;
    }

.container-fluid main .card .userBox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

    .container-fluid main .card .userBox .inputBox {
        position: relative;
        width: 100%;
        height: 60px;
        background: #fff;
        border: 1px rgba(194.72, 194.72, 194.72, 0.48) solid;
        border-radius: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding-left: 10px;
        overflow: hidden;
    }

        .container-fluid main .card .userBox .inputBox span.iconUser i.ti {
            color: #696969;
            font-size: 1.8em;
            cursor: pointer;
        }

        .container-fluid main .card .userBox .inputBox input[type="text"],
        .container-fluid main .card .userBox .inputBox input[type="password"] {
            position: relative;
            width: 100%;
            height: 100%;
            outline: none;
            border: none;
            background: transparent;
            margin-right: 10px;
            font-size: 1.2em;
            color: #000;
        }

        .container-fluid main .card .userBox .inputBox span.iconEye i.ti {
            position: relative;
            right: 15px;
            color: #696969;
            font-size: 1.8em;
            cursor: pointer;
        }

        .container-fluid main .card .userBox .inputBox button.iconEye {
            position: relative;
            right: 15px;
            background: none;
            border: none;
            color: #696969;
            font-size: 1.8em;
            cursor: pointer;
            padding: 0;
        }

.container-fluid main .card .btnArea {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 2rem;
}

    .container-fluid main .card .btnArea .btnBox {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

        .container-fluid main .card .btnArea .btnBox .forgotUsername a {
            color: #712E8D;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
        }

            .container-fluid main .card .btnArea .btnBox .forgotUsername a:hover {
                text-decoration: underline !important;
            }

            .container-fluid main .card .btnArea .btnBox span.btnStart .btn-primary {
                background: #712E8D;
                border-color: #712E8D;
                width: 200px;
                line-height: 30px;
            }

.container-fluid marquee.ticker {
    background: #712E8D;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 45px;
    padding: 0 25px;
}

    .container-fluid marquee.ticker ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .container-fluid marquee.ticker ul li {
            display: inline;
        }

            .container-fluid marquee.ticker ul li::before {
                content: "\2022";
                color: #FF2B2B;
                display: inline-block;
                font-size: 30px;
                position: relative;
                top: 4px;
                margin-right: 5px;
            }

            .container-fluid marquee.ticker ul li span.message {
                color: #FFC815;
                font-size: 1.2rem;
                font-weight: 500;
                margin-right: 25px;
            }

            .container-fluid marquee.ticker ul li span.news {
                color: #fff;
                margin-right: 50px;
            }

.container-fluid footer {
    position: fixed;
    bottom: 0;
    background: rgba(61.74, 61.74, 61.74, 0.49);
    width: 100%;
    padding: 12px 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

#errorFooter {
    background: rgba(255, 200, 21, 1) !important;
}

.bottomLink span {
    color: white;
}

.securityGuidelines {
    position: absolute;
    top: 68px;
    right: 165px;
    width: 230px;
    border: 1px solid white;
    z-index: 5;
    padding: 11px;
    background-color: white;
    border-radius: 15px;
    opacity: 1;
}

    .securityGuidelines span {
        color: #712E8D;
        font-size: 12px;
    }

    .securityGuidelines li {
        font-size: 11px;
    }

.inform {
    position: absolute;
    top: 68px;
    right: 40px;
    width: 235px;
    border: 1px solid white;
    z-index: 3;
    padding: 11px;
    background-color: white;
    border-radius: 15px;
}

    .inform span {
        font-size: 11px;
        color: black;
    }


.form-control:focus {
    border-color: #712E8D;
    box-shadow: 0 0 0 0.25rem rgba(113, 46, 141, .25);
}

#policy {
    cursor: pointer;
}

#terms {
    cursor: pointer;
}
/* Outer Pages / End */
/* ----------------------------- OUTER PAGES ----------------------------- */
/* Left Side */
.wrapper .leftSide {
    position: relative;
    width: 260px;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0px 4px 40px rgba(222.53, 149.68, 252.98, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 10px 0;
}

    .wrapper .leftSide header {
        position: relative;
        width: 100%;
    }

        .wrapper .leftSide header .logo {
            position: relative;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .wrapper .leftSide header .logo a {
                margin: 0 auto;
                text-align: center;
            }

                .wrapper .leftSide header .logo a img {
                    width: 60%;
                }

            .wrapper .leftSide header .logo .close {
                position: relative;
                left: -20px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                cursor: pointer;
                display: none;
            }

        .wrapper .leftSide header nav {
            position: relative;
            padding: 15px 0 15px 15px;
        }

            .wrapper .leftSide header nav ul {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
                margin: 0;
                padding: 0;
            }

                .wrapper .leftSide header nav ul li {
                    position: relative;
                    width: 100%;
                    height: 50px;
                    list-style: none;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .wrapper .leftSide header nav ul li a {
                        position: relative;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        justify-content: flex-start;
                        align-items: center;
                        text-decoration: none;
                        padding-left: 20px;
                        border-top-left-radius: 8px;
                        border-bottom-left-radius: 8px;
                        transition: .3s ease;
                    }

                        .wrapper .leftSide header nav ul li:first-child a,
                        .wrapper .leftSide header nav ul li a:hover {
                            transition: 0s;
                            background: #FFFCF0;
                        }

                        .wrapper .leftSide header nav ul li a::before {
                            content: '';
                            position: absolute;
                            left: -15px;
                            width: 0;
                            height: 100%;
                            background: #E4B000;
                            transition: .3s ease;
                        }

                        .wrapper .leftSide header nav ul li:first-child a::before,
                        .wrapper .leftSide header nav ul li a:hover::before {
                            width: 4px;
                            border-top-right-radius: 4px;
                            border-bottom-right-radius: 4px;
                        }

                        .wrapper .leftSide header nav ul li a span.icons i.ti {
                            color: #696969;
                            font-size: 1.4em;
                            margin-right: 10px;
                        }

                        .wrapper .leftSide header nav ul li a .title {
                            color: #696969;
                        }

                        .wrapper .leftSide header nav ul li:first-child a span.icons i.ti,
                        .wrapper .leftSide header nav ul li:first-child a .title,
                        .wrapper .leftSide header nav ul li a:hover span.icons i.ti,
                        .wrapper .leftSide header nav ul li a:hover .title {
                            color: #E4B000;
                        }

        .wrapper .leftSide header .profile {
            margin-right: 25px;
        }

            .wrapper .leftSide header .profile .card {
                background: #F9F1FE;
                border: none;
                border-top-right-radius: 10px;
                border-bottom-right-radius: 10px;
                border-top-left-radius: initial;
                border-bottom-left-radius: inherit;
                padding: 15px;
            }

                .wrapper .leftSide header .profile .card img {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    border: 4px solid #fff;
                }

                .wrapper .leftSide header .profile .card ul {
                    margin: 0;
                    padding: 0;
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                }

                    .wrapper .leftSide header .profile .card ul li {
                        list-style: none;
                    }

                        .wrapper .leftSide header .profile .card ul li h4 {
                            font-size: 1em;
                            font-weight: 400;
                            margin: 0;
                        }

                        .wrapper .leftSide header .profile .card ul li h6 {
                            font-size: 0.75em;
                            font-weight: 400;
                        }

/* Right Side */

.wrapper .rightSide {
    position: relative;
    width: calc(100% - 260px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .wrapper .rightSide .top {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .wrapper .rightSide .top .heading {
            color: #3E3E3E;
            font-size: 28px;
            font-weight: 500;
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

        .wrapper .rightSide .top .topNav {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 10px;
        }

            .wrapper .rightSide .top .topNav .searchBox {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }

                .wrapper .rightSide .top .topNav .searchBox .inputBox {
                    position: relative;
                    width: 475px;
                    height: 45px;
                    background: #fff;
                    border-radius: 10px;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    padding-left: 10px;
                    gap: 10px;
                    overflow: hidden;
                }

                    .wrapper .rightSide .top .topNav .searchBox .inputBox span.icons i.ti {
                        color: #696969;
                        font-size: 1.8em;
                        cursor: pointer;
                    }

                    .wrapper .rightSide .top .topNav .searchBox .inputBox input {
                        position: relative;
                        width: 100%;
                        outline: none;
                        border: none;
                        background: transparent;
                        margin-right: 10px;
                        font-size: 1.2em;
                        color: #000;
                    }

                    .wrapper .rightSide .top .topNav .searchBox .inputBox span.searchClose {
                        position: absolute;
                        right: 10px;
                        cursor: pointer;
                        display: none;
                    }

            .wrapper .rightSide .top .topNav .settings {
                background: #fff;
                border-radius: 8px;
                border: 1px rgba(0, 0, 0, 0.11) solid;
                padding: 6px 15px;
            }

                .wrapper .rightSide .top .topNav .settings span.icons i.ti {
                    color: #A795B2;
                    font-size: 2em;
                }

            .wrapper .rightSide .top .topNav .info {
                background: #fff;
                border-radius: 8px;
                border: 1px rgba(0, 0, 0, 0.11) solid;
                padding: 6px 15px;
            }

                .wrapper .rightSide .top .topNav .info span.icons i.ti {
                    color: #A795B2;
                    font-size: 2em;
                }

            .wrapper .rightSide .top .topNav .notification {
                background: #fff;
                border-radius: 8px;
                border: 1px rgba(0, 0, 0, 0.11) solid;
                padding: 6px 15px;
            }

                .wrapper .rightSide .top .topNav .notification span.icons i.ti {
                    color: #A795B2;
                    font-size: 2em;
                }

            .wrapper .rightSide .top .topNav .logout {
                background: rgba(234.96, 208.25, 255, 0.27);
                border-radius: 8px;
                padding: 6px 15px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .wrapper .rightSide .top .topNav .logout span.icons i.ti {
                    color: #712E8D;
                    font-size: 2em;
                    padding-right: 5px
                }

                .wrapper .rightSide .top .topNav .logout span.text {
                    color: #712E8D;
                    font-size: 1.2em;
                    font-weight: 500;
                }

    /* Main */

    .wrapper .rightSide main {
        position: relative;
        width: 100%;
        height: calc(100% - 65px);
        display: grid;
        grid-template-columns: 70% auto;
        gap: 20px;
    }

        .wrapper .rightSide main .contentArea {
            position: relative;
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
            height: 100%;
        }

            .wrapper .rightSide main .contentArea .part1 {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                height: 100%;
            }

                .wrapper .rightSide main .contentArea .part1 img {
                    width: 400px;
                }

                .wrapper .rightSide main .contentArea .part1 .bannerArea {
                    display: grid;
                    grid-template-rows: 1fr auto;
                    gap: 10px;
                }

                .wrapper .rightSide main .contentArea .part1 .accountsArea {
                    background: #FEFFFA;
                    box-shadow: 0px 4px 40px rgba(222.53, 149.68, 252.98, 0.18);
                    border-radius: 20px;
                    padding: 10px 20px;
                    display: grid;
                    grid-template-rows: auto 1fr;
                }

                    .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox {
                        width: 100%;
                        background: #FEFBF3;
                        border-radius: 16.36px;
                        border: 2px rgba(225.60, 224.43, 226.31, 0.10) solid;
                        padding: 10px 20px;
                        position: relative;
                    }

                        .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox .accountType {
                            color: #8300BA;
                            font-size: 9px;
                            background: rgba(234.33, 184.88, 255, 0.18);
                            border-radius: 10px;
                            padding: 5px 10px;
                            position: absolute;
                            right: 20px;
                        }

                        .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox .text-12 {
                            color: #712E8D;
                            font-size: 12px;
                            font-weight: 400;
                        }

                        .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox .text-22 {
                            color: #3E3E3E;
                            font-size: 22px;
                            font-weight: 500;
                        }

                        .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox .text-16 {
                            font-size: 16px;
                            font-weight: 500;
                        }

                        .wrapper .rightSide main .contentArea .part1 .accountsArea .accountBox hr {
                            border: 1px rgba(0, 0, 0, 0.07) solid;
                            margin: 5px;
                        }

                    .wrapper .rightSide main .contentArea .part1 .accountsArea .form-select-lg {
                        padding-top: 0.75rem;
                        padding-bottom: 0.75rem;
                        font-size: 1.05rem;
                    }

                .wrapper .rightSide main .contentArea .part1 .bannerArea .chartArea {
                    background: #FEFFFA;
                    box-shadow: 0px 4px 40px rgba(223, 150, 253, 0.18);
                    border-radius: 20px;
                    padding: 10px 20px;
                }

                    .wrapper .rightSide main .contentArea .part1 .bannerArea .chartArea .chartBox {
                        display: grid;
                        grid-template-columns: 65% auto;
                    }

            .wrapper .rightSide main .contentArea .part2 {
                display: grid;
                grid-template-columns: 60% auto;
                gap: 10px;
                height: 100%;
            }

        .wrapper .rightSide main .cardsArea {
            background: #FEFFFA;
            box-shadow: 0px 4px 40px rgba(222.53, 149.68, 252.98, 0.18);
            border-radius: 20px;
            padding: 20px;
            display: grid;
            grid-template-rows: 1fr 2fr;
        }

            .wrapper .rightSide main .cardsArea .usageDetails {
                background: #FEFBF3;
                border-radius: 16.36px;
                border: 2px rgba(225.60, 224.43, 226.31, 0.10) solid;
                padding: 15px 10px;
            }

                .wrapper .rightSide main .cardsArea .usageDetails ul {
                    margin: 0;
                    padding: 0;
                    display: inline-flex;
                    width: 100%;
                }

                    .wrapper .rightSide main .cardsArea .usageDetails ul li {
                        list-style: none;
                        width: 100%;
                    }

                        .wrapper .rightSide main .cardsArea .usageDetails ul li:last-child {
                            text-align: right;
                        }

                            .wrapper .rightSide main .cardsArea .usageDetails ul li:last-child span {
                                background: #FFF7E1;
                                border-radius: 20px;
                                border: 1px #F79E1B solid;
                                color: #F79E1B;
                                font-size: 12px;
                                padding: 4px 18px;
                            }

                .wrapper .rightSide main .cardsArea .usageDetails .box {
                    text-align: center;
                    background: #712E8D;
                    padding: 10px;
                    border-radius: 8px;
                }

                    .wrapper .rightSide main .cardsArea .usageDetails .box button {
                        border: none;
                        outline: none;
                        background: transparent;
                        color: #fff;
                        width: 100%;
                        height: 100%;
                    }


/*<-------------- css form card index page (s) --------------------->*/
.card-main-container {
    background-color: white;
    border-radius: 20px;
}

.nav-tabs {
    --bs-nav-tabs-border-width: initial;
    --bs-nav-tabs-border-color: initial;
    --bs-nav-tabs-border-radius: initial;
    --bs-nav-tabs-link-hover-border-color: initial;
    --bs-nav-tabs-link-active-color: initial;
    --bs-nav-tabs-link-active-bg: initial;
    --bs-nav-tabs-link-active-border-color: initial;
    border-bottom: 2px solid #D7D7D7;
    position: relative;
    margin-bottom: 20px;
}

.nav-link {
    color: #767676;
    font-weight: 500;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #712E8D;
    border-bottom: 2px solid #FFC815;
    margin-bottom: -3px;
    background-color: #FFFBF0;
    border-radius: 5px 5px 0 0;
}

.dataTables_wrapper .dataTables_filter {
    margin-bottom: 10px;
}

.details h4 {
    color: purple;
}

span {
    color: #A795B2;
}

.tab-pane h4 {
    color: #712E8D;
}

.accordion-button:not(.collapsed) {
    color: #712E8D;
    background-color: #FFFBF0;
    font-weight: 500;
}

.accordion-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.captcha-input {
    border-radius: 5px !important;
    font-size: 1em !important;
    margin-right: 10px !important;
    border: 1px solid #D9D9D9 !important;
    position: relative !important;
    width: 8% !important;
    height: 70% !important;
}

.form-check-input:checked {
    background-color: #0d6efd !important;
    color: white !important;
}

.captcha-image {
    width: 36%;
    margin-left: 30px;
    position: relative;
    left: 100px;
}

.captcha-span {
    font-weight: 400;
    font-size: 18px;
    color: #131313B2;
}

.circle {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e8e1ed;
    font-weight: 500;
}


.step {
    font-weight: bold;
    margin-top: 10px
}

.filled {
    border: 6px solid rgba(0,0,0,0.03);
    box-shadow: inset 0 0 0 4px #712E8D;
}

.line {
    height: 2px;
    width: 400px;
    background: #dedede;
    margin-bottom: 42px;
}

.line-filled {
    transition: 0.2s ease-in-out;
    background: rgb(86, 174, 88);
}

.circle lottie-player > svg {
    width: none !important;
    margin-top: 18px !important;
}

.circleComplete {
    background: rgb(86, 174, 88);
    border: none;
}

.stepperTab .row > hr {
    width: 600px;
}

.textActive {
    color: #712E8D;
    width: 77px;
}


.modalOkBtn {
    padding: 15px 130px;
}

.noBG {
    background-color: #fff;
}

.noBorder {
    border-right: #fff;
}

.check-container {
    width: 6.25rem;
    height: 7.5rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

    .check-container .check-background {
        width: 100%;
        height: calc(100% - 1.25rem);
        background: linear-gradient(to bottom right, #5de593, #41d67c);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
        transform: scale(0.84);
        border-radius: 50%;
        animation: animateContainer 0.75s ease-out forwards 0.75s;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
    }

    .check-container.failed .check-background {
        width: 100%;
        height: calc(100% - 1.25rem);
        background: linear-gradient(to bottom right, #f13838, #e71a23);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
        transform: scale(0.84);
        border-radius: 50%;
        animation: animateContainer 0.75s ease-out forwards 0.75s;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
    }

    .check-container .cross-background {
        background: linear-gradient(to bottom right, #dc3545, #dc3545) !important;
    }

    .check-container .cross-shadow {
        background: radial-gradient(closest-side, #dc3545, transparent) !important;
    }

    .check-container .check-background svg {
        width: 65%;
        transform: translateY(0.25rem);
        stroke-dasharray: 80;
        stroke-dashoffset: 80;
        animation: animateCheck 0.35s forwards 1.25s ease-out;
    }

    .check-container .check-shadow {
        bottom: calc(-15% - 5px);
        left: 0;
        border-radius: 50%;
        background: radial-gradient(closest-side, #49da83, transparent);
        animation: animateShadow 0.75s ease-out forwards 0.75s;
    }



@keyframes animateContainer {
    0% {
        opacity: 0;
        transform: scale(0);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    25% {
        opacity: 1;
        transform: scale(0.9);
        box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    43.75% {
        transform: scale(1.15);
        box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
    }

    62.5% {
        transform: scale(1);
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
    }

    81.25% {
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
    }

    100% {
        opacity: 1;
        box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
    }
}

@keyframes animateCheck {
    from {
        stroke-dashoffset: 80;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes animateShadow {
    0% {
        opacity: 0;
        width: 100%;
        height: 15%;
    }

    25% {
        opacity: 0.25;
    }

    43.75% {
        width: 40%;
        height: 7%;
        opacity: 0.35;
    }

    100% {
        width: 85%;
        height: 15%;
        opacity: 0.25;
    }
}

.progress {
    width: 28.8px;
    height: 28.8px;
    border: 7.2px solid #dbdcef;
    border-radius: 50%;
    position: relative;
    transform: rotate(45deg);
    overflow: initial;
    --animation-duration: 60s;
}

    .progress::before {
        content: "";
        position: absolute;
        inset: -7.2px;
        border-radius: 50%;
        border: 7.2px solid #712e8d;
        animation: progress-1tucza var(--animation-duration) infinite linear;
    }

@keyframes progress-1tucza {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0 );
    }

    25% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0 );
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%);
    }

    75% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%);
    }

    100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0 );
    }
}

.desc {
    margin-right: -68px;
}

.stepper1 {
    padding-left: 107px;
}

.stepper2 {
    padding-left: 145px;
}

.stepper3 {
    padding-left: 182px;
}

.search-btn {
    background-color: #712E8D;
    color: #ffff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    text-wrap:nowrap;
}

    .search-btn .ti {
        font-size: 20px !important;
    }

.registrationForm input {
    height: 50px;
}

.forgotPassForm input {
    height: 50px;
}

.forgotUsernameForm input {
    height: 50px;
}

/* Validation Classes */
.invalid-fields {
    border: 1px solid red !important;
}

.validation-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 5px 15px;
}

.validation-msg {
    color: red;
    font-size: 10px;
}

#validation-icon {
    font-size: 30px;
    margin: 10px;
    color: red;
}

/* Error Notification Styling */

.error-wrapper {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #D43E4D;
    background-color: #F9E2E4;
    position: fixed;
    top: 11%;
    z-index: 1600;
    transform: translate(-50%, -50%);
    width: 50%;
    left: 50%;
}

    .error-wrapper .btn-close {
        position: absolute;
        right: 24px;
        top: 35%;
    }

        .error-wrapper .btn-close:focus {
            box-shadow: none;
        }

    .error-wrapper .content-wrap {
        padding-left: 24px;
    }

        .error-wrapper .content-wrap h6 {
            color: #64666A;
            font-size: 21px;
            font-weight: bold;
        }

        .error-wrapper .content-wrap p {
            color: #64666A;
            font-size: 16px;
            font-weight: normal;
        }

.success-wrapper {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid #79B64D;
    background-color: #EBF4E4;
    position: fixed;
    top: 11%;
    z-index: 1600;
    transform: translate(-50%, -50%);
    width: 50%;
    left: 50%;
}

    .success-wrapper .btn-close {
        position: absolute;
        right: 24px;
        top: 35%;
    }

        .success-wrapper .btn-close:focus {
            box-shadow: none;
        }

    .success-wrapper .content-wrap {
        padding-left: 24px;
    }

        .success-wrapper .content-wrap h6 {
            color: #64666A;
            font-size: 21px;
            font-weight: bold;
        }

        .success-wrapper .content-wrap p {
            color: #64666A;
            font-size: 16px;
            font-weight: normal;
        }


.inputIconWrapper i {
    font-size: 1.5rem;
}


.container-fluid.ticker {
    background: #712E8D;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 45px;
    padding: 0 25px;
    overflow: hidden;
}

    .container-fluid.ticker ul {
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
        animation: scroll 40s linear infinite;
    }

        .container-fluid.ticker ul li {
            display: inline-flex;
            align-items: center;
            padding-right: 50px;
        }

            .container-fluid.ticker ul li::before {
                content: "\2022"; /* Bullet point */
                color: #FF2B2B;
                display: inline-block;
                font-size: 30px;
                position: relative;
                top: 0;
                margin-right: 5px;
            }

            .container-fluid.ticker ul li span.message {
                color: #FFC815;
                font-size: 1.2rem;
                font-weight: 500;
                margin-right: 25px;
                text-wrap: nowrap;
            }

            .container-fluid.ticker ul li span.news {
                color: #fff;
                text-wrap: nowrap;
            }

    /* Pause animation on hover */
    .container-fluid.ticker:hover ul {
        animation-play-state: paused;
    }

/* Animation keyframes */
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 1600px) {
    .outerWrapper {
        width: 95%;
    }
}

@media (max-width: 1024px) {

    #informBnk {
        display: none;
    }

    #SecGid {
        display: none;
    }

    .mainContainerOuter .card .logo {
        display: none;
    }

    .container-fluid main .card {
        width: 80% !important;
        height: auto !important;
        min-width: auto !important;
    }

    .btnBox {
        gap: 4rem;
    }
}

@media (max-width: 540px) {

    #OuterPage {
        background-size: cover;
        background-position: center;
    }

    .container-fluid header {
        padding: 10px 20px
    }

    .headerNavigation{
        display:flex;
    }

    .container-fluid header nav ul li {
        padding: 7px 16px;
    }

        .container-fluid header .logo a img {
            width: 46%;
        }

    .container-fluid.ticker ul li span.news {
        font-size:8px;
    }

    .container-fluid.ticker ul li span.message {
        font-size: 13px;
        margin-right: 10px;
    }

    .btnBox {
        gap: 1rem;
        flex-direction: column;
    }

    .container-fluid main .card {
        padding: 2rem !important;
    }

    .formWrapperCard{
        padding:0;
    }

    .registrationForm input, .forgotUsernameForm input {
        height: 40px;
        font-size: 12px;
    }

    .container-fluid footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .container-fluid footer div, span {
        font-size:10px;
    }

    .loginH1 {
        font-size: 1.5rem !important;
    }

    .loginSubH1 {
        font-size: 1rem !important;
    }

    .inputBox {
        height: 40px !important;
        border-radius: 6px !important;
        gap: 0.3rem !important;
    }

        .inputBox input {
            font-size: 1rem !important;
        }

        .inputBox .iconUser {
            font-size: 1rem !important;
        }

    .btnArea .btnBox .actText a {
        font-size: 0.8rem !important;
    }

    .btnArea .btnBox .actBtn {
        font-size: 0.8rem !important;
        line-height: 1.5rem !important;
    }

    .error-wrapper {
        width: 96% !important
    }

    .success-wrapper {
        width: 96% !important
    }
}
