@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    color: #423b47;
    font-family: 'Mulish', sans-serif;
    background-color: #f5f5fd;
}

.login_box {
    display: flex;
    height: 100vh;
}

.login_left {
    width: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/banner.jpeg');
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login_right {
    width: 50%;
    display: flex;
    padding: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

img.logo {
    max-width: 200px;
}

.login_div {
    max-width: 500px;
    width: 100%;
}

.form-control {
    padding: 0.5rem 1rem;
    color: #3f2a7b;
    border-radius: 0.3rem;
    border-color: #e2d8ff;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.5rem + 2px);
}

.form-control:focus {
    border-color: #3f2a7b;
    box-shadow: none;
}

.btn-lg {
    font-size: 24px;
}

.btn {
    color: #fff;
    /* background-color: #3f2a7b; */
    background: rgb(63, 42, 123);
    background: linear-gradient(90deg, rgba(63, 42, 123, 0.8912158613445378) 0%, rgba(171, 84, 159, 0.9472382703081232) 100%);
    font-weight: 700;
    transition: all 0.3s;

}

.btn:hover {
    color: #fff;
    /* background: rgb(171, 84, 159); */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: linear-gradient(90deg, rgba(171, 84, 159, 0.9472382703081232) 0%, rgba(63, 42, 123, 0.8912158613445378) 100%);
}

.theme_color {

    /* background-color: #3f2a7b; */
    background: rgb(63, 42, 123);
    background: linear-gradient(90deg, rgba(63, 42, 123, 0.8912158613445378) 0%, rgba(171, 84, 159, 0.9472382703081232) 100%);
    color: #fff;

}

.password_box img {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 25px;
    transform: translateY(-50%);
}

.password_box input {
    padding-right: 40px;
}

.carousel-item img {
    max-height: 600px;
}

/* dashoard css */

element.style {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sidemenu ul li a {
    height: 70px;
    width: 100%;
    max-width: 70px;
    margin: auto auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidemenu ul li a:hover {
    /* background-color: #fff; */
    background-color: rgb(137 110 213 / 89%);
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.sidemenu ul li a.active {
    /* background-color: #fff; */
    background-color: rgb(137 110 213 / 89%);

    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.dashboard_box {
    height: 100%;
    display: flex;
}

.dashboard_content {
    width: calc(100% - 150px);
    /* padding: 126px 50px 50px; */
    padding: 30px 50px 50px;
    height: 100%;
    overflow-y: scroll;
}

.sidemenu {
    padding: 30px 15px;
    width: 150px;
    background: linear-gradient(90deg, rgba(63, 42, 123, 0.8912158613445378) 0%, rgba(171, 84, 159, 0.9472382703081232) 100%);

}

.page_heding {
    border-left: 4px solid #3f2a7b;
    padding-left: 20px;
}

.page_heding h1 {
    font-size: 40px;
    font-weight: 800;
    color: #3f2a7b;
    margin: 0;
}

.sidemenu ul li a img {
    width: 30px;
}

.page_box {
    border: 3px solid #5c438c;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgb(100 100 111 / 1%) 0px 7px 29px 0px;
}

.sidemenu ul li a img:last-child {
    display: none;
}

.sidemenu ul li a.active img:last-child {
    display: block;
}

.sidemenu ul li a.active img:first-child {
    display: none;
}

.sidemenu ul li a:hover img:last-child {
    display: block;
}

.sidemenu ul li a:hover img:first-child {
    display: none;
}

.progress {
    background-color: #e5e5e5;
    border-radius: 50px;

}

.progress-bar {
    height: 100%;
    width: 0%;
    /* will be increased with JavaScript */
    background-color: #4CAF50;
    transition: width 0.2s ease;
    animation: progress-bar-animation 2s linear;
}

@keyframes progress-bar-animation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.page_box span {
    font-weight: 600;
}

.page_box h2 {
    font-weight: 800;
    color: #3f2a7b;
    margin-top: 10px;
    font-size: 35px;
}




/* progress bar */

.percent {
    position: relative;
}

svg {
    position: relative;
    width: 210px;
    height: 210px;
    transform: rotate(-90deg);
}

svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 10;
    stroke-linecap: round;
}

svg circle:last-of-type {
    stroke-dasharray: 625px;
    stroke-dashoffset: calc(625px - (625px * var(--percent)) / 100);
    stroke: #3498db;
}

.number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.number h3 {
    font-weight: 200;
    font-size: 3.5rem;
}

.number h3 span {
    font-size: 2rem;
}

:nth-child(1) svg circle:last-of-type {
    stroke: #f39c12;
}

:nth-child(2) svg circle:last-of-type {
    stroke: #2ecc71;
}


/* User manegment */

.d_block {
    display: block !important;
}

.tra_nstion {
    transition: all 0.5s !important;
}

.bg_light {
    background-color: aliceblue;
}

.table th {
    border-top: none !important;
}


/* MY PRofile */


/* Scrollbar*/
#scroll_bar::-webkit-scrollbar {
    width: 10% !important;
    height: 10px;

}

/* Track */
#scroll_bar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
#scroll_bar::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(63, 42, 123, 0.8912158613445378) 0%, rgba(171, 84, 159, 0.9472382703081232) 100%);
    border-radius: 5px;
}

/* Handle on hover */
#scroll_bar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(63, 42, 123, 0.8912158613445378) 0%, rgba(171, 84, 159, 0.9472382703081232) 100%);
}




.table_page_box {
    background-color: #fff;
    border-radius: 20px;
}

.table thead th {
    color: #afafb2;
    padding: 20px 10px;
}

table {
    font-size: 15px;
}

.table td {
    padding: 15px 10px;
    vertical-align: middle;
}

.table_btn {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px !important;
    font-size: 16px;
    padding: 0;
}

.table_btn:hover {
    color: #fff !important;
}

.filter_box i {
    cursor: pointer;
    font-size: 20px;
    margin-left: 20px;
    color: #3f2a7b;
}

.filter_box i:hover {
    color: #9c56a2;
}

button.close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.filter-input {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 14px;
}

.page-link {
    background-color: #fff0;
    border: none;
    color: #3f2a7b;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;

}

/* li.page-item:first-child a.page-link {
    border: 1px solid #3f2a7b;
    color: #3f2a7b;
    border-radius: 50%;

} */
li.page-item:last-child a.page-link {
    border: 1px solid #3f2a7b;
    color: #3f2a7b;
    border-radius: 50%;

}

.page-link:hover {
    border: 1px solid #3f2a7b;
    background-color: #fff;
    color: #3f2a7b;
    border-radius: 50%;
}

.form-group label {
    font-weight: 900;
}

.profile_div {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.profile_div img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile_div a {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: #fff;
}

.profile_div a input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.table_page_box a i {
    color: #3f2a7b;
}

.table_page_box a:hover i {
    color: #ffffff;
}

.page-item.active .page-link {
    background-color: #a358a0;
    border-color: #9b579e;
}


.rotate{
    -moz-transition: all 5s linear;
    -webkit-transition: all 5s linear;
    transition: all 5s linear;
}

.rotate.down{
    -moz-transform:rotate(360deg);
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg);
}

