
/* width */
.side-bar::-webkit-scrollbar {
    width: 10px;
  }

  /* Track */
  .side-bar::-webkit-scrollbar-track {
    background: transparent;
  }

  /* Handle */
  .side-bar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.4);

    border-radius:10px ;
    -webkit-border-radius:10px ;
    -moz-border-radius:10px ;
    -ms-border-radius:10px ;
    -o-border-radius:10px ;
}
.app {
    display: flex;
}
.side-bar {
    width: 250px;
    right: 0;
    color:#c2c7d0;
    box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
    padding: 0 0.5rem;
    overflow-x: hidden;
    /* height: calc(100% - 50px - 47px); */
    position: fixed;
    height: 100%;
    bottom: 0;
    transition: 0.4s;
    background-color: #343a40;

    z-index: 1111;

}
.side-bar.active {
    /* right: -250px; */
    width: 4.6rem;

}
.side-bar:hover {
    /* right: -250px; */
    width: 250px;

}
.side-bar.active .item {

    white-space: nowrap;

}
.side-bar .content-item {

    white-space: nowrap;

}

.side-bar .logo_holder {
    padding: 20px 30px;
}

/* .side-bar .logo_holder .logo-img {
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
    color: #333;
    display: block;
    text-align: center;
    position: relative;
    height: 100%;
} */

.side-bar .logo_holder  img {
    height: auto;
    width: 30px;
}

.side-bar .our_section {
    overflow-y: auto;
}

.side-bar .our_section > ul {
    background: none;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0%;
    margin: 0%;
}

.side-bar .our_section > ul > li {
    position: relative;
}

.side-bar .our_section > ul > li > a {
    color: #3a3e63;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    line-height: 45px;
    padding: 0;
    position: relative;
    border-bottom: 1px solid rgba(238, 238, 238, 0.7);
    align-items: center;
    justify-content: flex-start;
}

.side-bar .our_section > ul > li > a:hover {
    background-color: #fff;
}

.side-bar .our_section > ul > li > a {
    /* background-color: #fff; */
}

.side-bar .our_section > ul > li > a > .side-icon {
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    color: #a1a5c8;
    width: 50px;
    text-align: center;
    font-size: 20px;
    flex-shrink: 0;
}

.side-bar .our_section > ul > li > a > .arrow-icon {
    position: absolute;
    top: 50%;
    right: auto;
    left: 15px;
    font-size: 12px;
    transform: translateY(-50%);
}

.collapse.show .side-bar .our_section > ul > li > a > .arrow-icon {
    display: none;
}

.side-bar .our_section > ul > li .drop-content {
    width: 100% !important;
    border-top: 0;
    box-shadow: inset 0px 11px 15px -12px rgb(0 0 0 / 40%),
        inset 0px -11px 20px -15px rgb(0 0 0 / 40%);
    background: #f2f6fb;
}

.side-bar .our_section > ul > li .drop-content > ul {
    padding: 0%;
    margin: 0%;
}

.side-bar .our_section > ul > li .drop-content > ul > li {
}

.side-bar .our_section > ul > li .drop-content > ul > li > a {
    color: #3a3e63;
    display: block;
    padding: 10px 20px 10px 0;
    font-size: 13px;
    font-weight: 500;
}
.side-bar .our_section > ul > li .drop-content > ul > li > a:hover {
    background: rgba(0, 0, 0, 0.03);
}
.side-bar .brand-link {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5;
color: #c2c7d0;
padding: 0.8125rem 0.5rem;
    display: flex;
    padding-right: 0.8rem;
    align-items: center;
    gap: 0.5rem;
    transition: 300ms;
    white-space: nowrap;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    border-bottom: 1px solid #4b545c;
    -ms-transition: 300ms;
    -o-transition: 300ms;
}
.side-bar .brand-link:hover {
color:white;
}
.side-bar .brand-link .brand-image {
    line-height: .8;
    margin-top: -3px;
    max-height: 33px;
    width: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23)!important;
    border-radius: 50%;
    opacity: .8;

}
@media (min-width: 991px){

    .side-bar.active .brand-link .brand-text {
        opacity: 0;

    }
    .side-bar:hover .brand-link .brand-text {
        opacity: 1;

    }


}
.side-bar .user-panel {
    border-bottom: 1px solid #4f5962;
    padding: 0 0.5rem 0.8125rem 0.5rem;
    gap: 0.5rem;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;

}
.side-bar .user-panel .image {
    display: inline-block;
}
.side-bar .user-panel .image  img {
    height: auto;
    width: 2.1rem;
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)!important;
    border-radius: 50%;

}
.user-panel .info {
    display: inline-block;
    padding: 5px 10px 5px 0px ;
    overflow: hidden;
    white-space: nowrap;
}
.user-panel .info a {
    color: #c2c7d0;
    font-size: 16px;
}
@media (min-width: 991px){

    .side-bar.active .user-panel .info a {
        opacity: 0;

    }
    .side-bar:hover .user-panel .info a {
        opacity: 1;

    }


}
.side-bar .item-list {
    white-space: nowrap;
    color: #c2c7d0;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    position: relative;
    overflow-x: hidden;
    font-size: 16px;
    align-items: center;
    margin-bottom: 0.2rem;
    transition: width ease-in-out .3s;
}
@media (min-width: 991px){
    .side-bar.active .item-list {
        width: 3.6rem;
    }
    .side-bar:hover .item-list {
        width: auto;
    }



}
.side-bar .item-list .text {
    transform: 300ms;
    -webkit-transform: 300ms;
    -moz-transform: 300ms;
    -ms-transform: 300ms;
    -o-transform: 300ms;
}
@media (min-width: 991px){


    .side-bar.active .item-list .text {
        opacity: 0;
    }
    .side-bar:hover .item-list .text {
        opacity: 1;
    }

}
/* .side-bar.active .item-list * {
    opacity: 0;
} */
.side-bar .item-list:not(.active):hover {
    background-color: rgba(255,255,255,.1);
    color: #fff;
  }
.side-bar .item-list.active {
    background-color: #007bff;
    color: #fff;
  }
.side-bar .mar-side .item-list.active {
    background-color: rgba(255,255,255,.9);
    color: #343a40;
  }
.side-bar .item-list .icon {
    width: 1.6rem;
    font-size: 1.1rem;
    text-align: center;
  }
.side-bar .item-list .arrow {
    transition: 300ms;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
    transform: rotateZ(-90deg);
    -webkit-transform: rotateZ(-90deg);
    -moz-transform: rotateZ(-90deg);
    -ms-transform: rotateZ(-90deg);
    -o-transform: rotateZ(-90deg);
}
.side-bar  .item-list[aria-expanded="true"] .arrow {
    transform: rotateZ(0);
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    -o-transform: rotateZ(0);
}
.content-app {
    width: calc(100% - 250px);
    margin: 0 auto 0 0;
    transition: 0.4s;
}

.content-app.active {
    width: calc(100% - 4.6rem);
}
@media (max-width: 991px){

    .side-bar.active {
        right: -250px;
        width: 250px;
    }
    .content-app {
        width: 100% !important;
    }

}





@media (max-width: 991px) {
    .page-content {
        width: 100%;
    }
    .side-bar {
        right: -250px;
    }
    .side-bar.active {
        right: 0px;
    }
}

.section-content .the_accounts {
    border-left: 1px solid #ced4da;
    border-top: 1px solid #ced4da;
}

.section-content .the_accounts .search_area {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 3px;
    padding: 0px 6px;
    margin: 4px;
}

.section-content .the_accounts .search_area .search-inp {
    padding: 5px 0px 2px 5px;
    border: none;
}

.section-content .the_accounts .search_area .search-inp:focus {
    box-shadow: none !important;
}

.section-content .the_accounts .search_area .icon-holder {
    display: flex;
    border-right: 1px solid #ccc;
    padding-right: 6px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.section-content .the_accounts .search_area .icon-holder > i {
    color: #ccc;
}

.section-content .the_accounts .option-section {
    padding: 15px;
}

.section-content .the_accounts .option-section > ul {
    margin: 0%;
    padding: 0%;
}

.section-content .the_accounts .option-section > ul > li {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon
    > i {
    color: #369;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon
    .open-folder {
    display: none;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon.change
    .open-folder {
    display: block;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon.change
    .static-folder {
    display: none;
}

.section-content .the_accounts .option-section > ul > li > .holder-folder-icon {
    position: relative;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon::before {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    content: "";
    position: absolute;
    transform: rotate(0deg);
    width: 0%;
    height: 0px;
    top: 0%;
    right: 0px;
    border: 0px dashed #999;
}

.section-content
    .the_accounts
    .option-section
    > ul
    > li
    > .holder-folder-icon.change::before {
    content: "";
    position: absolute;
    transform: rotate(180deg);
    width: 6%;
    height: 45px;
    top: 23px;
    right: 4px;
    z-index: 1111;
    border: 1px dashed #999;
    visibility: visible;
    opacity: 1;
}

.section-content .the_accounts .option-section > ul > li > .section-name {
    display: block;
    color: #369;
    padding: 0px 5px 0px 0px;
    width: 100%;
    font-family: "Roboto", "Segoe UI", Tahoma, Helvetica, "Open Sans", arial,
        serif;
}

.section-content .the_accounts .option-section > ul > li > .section-name:hover {
    background-color: #f5f5f5;
}

.card {
    border: none !important;
}

.card-body {
    padding: 4px 14px 4px 10px !important;
}

.nested-s {
    padding: 0 7px 0px 0px !important;
}

.nested-item {
    position: relative;
}

.nested-item::before {
    content: "";
    position: absolute;
    top: 48%;
    right: -13px;
    width: 9%;
    height: 2px;
    border: 1px dashed #999999;
}

.option-section .a_content {
    position: relative;
}

.option-section .a_content::before {
    content: "";
    position: absolute;
    transform: rotate(180deg);
    width: 6%;
    height: 45px;
    top: 23px;
    right: 4px;
    z-index: 1111;
    border: 1px dashed #999;
    visibility: visible;
    opacity: 1;
}
.option-section {
    display: flex;
    flex-direction: column;
  }

  .option-section .item{
    padding:7px 10px;
  border-radius: 4px;
    color: #c2c7d0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: flex;
  gap: 10px;
  position: relative;
  font-size: 13px;
  align-items: center;
  }
  .option-section .item:hover {
    background-color: rgba(255,255,255,.1);
    color: #fff;
  }
  .option-section .collapse-border .item::before {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 16px;
    height: 1px;
    background-color: #c2c7d0;
  }
  .option-section .item .arrow-after {
    display: none;
  }
  .option-section .item[aria-expanded="true"] .arrow-before {
    display: none;
  }
  .option-section .item[aria-expanded="true"] .arrow-after {
    display: block;
  }
  .option-section .item .arrow-after,.option-section .item .arrow-before {
    color: #c2c7d0;
    font-size: 14px;
  }
  .option-section .item .content-item {
    display: flex;

    gap: 10px;
    align-items: center;
  }
  .option-section .item .content-item i,
  .option-section .item .content-item svg{
    color:#c2c7d0;
    font-size: 16px;
  }
  .option-section .collapse-border{
    position: relative;
  }
  .option-section .collapse-border::before{
    content: "";
    position: absolute;
    right: 13.5px;
    top: 0;
    height: calc(100% - 17px);
    width: 1px;
    background-color: #c2c7d0;
  }
  .option-section .mar-side{
    margin-right: 30px;
  }

.close_nav {
    width: fit-content;
    margin-right: auto;
}
.modal {
    z-index: 1115;
}
