:root {
    --white:#ffffff;
}

/* GLOBAL */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,sans-serif;
}
body{
    background:#f3f7f5;
	font-family:"Barlow Condensed";
	color:#000;
	    font-size: 16px;
    font-weight: 400;
}
.app span {
		font-family:"Barlow Condensed";
    font-size: 16px;
    font-weight: 400
	}
.sub-title {
	font-family:"Barlow Condensed";
	}
/* ================= NOTIFICATION BAR ================= */
.notification-bar{
    background:#0f1f1b;
    color:#fff;
    padding:6px 14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.status-icons i{
    margin-left:8px;
}

/* ================= HEADER ================= */
.header{
    background:var(--white);
    text-align:center;
    padding:14px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.logo{
    font-size:22px;
    font-weight:bold;
    color:#064e3b;
}

.logo img{
    max-width: 120px;
}

/* ================= CONTROL BAR ================= */
.control-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    position:relative;
}
.search-wrapper{
    position:absolute;
    right:15px;
    top:0;
    bottom:0;
    display:flex;
    align-items:center;
}
.search-box{
    width:180px;
    padding:8px 12px;
    border-radius:20px;
    border:1px solid #ccc;
    outline:none;
    font-size:14px;
}
.back-btn{
    background:#064e3b;
    color:#fff;
    border:0;
    padding:8px 18px;
    border-radius:30px;
    cursor:pointer;
    transition:.2s;
    font-size:16px;
    display:none;
}
.back-btn:hover{background:#0d7a5c;}

.search-toggle,
.back-btn{
    background:#064e3b;
    color:#fff;
    border:0;
    padding:8px 18px;
    border-radius:30px;
    cursor:pointer;
    transition:.2s;
    font-size:16px;
}

.search-toggle:hover,
.back-btn:hover{
    background:#0d7a5c;
}

/* ================= APPS ================= */
.main_cls {
max-width: 1160px;
    margin: 0 auto;
    background: #fff;
    margin-top: 40px;
    padding-top: 40px;
    border-radius: 20px;
    padding: 50px 50px;
}

.container{
    padding:15px 20px 30px;
}

.sub-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #064e3b;
    background: #fff;
    padding: 29px 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.apps{
   display:grid;
   grid-template-columns:repeat(auto-fill, minmax(90px,1fr));
   gap:18px;
}

.app{
    background:transparent;
    text-align:center;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    animation:fadeScale .35s ease;
    transition:.3s ease;
}

@keyframes fadeScale {
    from {opacity:0; transform:scale(.85)}
    to   {opacity:1; transform:scale(1)}
}

/* APP ICON BACKGROUND */
.app-icon{
    width:80px;
    height:80px;
    margin:0 auto 8px auto;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#fff;
    transition:.3s;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

/* CLICK EFFECT */
.app:active .app-icon{
    transform:scale(.94);
}

/* APP LABEL */
.app span{
    display:block;

}

/* FOLDER INDICATOR - SINGLE DOT */
.app-folder-indicator{
    position: absolute;
    top: 0px;
    right: 20px;
}

.app-folder-indicator span{
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

/* RESPONSIVE */
@media(max-width:480px){
    .apps{grid-template-columns:repeat(3,1fr);}
}
