/* ---------------------------------------
     Dashboard using CSS
     Author: Sowmya
     Site:Baasha.net
------------------------------------------*/
/* ICONS*/
.icon{
    border-radius: 50%; 
    text-align: center;
    background-color: #a4a4a4;
    }

.icon:hover{
    cursor:grabbing;
}

.icon span {
  text-align: center;
  color:#353535;
  font-size: 24px;
  min-width: 100px;

}
.icon p{
    font-size: 39px;
    color:#fbfbfb;
}
icon p:hover{
    color: #FF490C;
}

.icon > .icon-text{
    font-size: 20px;
    color: #353535;
}

.tamil-icon{
        background-color:#F9BE02;
        background-image: "";
     }
.hindi-icon{
    background-color: #F53137;
}
.kannada-icon{
    background-color: #79C011;
}
/* XL Screen, laptop*/
@media screen and (min-width: 1024px) {
    .icon{
        width:200px;
    }
    .dashboard-links{
        font-size: 18px;
    }
    .smallmenu{
        display: none;
    }
    .largemenu{
        display: inline-block;
    }
}

/* Large screen*/
@media screen and (min-width:767px) and (max-width: 1023px) {
    .icon{
        width:130px;
    }

    .icon p{
        font-size: 28px;
    }
    .dashboard-links{
        font-size: 15px;
   }
   .smallmenu{
        display: none;
    }
    .largemenu{
        display: inline-block;
    }
}

/* medium screen,tablet*/
@media screen and (min-width:326px) and (max-width: 766px) {
    .icon{
        width:90px;
    }

    .icon p{
        font-size: 26px;
    }
    .dashboard-links{
        font-size: 13px;
    }
    .smallmenu{
        display: inline-block;
    }
    .largemenu{
        display: none;
    }

 }



/* small screen,mobile*/
@media screen and (max-width: 325px) {
    .icon{
        width:50px;
    }
    .icon p{
        font-size: 26px;
    }
    .dashboard-links{
        font-size: 12px;
    }
    .smallmenu{
        display: block;
        width:100%;
        float: left;
    }
    .largemenu{
        display: none;
    }

}
/* END RESPONSIVE*/

.dashboard-links{
    color:#353535;
    font-size: 20px;
    border-bottom: 1px;

}



.dashboard-box{
    border-radius: 10px; 
    border:2px solid rgba(37,97,137,1);
    text-align:center;
    width:100%;
}


.dashboard-box > .head, .dashboard-head{
    border-radius: 10px 10px 0 0;
    margin-top: -1;
    margin-left: -16px;
    margin-right: -16px;
    font-size:20px;
    color: #256189;
    border-bottom: 1px solid #256189;
}

.dashboard-boxcontent[class*="col-"]{
    position: static;
    display: table-cell;
    float: none;
    min-height: 30px;
    border-bottom: 1px solid #a4a4a4;
}
.dashboard-boxcontent:hover{
    background-color: #dff0d8;
}

.bluebox{
 background-color: #A9E2F3;
 border-color: rgba(37,97,137,1);

}
.bluebox >.head{
     position: absolute;
    top:-20px;
    left: 0;
    right:0;
    background-color: rgba(37,97,137,1);    
    color:#A9E2F3;
    text-align: center;
}

.creambox{
    background-color: #F2F5A9;
    border-color: #999258;
    color:#999258;
}
.creambox >.head{
    position: absolute;
    top:-20px;
    left: 0;
    right:0;
    background-color: #999258;
    color:#F2F5A9;
    text-align: center;
}
.redbox{
    background-color: #F5A9A9;
    border-color: #FF0000;
    color:#FF0000;
}
.redbox >.head{
    position: absolute;
    top:-20px;
    left: 0;
    right:0;
    background-color: #FF0000;
    color: #f5a9a9;
    text-align: center;
}
.greenbox{
    background-color: #B9EB86;
    color:#D8F781;
}
.greenbox > .head{
     position: absolute;
    top:-20px;
    left: 0;
    right:0;
    background-color: #31B404   ;
    color:#B9EB86;
    text-align: center;
}
.orangebox{
    background-color: #F5D0A9;
    color:#FF8000;
    border-color: #ff8000;
}
.orangebox > .head{
    top:-20px;
    left: 0;
    right:0;
    position: absolute;
    margin-bottom: 4px;
    background-color: #FF8000;
    color:#f9f9f9;
    border-color: #ff8000;
    text-align: center;
}