body {
    color: #707070;
    background-color: #e8e8e8;
}

.wrapper {
    /* display: grid;
    grid-gap: 0px 10px;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh; */
}

.col {
    background-color: #e8e8e8;
}

.nav {
    position: relative;
    z-index: 11;
    background-color: #1f3f49;
    grid-column: 1 / 3;
    grid-row: 1 / 1;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 11;
}

.navbar__logo {
    background-color: #3e788a85;
    width: 280px;
}

.right-sideBar {
    width: 450px;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #d3d3d3;
    height: 100vh;
    z-index: 12;
    transform: translateX(450px);
    transition: all 0.2s;
}

    .right-sideBar.active {
        transform: translateX(0px);
    }

.drawer-close-btn {
    position: absolute;
    right: 0.75rem;
    top: 0.75rem;
    background-color: wheat;
    border-radius: 30px;
}


.menu-sidebar {
    padding-top: 80px;
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: white;
    transform: translateX(-280px);
    transition: all 0.2s;
    z-index: 10;
    overflow: auto;
}

    .menu-sidebar.active {
        transform: translateX(0);
    }

.vertical-nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .vertical-nav-menu ul.collapse {
        position: relative;
        transition: all 0.2s;
    }

        .vertical-nav-menu ul.collapse::before {
            content: ' ';
            height: 100%;
            width: 3px;
            position: absolute;
            top: 0;
            left: 20px;
            background-color: #1f3f49;
            border-radius: 20px;
            opacity: 0.3;
        }

    .vertical-nav-menu li a {
        display: block;
        color: #343a40;
        padding: 0 20px 0 20px;
        margin: 2px 0 2px 0;
        border-radius: 5px;
        text-decoration: none;
        line-height: 2.4rem;
        transition: all 0.2s;
        position: relative;
    }

        .vertical-nav-menu li a:hover {
            background-color: rgba(114, 188, 248, 0.555);
        }

a.dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.column-1 {
    grid-column: 1/2;
}

.column-2 {
    grid-column: 2/3;
}

.column-1, .column-2 {
    background-color: #e8e8e8;
}

.layout-panel {
    background-color: #1f3f49;
    position: fixed;
    top: 50%;
    left: -80px;
    width: 100px;
    align-items: flex-start;
    border-radius: 0 20px 20px 0;
    transition: all 0.2s;
    z-index: 10;
}

    .layout-panel:hover {
        left: 0px;
    }

.hero {
    min-height:100vh; /*calc(100vh - 54px);*/
    background: linear-gradient(180deg, rgba(71,71,71,0.6),rgba(23, 162, 187, 0.6)), url(/Images/AmrImages/Welcome-background.jpg) no-repeat center center;
    background-size: cover;
}


.action-button {
    flex: 0 49%;
    transition: all 0.2s;
}

    .action-button:hover {
        padding-right: 50px !important;
    }

/************************* Shared *************************/
.vertical-sep {
    height: 100%;
    width: 1px;
    background-color: #e3e3e3;
}

.panel {
    flex-basis: 32%;
}

.separ {
}


.sectionHeading {
    position: relative;
    text-transform:uppercase; 
  
}

    .sectionHeading::before {
        content: "";
        display: inline-block;
        width: 30px;
        height: 8px;
        border-radius: 5px;
        margin-right:5px;
        transform:translateY(-50%);
        background-color: #707070;
    }



/*@media screen and ( min-width: 0px ) and (max-width: 2399px) {
    .col:last-of-type {
        display: none;
    }

    .my-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}



@media screen and (min-width: 2400px) and (max-width:3600px) {

    .my-container {
        max-width: 1200px;
        margin: 0 auto;
    }
}*/
