/*
    light blue: #3A87C7
    ornage: #F39224
    dr#00567F
 */


.box {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 0px 1px #e4e6eb;
    -moz-box-shadow: 0px 1px 0px 1px #e4e6eb;
    box-shadow: 0px 1px 0px 1px #e4e6eb;
    margin: 0px 0px 30px 0px;
}
.box.noOverflow {
    overflow: hidden;
}
.box .box-header {
    background: #3b86c7;
    color: white;
    font-size: 16px;
    height:36px;
    /*overflow: hidden;*/
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.box .box-header h2 {
    float: left;
    font-weight: bold;
    padding: 10px 0px;
    margin: 0px 0px 0px 20px;
}
.box .box-header h2 i {
    /* background: #005A82; */
    color: white;
    padding: 10px 0px;
    width: 36px;
    display: inline-block;
    text-align: center;
    margin: -10px 5px -10px -20px;
}
.box .box-header .box-icon {
   /* background: #005A82; */
    float: right;
}
.box .box-header .box-icon i {
    display: inline-block;
    color: white;
    text-align: center;
    width: 36px;
    padding: 10px 0px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    opacity: .8;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    border-left: 1px solid #3b86c7;
    text-decoration: none;
}
.box .box-header .box-icon i:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.box .box-content {
    padding: 10px;
    background: white;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}

/* Quick Buttons
=================================================================== */
.quick-button {
    border: 1px solid #ddd;
    margin-bottom: -1px;
    padding: 30px 0px 10px 0px;
    font-size: 14px;
    background-color: #efefef;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#efefef));
    background-image: -webkit-linear-gradient(top, #fafafa, #efefef);
    background-image: -moz-linear-gradient(top, #fafafa, #efefef);
    background-image: -o-linear-gradient(top, #fafafa, #efefef);
    background-image: -ms-linear-gradient(top, #fafafa, #efefef);
    background-image: linear-gradient(top, #fafafa, #efefef);
    -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block;
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quick-button:hover {
    text-decoration: none;
    border-color: #a5a5a5;
    color: #444444;
    text-shadow: 0 1px 0px #ffffff;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}
.quick-button:hover .notification {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.quick-button i {
    font-size: 32px;
}
/* Quick Buttons Small
=================================================================== */
.quick-button-small {
    border: 1px solid #ddd;
    padding: 15px 0px 0px 0px;
    font-size: 10px;
    background-color: #efefef;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#efefef));
    background-image: -webkit-linear-gradient(top, #fafafa, #efefef);
    background-image: -moz-linear-gradient(top, #fafafa, #efefef);
    background-image: -o-linear-gradient(top, #fafafa, #efefef);
    background-image: -ms-linear-gradient(top, #fafafa, #efefef);
    background-image: linear-gradient(top, #fafafa, #efefef);
    -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    -moz-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 0px rgba(255, 255, 255, 0.8);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block;
    text-shadow: 0 1px 0px rgba(255, 255, 255, 0.6);
    text-align: center;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.quick-button-small:hover {
    text-decoration: none;
    border-color: #a5a5a5;
    color: #444444;
    text-shadow: 0 1px 0px #ffffff;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}
.quick-button-small:hover .notification {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.6);
}
.quick-button-small i {
    font-size: 20px;
}
/* Circle stats
=================================================================== */
.tempStats {
    text-align: center !important;
}
.tempStatBox {
    width: 120px;
    padding: 25px 0px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
}
.tempStatBox .tempStat {
    position: relative;
    font-size: 34px;
    line-height: 100px;
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
    border: 10px solid #FFF;
    background: #f9f9f9;
    height: 100px;
    width: 100px;
    text-align: center;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.tempStatBox .tempStat:before {
    content: "";
    top: -10px;
    left: -10px;
    height: 120px;
    width: 120px;
    position: absolute;
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
    background: transparent;
    -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.3), 0px 1px 0px #ffffff;
    -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.3), 0px 1px 0px #ffffff;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.3), 0px 1px 0px #ffffff;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.tempStatBox .tempStat:after {
    content: "";
    top: 0px;
    left: 0px;
    height: 98px;
    width: 98px;
    position: absolute;
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
    border: 1px solid #fff;
    background: transparent;
    -webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.4);
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.tempStatBox .tempStat.t0 {
    border-color: #67c2ef;
}
.tempStatBox .tempStat.t20 {
    border-color: #bdea74;
}
.tempStatBox .tempStat.t40 {
    border-color: #eae874;
}
.tempStatBox .tempStat.t60 {
    border-color: #fabb3d;
}
.tempStatBox .tempStat.t80 {
    border-color: #fa603d;
}
.tempStatBox .tempStat.t100 {
    border-color: #ff5454;
}
.tempStatBox span {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: 10px;
    text-shadow: 0px 1px 0px #fff;
}
/* Circle stats
=================================================================== */
.circleStats {
    text-align: center;
    position: relative;
}
.circleStatsItem {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    /*  -webkit-box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.3), 0 0px 0 4px rgba(255, 255, 255, 0.2);
      -moz-box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.3), 0 0px 0 4px rgba(255, 255, 255, 0.2);
      box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.3), 0 0px 0 4px rgba(255, 255, 255, 0.2);*/
    -webkit-border-radius: 50em;
    -moz-border-radius: 50em;
    border-radius: 50em;
    width: 120px;
    height: 120px;
    margin: 10px auto;
}

.circleStatsItemTwo {
    background: rgba(255, 255, 255, 0.85);
    /* -webkit-box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.7), 0 0px 0 4px rgba(255, 255, 255, 0.5) !important;
     -moz-box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.7), 0 0px 0 4px rgba(255, 255, 255, 0.5) !important;
     box-shadow: inset 0 0px 0 2px rgba(255, 255, 255, 0.7), 0 0px 0 4px rgba(255, 255, 255, 0.5) !important;*/

}



.circleStatsItem i {
    font-size: 30px;
    position: absolute;
    top: 30%;
    margin-top: 0px;
    width: 100%;
    text-align: center;
}
.circleStatsItem input {
    cursor: default;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    height: auto;
    position: absolute;
    top: 15px;
    left: 120px;
    padding: 5px 0px !important;
    border-color: rgba(0, 0, 0, 0.8);
}
.circleStatsItem input:focus {
    outline: 0;
    outline: thin dotted 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.circleStatsItem .plus {
    font-size: 16px;
    position: absolute;
    top: 55%;
    margin-left: 30px;
}
.circleStatsItem .percent {
    font-size: 14px;
    position: absolute;
    top: 57%;
    margin-left: 78px;
}
.circleStatsItem.orange,
.circleStatsItem.orange i {
    color: #fa603d;
}
.circleStatsItem.lightorange,
.circleStatsItem.lightorange i {
    color: #fabb3d;
}
.circleStatsItem.blue,
.circleStatsItem.blue i {
    color: #3b86c7;
}
.circleStatsItem.green,
.circleStatsItem.green i {
    color: #bdea74;
}
.circleStatsItem.yellow,
.circleStatsItem.yellow i {
    color: #eae874;
}
.circleStatsItem.pink,
.circleStatsItem.pink i {
    color: #e84c8a;
}
.circleStatsItemBox {
    position: relative;
    background: #67c2ef;
    width: 100%;
    min-width: 130px;
    height: 160px;
    margin: 10px auto;
    padding-top: 40px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.circleStatsItemBox .header {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 20px;
    padding: 5px 0px;
    position: absolute;
    top: 0px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.circleStatsItemBox .footer {
    background: rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 20px;
    padding: 5px 0px;
    position: absolute;
    bottom: 0px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.circleStatsItemBox .footer .count {
    font-size: 10px;
}
.circleStatsItemBox .footer .value {
    font-weight: bold;
}
.circleStatsItemBox .percent {
    font-size: 12px;
    position: absolute;
    top: 110px;
    width: 100%;
    left: 0px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}
.circleStatsItemBox input {
    cursor: default;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    height: auto;
    position: absolute;
    top: 30px;
    padding: 5px 0px !important;
    border-color: rgba(0, 0, 0, 0.8);
}
.circleStatsItemBox input:focus {
    outline: 0;
    outline: thin dotted 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Masonry Gallery
=================================================================== */
.masonry-thumb {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 6px;
}
/* Star Rating
=================================================================== */
.rating {
    unicode-bidi: bidi-override;
    direction: rtl;
    font-size: 30px;
}
.rating span.star,
.rating span.star {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    display: inline-block;
}
.rating span.star:hover,
.rating span.star:hover {
    cursor: pointer;
}
.rating span.star:before,
.rating span.star:before {
    content: "\f006";
    padding-right: 5px;
    color: #999999;
}
.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover ~ span.star:before,
.rating span.star:hover ~ span.star:before {
    content: "\f005";
    color: #e3cf7a;
}

.quick-button,
.quick-button-small {
    margin-bottom: 20px;
}
/*
.pull-right {
    width: 100%;
    margin: 10px auto;
    text-align: center;
}
*/
.fc-button-today,
.fc-button-month,
.fc-button-agendaWeek,
.fc-button-agendaDay {
    display: none;
}

a {
    color: #383e4b;
}
h1 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 300 !important;
}
h2 {
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
}
h3 {
    font-size: 15px;
    line-height: 15px;
}
h4 {
    font-size: 14px;
    line-height: 14px;
}
h5 {
    font-size: 13px;
    line-height: 13px;
}
h6 {
    font-size: 12px;
    line-height: 12px;
}