/**
 * Layout of the Default skin
 * @author  Lee Le
 * @website http://www.melonhtml5.com
 * @email   lee@melonhtml5.com
 */

/*@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
*/
/*
| ====================================== |
| ============== Share ================= |
| ====================================== |
*/
.left {
    float: left;
}
.right {
    float: right;
}
.round {
    border-radius: 4px;
}
.clearfix:after {
    content: '';
    display: table;
    clear: both;
}
.overflow-none {
    overflow: hidden;
}
.hr {
    clear: both;
    margin: 20px 10px;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.divider {
    clear: both;
    height: 20px;
}
.divider-line {
    height: 1px;
    margin: 20px 0px;
}
.text-overflow {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.no-selection {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
}
.overlay {
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
    background-repeat: repeat;
    -webkit-animation: fade 0.1s linear;
       -moz-animation: fade 0.1s linear;
        -ms-animation: fade 0.1s linear;
         -o-animation: fade 0.1s linear;
            animation: fade 0.1s linear;
}
.scroll-pane {
    overflow: auto;
    background: -webkit-linear-gradient(white 30%, hsla(0,0%,100%,0)), -webkit-linear-gradient(hsla(0,0%,100%,0), white 70%) bottom, -webkit-radial-gradient(at top, rgba(0,0,0,.2), transparent 70%), -webkit-radial-gradient(at bottom, rgba(0,0,0,.2), transparent 70%) bottom;
    background: -moz-linear-gradient(white 30%, hsla(0,0%,100%,0)), -moz-linear-gradient(hsla(0,0%,100%,0), white 70%) bottom, -moz-radial-gradient(at top, rgba(0,0,0,.2), transparent 70%), -moz-radial-gradient(at bottom, rgba(0,0,0,.2), transparent 70%) bottom;
    background: -ms-linear-gradient(white 30%, hsla(0,0%,100%,0)), -ms-linear-gradient(hsla(0,0%,100%,0), white 70%) bottom, -ms-radial-gradient(at top, rgba(0,0,0,.2), transparent 70%), -ms-radial-gradient(at bottom, rgba(0,0,0,.2), transparent 70%) bottom;
    background: -o-linear-gradient(white 30%, hsla(0,0%,100%,0)), -o-linear-gradient(hsla(0,0%,100%,0), white 70%) bottom, -o-radial-gradient(at top, rgba(0,0,0,.2), transparent 70%), -o-radial-gradient(at bottom, rgba(0,0,0,.2), transparent 70%) bottom;
    background: linear-gradient(white 30%, hsla(0,0%,100%,0)), linear-gradient(hsla(0,0%,100%,0), white 70%) bottom, radial-gradient(at top, rgba(0,0,0,.2), transparent 70%), radial-gradient(at bottom, rgba(0,0,0,.2), transparent 70%) bottom;
    background-attachment: local, local, scroll, scroll;
    background-size: 100% 40px, 100% 40px, 100% 12px, 100% 12px;
    background-repeat: no-repeat;
}
div.margin-container {
    overflow: hidden;
    position: relative;
    margin: 10px;
}
div.margin-container-visible {
    margin: 10px;
}

/*
| ====================================== |
| ============= Main Layout ============ |
| ====================================== |
*/
html {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
}
html, body {
    height: 100%;
}
#layout-container {
    min-height: 100%;
    position: relative;
    overflow-x: hidden !important;
}
#nav {
    float: left;
    width: 120px;
}
#main {
    position: absolute;
    top: 0px;
    left: 120px;
    right: 0px;
    z-index: 20;
    min-height: 100%;
}
#portrait_mode_detector {
    display: none;
}

/*
| ====================================== |
| ============== Loading =============== |
| ====================================== |
*/
#loading {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
}
#loading.closing {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
       -moz-transition: opacity 0.2s linear;
        -ms-transition: opacity 0.2s linear;
         -o-transition: opacity 0.2s linear;
            transition: opacity 0.2s linear;
}
#loading span.main-color {
    font-size: 36px;
}
#loading div.text {
    position: absolute;
    top: 40%;
    left: 0px;
    right: 0px;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#loading div.dots {
    position: absolute;
    top: 40%;
    left: 0px;
    right: 0px;
    margin-top: 50px;
    text-align: center;
}
#loading div.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 6px;
    border-width: 1px;
    border-style: solid;
    opacity: 0.1;
    border-radius: 100%;
    -webkit-animation: loader-dot 2s linear infinite;
       -moz-animation: loader-dot 2s linear infinite;
        -ms-animation: loader-dot 2s linear infinite;
         -o-animation: loader-dot 2s linear infinite;
            animation: loader-dot 2s linear infinite;
}
#loading div.dot1 {
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
        -ms-animation-delay: 0s;
         -o-animation-delay: 0s;
            animation-delay: 0s;
}
#loading div.dot2 {
    -webkit-animation-delay: 0.15s;
       -moz-animation-delay: 0.15s;
        -ms-animation-delay: 0.15s;
         -o-animation-delay: 0.15s;
            animation-delay: 0.15s;
}
#loading div.dot3 {
    -webkit-animation-delay: 0.3s;
       -moz-animation-delay: 0.3s;
        -ms-animation-delay: 0.3s;
         -o-animation-delay: 0.3s;
            animation-delay: 0.3s;
}
#loading div.dot4 {
    -webkit-animation-delay: 0.45s;
       -moz-animation-delay: 0.45s;
        -ms-animation-delay: 0.45s;
         -o-animation-delay: 0.45s;
            animation-delay: 0.45s;
}
#loading div.dot5 {
    -webkit-animation-delay: 0.6s;
       -moz-animation-delay: 0.6s;
        -ms-animation-delay: 0.6s;
         -o-animation-delay: 0.6s;
            animation-delay: 0.6s;
}

/*
| ====================================== |
| ============ Lock Screen ============= |
| ====================================== |
*/
div.lock {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1000;
}
div.lock img.avatar {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    margin: -50px 0px 0px -50px;
    width: 100px;
    height: 100px;
    border-width: 2px;
    border-style: solid;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.lock div.name {
    position: absolute;
    top: 40%;
    left: 0px;
    right: 0px;
    margin-top: 60px;
    text-align: center;
}
div.lock div.input {
    position: absolute;
    width: 180px;
    top: 40%;
    left: 50%;
    margin: 90px 0px 0px -90px;
}
div.lock input {
    width: 100%;
    height: 32px;
    padding: 0px 66px 0px 10px;
    border: none;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.lock button {
    position: absolute;
    top: 2px;
    right: 2px;
}
div.lock a {
    position: absolute;
    display: block;
    width: 40px;
    left: 50%;
    bottom: 20px;
    margin: 0px 0px 0px -20px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
}


/*
| ====================================== |
| ============== Page Title ============ |
| ====================================== |
*/

/* Page Title */
div.page-title {
    position: relative;
    padding: 0px 20px;
    height: 45px;
    line-height: 45px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    font-size: 16px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
}
div.page-title > i {
    float: left;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin: 18px 20px 0px 0px;
    font-size: 14px;
    text-align: center;
    border-radius: 100%;
}
div.menu-switch {
    display: none;
}

/*
| ====================================== |
| ============== Navigation ============ |
| ====================================== |
*/

/* Profile */
div.profile {
    position: relative;
    overflow: hidden;
}
div.profile div.avatar {
    margin: 20px 20px 10px 20px;
}
div.profile div.avatar img {
    display: block;
    width: 100%;
    border-radius: 100%;
    border-width: 1px;
    border-style: solid;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.profile div.detail {
    margin: 20px 20px 20px 80px;
}
div.profile div.name {
    font-size: 18px;
}

/* global search */
div.global-search {
    position: relative;
    margin: 20px;
    clear: both;
}
div.global-search input {
    width: 100%;
    border: none;
    outline: none;
    height: 32px;
    padding: 0px 10px;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.global-search button {
    position: absolute;
    right: 2px;
    top: 2px;
}


/* Navigation */
ul.navigation {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
ul.navigation > li {
    position: relative;
}
ul.navigation > li.separator {
    text-align: center;
    height: 30px;
    line-height: 30px;
}
ul.navigation > li.separator div {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0px 2px;
    border-radius: 100%;
}
ul.navigation > li > a {
    display: block;
    padding: 0px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    text-align: center;
    outline: none;
    border-left-width: 5px;
    border-left-style: solid;
    border-right-width: 5px;
    border-right-style: solid;
    -webkit-transition: color 0.1s linear;
       -moz-transition: color 0.1s linear;
        -ms-transition: color 0.1s linear;
         -o-transition: color 0.1s linear;
            transition: color 0.1s linear;
}
ul.navigation > li > a > i {
    display: block;
    margin: 10px 0px;
    font-size: 28px;
    height: 30px;
    line-height: 30px;
}
ul.navigation > li > a > span {
    display: block;
    margin-bottom: 10px;
}
ul.navigation-sub {
    display: none;
    position: absolute;
    top: 0px;
    left: 100%;
    width: 200px;
    z-index: 1000;
    list-style-type: none;
    padding: 10px 0px;
    margin: 0px 0px 0px 10px;
    border-radius: 4px;
    -webkit-animation: submenu 0.1s linear;
       -moz-animation: submenu 0.1s linear;
        -ms-animation: submenu 0.1s linear;
         -o-animation: submenu 0.1s linear;
            animation: submenu 0.1s linear;
}
ul.navigation-sub:before {
    content: '';
    position: absolute;
    width: 10px;
    top: 0px;
    bottom: 0px;
    right: 100%;
}
ul.navigation > li.sub:hover ul.navigation-sub {
    display: block;
}
ul.navigation-sub > li > a {
    display: block;
    outline: none;
    text-decoration: none;
    padding: 10px 20px;
    border-left-width: 5px;
    border-left-style: solid;
}
ul.navigation-sub > li > a > i {
    display: inline-block;
    width: 20px;
}
ul.navigation span.number-alert {
    position: absolute;
    top: 0px;
    left: 65px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    cursor: default;
    border-radius: 100%;
}

/*
| ====================================== |
| =========== Theme Selector =========== |
| ====================================== |
*/
#theme-selector {
    position: fixed;
    right: -110px;
    top: 12px;
    padding: 10px;
    width: 90px;
    z-index: 400;
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}
#theme-selector:hover {
    right: 0px;
}
#theme-selector div.icon {
    position: absolute;
    top: 0px;
    right: 100%;
    font-size: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px 0px 0px 4px
}
#theme-selector div.icon i {
    line-height: 50px;
}
#theme-selector div.theme {
    float: left;
    width: 20px;
    height: 20px;
    margin: 5px;
    cursor: pointer;
    outline-width: 1px;
    outline-style: solid;
}
#theme-selector div.theme:hover {
    outline-width: 2px;
}

#preview{
	width: 100%;
}

/*
| ====================================== |
| ========== Checkbox / Radio ========== |
| ====================================== |
*/

/* use :disabled CSS3 pesudo selector to let IE8 ignore all these styles */
input[type="checkbox"],
input[type="radio"] {
    vertical-align: middle;
}
input[type="checkbox"],
input[type="radio"],
input[type="radio"]:disabled {
    display: none;
}
input[type="checkbox"] + label, /* IE8 Fallback */
input[type="radio"] + label {
    padding-left: 10px;
}
input[type="checkbox"] + label,
input[type="radio"] + label,
input[type="radio"]:disabled + label {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    cursor: pointer;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before,
input[type="radio"]:disabled + label:before {
    content: '';
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
input[type="checkbox"] + label:before,
input[type="checkbox"]:disabled + label:before {
    border-radius: 2px;
    font-size: 14px;
}
input[type="checkbox"] + label:after,
input[type="checkbox"]:disabled + label:after {
    content: '';
    position: absolute;
    display: none;
    left: 1px;
    top: 1px;
    width: 18px;
    height: 18px;
    background: url('/assets/application/web/images/check.png') no-repeat 50% 50%;
}
input[type="checkbox"]:checked + label:after,
input[type="checkbox"]:checked:disabled + label:after {
    display: block;
    -webkit-animation: scale 0.1s linear;
       -moz-animation: scale 0.1s linear;
        -ms-animation: scale 0.1s linear;
         -o-animation: scale 0.1s linear;
            animation: scale 0.1s linear;
}
input[type="radio"] + label:before,
input[type="radio"]:disabled + label:before {
    border-radius: 100%;
}
input[type="radio"] + label:after,
input[type="radio"]:disabled + label:after {
    content: '';
    position: absolute;
    display: none;
    left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}
input[type="radio"]:checked + label:after,
input[type="radio"]:checked:disabled + label:after {
    display: block;
    -webkit-animation: scale 0.1s linear;
       -moz-animation: scale 0.1s linear;
        -ms-animation: scale 0.1s linear;
         -o-animation: scale 0.1s linear;
            animation: scale 0.1s linear;
}

/*
| ====================================== |
| ================ Grid ================ |
| ====================================== |
*/

/* Grids */
.grid {
    float: left;
    min-height: 1px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
.grid-1 {
    width: 8.333333%;
}
.grid-2 {
    width: 16.666667%;
}
.grid-3 {
    width: 25%;
}
.grid-4 {
    width: 33.333333%;
	min-height: 330px;
    min-width: 216px;
}
.grid-5 {
    width: 41.666667%;
}
.grid-6 {
    width: 50%;
}
.grid-7 {
    width: 58.333333%;
}
.grid-8 {
    width: 66.666667%;
}
.grid-9 {
    width: 75%;
}
.grid-10 {
    width: 83.333333%;
}
.grid-11 {
    width: 91.666667%;
}
.grid-12 {
    width: 100%;
}
.grid-border-right {
    border-right-width: 1px;
    border-right-style: solid;
}

/* Sidebar */
.sidebar {
    float: right;
    width: 300px;
}
.sidebar-page {
    overflow: hidden;
    margin-right: 300px;
}
.sidebar-widget:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    margin: 20px 0px;
    background-color: #EEEEEE;
}
.sidebar-widget:last-child:after {
    display: none;
}
.sidebar-widget-title {
    font-size: 20px;
}
.sidebar-widget-subtitle {
    margin: 5px 0px 10px 0px;
}

/*
| ====================================== |
| =============== Form ================= |
| ====================================== |
*/
div.form-row {
    padding-bottom: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    clear: both;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
div.form-row-noborder,
div.form-row:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}
div.form-row div.label {
    width: 25%;
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.form-row div.input {
    margin-left: 25%;
}
div.form-row div.input-nolabel {
    margin-left: 0px;
}
div.form-row div.input span.validation {
    margin-left: 5px;
}
div.form-row div.input > i {
    position: absolute;
    width: 34px;
    height: 20px;
    line-height: 20px;
    margin-top: 8px;
    text-align: center;
}
div.form-row div.input > i:after {
    content: '';
    position: absolute;
    right: 0px;
    width: 1px;
    height: 100%;
    background: red;
}
div.form-row small {
    font-size: 10px;
}
div.form-row label {
    margin: 7px 20px 8px 0px;
}
div.form-button-bar {
    margin: 20px 0px 0px 25%;
}
div.form-row input[type="text"],
div.form-row input[type="password"],
div.form-row input[type="number"],
div.form-row input[type="email"],
div.form-row input[type="url"],
div.form-row input[type="search"],
div.form-row input[type="tel"],
div.form-row input[type="color"],
div.form-row input[type="range"],
div.form-row input[type="datetime"],
div.form-row input[type="date"],
div.form-row input[type="month"],
div.form-row input[type="week"],
div.form-row input[type="time"],
div.form-row select,
div.form-row textarea {
    outline: none;
    padding: 8px 0px 8px 10px;
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    max-width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.form-row textarea {
    height: auto;
    padding: 10px;
}
div.form-row select {
    padding: 7px;
}
div.form-row input.icon {
    padding-left: 42px;
}
div.form-row .mini {
    width: 60px;
}
div.form-row .small {
    width: 100px;
}
div.form-row .medium {
    width: 200px;
}
div.form-row .large {
    width: 350px;
}
div.form-row .full {
    width: 100%;
}
div.form-wizard-indicator-container {
    display: table;
    margin: 0px auto 30px auto;
}
div.form-wizard-indicator {
    float: left;
    display: inline-block;
    position: relative;
    margin-right: 100px;
}
div.form-wizard-indicator:last-child {
    margin-right: 0px;
}
div.form-wizard-indicator label {
    display: block;
    position: relative;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    margin: 0px;
    text-align: center;
}
div.form-wizard-indicator.current label {
    z-index: 11;
}
div.form-wizard-indicator label:before,
div.form-wizard-indicator label:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    height: 12px;
    width: 102px;
    margin-top: -6px;
    margin-left: -1px;
}
div.form-wizard-indicator label:after {
    width: 117px;
    height: 4px;
    margin: -3px 0px 0px -7px;
    display: none;
    z-index: 10;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    -webkit-animation: width 0.2s linear;
       -moz-animation: width 0.2s linear;
        -ms-animation: width 0.2s linear;
         -o-animation: width 0.2s linear;
            animation: width 0.2s linear;
}
div.form-wizard-indicator.completed label:after {
    display: block;
}
div.form-wizard-indicator:last-child label:before,
div.form-wizard-indicator:last-child label:after {
    display: none;
}
div.form-wizard-indicator label span {
    display: block;
    position: absolute;
    top: 7px;
    right: 7px;
    bottom: 7px;
    left: 7px;
    line-height: 26px;
    border-width: 1px;
    border-style: solid;
    border-radius: 100%;
}
div.form-wizard-indicator span.desc {
    display: block;
    position: absolute;
    width: 150px;
    top: 100%;
    left: -55px;
    margin-top: 5px;
    text-align: center;
}
div.form-wizard-indicator.current span.desc {
    font-weight: bold;
}
div.form-wizard {
    display: none;
}
div.form-wizard.active {
    display: block;
}
button.form-wizard-submit {
    display: none;
}

/*
| ====================================== |
| =============== Tooltip ============== |
| ====================================== |
*/
div.tooltip {
    position: absolute;
    top: 200px;
    left: 300px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 500;
    -webkit-animation: fade 0.1s linear;
       -moz-animation: fade 0.1s linear;
        -ms-animation: fade 0.1s linear;
         -o-animation: fade 0.1s linear;
            animation: fade 0.1s linear;
}
div.tooltip-arrow {
    content: '';
    position: absolute;
    z-index: 500;
    border-width: 6px;
    border-style: solid;
}
div.tooltip-top div.tooltip-arrow {
    top: 100%;
    left: 50%;
    margin-left: -6px;
}
div.tooltip-bottom div.tooltip-arrow {
    bottom: 100%;
    left: 50%;
    margin-left: -6px;
}
div.tooltip-left div.tooltip-arrow {
    left: 100%;
    top: 50%;
    margin-top: -6px;
}
div.tooltip-right div.tooltip-arrow {
    right: 100%;
    top: 50%;
    margin-top: -6px;
}

/*
| ====================================== |
| ========= Dashboard Widget =========== |
| ====================================== |
*/
div.dashboard-widget {
    margin: 10px;
}
div.dashboard-widget > div.title {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-radius: 4px 4px 0px 0px;
}
div.dashboard-widget-closed > div.title {
    border-radius: 4px;
}
div.dashboard-widget > div.title button {
    float: right;
    width: 40px;
    height: 100%;
    line-height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    -webkit-transition: color 0.1s linear;
       -moz-transition: color 0.1s linear;
        -ms-transition: color 0.1s linear;
         -o-transition: color 0.1s linear;
            transition: color 0.1s linear;
}
div.dashboard-widget > div.title i {
    display: inline-block;
    width: 20px;
}
div.dashboard-widget > div.content {
    position: relative;
    padding: 20px;
    line-height: 20px;
    border-radius: 4px;
}
div.dashboard-widget-nopadding > div.content {
    padding: 0px;
}
.dashboard-widget-sortable div.dashboard-widget > div.title {
    cursor: move;
}
div.dashboard-widget-closed > div.title {
    border-bottom: none;
}
div.dashboard-widget-closed > div.content {
    display: none;
}

/*
| ====================================== |
| =============== Tab ================== |
| ====================================== |
*/
div.tab {
    margin: 10px;
}
div.tab > div.tab-menu {
    font-size: 14px;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    border-radius: 4px 4px 0px 0px;
}
div.tab > div.tab-menu ul {
    list-style-type: none;
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0px 20px 0px 0px;
    padding: 0px;
    font-weight: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
}
div.tab > div.tab-menu ul i {
    line-height: 40px;
}
div.tab > div.tab-menu li {
    position: relative;
    float: left;
    padding: 0px 20px;
    cursor: pointer;
}
div.tab > div.tab-menu li span.number-alert {
    position: absolute;
    right: 5px;
    top: -5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 100%;
}
div.tab > div.tab-menu li.active {
    cursor: default;
}
div.tab > div.tab-menu > i {
    display: inline-block;
    width: 20px;
}
div.tab > div.tab-content {
    overflow: hidden;
    padding: 20px;
    line-height: 20px;
    border-radius: 4px 0px 4px 4px;
}
div.tab > div.tab-content > div {
    display: none;
}
div.tab > div.tab-content > div.active {
    display: block;
}

/*
| ====================================== |
| ============== Accordion ============= |
| ====================================== |
*/
div.accordion {
    margin: 10px;
    border-width: 1px;
    border-style: solid;
}
div.accordion > div {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
div.accordion > div:last-child {
    border-bottom: none;
}
div.accordion > div div.accordion-menu {
    font-size: 14px;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
}
div.accordion > div.active div.accordion-menu {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
div.accordion > div div.accordion-menu i {
    display: inline-block;
    width: 20px;
}
div.accordion > div div.accordion-menu span.alert {
    position: absolute;
    font-size: 10px;
    top: 50%;
    right: 10px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin-top: -9px;
    text-align: center;
    border-radius: 3px;
}
div.accordion > div div.accordion-content {
    display: none;
    overflow: hidden;
    padding: 20px;
    line-height: 20px;
}

/*
| ====================================== |
| =============== Dialog =============== |
| ====================================== |
*/
div.dialog {
    position: fixed;
    z-index: 2000;
    top: 10%;
    left: 50%;
    -webkit-animation: dialog-in 0.2s linear;
       -moz-animation: dialog-in 0.2s linear;
        -ms-animation: dialog-in 0.2s linear;
         -o-animation: dialog-in 0.2s linear;
            animation: dialog-in 0.2s linear;
}
div.dialog-closing {
    opacity: 0;
    -webkit-transform: translateY(-100px);
       -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
         -o-transform: translateY(-100px);
            transform: translateY(-100px);
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}
div.dialog > div.title {
    font-size: 14px;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0px 40px 0px 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-radius: 4px 4px 0px 0px;
}
div.dialog-draggable > div.title {
    cursor: move;
}
div.dialog > div.content {
    overflow: hidden;
    padding: 20px 20px 0px 20px;
    line-height: 20px;
}
div.dialog > div.button {
    padding: 0px 20px 20px 20px;
    text-align: right;
    border-radius: 0px 0px 4px 4px;
}
div.dialog > div.button button {
    margin: 20px 0px 0px 5px;
}
div.dialog > div.title button {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    line-height: 40px;
    padding: 0px;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
div.dialog > div.title button:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
div.dialog-dragging {
    opacity: 0.6;
    filter: alpha(opacity=60);
}
div.dialog-dragging > div.content > div,
div.dialog-dragging > div.button button {
    visibility: hidden;
}
div.dialog span.countdown {
    margin-left: 5px;
}

/*
| ====================================== |
| ============= Data Table ============= |
| ====================================== |
*/
div.data-table {
    overflow-x: auto;
    overflow-y: hidden;
}
div.data-table > table {
    width: 100%;
    font-size: 12px;
}
div.data-table > table thead th {
    font-size: 14px;
    font-weight: normal;
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
div.data-table > table tbody th {
    padding: 0px 10px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}
div.data-table > table tbody th i.icon-sort {
    float: right;
    height: 40px;
    line-height: 40px;
    visibility: hidden;
}
div.data-table > table tbody th:hover i.icon-sort {
    visibility: visible;
}
div.data-table > table td {
    padding: 10px;
}
div.data-table > table div.data-table-search {
    position: relative;
    float: right;
    margin-top: 7px;
    line-height: 24px;
}
div.data-table > table div.data-table-search input {
    font-size: 12px;
    outline: none;
    width: 100px;
    padding: 0px 30px 0px 10px;
    height: 24px;
    border: none;
    border-radius: 4px;
    -webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
        -ms-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}
div.data-table > table div.data-table-search input:focus {
    width: 150px;
}
div.data-table > table div.data-table-search i {
    position: absolute;
    top: 5px;
    right: 10px;
}

/*
| ====================================== |
| ================ Alert =============== |
| ====================================== |
*/
div.alert,
div.info {
    position: relative;
    padding: 0px 50px;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.alert:last-child,
div.info:last-child {
    margin-bottom: 0px;
}
div.alert strong,
div.info strong {
    margin-right: 5px;
}
div.alert:before,
div.info:before {
    position: absolute;
    left: 0;
    height: 100%;
    width: 40px;
    font-family: FontAwesome;
    text-align: center;
}
div.alert-block:before,
div.info-block:before {
    content: '\f06a';
}
div.alert-error:before,
div.info-error:before {
    content: '\f071';
}
div.alert-success:before,
div.info-success:before {
    content: '\f058';
}
div.alert-info:before,
div.info-info:before {
    content: '\f05a';
}
div.alert-inverse:before,
div.info-inverse:before {
    content: '\f05a';
}
div.alert button.close,
div.info button.close {
    position: absolute;
    right: 0;
    width: 40px;
    height: 100%;
    line-height: 40px;
    padding: 0px;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    font-size:20px;
}
div.alert button.close:hover,
div.info button.close:hover {
    opacity: 1;
}
div.note {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 12px;
}
div.note:last-child {
    margin-bottom: 0px;
}
div.note button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0px;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
}


/*
| ====================================== |
| ============ Notification============= |
| ====================================== |
*/
div.notification-container {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 300px;
    z-index: 500;
}
div.notification-container div.notification {
    position: relative;
    margin: 0px 10px 10px 0px;
    -webkit-animation: notification 0.2s linear;
       -moz-animation: notification 0.2s linear;
        -ms-animation: notification 0.2s linear;
         -o-animation: notification 0.2s linear;
            animation: notification 0.2s linear;
}
div.notification-container div.notification.closing {
    opacity: 0;
    -webkit-transition: all 0.2s linear;
       -moz-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
         -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
}
div.notification-container div.notification div.close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
div.notification-container div.notification:hover div.close {
    display: block;
}
div.notification-container div.notification div.title {
    padding: 20px 20px 0px 20px;
    font-weight: bold;
    font-size: 14px;
}
div.notification-container div.notification div.content {
    padding: 20px;
}

/*
| ====================================== |
| =============== Button =============== |
| ====================================== |
*/
button.btn {
    position: relative;
    outline: none;
    border: none;
    margin: 0px;
    border-radius: 2px;
    border: none;
    white-space: nowrap;
}
button.btn[disabled=disabled] {  /* IE8 Fallback */
    cursor: default;
    filter: alpha(opacity=50);
}
button.btn:disabled {
    cursor: default;
    opacity: 0.5;
}
button.btn.active {
    cursor: default;
}
button.btn-loading:disabled {
    opacity: 1;
}
button.btn-loading {
    -webkit-animation: progress-bar-stripe 1s linear infinite;
       -moz-animation: progress-bar-stripe 1s linear infinite;
        -ms-animation: progress-bar-stripe 1s linear infinite;
         -o-animation: progress-bar-stripe 1s linear infinite;
            animation: progress-bar-stripe 1s linear infinite;
}
button.btn-mini {
    font-size: 12px;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
}
button.btn-small {
    font-size: 14px;
    padding: 0 14px;
    height: 36px;
    line-height: 36px;
}
button.btn-medium {
    font-size: 14px;
    padding: 0 16px;
    height: 42px;
    line-height: 42px;
}
button.btn-large {
    font-size: 18px;
    padding: 0 20px;
    height: 52px;
    line-height: 52px;
}
button.btn-full {
    width: 100%;
}
div.btn-group {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}
div.btn-group button.btn {
    float: left;
}
button.btn-group {
    margin: 0px;
    border-radius: 0;
}
button.btn-group,
button.btn-split {
    border-left-style: solid;
    border-left-width: 1px;
}
button.btn-group:first-child {
    border-radius: 2px 0px 0px 2px;
    border-left: none;
}
button.btn-group:last-child,
button.btn-split {
    border-radius: 0px 2px 2px 0px;
    border-right-width: 1px;
}
/* Square Button */
div.square-btn {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
    -webkit-transition: color 0.1s linear;
       -moz-transition: color 0.1s linear;
        -ms-transition: color 0.1s linear;
         -o-transition: color 0.1s linear;
            transition: color 0.1s linear;
}
div.square-btn:last-child {
    margin-right: 0px;
}
div.square-btn i {
    display: block;
    font-size: 30px;
    padding: 16px 0px 4px 0px;
}
div.square-btn span.number-alert {
    position: absolute;
    width: 18px;
    height: 18px;
    line-height: 18px;
    right: -5px;
    top: -5px;
    border-radius: 100%;
}
/* Circle Button */
div.circle-btn {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
         -o-user-select: none;
            user-select: none;
}
div.circle-btn:last-child {
    margin-right: 0px;
}
div.circle-btn i {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 10px;
    font-size: 30px;
    text-align: center;
    border-radius: 100%;
    -webkit-transition: color 0.1s linear;
       -moz-transition: color 0.1s linear;
        -ms-transition: color 0.1s linear;
         -o-transition: color 0.1s linear;
            transition: color 0.1s linear;
}

/*
| ====================================== |
| ============= Progress Bar =========== |
| ====================================== |
*/
div.progress {
    height: 20px;
    border-radius: 4px;
}
div.progress div.bar {
    height: 100%;
    text-align: right;
    border-radius: 3px;
    -webkit-transition: width 0.2s linear;
       -moz-transition: width 0.2s linear;
        -ms-transition: width 0.2s linear;
         -o-transition: width 0.2s linear;
            transition: width 0.2s linear;
}
div.progress div.bar span {
    line-height: 20px;
    margin-right: 10px;
}
div.progress-stripe.active div.bar {
    -webkit-animation: progress-bar-stripe 2s linear infinite;
       -moz-animation: progress-bar-stripe 2s linear infinite;
        -ms-animation: progress-bar-stripe 2s linear infinite;
         -o-animation: progress-bar-stripe 2s linear infinite;
            animation: progress-bar-stripe 2s linear infinite;
}

/*
| ====================================== |
| ============ File Gallery ============ |
| ====================================== |
*/

/* Base */
div.file-gallery {
    overflow: hidden;
}
div.file-gallery div.item {
    position: relative;
    border-radius: 4px;
}
div.file-gallery div.star-rating {
    font-size: 14px;
}
div.file-gallery div.preview {
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    border-radius: 4px;
}
div.file-gallery div.preview img {
    display: block;
    margin: 0px auto;
}
div.file-gallery div.detail span.size,
div.file-gallery div.detail span.date {
    font-style: italic;
}
/* Grid View*/
div.file-gallery-grid div.item {
    float: left;
    width: 18%;
    margin: 1%;
}
div.file-gallery-grid div.rating {
    position: absolute;
    right: 5px;
    bottom: 3px;
}
div.file-gallery-grid div.preview {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-top: none;
    border-left: none;
}
div.file-gallery-grid div.preview img {
    width: 100%;
}
div.file-gallery-grid div.detail {
    border-radius: 0px 0px 4px 4px;
    margin: 5px;
}
div.file-gallery-grid div.detail span.name {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
div.file-gallery-grid div.detail span.size {
    display: none;
}
div.file-gallery-grid div.detail span.date {
    display: none;
}
/* List View */
div.file-gallery-list div.item {
    overflow: hidden;
    margin: 10px;
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-top: none;
    border-left: none;
}
div.file-gallery-list div.rating {
    position: absolute;
    right: 5px;
    top: 5px;
}
div.file-gallery-list div.preview {
    float: left;
    width: 80px;
    height: 60px;
}
div.file-gallery-list div.preview img {
    width: 100%;
    height: 100%;
}
div.file-gallery-list div.detail {
    margin: 0px 10px 0px 90px;
    border-radius: 4px;
}
div.file-gallery-list div.detail span.name {
    display: block;
}
div.file-gallery-list div.detail span.size {
    display: block;
}
div.file-gallery-list div.detail span.date {
    display: block;
}
/* Thumbnail View */
div.file-gallery-thumbnail div.item {
    float: left;
    width: 9%;
    margin: 0.5%;
}
div.file-gallery-thumbnail div.rating {
    display: none;
}
div.file-gallery-thumbnail div.preview {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    border-top: none;
    border-left: none;
}
div.file-gallery-thumbnail div.preview img {
    width: 100%;
}
div.file-gallery-thumbnail div.detail {
    display: none;
}

/*
| ====================================== |
| ======== Project Contribution ======== |
| ====================================== |
*/
div.project-contribution {
    overflow: hidden;
}
div.project-contribution div.main,
div.project-contribution div.legend {
    overflow: hidden;
}
div.project-contribution div.legend {
    margin-top: 10px;
    line-height: 12px;
    float: right;
}
div.project-contribution div.legend div.left {
    margin-right: 5px;
}
div.project-contribution div.legend div.left:last-child {
    margin-left: 5px;
    margin-right: 0px;
}
div.project-contribution div.level {
    float: left;
    margin: 0px 0px 2px 2px;
    width: 12px;
    height: 12px;
}
div.project-contribution div.main div.level {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.project-contribution div.main div.level:hover {
    border-width: 1px;
    border-style: solid;
}

/*
| ====================================== |
| ============= Star Rating ============ |
| ====================================== |
*/
div.star-rating {
    display: inline-block;
    font-size: 22px;
    cursor: pointer;
}

/*
| ====================================== |
| ============ Typography ============== |
| ====================================== |
*/
h1, h2, h3, h4, h5, h6 {
    margin: 10px 0px;
    font-weight: normal;
}
h1 {
    font-size: 26px;
}
h2 {
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
h3 {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 14px;
    padding: 6px 12px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
}
h6 {
    font-size: 12px;
}
p {
    margin: 0px 0px 10px 0px;
    line-height: 20px;
}
p:last-child {
    margin-bottom: 0px;
}
ul.list,
ol.list {
    padding: 0px 30px;
    margin: 0px;
}
ul.list li,
ol.list li {
    position: relative;
    line-height: 20px;
}
ul.list.no-style,
ol.list.no-style {
    list-style-type: none;
}
ul.list.no-style li > i,
ol.list.no-style li > i {
    position: absolute;
    width: 30px;
    height: 20px;
    line-height: 20px;
    margin: 0px 0px 0px -30px;
    text-align: center;
}
blockquote {
    position: relative;
    line-height: 20px;
    margin: 0px 0px 20px 0px;
    padding: 20px 0px 20px 10px;
    border-left-style: solid;
    border-left-width: 6px;
}
blockquote:last-child {
    margin-bottom: 0px;
}
blockquote:before {
    content: '\f10d';
    position: absolute;
    top: 0px;
    left: 10px;
    font-family: FontAwesome;
    font-size: 14px;
}
blockquote:after {
    content: '\f10e';
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-family: FontAwesome;
    font-size: 14px;
}
span.number-alert {
    font-size: 10px;
    text-align: center;
}
.size20 {
    font-size: 20px;
}
.size28 {
    font-size: 28px;
}
span.numeric {
    font-family: Georgia;
    font-weight: bold;
}

/*
| ====================================== |
| ============ UI Elements ============= |
| ====================================== |
*/

/* country flag */
img.country-flag {
    float: left;
    margin: 4px 5px 0px 0px;
}
img.follower {
    width: 22%;
    float: left;
    margin: 0px 4% 4% 0px;
}
img.follower:last-child {
    margin-right: 0px;
}

/* Label */
label.status {
    padding: 4px 8px;
    border-radius: 4px;
}

/* Search Bar */
div.search-bar {
    position: absolute;
    right: 40px;
    left: 40px;
    bottom: 40px;
    padding: 10px;
    border-radius: 4px;
}
div.search-bar input {
    height: 32px;
    width: 100%;
    padding: 0px 10px;
    border: none;
    outline: none;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
}
div.search-bar button {
    position: absolute;
    top: 12px;
    right: 12px;
}

/* Social Bar */
div.social-bar {
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
    border-radius: 4px;
    text-align: right;
}
div.social-bar span {
    margin-right: 10px;
}
div.social-bar div {
    float: left;
    height: 100%;
    border-radius: 4px;
    padding: 0px 10px;
}
div.social-bar-facebook div {
    background-color: #3C599B;
}
div.social-bar-twitter div {
    background-color: #1DADEA;
}
div.social-bar-google div {
    background-color: #CE281C;
}

/* Dropdown */
ul.dropdown {
    display: none;
    cursor: default;
    z-index: 100;
    list-style-type: none;
    padding: 10px 0px;
    margin: 0px;
    position: absolute;
    top: 100%;
    margin-top: 4px;
    font-size: 12px;
    text-align: left;
    border-width: 1px;
    border-style: solid;
    border-top-width: 4px;
    border-top-style: solid;
}
ul.dropdown.open {
    display: block;
}
ul.dropdown li.hr {
    height: 1px;
    margin: 1px 0px;
}
ul.dropdown li > a {
    display: block;
    padding: 0px 20px;
    height: 34px;
    line-height: 34px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.dropdown li > a > i {
    display: inline-block;
    width: 20px;
}

/* Inbox */
div.mail-inbox {
    clear: both;
    overflow: hidden;
    margin-bottom: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
div.mail-inbox:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}
div.mail-inbox > div.avatar {
    float: left;
    margin: 0px 10px 10px 0px;
}
div.mail-inbox > div.avatar img {
    display: block;
    width: 54px;
    height: 54px;
}
div.mail-inbox > div.name {
    font-weight: bold;
    float: left;
}
div.mail-inbox > div.date {
    float: right;
    font-style: italic;
}
div.mail-inbox > div.flag {
    float: right;
    margin: 0px 5px 0px 10px;
}
div.mail-inbox > div.flag i {
    line-height: 20px;
}
div.mail-inbox > div.subject {
    font-weight: bold;
    clear: right;
}
div.mail-inbox > div.content {
    clear: right;
}

/* Tiles */
div.tile {
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    -webkit-transition: all 0.1s linear;
       -moz-transition: all 0.1s linear;
        -ms-transition: all 0.1s linear;
         -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
}
div.tile > div {
    font-size: 30px;
    height: 40px;
    line-height: 40px;
    margin: 20px;
    text-align: center;
}
div.tile a.view-more {
    position: relative;
    display: block;
    clear: both;
    padding: 0px 10px;
    height: 28px;
    line-height: 28px;
    text-decoration: none;
}
div.tile a.view-more:after {
    content: '\f0a9';
    font-family: FontAwesome;
    font-size: 14px;
    position: absolute;
    top: 0px;
    right: 10px;
    height: 28px;
    line-height: 28px;
}

/* Todo List */
div.todo div.todo-item {
    position: relative;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    cursor: move;
}
div.todo div.todo-item:last-child {
    border-bottom: none;
}
div.todo div.status {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 40px;
    text-align: center;
}
div.todo div.status label {
    display: block;
    margin: 12px 0px 0px 10px;
}
div.todo div.task {
    margin-left: 40px;
    margin-right: 100px;
    font-weight: bold;
}
div.todo div.date {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 100px;
    text-align: right;
    padding-right: 10px;
}
div.todo div.todo-item.checked div.task,
div.todo div.todo-item.checked div.data {
    text-decoration: line-through;
}
div.todo div.todo-item.checked div.task {
    font-weight: normal;
}
div.todo div.todo-item.checked label.status {
    padding: 0px;
}

/* HTML Meter Chart */
div.html-meter-chart {
    overflow: hidden;
}
div.html-meter-chart div.chart {
    float: left;
    width: 150px;
}
div.html-meter-chart div.desc {
    float: left;
    width: 100px;
    margin-top: 35px;
}
div.html-meter-chart div.desc div.figure {
    font-size: 20px;
}
div.html-meter-chart div.meter {
    margin: 12px 0px 0px 250px;
}
div.html-meter-chart div.meter > div {
    position: relative;
    -webkit-animation: width 0.8s linear;
       -moz-animation: width 0.8s linear;
        -ms-animation: width 0.8s linear;
         -o-animation: width 0.8s linear;
            animation: width 0.8s linear;
}
div.html-meter-chart div.meter > div > div {
    position: relative;
    height: 10px;
    line-height: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
}
div.html-meter-chart div.meter > div > div > span {
    position: absolute;
    left: 100%;
    margin-left: 5px;
    font-size: 10px;
}

/* Flot Tooltip */
#flotTip {
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 4px;
    z-index: 50;
}

/* jQuery UI */
.slider-helper {
    position: absolute;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 4px;
    z-index: 1000;
}
.slider-helper-vertical {
    left: 20px;
}
.slider-helper-horizontal {
    top: -40px;
}
.ui-slider-horizontal {
    border: none;
}
.ui-slider-vertical {
    border: none;
}
.ui-slider .ui-slider-handle {
    outline: none;
}

/*
| ====================================== |
| ============ Nav closed  ============= |
| ====================================== |
*/
.nav-closed #nav {
    display: none;
}
.nav-closed #main {
    left: 0px;
}

/*
| ====================================== |
| ============== Portrait ============== |
| ====================================== |
*/
.portrait #layout-container {
    position: static;
}
.portrait #main {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: auto;
    margin: 0px 0px 0px 120px;
}
.portrait div.page-title {
    height: 40px;
    line-height: 40px;
    padding: 0px;
    font-size: 14px;
}
.portrait div.page-title > i {
    display: none;
}
.portrait div.page-title > span {
    display: block;
    text-align: center;
}
.portrait div.menu-switch {
    display: block;
    position: absolute;
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    cursor: pointer;
}
.portrait div.data-table > table th.minor,
.portrait div.data-table > table td.minor {
    display: none;
}
.portrait div.dialog {
    width: 90% !important;
    margin-left: -45% !important;
}
.portrait.nav-closed {
    overflow: visible;
}
.portrait.nav-closed #main {
    margin-left: 0px;
}
.portrait .sidebar,
.portrait .sidebar-page {
    float: none;
    width: auto;
    margin: 0px 0px 10px 0px;
}
.portrait .sidebar-widget {
    float: none;
    width: auto;
    margin: 0px;
}
.portrait div.file-gallery-grid div.item {
    width: 48%;
}
.portrait div.file-gallery-thumbnail div.item {
    width: 24%;
}
.portrait div.form-wizard-indicator-container {
    margin-bottom: 10px;
}
.portrait div.form-wizard-indicator {
    margin-right: 40px;
}
.portrait div.form-wizard-indicator:last-child {
    margin-right: 0px;
}
.portrait div.form-wizard-indicator label:before,
.portrait div.form-wizard-indicator label:after {
    width: 45px;
}
.portrait div.form-wizard-indicator label:after {
    width: 57px;
}
.portrait div.form-wizard-indicator span.desc {
    display: none;
}


/*
| ====================================== |
| ============ Media Query ============= |
| ====================================== |
*/

/* Detection */
@media only screen and (min-width: 1px) {
    #portrait_mode_detector {
        overflow: hidden;
    }
}

/* Laptops */
@media only screen and (max-width: 1280px) {
    /* Grid */
    .grid-responsive {
        width: 50%;
    }
}

/* Tablets */
/*@media only screen and (max-width: 1024px) {*/
@media only screen and (max-width: 640px) {
    /* Grid */
    .grid-responsive {
        float: none;
        width: auto;
        margin-bottom: 10px;
    }
    .sidebar,
    .sidebar-page {
        float: none;
        width: auto;
        margin: 0px;
    }
    .sidebar-widget {
        float: left;
        width: 49%;
    }
    .sidebar-widget:nth-child(odd) {
        margin-right: 1%;
    }
    .sidebar-widget:nth-child(even) {
        margin-left: 1%;
    }
    .sidebar-widget:last-child:nth-child(even):after {
        display: block;
    }
    div.file-gallery-grid div.item {
        width: 23%;
    }
    div.file-gallery-thumbnail div.item {
        width: 11.5%;
    }
}

/* Phones */
@media only screen and (max-width: 768px) {
    #portrait_mode_detector {
        display: block;
    }
}

/*
| ====================================== |
| ============= Animation ============== |
| ====================================== |
*/

@-webkit-keyframes loader-dot {
    0% {opacity: 0.1;}
    40% {opacity: 1;}
    60% {opacity: 1;}
    100% {opacity: 0.1;}
}
@-moz-keyframes loader-dot {
    0% {opacity: 0.1;}
    40% {opacity: 1;}
    60% {opacity: 1;}
    100% {opacity: 0.1;}
}
@-ms-keyframes loader-dot {
    0% {opacity: 0.1;}
    40% {opacity: 1;}
    60% {opacity: 1;}
    100% {opacity: 0.1;}
}
@-o-keyframes loader-dot {
    0% {opacity: 0.1;}
    40% {opacity: 1;}
    60% {opacity: 1;}
    100% {opacity: 0.1;}
}
@keyframes loader-dot {
    0% {opacity: 0.1;}
    40% {opacity: 1;}
    60% {opacity: 1;}
    100% {opacity: 0.1;}
}

@-webkit-keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}
@-moz-keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}
@-ms-keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}
@-o-keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}
@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-webkit-keyframes width {
    from {width: 0;}
    to {width: 100%;}
}
@-moz-keyframes width {
    from {width: 0;}
    to {width: 100%;}
}
@-ms-keyframes width {
    from {width: 0;}
    to {width: 100%;}
}
@-o-keyframes width {
    from {width: 0;}
    to {width: 100%;}
}
@keyframes width {
    from {width: 0;}
    to {width: 100%;}
}

@-webkit-keyframes scale {
    from {-webkit-transform: scale(0);}
    to {-webkit-transform: scale(1);}
}
@-moz-keyframes scale {
    from {-moz-transform: scale(0);}
    to {-moz-transform: scale(1);}
}
@-ms-keyframes scale {
    from {-ms-transform: scale(0);}
    to {-ms-transform: scale(1);}
}
@-o-keyframes scale {
    from {-o-transform: scale(0);}
    to {-o-transform: scale(1);}
}
@keyframes scale {
    from {transform: scale(0);}
    to {transform: scale(1);}
}

@-webkit-keyframes progress-bar-stripe {
    from {background-position: 0px 0px;}
    to {background-position: 40px 0px;}
}
@-moz-keyframes progress-bar-stripe {
    from {background-position: 0px 0px;}
    to {background-position: 40px 0px;}
}
@-ms-keyframes progress-bar-stripe {
    from {background-position: 0px 0px;}
    to {background-position: 40px 0px;}
}
@-o-keyframes progress-bar-stripe {
    from {background-position: 0px 0px;}
    to {background-position: 40px 0px;}
}
@keyframes progress-bar-stripe {
    from {background-position: 0px 0px;}
    to {background-position: 40px 0px;}
}

@-webkit-keyframes dialog-in {
    from {-webkit-transform: translateY(-100px);}
    to {-webkit-transform: translateY(0px);}
}
@-moz-keyframes dialog-in {
    from {-moz-transform: translateY(-100px);}
    to {-moz-transform: translateY(0px);}
}
@-ms-keyframes dialog-in {
    from {-ms-transform: translateY(-100px);}
    to {-ms-transform: translateY(0px);}
}
@-o-keyframes dialog-in {
    from {-o-transform: translateY(-100px);}
    to {-o-transform: translateY(0px);}
}
@keyframes dialog-in {
    from {transform: translateY(-100px);}
    to {transform: translateY(0px);}
}

@-webkit-keyframes notification {
    from {-webkit-transform: translateY(50px); opacity:0;}
    to {-webkit-transform: translateY(0px);}
}
@-moz-keyframes notification {
    from {-moz-transform: translateY(50px); opacity:0;}
    to {-moz-transform: translateY(0px);}
}
@-ms-keyframes notification {
    from {-ms-transform: translateY(50px); opacity:0;}
    to {-ms-transform: translateY(0px);}
}
@-o-keyframes notification {
    from {-o-transform: translateY(50px); opacity:0;}
    to {-o-transform: translateY(0px);}
}
@keyframes notification {
    from {transform: translateY(50px); opacity:0;}
    to {transform: translateY(0px);}
}

@-webkit-keyframes submenu {
    from {opacity:0; -webkit-transform:translateX(-50px);}
    to {opacity:1; -webkit-transform:translateX(0px);}
}
@-moz-keyframes submenu {
    from {opacity:0; -moz-transform:translateX(-50px);}
    to {opacity:1; -moz-transform:translateX(0px);}
}
@-ms-keyframes submenu {
    from {opacity:0; -ms-transform:translateX(-50px);}
    to {opacity:1; -ms-transform:translateX(0px);}
}
@-o-keyframes submenu {
    from {opacity:0; -o-transform:translateX(-50px);}
    to {opacity:1; -o-transform:translateX(0px);}
}
@keyframes submenu {
    from {opacity:0; transform:translateX(-50px);}
    to {opacity:1; transform:translateX(0px);}
}





body {
    background-color: #f8f8f8;
}

#wrapper {
    width: 100%;
}

#page-wrapper {
    padding: 0 15px;
    min-height: 568px;
    background-color: #fff;
}

@media(min-width:768px) {
    #page-wrapper {
        position: inherit;
        margin: 0 0 0 250px;
        padding: 0 30px;
        border-left: 1px solid #e7e7e7;
    }
}

.navbar-top-links {
    margin-right: 0;
}

.navbar-top-links li {
    display: inline-block;
}

.navbar-top-links li:last-child {
    margin-right: 15px;
}

.navbar-top-links li a {
    padding: 15px;
    min-height: 50px;
}

.navbar-top-links .dropdown-menu li {
    display: block;
}

.navbar-top-links .dropdown-menu li:last-child {
    margin-right: 0;
}

.navbar-top-links .dropdown-menu li a {
    padding: 3px 20px;
    min-height: 0;
}

.navbar-top-links .dropdown-menu li a div {
    white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
    width: 310px;
    min-width: 0;
}

.navbar-top-links .dropdown-messages {
    margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
    margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
    margin-left: -123px;
}

.navbar-top-links .dropdown-user {
    right: 0;
    left: auto;
}

.sidebar .sidebar-nav.navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

.sidebar .sidebar-search {
    padding: 15px;
}

.sidebar ul li {
    border-bottom: 1px solid #e7e7e7;
}

.sidebar ul li a.active {
    background-color: #eee;
}

.sidebar .arrow {
    float: right;
}

.sidebar .fa.arrow:before {
    content: "\f104";
}

.sidebar .active>a>.fa.arrow:before {
    content: "\f107";
}

.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
    border-bottom: 0!important;
}

.sidebar .nav-second-level li a {
    padding-left: 37px;
}

.sidebar .nav-third-level li a {
    padding-left: 52px;
}

@media(min-width:768px) {
    .sidebar {
        z-index: 1;
        position: absolute;
        width: 250px;
        margin-top: 51px;
    }

    .navbar-top-links .dropdown-messages,
    .navbar-top-links .dropdown-tasks,
    .navbar-top-links .dropdown-alerts {
        margin-left: auto;
    }
}

.btn-outline {
    color: inherit;
    background-color: transparent;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

.chat {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chat li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #999;
}

.chat li.left .chat-body {
    margin-left: 60px;
}

.chat li.right .chat-body {
    margin-right: 60px;
}

.chat li .chat-body p {
    margin: 0;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
    margin-right: 5px;
}

.chat-panel .panel-body {
    height: 350px;
    overflow-y: scroll;
}

.login-panel {
    margin-top: 25%;
}

.flot-chart {
    display: block;
    height: 400px;
}

.flot-chart-content {
    width: 100%;
    height: 100%;
}

.dataTables_wrapper {
    position: relative;
    clear: both;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background: 0 0;
}

table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    float: right;
    font-family: fontawesome;
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    float: right;
    font-family: fontawesome;
}

table.dataTable thead .sorting:after {
    content: "\f0dc";
    float: right;
    font-family: fontawesome;
    color: rgba(50,50,50,.5);
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.33;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.show-grid [class^=col-] {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #eee!important;
}

.show-grid {
    margin: 15px 0;
}

.huge {
    font-size: 40px;
}

.panel-green {
    border-color: #5cb85c;
}

.panel-green .panel-heading {
    border-color: #5cb85c;
    color: #fff;
    background-color: #5cb85c;
}

.panel-green a {
    color: #5cb85c;
}

.panel-green a:hover {
    color: #3d8b3d;
}

.panel-red {
    border-color: #d9534f;
}

.panel-red .panel-heading {
    border-color: #d9534f;
    color: #fff;
    background-color: #d9534f;
}

.panel-red a {
    color: #d9534f;
}

.panel-red a:hover {
    color: #b52b27;
}

.panel-yellow {
    border-color: #f0ad4e;
}

.panel-yellow .panel-heading {
    border-color: #f0ad4e;
    color: #fff;
    background-color: #f0ad4e;
}

.panel-yellow a {
    color: #f0ad4e;
}

.panel-yellow a:hover {
    color: #df8a13;
}
