/*==========================
11EXCH LAYOUT
===========================*/

body{
    background:#eef2f5 !important;
}

.ex-home{

    width:100%;

}

.ex-layout{

    display:grid;

    grid-template-columns:240px 1fr 330px;

    gap:15px;

    padding:15px;

}

.ex-sidebar{

    background:#ffffff;

    border-radius:8px;

    overflow:hidden;

    height:calc(100vh - 30px);

    position:sticky;

    top:15px;

}

.ex-content{

    min-width:0;

}

.ex-right{

    position:sticky;

    top:15px;

    height:calc(100vh - 30px);

}

.ex-right-card{

    background:#ffffff;

    border-radius:8px;

    overflow:hidden;

}

/* Tablet */

@media(max-width:1200px){

.ex-layout{

grid-template-columns:1fr;

}

.ex-sidebar{

display:none;

}

.ex-right{

display:none;

}

}

/*=========================
SIDEBAR
==========================*/

.ex-sidebar-wrapper{

    background:#ffffff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 2px 8px rgba(0,0,0,.08);

}

.ex-sidebar-title{

    background:#222;

    color:#fff;

    padding:14px 18px;

    font-size:18px;

    font-weight:700;

}

.ex-sidebar-menu{

    display:flex;

    flex-direction:column;

}

.ex-menu-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    color:#222;

    text-decoration:none;

    border-bottom:1px solid #ececec;

    transition:.25s;

}

.ex-menu-item:hover{

    background:#f6f6f6;

}

.ex-menu-item.active{

    background:#fff3cd;

    font-weight:700;

}

.ex-menu-item .icon{

    width:26px;

    text-align:center;

    font-size:18px;

}