.breadcrumb-h1{
    font-size: 21px;
}
.content-wrapper{
    overflow: hidden;
    padding-bottom: 20px;
}
.trello-wrap{
    overflow: auto;
}

.card-item{
    display: flex;
    justify-content: space-between;
    background-color: #FFF;
    cursor: grab;
    max-width: 222px;
}
.card-item:hover{
    background-color: #b9d8f8;
    
}

/* Start group */
.group__wrap{
    display: flex;
}
.group__item{
    background-color: rgb(218,228,233);
    margin: 10px;
    padding: 13px !important;
    min-width: 250px;
    max-width: 260px;
}
.group__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.group__name{
    cursor: grab;
    font-size: 19px;
}
/* Start Form add group */
.group__form{
    display: flex;
    align-items: center;
}
.group__form input{
    max-height: 38px;
}
.group__form-btns{
    padding-left: 15px;
}
/* End Form add group */
/* End group */


/* Start task */
.task_add{
    cursor: pointer;
    margin-top: 10px;
    padding: 4px 15px;
    background: #45e199b3;
    border-radius: 5px;
}
.task_add:hover{
    background: #12af66c7;
}
.task__form{
    max-width: 224px;
}
.task__form-btns{
    padding-top: 10px;
}
.task__form-btns .btn:not(:first-child){
    margin-top: 5px;
}
/* End task */

.content-input-print{
    border: 1px solid #dee2e6 !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    border-radius: .25rem !important;
    margin-top: 4px;
    width: 100%;
    max-width: 100%;
}
.delete-icon{
    text-decoration: none;
    cursor: pointer;
    color: red;
}
.delete-icon:hover{
    filter: invert(1);
}
.edit-icon{
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
    border: none;
}
.edit-icon:hover{
    filter: invert(1);
}
.color_red{
    color: red;
}
.color_red::after{
    content: "*";
    
}
.required-fields-info{
    display: block;
    padding-top: 10px;
}


/* sidebar */
@media (max-width: 750px) {
    .sidebar i div{
        margin: 0px;
        display: none;
    }
    .sidebar i{
        font-size: 1.5rem;
    }
    .sidebar i::before{
       margin: auto;
    }
    .sidebar .userName {
        margin: 0px;
        display: none;
    }
    .sidebar .dropdown-toggle::after {
        display: none;
    }
    .sidebar .dropdown-toggle div {
        margin-left:auto;
        margin-right: auto !important;
        padding:0;
        
    }
    .sidebar .nav-item a{
        padding: 0.25rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 500px) {
    .sidebar .usr-img {
      height: auto !important;
    }
  }
.sidebar {
    position:fixed;
    z-index: 999;
}

.collapsed {
    width: 0;
    overflow: hidden;
}

#sidebar-toggle{
    cursor: pointer;
}

/* button-link */
.button-link {
    background: none;
    border: none;
    color: blue; 
    text-decoration: underline; 
    cursor: pointer; 
}

.button-link[disabled] {
    color: gray; 
    cursor: not-allowed; 
    pointer-events: none;
}


/* Start Roadmap */
.roadmap{
    display: flex;
    flex-direction: column;
}
.roadmap__wrap{
    background-color: rgb(218, 228, 233);
    margin: 10px;
    padding: 13px !important;
    border-radius: 20px;
}
.roadmap__start{
    font-size: 21px;
    font-weight: 600;
}
.roadmap__head{
    display: flex;
    justify-content: space-between;
}
.roadmap__content{
    display: flex;
    padding-left: 100px;
    flex-direction: column;
    border-left: 7px solid #000;
}
.roadmap__item{
    display: flex;
    justify-content: space-between;
    width: 250px;
    padding: 8px 20px;
    background: rgb(108 158 183 / 81%);
    border-radius: 20px;
}
.roadmap__content .roadmap__item:not(:first-child){
    margin-top: 5px;
}
.roadmap__controls{
    display: flex;
    gap: 20px;
}
.roadmap__select-wrap{
    width: 50%;
}
/* Checkobx for goals */
.checkbox_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* ENd Roadmap */

/* Start Reviews */
.notes__head{
    padding: 6px 20px;
    background-color: #80808085;
    display: flex;
    justify-content: space-between;
}
.notes__content{
    height: 75vh;
    overflow: scroll;
    background-color: rgb(218, 228, 233);
    padding: 13px !important;
}
.note-item__metadata{
    display: flex;
    width: 100%;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 10px;
}
.note-item__content-wrap{
    display: flex;
    flex-direction: column;
    width: 90%;
}
.note-item__content{
    padding-top: 5px;
}
.note-item{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: #FFF;
    padding: 10px 20px;
}
.notes__content .note-item:not(:first-child){
    margin-top: 15px
}
.note-item__name{
    border-bottom: 2px solid #7aa9ef9c;
    padding-bottom: 4px;
}
.note-item__date{
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 2px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
}
.note-item__user{
    background: #8cdfbd;
    border-radius: 30px;
    padding: 2px 20px;
}
/* End Reviews */

.grey-color{
    color: rgba(0, 0, 0, .9);
}
.grey-color.dropdown-toggle::after {
    filter: invert(1) !important; 
}
.margin-top_55{
    margin-top: 55px;
}
.col-md-8.col-lg-10.col-10.mpart.d-flex.margin-top_55{

}
.w-100.toggleShowSidebar{
    width: auto;
}