* {
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.btn_primary {
    background: #00468C;
    border: 2px solid;
    border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
    border-image-slice: 1;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_primary img,
.btn_bordered img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.btn_bordered {
    background: transparent;
    border: 1px solid #E8E8E9;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #69686D;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .btn_bordered:hover {
        border-color: #E8E8E9;
        color: #333;
        transform: scale(1.01);
        background-color: #00468C0D;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
    }
/* Editable */
.waviy {
    position: relative;
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

    .waviy span {
        position: relative;
        display: inline-block;
        font-size: 40px;
        color: #000;
        text-transform: uppercase;
        animation: waviy 1s infinite;
        animation-delay: calc(.1s * var(--i));
    }

@keyframes waviy {
    0%, 40%, 100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-20px);
    }
}
/* Preloader */
.svg-container {
    background: rgba(000, 000, 000, 0.8) !important;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    transition-delay: 0.5s;
    opacity: 1;
}

    .svg-container + .loaded {
        opacity: 0;
    }

    .svg-container svg:first-child path {
        fill: none;
        stroke: #fff;
        stroke-width: 1;
        stroke-dasharray: 300;
        animation: drawStroke 4s linear forwards infinite;
    }

    .svg-container svg {
        max-width: 257px;
        width: 100%;
        height: auto;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        .svg-container svg:nth-child(1) + .loaded {
            opacity: 0;
        }

        .svg-container svg:nth-child(2) {
            opacity: 0;
            position: absolute;
            left: 0;
            top: 50%;
            right: 0;
            margin: 0 auto;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

            .svg-container svg:nth-child(2) + .loaded {
                opacity: 1;
            }

@keyframes drawStroke {
    from {
        stroke-dashoffset: 300;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillPath {
    from {
        fill-opacity: 0;
    }

    to {
        fill-opacity: 1;
    }
}
/* Preloader */

/* login ...................................... */

.login {
    background: url('../images/loginbg.png') no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login .logo {
        max-width: 391px;
        max-height: 229px;
    }

.loginCard {
    background-color: #FFFFFF;
    box-shadow: 0px 1px 2px -1px #FFFFFF;
    padding: 50px 32px;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
}

    .loginCard h3 {
        font-weight: 700;
        text-align: center;
        color: #00468C;
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .loginCard h4 {
        font-weight: 600;
        font-size: 30px;
        text-align: center;
        line-height: 38px;
    }

    .loginCard p {
        font-weight: 400;
        font-size: 16px;
        text-align: center;
        line-height: 24px;
        margin-bottom: 4px;
    }

    .loginCard .form-group {
        margin-top: 20px;
    }

        .loginCard .form-group label,
        .loginCard .form-check label {
            font-weight: 500;
            color: #414651;
            font-size: 14px;
            line-height: 100%;
            margin-bottom: 6px;
        }

        .loginCard .form-group .form-control {
            border-radius: 8px;
            border: 1px solid #D5D7DA;
            padding: 10px 14px;
            font-weight: 400;
            font-size: 16px;
            color: #717680;
            box-shadow: none;
        }

            .loginCard .form-group .form-control::placeholder {
                color: #717680;
            }

    .loginCard .form-check .form-check-input {
        border: 1px solid #D5D7DA;
        box-shadow: none;
        height: 16px;
        width: 16px;
    }

    .loginCard a {
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
        color: #EF2E24;
        text-decoration: none;
    }

    .loginCard .btn_primary {
        margin-top: 24px;
    }

@media (max-width:575px) {
    .loginCard h4 {
        font-size: 26px;
        line-height: 32px;
    }

    .loginCard p {
        font-size: 14px;
        line-height: 20px;
    }

    .login .logo {
        max-width: 120px !important;
        max-height: 111px;
    }

    .login {
        padding: 20px 0;
    }
}

@media (min-width:575px) and (max-width:767px) {
    .login {
        padding: 40px 0;
    }

        .login .logo {
            max-width: 120px !important;
            max-height: 110px;
        }
}

@media (max-width:991px) {
    .login .logo {
        max-width: 100%;
        max-height: auto;
    }
}

/* Sidebar .......................... */


.sidebar-container {
    padding: 18px 0 18px 9px !important;
    position: fixed;
    height: 100%;
}

.sidebar {
    padding: 20px 12px;
    width: 64px;
    height: 100%;
    background-color: #00468C;
    box-shadow: 0px 1px 2px 0px #FFFFFF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.sidebar-logo {
    width: 32px;
    height: 32px;
}

.main-menu {
    margin-top: 40px;
}

    .main-menu .nav-item {
        margin-bottom: 10px;
    }

        .main-menu .nav-item .nav-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .main-menu .nav-item .nav-link img {
                max-width: 20px;
                max-height: 20px;
            }

            .main-menu .nav-item .nav-link.active {
                background-color: #FAFAFA;
            }

                .main-menu .nav-item .nav-link.active img {
                    opacity: 70%;
                    filter: brightness(0) invert(0);
                }

.bottom-menu {
    margin-top: auto;
    margin-bottom: 20px;
}

    .bottom-menu .logoutbtn {
        border: 1px solid #D92D20;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #D92D20;
    }

    .bottom-menu button img {
        max-width: 20px;
        max-height: 20px;
    }

.main {
    margin-left: 113px;
    padding-right: 80px;
}


.right-sidebar {
    padding: 30px 0 24px 0;
    border-bottom: 1px solid #D5D7DA;
    margin-bottom: 32px;
}

    .right-sidebar h3 {
        font-size: 24px;
        line-height: 24px;
        font-weight: 600;
        margin-top: 0;
        color: #181D27;
    }

    .right-sidebar .btn {
        padding: 8px 10px;
    }

        .right-sidebar .btn img {
            height: 20px;
            width: 20px;
        }

    .right-sidebar .dropdown .btn {
        padding: 0;
        margin-left: 16px;
    }

        .right-sidebar .dropdown .btn img {
            width: 40px;
            height: 40px;
            margin: 0;
        }

    .right-sidebar .dropdown .dropdown-item {
        font-size: 14px;
        color: #181D27;
        font-weight: 400;
    }

        .right-sidebar .dropdown .dropdown-item:active {
            background-color: #00468C;
            color: #FFFFFF;
        }

@media (max-width :575px) {
    .sidebar-container {
        padding: 12px 0 12px 6px !important;
    }

    .sidebar {
        padding: 20px 8px;
        width: 58px;
    }

    .main {
        margin-left: 74px;
        padding-right: 15px;
    }
}

@media (min-width :575px) and (max-width :991px) {
    .main {
        margin-left: 100px;
        padding-right: 30px;
    }
}

@media (min-width :991px) and (max-width :1200px) {
    .main {
        margin-left: 100px;
        padding-right: 45px;
    }
}

/* sidebar end ..............................  */


/* Dashboard.................  */
/*.dashboard {
    padding-bottom: 30px;
}*/

    .dashboard h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #181D27;
        margin-bottom: 0;
    }

    .dashboard input[type=date] {
        border: 1px solid #D5D7DA;
        box-shadow: 0px 1px 2px 0px #0A0D120D;
        font-size: 14px;
        line-height: 20px;
        font-weight: 600;
        padding: 10px 12px;
        border-radius: 8px;
        outline: none;
        color: #414651;
    }

    .dashboard .cards {
        margin: 24px 0;
    }

        .dashboard .cards .card {
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid transparent;
            height: 100%;
        }

            .dashboard .cards .card .img-container {
                width: 52px;
                height: 52px;
                border-radius: 4px;
                margin-right: 12px;
            }

                .dashboard .cards .card .img-container img {
                    width: fit-content;
                    max-width: 24px;
                    height: 24px;
                    margin: 0;
                    text-align: center;
                }

            .dashboard .cards .card .filter {
                filter: brightness(0) invert(0);
            }

            .dashboard .cards .card p {
                font-weight: 500;
                font-size: 14px;
                line-height: 18px;
                color: #414651;
                margin-bottom: 0;
            }

                .dashboard .cards .card p span {
                    font-weight: 600;
                    color: #181D27;
                }

            .dashboard .cards .card h3 {
                font-size: 30px;
                line-height: 38px;
            }

            .dashboard .cards .card .detail {
                margin-bottom: 24px;
            }

            .dashboard .cards .card img {
                width: 20px;
                height: 20px;
                margin-right: 8px;
            }

        .dashboard .cards .card1 {
            background-color: #00468C0D;
            border-color: #00468C;
        }

            .dashboard .cards .card1 .img-container {
                background-color: #00468C;
            }

        .dashboard .cards .card2 {
            background-color: #F9F5FF;
            border-color: #7F56D9;
        }

            .dashboard .cards .card2 .img-container {
                background-color: #7F56D9;
            }

        .dashboard .cards .card3 {
            background-color: #FFFAEB;
            border-color: #F79009;
        }

            .dashboard .cards .card3 .img-container {
                background-color: #F79009;
            }

        .dashboard .cards .card4 {
            background-color: #ECFDF3;
            border-color: #079455;
        }

            .dashboard .cards .card4 .img-container {
                background-color: #079455;
            }

        .dashboard .cards .card5 {
            background-color: #FFF4ED;
            border-color: #F79009;
        }

        .dashboard .cards .card6 {
            background-color: #FDF2FA;
            border-color: #EE46BC;
        }

    .dashboard .table-outer {
        border: 1px solid #E9EAEB;
        box-shadow: 0px 1px 2px 0px #0A0D120D;
        border-radius: 12px;
    }

        .dashboard .table-outer .table-head {
            padding: 18px 24px;
            border-bottom: 1px solid #E9EAEB;
        }

            .dashboard .table-outer .table-head h3 {
                font-size: 20px;
                font-weight: 500;
                line-height: 24px;
            }

    .dashboard .table {
        margin-bottom: 0;
    }

        .dashboard .table tr th {
            background-color: #FAFAFA;
            padding: 10px 12px;
            font-size: 16px;
            font-weight: 600;
            color: #181D27;
        }

        .dashboard .table tr td {
            padding: 10px 12px;
            font-size: 14px;
            font-weight: 500;
            color: #181D27;
        }

        .dashboard .table tbody tr th {
            font-weight: 500;
            padding: 24px 12px;
        }

    .dashboard .detail-card {
        border: 1px solid #E9EAEB;
        box-shadow: 0px 1px 2px 0px #0A0D120D;
        padding: 24px;
        border-radius: 12px;
    }

        .dashboard .detail-card .card {
            padding: 14px 12px;
        }

            .dashboard .detail-card .card h3 {
                font-size: 18px;
                line-height: 28px;
            }

                .dashboard .detail-card .card h3 span {
                    font-weight: 700;
                }

            .dashboard .detail-card .card p {
                color: #181D27;
                font-weight: 400;
            }
    .dashboard .card .chart-label {
        margin-left: 24px;
        margin-top: 16px;
        font-weight: 600;
    }


@media (min-width:767px) and (max-width:991px) {
    .dashboard .detail-card {
        padding: 24px 10px;
    }

    .dashboard .cards .card {
        padding: 14px 10px;
    }

        .dashboard .cards .card .detail {
            margin-bottom: 16px;
        }
}

@media (max-width:575px) {
    .dashboard .detail-card {
        padding: 24px 2px;
    }
}


/* Side Panel */

.Overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #00000066;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

    .Overlay.active {
        opacity: 1;
        visibility: visible;
    }


.SidePanel {
    padding: 17px 14px 40px 24px;
    background-color: #FFFFFF;
    border-left: 14px solid #EF2E24;
    max-width: 408px;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
}

    .SidePanel.open {
        transform: translateX(0);
    }

    .SidePanel .panelHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }


        .SidePanel .panelHead h3 {
            max-width: 267px;
        }

    .SidePanel h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 24px;
        color: #181D27;
        margin-bottom: 0;
    }

    .SidePanel p {
        font-weight: 600;
        font-size: 16px;
        line-height: 16px;
        color: #101828;
    }

        .SidePanel p span {
            font-weight: 400;
        }

    .SidePanel .details {
        margin-bottom: 24px;
    }

    .SidePanel .detail h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 18px;
    }

    .SidePanel .table {
        margin-top: 16px;
    }

        .SidePanel .table tr th {
            padding: 10px 14px;
            font-weight: 600;
            font-size: 12px;
            color: #414651;
            background-color: #FAFAFA;
        }

        .SidePanel .table tr td {
            padding: 10px 14px;
            font-weight: 500;
            font-size: 12px;
            color: #414651;
        }

    .SidePanel .form-group {
        margin-bottom: 20px;
    }

        .SidePanel .form-group label {
            font-weight: 500;
            font-size: 14px;
            color: #414651;
            margin-bottom: 6px;
        }

        .SidePanel .form-group .form-control,
        .SidePanel .form-group .form-select {
            border: 1px solid #D5D7DA;
            border-radius: 8px;
            box-shadow: 0px 1px 2px 0px #D5D7DA;
            padding: 8px 12px;
            font-weight: 400;
            color: #717680;
        }



/* Profile .................  */
.profile {
    padding-bottom: 40px;
}

    .profile .sectionHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .profile h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #181D27;
        margin-bottom: 0;
    }

    .profile p {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #181D27;
        margin-bottom: 0;
    }

    .profile .profile-detail {
        background-color: #00468C;
        padding: 30px 28px;
        border-radius: 12px;
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin: 32px 0 20px 0;
    }

        .profile .profile-detail .divider {
            height: 112px;
            width: 1px;
            background-color: #D5D7DA;
            margin: 0 40px;
        }

.profile-detail .aboutprofile {
    display: flex;
    align-items: center;
    width: 45%;
}

    .profile-detail .aboutprofile img {
        border: 2px solid #FFFFFF;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .profile-detail .aboutprofile h3 {
        color: #FFFFFF;
    }

    .profile-detail .aboutprofile p {
        color: #FFFFFF;
        font-weight: 400;
    }

.statusLbl {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    border-radius: 16px;
    padding: 2px 8px;
    border: 1px solid;
}

.statusPending {
    background-color: #FFFAEB;
    border-color: #DC6803;
    color: #DC6803;
}

.statusAccepted {
    background-color: #ECFDF3;
    border-color: #079455;
    color: #079455;
}

.statusDeclined {
    background-color: #FEF3F2;
    border-color: #B42318;
    color: #B42318;
}

.statusNoInvitation {
    background-color: #F9F5FF;
    border-color: #E9D7FE;
    color: #6941C6;
}

.detailprofile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

    .detailprofile p {
        color: #FFFFFF;
        font-size: 14px;
        line-height: 20px;
    }

        .detailprofile p span {
            font-size: 12px;
            font-weight: 400;
        }

    .detailprofile .detail img {
        width: 24px;
        height: 24px;
        margin-bottom: 8px;
    }

    .detailprofile .detail:not(:last-child) {
        margin-right: 24px;
    }

.profile-qr {
    width: 10%;
}

    .profile-qr img {
        width: 96px;
        height: 96px;
    }

.ProfileAccordians .accordion .accordion-header {
    position: relative;
}

.ProfileAccordians .btn-edit {
    position: absolute;
    border: none;
    background-color: transparent;
    padding: 0;
    top: 0px;
    right: 20px;
    z-index: 10;
}

    .ProfileAccordians .btn-edit img {
        width: 24px;
        height: 24px;
    }

.ProfileAccordians .accordion .accordion-item {
    border: transparent !important;
}

.ProfileAccordians .accordion .accordion-button {
    background: #00468C;
    padding: 11px 20px 11px 44px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
    border-radius: 12px !important;
    box-shadow: none;
}

    .ProfileAccordians .accordion .accordion-button img {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }

    .ProfileAccordians .accordion .accordion-button::after {
        width: 24px;
        height: 24px;
        margin-left: unset;
        margin-right: auto;
        background-image: url(../images/plus.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px;
        position: absolute;
        left: 15px;
    }

    .ProfileAccordians .accordion .accordion-button:not(.collapsed)::after {
        background-image: url(../images/minus.svg);
    }

.ProfileAccordians .accordion .accordion-body {
    margin-top: 20px;
    padding: 20px 24px 8px 24px;
    border: 1px solid #00468C0D;
    background-color: #00468C0D;
    border-radius: 12px;
}

    .ProfileAccordians .accordion .accordion-body p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .ProfileAccordians .accordion .accordion-body textarea {
        border: 1px solid #D5D7DA;
        box-shadow: 0px 1px 2px 0px #0A0D120D;
        background-color: #FFFFFF;
        border-radius: 8px;
        padding: 12px 14px;
        font-weight: 400;
        font-size: 16px;
        height: 150px;
        resize: none;
        margin-top: 8px;
    }

    .ProfileAccordians .accordion .accordion-body .btn_bordered {
        background-color: #FFFFFF;
        box-shadow: 0px 1px 2px 0px #0A0D120D;
        border: 1px solid #D5D7DA;
        color: #414651;
    }

    .ProfileAccordians .accordion .accordion-body p span {
        color: #414651;
        font-weight: 400;
        line-height: 20px;
    }

    .ProfileAccordians .accordion .accordion-body p img {
        width: 80px;
        height: 80px;
        border-radius: 4px;
    }

    .ProfileAccordians .accordion .accordion-body .sign {
        border: 1px solid #535862;
        width: 80px;
        height: 80px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .ProfileAccordians .accordion .accordion-body .sign img {
            max-width: 57;
            max-height: 43px;
        }

.profile .table-outer {
    overflow-x: auto;
    border: 1px solid #E9EAEB;
    border-radius: 12px;
}

    .profile .table-outer .table {
        margin-bottom: 0;
    }

        .profile .table-outer .table tr th {
            background-color: #FAFAFA;
            padding: 10px 12px;
            font-size: 16px;
            color: #181D27;
            font-weight: 600;
        }

        .profile .table-outer .table tr td {
            font-weight: 500;
            font-size: 14px;
            color: #181D27;
            padding: 10px 12px;
            vertical-align: middle;
        }

            .profile .table-outer .table tr td input {
                border: 1px solid #D5D7DA;
                box-shadow: 0px 1px 2px 0px var(#0A0D120D);
                padding: 10px;
                outline: none;
                max-width: 91px;
                border-radius: 8px;
                font-size: 14px;
                color: #181D27;
            }

.informationThreads {
    margin-top: 24px;
}

    .informationThreads h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .informationThreads .card {
        border: 1px solid #D5D7DA;
        padding: 24px;
        border-radius: 12px;
        margin-top: 20px;
    }

    .informationThreads .threads:not(:last-child) {
        margin-bottom: 24px;
    }

    .informationThreads .threads img {
        border-radius: 4px;
        width: 52px;
        height: 52px;
        margin-right: 16px;
    }

    .informationThreads .threads h6,
    .informationThreads .threads p {
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
        color: #181D27;
        margin-bottom: 0;
    }

    .informationThreads .threads p {
        font-weight: 400 !important;
    }

        .informationThreads .threads p span {
            font-size: 14px;
            line-height: 14px;
        }


@media (max-width:575px) {

    .profile .profile-detail {
        padding: 16px;
    }

    .profile-detail .aboutprofile {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

        .profile-detail .aboutprofile img {
            margin-bottom: 20px;
        }

    .profile h3 {
        font-size: 20px;
    }

    .profile-detail .aboutprofile p {
        font-size: 14px;
        line-height: 20px;
    }

    .detailprofile {
        flex-wrap: wrap;
    }

        .detailprofile .detail:not(:last-child) {
            margin-right: 0;
            margin-bottom: 24px;
        }

        .detailprofile .detail:last-child {
            width: 100%;
        }

        .detailprofile .detail {
            width: 48%;
        }

    .ProfileAccordians .accordion .accordion-body {
        margin-top: 10px;
        padding: 16px 16px 8px 16px;
    }

        .ProfileAccordians .accordion .accordion-body p {
            font-size: 14px;
        }

    .ProfileAccordians .accordion .accordion-button {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width:767px) {
    .profile .profile-detail {
        flex-wrap: wrap;
        justify-content: start;
        padding: 24px;
    }

    .profile-detail .aboutprofile,
    .profile-detail .profile-qr,
    .profile-detail .detailprofile {
        width: 100%;
    }

    .profile-detail .divider {
        width: 100% !important;
        height: 1px !important;
        margin: 16px 0 !important;
    }

    .profile-detail .detailprofile {
        justify-content: space-between;
    }

    .profile-qr {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width:767px)and (max-width:991px) {
    .profile .profile-detail {
        flex-wrap: wrap;
        justify-content: start;
        padding: 24px;
    }

    .profile-detail .aboutprofile {
        width: 100%;
    }

    .profile-qr {
        width: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .detailprofile {
        width: 72%;
    }

    .profile .profile-detail .divider {
        margin: 0 20px;
    }

    .profile-detail .divider-sm {
        width: 100% !important;
        height: 1px !important;
        margin: 30px 0 !important;
    }
}

@media (min-width:991px)and (max-width:1200px) {
    .profile .profile-detail .divider {
        margin: 0 20px;
    }

    .profile-detail .aboutprofile,
    .detailprofile {
        width: 42.5%;
    }

    .profile-qr {
        width: 15%;
    }

    .profile .profile-detail {
        padding: 24px 18px;
    }

    .profile-detail .aboutprofile h3 {
        font-size: 20px;
    }

    .profile-detail .aboutprofile p {
        font-size: 14px;
    }

    .detailprofile p {
        font-size: 14px;
        line-height: 18px;
    }


    .detailprofile .detail:not(:last-child) {
        margin-right: 16px;
    }
}

@media (min-width:1200px)and (max-width:1400px) {
    .profile .profile-detail .divider {
        margin: 0 30px;
    }

    .profile-detail .aboutprofile {
        width: 40%;
    }

    .detailprofile {
        width: 53%;
    }

    .profile-qr {
        width: 12%;
    }
}




/* drag and drop  */

.dragAnddrop {
    padding: 16px 24px;
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    cursor: pointer;
}

    .dragAnddrop .img-container {
        background: #FFFFFF;
        border: 1px solid #D5D7DA;
        box-shadow: 0px -2px 0px 0px #0A0D120D inset;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .dragAnddrop span {
        font-weight: 600;
        font-size: 14px;
        line-height: 14px;
        color: #00468C;
        margin-right: 4px;
        cursor: pointer;
    }

    .dragAnddrop p {
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        color: #535862;
        margin-bottom: 0;
    }

.uploaded {
    padding: 16px;
    border: 1px solid #E9EAEB;
    border-radius: 8px;
    display: flex;
    margin-top: 16px;
}

    .uploaded img {
        width: 40px;
        height: 40px;
    }

    .uploaded h3 {
        font-size: 14px;
        font-weight: 500;
    }

    .uploaded p {
        margin-bottom: 0;
    }

    .uploaded .text-green {
        font-weight: 500;
        color: #079455;
    }

    .uploaded .divider {
        width: 1px;
        height: 12px;
        background-color: #D5D7DA;
        margin: 0 12px;
    }

    .uploaded p img {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .uploaded .btn img {
        width: 24px;
        height: 24px;
    }

.progress-bar {
    flex: 1;
    background-color: #E9EAEB;
    height: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #00468C;
    border-radius: 50px 0 0 50px;
    transition: width 0.3s ease;
}

.progress-label {
    font-weight: bold;
    color: #2c2f3a;
}

@media (max-width:575px) {
    .uploaded {
        padding: 8px;
    }

        .uploaded h3 {
            font-size: 12px;
        }

        .uploaded p {
            font-size: 10px;
        }

        .uploaded .divider {
            margin: 0 4px;
        }
}

@media (max-width:575px) {
    .dt-pagination {
        width: max-content !important;
    }
}