@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

:root {
    --ip-primary: #0d6efd;
    --ip-secondary: #0d6efd;
    --ip-white: #fff;
}

a {
    text-decoration: none;
}

body {
    /* font-family: 'Open Sans', sans-serif;
    font-family: 'Urbanist', sans-serif; */
    font-family: math;
}

html,
body {
    scroll-behavior: smooth
}

.myScrollspy {
    position: sticky;
    top: 0px;
    height: calc(100vh - 0px)
}

/* forgetpage loginpage registerpage css start */
.heightallapage {
    height: 100vh;
}

.scrollablenavbar {
    overflow: hidden;
    overflow-y: auto;
    height: 95vh;
}

.gradient-custom {
    background: #6a11cb;
    background: linear-gradient(to right, var(--ip-primary), var(--ip-secondary)) !important;
    background-image: url(../images/bright-background-y9v3zxowihjpwx6n.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.login-pages .card {
    box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
    border: 0px solid transparent;
}

.login-page .logo-images {
    text-align: center;
}

.login-page .form-control-lg {
    border-radius: 20px !important;
    padding: 0.25rem 0.75rem;
    min-height: unset;
}

.login-page .form-label {
    margin-left: 0.5rem;
    font-size: 14px;
}

.login-page .form-control-lg {
    font-size: 1rem;
}

.login-page .form-control {
    border: 1px solid #a0a0a0;
}

.login-page .btn-primary {
    background: linear-gradient(to right, var(--ip-primary), var(--ip-secondary)) !important;
}

.login-page .btn-lg {
    border-radius: 20px !important;
    width: 100%;
}

.footer a {
    color: var(--ip-secondary);
}

@media screen and (max-width: 767px) {
    .heightallapage {
        height: auto;
        padding: 20px 0;
    }
}

/* forgetpage loginpage registerpage css end */


/* index page css start */
.main {
    width: 100%;
    display: flex;
}

.sidebar {
    height: 100vh;
    width: 300px;
    background: #ccc;
    transition: all 0.5s ease-in-out;
}

.content {
    width: calc(100% - 300px);
    transition: all 0.5s ease-in-out;
}

header {
    background: #000;
    padding: 10px;
    display: flex;
    align-items: center;
}

header i.fa-bars {
    color: var(--ip-white);
    font-size: 30px;
    cursor: pointer;
}

.header-logo {
    font-size: 30px;
    font-weight: bold;
    color: var(--ip-white);
    margin-left: 30px;
}

.main.close .sidebar {
    width: 0px;
}

.main.close .content {
    width: 100%;
}

.to-set-center-in-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 575px) {
    .to-set-center-in-page {
        position: unset;
        transform: unset;
    }
}

/* ****************  index page css end ************************ */


button {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

button:hover,
button:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Urbanist', sans-serif;
    color: #000;
}

.ftco-section {
    padding: 7em 0;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.heading-section small {
    font-size: 18px;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.navbar {
    padding: 7px 10px;
    height: 46px;
    background: linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    border: none;
    border-radius: 0;
    /* margin-bottom: 40px; */
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);

}

.navbar-btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.wrapper {
    /* width: 100%; */
}

#sidebar {
    min-width: 14%;
    max-width: 14%;
    background-color: #f2f3f2;
    /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 35%); */
    color: #000000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#sidebar.active {
    min-width: 5%;
    max-width: 5%;
    text-align: center;
}

#sidebar.active ul.components li {
    font-size: 14px;
}

#sidebar.active ul.components li a {
    padding: 10px 0;
}

#sidebar.active ul.components li a span {
    margin-right: 0;
    display: block;
    font-size: 24px;
}

#sidebar.active .logo {
    padding: 15px 0;
}

#sidebar.active .footer {
    display: none;
}

#sidebar .logo {
    display: block;
    color: var(--ip-white);
    background-color: var(--ip-primary);
    font-weight: 900;
    padding: 7px 30px;
    height: 46px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
}

#sidebar .logo img {
    width: 80%;
}

@media (prefers-reduced-motion: reduce) {
    #sidebar .logo {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

#sidebar ul.components {
    padding: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    #sidebar ul.components {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

#sidebar ul li {
    font-size: 16px;
    background: linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    border-radius: 0 50px 50px 0;
    margin-top: 1px;
}

#sidebar ul li>ul {
    margin-left: 1px;
}

#sidebar ul li>ul li {
    font-size: 14px;

}

#sidebar ul li a {
    padding: 6px 10px;
    display: block;
    color: var(--ip-white);
    font-family: 'Urbanist', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#sidebar ul li a span {
    margin-right: 10px;
}

@media (max-width: 991.98px) {
    #sidebar ul li a span {
        display: block;
    }
}

#sidebar ul li a:hover {
    color: var(--ip-white);
}

#sidebar ul li.active>a {
    background: transparent;
    color: var(--ip-white);
}

@media screen and (min-width: 1500px){
    #sidebar .logo img {
        width: 40% !important;
    }
}

@media only screen and (max-width: 1260px) and (min-width: 991px) {
    #sidebar ul li {
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    #sidebar {
        min-width: 80px;
        max-width: 80px;
        text-align: center;
        margin-left: -80px !important;
    }

    #sidebar.active {
        margin-left: 0 !important;
        min-width: 10%;
        max-width: 10%;
    }
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    #sidebarCollapse span {
        display: none;
    }
}

.footer {
    padding: 0 30px;
}

.to_fixed_navbar {
    position: fixed;
    top: 0;
    width: 86%;
    z-index: 999999;
}

.to_fixed_navbar_fullwidth {
    width: 95%;
}

@media (max-width: 991.98px) {
    .footer {
        display: none;
    }

    .to_fixed_navbar {
        width: 100%;
    }

    .to_fixed_navbar_fullwidth {
        width: 90%;
    }
}

.content {
    width: 86%;
    padding: 0;
    min-height: 100vh;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #f2f3f2;
}

.content_fullwidth {
    width: 95%;
    /* z-index: 99999; */
}

.btn.btn-primary {
    background: #3e65ff00;
    border-color: #3e65ff00;
    border: none;
    border-radius: 50px !important;
}

.btn.btn-primary i {
    font-size: 24px;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #3e65ff00;
    border-color: #3e65ff00;
}

.user-panel {
    display: flex;
    align-items: center;
}

.user-panel .notication {
    margin-right: 10px;
}

.user-panel .notication i {
    color: var(--ip-white);
}

.user-panel .user-profile .images {
    width: 80px;
    text-align: end;
}

.user-panel .user-profile .images img {
    border-radius: 50%;
}

.to-hide-name {
    display: none !important;
}

.to-close-togggle-to-show-button {
    display: block !important;
}

.dropdown11 {
    list-style: none;
    padding: 0;
    background-color: var(--ip-white);
    width: 100%;
}

.dropdown11 li {
    background: #f6f6f6 !important;
    border-radius: 0 !important;
}

.dropdown11 li .active{
    background: #d5d5e3 !important;

} 

.dropdown11 li a {
    color: #000 !important;
    text-wrap: wrap;
}

.dropdown-toggle::after {
    right: 25px !important;
}

.status-card {
    padding: 15px;
    border-radius: 6px;
    min-height: 68px;
    border: transparent;
    margin: 1px;
}

.status-heading {
    font-size: 12px;
    color: var(--ip-white);
    margin: 0;
}

.colorbackground {
    background: linear-gradient(45deg, var(--ip-primary), var(--ip-secondary)) !important;
    color: var(--ip-white) !important;
}

.colorbackground:hover {
    background: linear-gradient(197deg, var(--ip-primary), var(--ip-secondary)) !important;
}

.paddingall {
    padding: 0 20px;
}

.logout-menu {
    display: none;
    position: absolute;
    list-style: none;
    z-index: 99;
    padding: 0;
    right: 0%;
    top: 0;
    margin: 0px;
    transform: translate3d(0px, 55px, 0px);
    /* background: var(--ip-white) !important; */

}

.logout-menu li {
    padding: 8px 40px;
    background: var(--ip-white) !important;
    font-size: 1.2rem;
    margin-top: px;
    border-bottom: 1px solid #f7f7f7;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.logout-menu li a {
    color: #000;
}

.logout-menu li a i {
    font-size: 1.2rem;
    margin-right: 6px;
}

.logout-menu-show {
    display: block !important;
}

.logout-menu li:hover {
    color: var(--ip-primary);
    background-color: #f8f9fa;
}

.notication-menu {
    display: none;
    position: absolute;
    list-style: none;
    z-index: 99;
    padding: 0;
    right: 10%;
    top: 0;
    margin: 0px;
    transform: translate3d(0px, 55px, 0px);
    /* background: var(--ip-white) !important; */

}

.notication-menu li {
    padding: 8px 40px;
    background: var(--ip-white) !important;
    font-size: 1.2rem;
    margin-top: px;
    border-bottom: 1px solid #f7f7f7;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.notication-menu li a {
    color: #000;
}

.notication-menu-show {
    display: block !important;
}

.notication .upper {
    background-color: var(--ip-primary);
    color: var(--ip-white);
    border-radius: 50%;
    padding: 5px;
    padding: 3px 8px;
    font-size: 15px;
}

@media only screen and (max-width: 1399px) and (min-width: 992px) {
    #sidebar .logo {
        padding: 15px 30px;
    }

    #sidebar ul li a span {
        margin-right: 8px;
    }
}

.dropdown11 {
    position: relative !important;
    inset: unset !important;
    margin: 0px !important;
    transform: unset !important;
}

.dropdown-menu_block {
    display: block !important;
    width: 100%;
    border: none;
}

.dropdown-menu_block li a {
    background: white !important;
    color: black !important;
}

.down_arrow_up {
    webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg) !important;
}

.dropdown-toggle::after {
    display: none;
}

#sidebar ul li {
    font-size: 16px;
    background: unset;
    border-radius: unset;
    margin-top: unset;
}

#sidebar ul li a {
    font-size: 16px;
    width: 100%;
    background: linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    border-radius: 0 0px 0px 0;
    margin-top: 1px;
}

@media only screen and (max-width: 1260px) and (min-width: 991px) {
    #sidebar ul li a {
        font-size: 11px;
    }
}

/* ****************  index page css end ************************ */


.allborder {
    background-color: #fff;
    padding: 1rem;
    /* padding-top: 1rem;
    padding-bottom: 1rem; */
    box-shadow: 0px 7px 15px -8px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

@media only screen and (max-width: 1199px) and (min-width: 991px) {
    .status-heading {
        font-size: 9px;
    }
}

@media screen and (max-width: 991px) {
    .content {
        width: 100% !important;
    }

    .content_fullwidth {
        width: 90% !important;

    }
}

.gradient-footer {
    background: var(--ip-primary);
    background: -webkit-linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    background: -moz- oldlinear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    background: -o-linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    background: linear-gradient(45deg, var(--ip-primary), var(--ip-secondary));
    color: #fff;
}

footer {
    bottom: 0;
    padding: 1.4rem 2rem 1.4rem 28rem;
    height: 40px;
    width: 100%;
    position: absolute;
    overflow: hidden;
    transition: all 200ms ease-in-out 0ms;
}

.forall-radius .form-control {
    border-radius: 50px !important;
}

.forall-radius .form-select {
    border-radius: 50px !important;
}

#sidebar ul li  .SingleTabActive{
    background: linear-gradient(45deg, #d5d5e3 , #d5d5e3) !important;
    color: #000 !important;
}