/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.vertical-nav {
    min-width: 17rem;
    width: 17rem;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    z-index: 5;
}

.page-content {
    width: calc(100% - 17rem);
    margin-left: 17rem;
    transition: all 0.4s;
	
}

.media-body {
    margin-left: 10%;
}

.name-bussines {
    margin-top: 5%;
}

.flex-item {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.btn-header-slice {
    position: relative;
    top: -22%;
    left: 16em;
    height: 4em;
    transition: all 0.4s;
    background-color: rgb(6, 51, 106) !important;
}

.btn-header-style {
    width: 90% !important;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* for toggle behavior */

#sidebar.active {
    margin-left: -17rem;
}

#content.active {
    width: 100%;
    margin: 0;
}

header {
    background-color: rgb(6, 51, 106);
    color: rgb(255, 255, 255);
    padding: 10px;
    width: 100%;
    height: 4em;
    top: 0;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -17rem;
    }

    #sidebar.active {
        margin-left: 0;
        overflow-y: scroll;
    }

    #content {
        width: 100%;
        margin: 0;
    }

    #content.active {
        /* margin-left: 17rem; */
        width: calc(100% - 17rem);
    }

    .btn-header-slice {
        left: 15em;
    }
}