/*=============================
    SIDEBAR
==============================*/

#sidebar{
    width:100%;
}

/* Card */

.sidebar-block{

    background:#fff;

    border:1px solid #e6e6e6;

    border-radius:10px;

    margin-bottom:20px;

    overflow:hidden;

    box-shadow:0 2px 8px rgba(0,0,0,.04);

}

.sidebar-block h2{

    margin:0;

    padding:16px 20px;

    background:#f5f5f5;

    border-bottom:1px solid #e5e5e5;

    font-size:18px;

    font-weight:600;

    color:#555;

    letter-spacing:1px;

}

.sidebar-content{

    padding:18px;

}


/*=============================
      MENU BUTTON
==============================*/

.menu-group a{

    display:block;

    text-decoration:none;

    text-align:center;

    color:#fff;

    margin-bottom:8px;

    padding:11px;

    border-radius:8px;

    background:linear-gradient(90deg,#1d4fa5,#4ea3eb);

    transition:.3s;

    font-size:15px;

    font-weight:500;

}

.menu-group a:hover{

    transform:translateY(-2px);

    box-shadow:0 4px 12px rgba(0,0,0,.18);

}


/*=============================
      LOGO GRID
==============================*/

.logo-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    align-items:center;

}

.logo-grid img{

    width:100%;

    border:1px solid #ddd;

    border-radius:4px;

    background:#fff;

    padding:4px;

    box-sizing:border-box;

}

.logo-grid.two{

    grid-template-columns:repeat(2,1fr);

}


/*=============================
      TEMPLATE
==============================*/

.template{

    text-align:center;

}

.template img{

    width:100%;

    max-width:260px;

}


/*=============================
      STATISTIC
==============================*/

.statistic{

    text-align:center;

}

.statistic img{

    max-width:100%;

    height:auto;

}