.dark-blue {
   /* background-color: #34495e;*/
   background-color:#376F92;
}

.green {
    background-color: #16a085;
}

.blue {
    background-color: #2980b9;
}

.orange {
    background-color: #f39c12;
}

.red {
    background-color: #e74c3c;
}

.purple {
    background-color: #8e44ad;
}

.dark-gray {
    background-color: #7f8c8d;
}

.gray {
    background-color: #95a5a6;
}

.light-gray {
    background-color: #bdc3c7;
}

.yellow {
    background-color: #f1c40f;
}

/* -- Text Color Helper Classes */

 .text-dark-blue {
    color: #34495e;
}

.text-green {
    color: #16a085;
}

.text-blue {
    color: #2980b9;
}

.text-orange {
    color: #f39c12;
}

.text-red {
    color: #e74c3c;
}

.text-purple {
    color: #8e44ad;
}

.text-faded {
    color: rgba(255,255,255,0.7);
}

/* -- Circle Tiles */

.circle-tile {
    margin-bottom: 15px;
    text-align: center;
}

/* original

.circle-tile-heading {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto -40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 100%;
    color: #fff;
    transition: all ease-in-out .3s;
}*/

.circle-tile-heading {
    /* position: relative; */
    width: 46px;
    height: 46px;
    /* margin: 0 auto -40px; */
    border: 3px solid rgba(255,255,255,0.3);
    /* border-radius: 100%; */
    color: #fff;
    transition: all ease-in-out .3s;
    float: left;
}

.circle-tile-heading .fa {
    line-height: 80px;
}

/* original 

.circle-tile-content {
    padding-top: 50px;
	border-radius: 5px;
}*/

.circle-tile-content {
    /* padding-top: 50px; */
    border-radius: 5px;
    /* float: left; */
    padding: 5px;
    width: 100%;
    height: 46px;
}

.circle-tile-number {
    padding: 0px 0 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
	height:16px;
}



.circle-tile-description {
    text-transform: uppercase;
}

.circle-tile-footer {
    display: block;
   /* padding: 5px;*/
    color: rgba(255,255,255,0.5);
    background-color: rgba(0,0,0,0.1);
    transition: all ease-in-out .3s;
	font-size: 12px;
}

.circle-tile-footer:hover {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    background-color: rgba(0,0,0,0.2);
}

.circle-tile-heading.dark-blue:hover {
    /*background-color: #2e4154;*/
	/*background-color:#39B17E;*/
	background-color:rgba(255,255,255,1);
	border: solid 3px rgb(115, 154, 179);
}

.circle-tile-heading.green:hover {
    background-color: #138f77;
}

.circle-tile-heading.orange:hover {
    background-color: #da8c10;
}

.circle-tile-heading.blue:hover {
    background-color: #2473a6;
}

.circle-tile-heading.red:hover {
    background-color: #cf4435;
}

.circle-tile-heading.purple:hover {
    background-color: #7f3d9b;
}

@media(min-width:768px) {
    .circle-tile {
        margin-bottom: 15px;
    }
}