$toolbar_width : 18rem;

.text-light-grey {
    color: #ccc;
}

.bg-light-grey {
    background: #f3f3f3;
}
#app{
    display:flex !important;
    overflow:hidden !important;
    height: 100% !important;
}
.tutorial-main{
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    @media screen and (max-width: 768px) {
        flex-shrink: 0;
    }
}

.toolbar-toggle{
    font-family: Nunito,Helvetica,Arial,sans-serif !important;
    position: absolute;
    width: 2.25rem;
    height: 2.5rem;
    left: $toolbar_width;
    bottom: 1rem;
    background: #ef4f68;
    background: linear-gradient(320deg, #595a6e, #323347);
    border-radius: 0 0.375rem 0.375rem 0;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.74rem;
    transition: .3s ease;
    z-index: 100;

    &:hover{

        transition: .3s ease;
        opacity: .9;
        box-shadow: 2px 2px 10px rgb(0 0 0 / 0%);
    }

    .fa{
        transform: none;
        transition: .3s ease;
    }
    &.closed {
        left: 0;
        .fa{
            transform: rotate(180deg);
        }
    }

}


.tutorial-toolbar{
    width: $toolbar_width;
    flex-shrink: 0;
    height: 100vh;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);;
    display: flex;
    flex-direction: column;
    //overflow-y: auto;
    //overflow-x: hidden;
    transform: none;
    transition: .3s ease;
    overflow: hidden;

    &>div{
        width: $toolbar_width;
    }


    #toolbar-inner {
        transition: .3s ease;
        height: 100%;
        overflow-y: scroll;
    }
    &.collapsed{
        width: 0;
        #toolbar-inner {
            opacity: 0;
        }
    }
    .accordion {
        .card-header, .card-body{
            padding: 0.75rem 1rem;
        }
        .card-body{
            .btn{
                color:inherit;
            }
        }
        .btn{
            padding: inherit;
            box-shadow: none;
            position: relative;
            .fa-angle-down{
                transition: .3s ease;
                transform: rotate(0deg);
            }
            &.collapsed .fa-angle-down{
                transform: rotate(-90deg);
            }
        }
    }
    .btn{
        font-size: .85rem;
        line-height: 1.25;
        padding: 0.75rem 1rem;
        font-weight: 600;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        display: flex;
        .icon-left{
            font-size: 1.25rem;
            margin-right: 0.5rem;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .icon-right{
            margin-left: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
    .btn-outline-secondary {
        color: inherit;
        background: #f3f3f3;
        border-color: #dee4e9;
    }
    .btn-progress{
        .fa-check-circle {
            display: none;
        }
        .fa-circle {
            display: inline-block;
        }
        &.checked{
            .fa-check-circle {
                display: inline-block;
            }
            .fa-circle {
                display: none;
            }
        }
    }

    .dropdown-item{
        padding: 0.5rem 1rem;
        &.active, &:active{
            background: #6c757d;
        }
    }
}

//tutorial force flex
.tutorial-main{
    display: flex !important;
    flex-direction: column;
}
