
/* 
    Created on : Nov 15, 2023, 6:53:30 PM
    Author     : nayan
*/

/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
 

h4{
    font-size: 20px;
}

  .avatar img{max-width:25px;}

/*btn*/
.btn-primary {
    /*background: #953F98!important;*/
    --bs-btn-color: #fff;
    --bs-btn-bg: #953F98;
    --bs-btn-border-color: #953F98;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg:#c85acc;
    --bs-btn-hover-border-color:#c85acc;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #953F98;
    --bs-btn-disabled-border-color: #953F98;
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

/*.card-header{background: #eefff2;}*/

[class*="col-"] {
    margin-bottom:10px;
}

.menu_sidebar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 260px;
    background:#c85acc;
    z-index: 100;
    transition: all 0.5s ease;
}

a,
a:hover {
    text-transform: none;
    text-decoration: none;
    color: var(--bs-heading-color);

}
.page-link{
    cursor: pointer;
}
.menu_sidebar.close{
    width: 78px;
}
.menu_sidebar .logo-details{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #953F98;
}
.menu_sidebar .logo-details i{
    font-size: 30px;
    color: #fff;
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
}
.menu_sidebar .logo-details .logo_name{
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
    text-transform: uppercase;
}
.menu_sidebar.close .logo-details .logo_name{
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
}
.menu_sidebar .nav-links{
    height: 100%;
    padding: 0px 0 150px 0;
    overflow: auto;
}
.menu_sidebar.close .nav-links{
    overflow: visible;
}
.menu_sidebar .nav-links::-webkit-scrollbar{
    display: none;
}
.menu_sidebar .nav-links li{
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
}
.menu_sidebar .nav-links li:hover{
    background: #953F98;
}
.menu_sidebar .nav-links li .iocn-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu_sidebar.close .nav-links li .iocn-link{
    display: block
}
.menu_sidebar .nav-links li i{
    height: 50px;
    min-width: 40px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.menu_sidebar .nav-links li.showMenu i.arrow{
    transform: rotate(-180deg);
}
.menu_sidebar.close .nav-links i.arrow{
    display: none;
}
.menu_sidebar .nav-links li a{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.menu_sidebar .nav-links li a .link_name{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    transition: all 0.4s ease;
}
.close .nav-links li i{
    min-width: 70px!important;
    font-size: 20px !important;
}
.menu_sidebar.close .nav-links li a .link_name{
    opacity: 0;
    pointer-events: none;
}
.menu_sidebar .nav-links li .sub-menu{
    padding: 6px 6px 14px 38px;
    margin-top: -10px;
    background: #953F98;
    display: none;
}
.menu_sidebar .nav-links li.showMenu .sub-menu{
    display: block;
    transition: all 0.4s ease;
}
.menu_sidebar .nav-links li .sub-menu a{
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.menu_sidebar .nav-links li .sub-menu a:hover{
    opacity: 1;

}
.menu_sidebar.close .nav-links li .sub-menu{
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0.5s;
}
.menu_sidebar.close .nav-links li:hover .sub-menu{
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
}
.menu_sidebar .nav-links li .sub-menu .link_name{
    display: none;
    transition: 0.4s;
}
.menu_sidebar.close .nav-links li .sub-menu .link_name{
    font-size: 18px;
    opacity: 1;
    display: block;
    transition: all 0.5s ease;
}
.menu_sidebar .nav-links li .sub-menu.blank{
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}
.menu_sidebar .nav-links li:hover .sub-menu.blank{
    top: 50%;
    transform: translateY(-50%);
}

.one {
    width: 80%;
    margin-left: 10%;
    background-color: black;
    height: 400px;
}

.menu_sidebar .profile-details{
    position: fixed;
    bottom: 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1d1b31;
    padding: 12px 0;
    transition: all 0.5s ease;
}
.menu_sidebar.close .profile-details{
    background: none;
}
.menu_sidebar.close .profile-details{
    width: 78px;
}
.menu_sidebar .profile-details .profile-content{
    display: flex;
    align-items: center;
}
.menu_sidebar .profile-details img{
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background: #1d1b31;
    transition: all 0.5s ease;
}
.menu_sidebar.close .profile-details img{
    padding: 10px;
}
.menu_sidebar .profile-details .profile_name,
.menu_sidebar .profile-details .job{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}
.menu_sidebar.close .profile-details i,
.menu_sidebar.close .profile-details .profile_name,
.menu_sidebar.close .profile-details .job{
    display: none;
}
.menu_sidebar .profile-details .job{
    font-size: 12px;
}
.home-section{
    position: relative;
    height: 100vh;
    left: 260px;
    width: calc(100% - 260px);
    transition: all 0.5s ease;
}
.menu_sidebar.close ~ .home-section{
    left: 78px;
    width: calc(100% - 78px);
}
.home-section .home-content{
    height: 60px;
    background: var(--bs-body-bg);
    padding: 5px;
}
.home-section .home-content .bx-menu,
.home-section .home-content .text{
    /*color: #11101d;*/
    font-size: 35px;
}
.home-section .home-content .bx-menu{
    margin: 0 15px;
    cursor: pointer;
}
.home-section .home-content .text{
    font-size: 26px;
    font-weight: 600;
}
.m_viwe{
    display: none!important;
}

.store_section h2{
    font-size: 29px;
}
.close_button{
    display: none !important;
}


.dashboard .bx-menu,
.dashboard .menu_sidebar{
    display: none;
}

.dashboard .menu_sidebar.close ~ .home-section {
    left: 0;
    width: calc(100% - 0px);
}

.mobile_view,
.mobile_views{
    display: none!important;
}

.store_section {
    padding: 7px 2px;
}
/*icon section*/
.icon{
    padding: 7px 7px;
}
.bi {
    display: block!important;
    width: 0!important;
    height: 0!important;
}
 
.bell_icon{
    background: #ccc;
    padding: 8px 12px 9px 12px;
    border-radius: 50%;
    color:#fff!important;
    background: #d63384;
}
.setting_icon{
    background: #ccc;
    padding: 8px 10px 9px 10px;
    border-radius: 50%;
    color:#fff!important;
    background: #30B563;
}

/*mega menu*/


.profile img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    margin-top: -6px;
    border: 1px solid #ccc;
}




/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>table forme<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
[data-bs-theme=dark] {
    --bs-heading-color:#dee2e6!important;
    --bs-body-bg: #212529!important;
    --bs-light-rgb: #212529!important;
    --card-color: #212529!important;
    --bs-success-rgb: 25,135,84;
    --bs-card-color:#dfedf3 !important;


}
[data-bs-theme=light] {
    --bs-body-bg: #edf2f9!important;
    --bs-light-rgb:  #edf2f9!important;
    --card-color: #fff!important;
}

.form-control{
    background: var(--card-color);
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Callout class <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/
.bs-callout-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-left: 5px solid #ffe69c;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>table section<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

.table>:not(caption)>*>* {
    padding: 0.5rem 0.5rem;
    color: var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));
    background-color:transparent;

    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)));
}

.table .thead-light th {
    color:var(--bs-heading-color)!important;
    background-color:var(--bs-body-bg)!important;
    border-color: #E3EBF3!important;
}

.table .bg-dark {
    background:rgba(25, 135, 84, 0.50)!important;

}
.table .bg-light {
    background:rgba(25, 135, 84, 0.25)!important;

}
th .actions, td .actions{
    text-align: right;
}

td img{
    width: 100px;
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Top section all apps >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.offcanvas.offcanvas-top{
    height: 274px;
}
.all_apps{
    background: #ccc;
    padding: 8px 12px 9px 12px;
    border-radius: 50%;
    color:#fff!important;
    background: #953F98;
    cursor: pointer;
}







/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<card section>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.card{
    box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07)!important;
    border: 0px;
    background: var(--card-color);
}

.card-header:first-child {
    border-radius:calc(0.375rem - 0px) calc(0.375rem - 0px) 0 0!important;
}
/*.card-header{
    background-color: var(--bs-card-color)!important;
}*/

.card-header {
    padding: 10!important;
    margin-bottom: 0!important;
    color: #344050!important;
    background-color:#dfedf3!important;
    border-bottom: 0px solid  rgba(0, 0, 0, 0.125)!important;

}



/*coustom*/
/*span i{
    font-size: 12px;
}
span{
       padding: 8px 17px;
}*/
.media .icon{
    font-size: 40px;
}




/*table*/




/*.profile*/


ul.note_sticky h2 {
    font-weight: bold;
    font-size: .7rem;
}
ul.note_sticky p {
    font-family: 'Reenie Beanie';
    font-size: .5rem;
}

ul.note_sticky{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
ul.note_sticky,
ul.note_sticky  li{
    list-style:none;
}

ul.note_sticky li a{
    text-decoration:none;
    color:#000;
    background:#ffc;
    display:block;
    min-height:1em;
    width:7em;
    padding:.5em;
    box-shadow: 5px 5px 7px rgba(33,33,33,.7);
    transform: rotate(-6deg);
    transition: transform .15s linear;
}

ul.note_sticky li:nth-child(even) a{
    transform:rotate(4deg);
    position:relative;
    top:5px;
    background:#cfc;
}
ul.note_sticky li:nth-child(3n) a{
    transform:rotate(-3deg);
    position:relative;
    top:-5px;
    background:#ccf;
}
ul.note_sticky li:nth-child(5n) a{
    transform:rotate(5deg);
    position:relative;
    top:-10px;
}

ul.note_sticky li a:hover,
ul.note_sticky li a:focus{
    box-shadow:10px 10px 7px rgba(0,0,0,.7);
    transform: scale(1.25);
    position:relative;
    z-index:5;
}

ul.note_sticky  li{
    margin:.5em;
    padding:5px;
}
.out_of_print {
    float: right;

}
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Other>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/*!* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<*/
/*File upload  */
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<< *!*/ 


.btn-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-upload {
    border: 0px solid gray;
    color: gray;
    background-color:  #953f98!important;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.btn-upload-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}


.upload_field input.input_file::-webkit-file-upload-button {
    border: none;
    color: #fff;
    font-weight: 500;

    background-color:  #953f98 !important;
    padding: 4px 18px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 2px 1px 9px -3px #25c171;
}


/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>Required>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.required .form-label:after{
     content: "*";
    color: red;
}
.required .control-label:after {
    content: "*";
    color: red;
}
.required .label-control:after {
    content: "*";
    color: red;
}
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>.Mobile View>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.input_short{width: 30px!important;}


@media (max-width: 575.98px) {
    .close_button{
        display: block !important;
        margin-left: 221px;
        position: absolute;
        margin-top: 14px;
        color: #fff;
        background: #953F98;
        padding: 4px 12px;

    }

    .menu_sidebar.close .nav-links li .sub-menu{
        display: none;
    }
    .menu_sidebar.close{
        display: none;
    }
    .mobile_viwe{
        width: 50%;
    }


    .m_viwe{
        display: block!important;
    }
    .store_section .mobile_view a{
        padding: 11px 18px;
        font-size: 23px;
    }
    .store_section {
        padding: 12px 1px;
        font-size: 6px;
    }

    .menu_sidebar.close ~ .home-section {
        left:auto;
        width:auto;
    }
    .home-section .home-content {
        height: auto;
        width: auto;
        z-index: 99;
    }
    .store_section h2{
        display: none;
    }
    .home-section {
        position: relative;
        height: 100vh;
        left: 0;
        width: 100%;
        transition: all 0.5s ease;
    }

    .megamenu-li:hover .dropdown-menu {
        display: block;
        margin-left: -280px!important;
        border: 0px;
        width:377px;
    }


}
/*// Small devices (landscape phones, 576px and up)*/
/*@media (min-width: 576px) {
    .megamenu-li:hover .dropdown-menu {
        display: block;
        margin-left: -472px!important;
        border: 0px;
        width: 564px!important;
    }
}*/


/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .megamenu-li:hover .dropdown-menu  {
        display: block;
        margin-left: -1508px;
        border: 0px;
        width: 94vw;
    }
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .megamenu-li:hover .dropdown-menu  {
        display: block;
        margin-left: -1508px;
        border: 0px;
        width: 94vw;
    }
}

/*// X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .megamenu-li:hover .dropdown-menu  {
        display: block;
        margin-left: -1508px;
        border: 0px;
        width: 94vw;
    }
}

/*// XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    .megamenu-li:hover .dropdown-menu  {
        display: block;
        margin-left: -1516px;
        border: 0px;
        width: 94vw;
    }
}




















