@import "../fonts/icomoon/styles.css";
@import "colors.css";
@import "core.css";

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    background: #F5F5F5;

}

a {
    color: #337ab7;
}

a:hover, a:focus {
    color: #166dba;
    text-decoration: underline;
}

.sidebar a, .breadcrumb-line a, .dropdown a, .dropup a, .heading-elements a, .navbar-collapse a {
    text-decoration: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 180px;
    list-style: none;
    font-size: 12px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-clip: padding-box;
    color: #333333;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.small {

    font-size: 11px;
}

.text-bold-500 {

    font-weight: 500;
}

.text-bold {

    font-weight: 600;
}

.text-black {

    color: #000000;
}

.logo-img, .simple-text {
    display: inline !important;
}

.logo-img {

    margin-right: 10px;

}

.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    color: #555;
    background-color: #fff;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control {

    border-color: #ddd;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 400;
}

.form-group.has-error .form-control {
    border-color: #dd4b39;
    box-shadow: none;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fbfbfb;
    opacity: 1;
}

.text-xs-left {
    text-align: left;
}

.text-xs-right {
    text-align: right;
}

.text-xs-center {
    text-align: center;
}

.text-xs-justify {
    text-align: justify;
}

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }

    .text-sm-center {
        text-align: center;
    }

    .text-sm-justify {
        text-align: justify;
    }
}

@media (min-width: 992px) {
    .text-md-left {
        text-align: left;
    }

    .text-md-right {
        text-align: right;
    }

    .text-md-center {
        text-align: center;
    }

    .text-md-justify {
        text-align: justify;
    }
}

@media (min-width: 1200px) {
    .text-lg-left {
        text-align: left;
    }

    .text-lg-right {
        text-align: right;
    }

    .text-lg-center {
        text-align: center;
    }

    .text-lg-justify {
        text-align: justify;
    }
}

/* ------------------------------------------------------------------------------
 *
 *  # Sidebar layouts
 *
 * ---------------------------------------------------------------------------- */

.label {
    display: inline-block;
    font-weight: 500;
    padding: 1px 4px 0px 4px;
    line-height: 1.5384616;
    border: 1px solid transparent;
    font-size: 10px;
    letter-spacing: 0.1px;
    border-radius: 2px;
}

label.control-label {

    font-weight: 500;
    color: #666;
}

/* ------------------------------------------------------------------------------
*
*  # Utilites
* ---------------------------------------------------------------------------- */
.rotate-45 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-45-inverse {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rotate-90-inverse {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rotate-180-inverse {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.spinner {
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    -o-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}

.spinner-reverse {
    display: inline-block;
    -webkit-animation: rotation_reverse 1s linear infinite;
    -o-animation: rotation_reverse 1s linear infinite;
    animation: rotation_reverse 1s linear infinite;
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes rotation {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(360deg);
    }
}

@-o-keyframes rotation {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotation_reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@-moz-keyframes rotation_reverse {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(-360deg);
    }
}

@-ms-keyframes rotation_reverse {
    0% {
        -ms-transform: rotate(0deg);
    }
    100% {
        -ms-transform: rotate(-360deg);
    }
}

@-o-keyframes rotation_reverse {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(-360deg);
    }
}

@keyframes rotation_reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* ------------------------------------------------------------------------------
 *
 *  # Login
 *
 * ---------------------------------------------------------------------------- */
.login-cover {
    background-size: cover;
}

.login-container {
    display: table;
    width: 100%;
    height: 100%;
}

.navbar + .login-container {
    height: calc(100% - 46px);
}

.navbar-lg + .login-container {
    height: calc(100% - 50px);
}

.navbar-sm + .login-container {
    height: calc(100% - 44px);
}

.navbar-xs + .login-container {
    height: calc(100% - 42px);
}

.login-container .page-content {
    display: table-row;
    height: 100%;
}

.login-container .login-form {
    width: 320px;
}

.login-container .login-form,
.login-container .registration-form {
    margin: 0 auto 20px auto;
}

@media (max-width: 480px) {
    .login-container .login-form,
    .login-container .registration-form {
        width: 100%;
    }
}

.login-container .footer {
    left: 0;
    right: 0;
    text-align: center;
}

.login-container .content-wrapper {
    vertical-align: middle;
    display: table-cell;
}

.login-container .nav-tabs.nav-justified {
    margin-bottom: 0;
}

.login-container .nav-tabs.nav-justified > li > a {
    border-top: 0 !important;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #f5f5f5;
}

.login-container .nav-tabs.nav-justified > li:first-child > a {
    border-left: 0;
    border-radius: 3px 0 0 0;
}

.login-container .nav-tabs.nav-justified > li:last-child > a {
    border-right: 0;
    border-radius: 0 3px 0 0;
}

.login-container .nav-tabs.nav-justified > li.active > a {
    background-color: transparent;
}

@media (max-width: 768px) {
    .login-container .nav-tabs.nav-justified {
        padding: 0;
        border-width: 0 0 1px 0;
        border-radius: 0;
    }

    .login-container .nav-tabs.nav-justified:before {
        content: none;
    }

    .login-container .nav-tabs.nav-justified > li > a {
        border-width: 0 !important;
    }
}

@media (max-width: 768px) {
    .login-options,
    .login-options .text-right {
        text-align: center;
    }
}

/* ------------------------------------------------------------------------------
 *
 *  # Error pages

 * ---------------------------------------------------------------------------- */
.error-title {
    color: #fff;
    font-size: 200px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 300;
    text-stroke: 1px transparent;
    display: block;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .error-title {
        font-size: 130px;
    }
}

.offline-title {
    font-size: 120px;
}

@media (max-width: 768px) {
    .offline-title {
        font-size: 90px;
    }
}

.panel {

    margin-bottom: 20px;
    border-color: #ddd;
    color: #333333;
    border-radius: 3px;
}

/* ------------------------------------------------------------------------------
*
*  # Heading elements
*
* ---------------------------------------------------------------------------- */
.heading-elements-toggle,
.breadcrumb-elements-toggle {
    cursor: pointer;
    display: block;
    line-height: 1;
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

.heading-elements-toggle,
.breadcrumb-elements-toggle,
.heading-elements-toggle:hover,
.breadcrumb-elements-toggle:hover,
.heading-elements-toggle:focus,
.breadcrumb-elements-toggle:focus {
    color: inherit;
}

.heading-elements-toggle > i,
.breadcrumb-elements-toggle > i {
    top: 0;
}

@media (min-width: 769px) {
    .heading-elements-toggle,
    .breadcrumb-elements-toggle {
        display: none;
    }
}

.heading-elements-toggle {
    right: 20px;
}

.breadcrumb-elements-toggle {
    right: 20px;
}

.breadcrumb-line-component .breadcrumb-elements-toggle {
    right: 15px;
}

.heading-elements {
    background-color: inherit;
    position: absolute;
    top: 50%;
    right: 20px;
    height: 36px;
    margin-top: -18px;
}

.panel-body > .heading-elements {
    top: 0;
    margin-top: 14px;
    z-index: 10;
}

@media (max-width: 768px) {
    .panel-body > .heading-elements-toggle {
        top: 20px;
        margin-top: 0;
    }

    .panel-body > .heading-elements.visible {
        top: 56px;
        background-color: #fff;
    }
}

.no-edge-top {
    top: 0;
}

.no-edge-bottom {
    bottom: 0;
}

.no-edge-left {
    left: 0;
}

.no-edge-right {
    right: 0;
}

@media (min-width: 1200px) {
    .pull-right-lg {
        float: right;
    }
}

@media (min-width: 1025px) {
    .pull-right-md {
        float: right;
    }
}

@media (min-width: 769px) {
    .pull-right-sm {
        float: right;
    }

}

@media (min-width: 480px) {
    .pull-right-xs {
        float: right;
    }

}

.valign-top {
    vertical-align: top;
}

.valign-middle {
    vertical-align: middle;
}

.valign-bottom {
    vertical-align: bottom;
}

.valign-baseline {
    vertical-align: baseline;
}

.valign-text-top {
    vertical-align: top;
}

.valign-text-bottom {
    vertical-align: text-bottom;
}

.position-relative {
    position: relative;
}

.position-static {
    position: static;
}

.display-block,
label.display-block {
    display: block;
}

.display-inline-block {
    display: inline-block;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-move {
    cursor: move;
}

.cursor-default {
    cursor: default;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.overflow-auto {
    overflow: auto;
}

.content-group-xs {
    margin-bottom: 10px !important;
}

.content-group-sm {
    margin-bottom: 15px !important;
}

.content-group {
    margin-bottom: 20px !important;
}

.content-group-lg {
    margin-bottom: 30px !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.m-5 {
    margin: 5px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.mr-5 {
    margin-right: 5px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.no-padding {
    padding: 0 !important;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.no-border {
    border: 0 !important;
}

.no-border-top {
    border-top: 0 !important;
}

.no-border-bottom {
    border-bottom: 0 !important;
}

.no-border-left {
    border-left: 0 !important;
}

.no-border-right {
    border-right: 0 !important;
}

.no-border-radius {
    border-radius: 0;
}

.no-border-radius-top {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.no-border-radius-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.no-border-radius-left {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.no-border-radius-right {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.no-box-shadow {

    box-shadow: none;
}

.border-solid {

    border-style: solid;
}

.border-dashed {

    border-style: dashed;
}

.border-top {
    border-top: 1px solid;
}

.border-bottom {
    border-bottom: 1px solid;
}

.border-left {
    border-left: 1px solid;
}

.border-right {
    border-right: 1px solid;
}

.border-lg {
    border-width: 2px;
}

.border-top-lg {
    border-top: 2px solid;
}

.border-bottom-lg {
    border-bottom: 2px solid;
}

.border-left-lg {
    border-left: 2px solid;
}

.border-right-lg {
    border-right: 2px solid;
}

.border-xlg {
    border-width: 3px;
}

.border-top-xlg {
    border-top: 3px solid;
}

.border-bottom-xlg {
    border-bottom: 3px solid;
}

.border-left-xlg {
    border-left: 3px solid;
}

.border-right-xlg {
    border-right: 3px solid;
}

.full-width {
    width: 100%;
}

.width-100 {

    min-width: 100px;
}

.width-120 {

    min-width: 120px;
}

@media (min-width: 769px) {

    .width-200 {
        min-width: 200px;
    }

    .width-250 {
        min-width: 250px;
    }

    .width-300 {
        min-width: 300px;
    }

    .width-350 {
        min-width: 350px;
    }

    .width-400 {
        min-width: 400px;
    }

    .width-450 {
        min-width: 450px;
    }

    .width-500 {
        min-width: 500px;
    }

    .width-550 {
        min-width: 550px;
    }

    .width-600 {
        min-width: 600px;
    }

    .width-650 {
        min-width: 650px;
    }
}

.img-lg {
    width: 44px !important;
    height: 44px !important;
}

.img-sm {
    width: 36px !important;
    height: 36px !important;
}

.img-xs {
    width: 32px !important;
    height: 32px !important;
}

.page-header .page-title {
    padding: 18px 36px 30px 0;
}

.form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #ccc;
}

input[type="checkbox"], input[type="radio"] {
    margin: 3px 0 0;
}

legend {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.label {
    display: inline-block;
    font-weight: 500;
    padding: 1px 4px 0px 4px;
    line-height: 1.5384616;
    border: 1px solid transparent;
    letter-spacing: 0.1px;
    border-radius: 2px;
}

label.control-label {

    font-weight: 500;
    color: #666;
}

.label-danger {
    border-color: #D64534;
    background-color: #D64534 !important;
}

.label-info {
    border-color: #3BAFDA;
    background-color: #3BAFDA !important;
}

.label-primary {
    border-color: #0C7ABF;
    background: #0C7ABF !important;
}

.label-success {

    background-color: #009688 !important;
    border-color: #009688;
}

.label-grayish {

    background: #6C6554;
    border-color: #6C6554;
}

.label-default {
    background-color: #f5f5f5;
    color: #444;
    border-color: #ddd !important;
}

.bg-red, .alert-danger, .alert-error, .label-danger, .modal-danger .modal-body {
    background-color: #dd4b39 !important;
}

.bg-green,
.alert-success,
.label-success,
.modal-success .modal-body {
    background-color: #0C7F71 !important;
}

.alert-info, .label-info, .modal-info .modal-body {
    background-color: #00c0ef !important;
}

.bg-yellow, .alert-warning, .label-warning, .modal-warning .modal-body {
    background-color: #f39c12 !important;
}

.alert {

    border-left: 5px solid transparent;
    color: #fff;

}

.alert-info {
    border-color: #0097BC;
}

.alert-success {

    border-color: #08685C;
}

.alert-danger {

    border-color: #c23321;
}

.alert-warning {

    border-color: #c87f0a;
}

.pagination {
    height: 36px;
    margin: 5px 0;
    font-size: 12px;
}

.pagination ul {
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */

    *zoom: 1;
    margin-left: 0;
    margin-bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination li {
    display: inline;
}

.pagination a {
    float: left;
    padding: 0 14px;
    line-height: 34px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-left-width: 0;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {

    background: #f5f5f5;
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    color: rgb(68, 68, 68);
    cursor: default;
    border: 1px solid #ddd;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
    color: #999999;
    background-color: transparent;
    cursor: default;
}

.pagination li:first-child a {
    border-left-width: 1px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    z-index: 2;
    color: #333;
    background-color: rgba(245, 245, 245, 0.16);
    border-color: #eee;
}

.pagination > li > a, .pagination > li > span {

    padding: 7px 12px;
    color: #333;

}

.pagination-centered {
    text-align: center;
}

.pagination-right {
    text-align: right;
}

.pager {
    margin-left: 0;
    margin-bottom: 18px;
    list-style: none;
    text-align: center;
    *zoom: 1;
}

.pager:before,
.pager:after {
    display: table;
    content: "";
}

.pager:after {
    clear: both;
}

.pager li {
    display: inline;
}

.pager a {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.pager a:hover {
    text-decoration: none;
    background-color: #f5f5f5;
}

.pager .next a {
    float: right;
}

.pager .previous a {
    float: left;
}

.pager .disabled a,
.pager .disabled a:hover {
    color: #999999;
    background-color: #fff;
    cursor: default;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table > thead > tr > th {

    border-bottom: 1px solid #bbb;
}

.table-bordered tr:first-child > td,
.table-bordered tr:first-child > th {
    border-top-color: #ddd;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}

.table.table-gray > thead, .table.table-gray > tfoot {

    background: #f5f5f5;
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
    color: #444;

}

.table.table-borderless > thead > tr > th,
.table.table-borderless > tbody > tr > th,
.table.table-borderless > tfoot > tr > th,
.table.table-borderless > thead > tr > td,
.table.table-borderless > tbody > tr > td,
.table.table-borderless > tfoot > tr > td {

    border-color: transparent;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

@media (max-width: 767px) {
    .table-responsive .dropdown-menu {
        position: relative !important;
    }
}

@media (min-width: 768px) {
    .table-responsive {
        overflow: visible;
    }
}

.modal-backdrop.in {

    opacity: 0;
}

.modal-backdrop {
 
    z-index: 0;
   
}

.list-inline > li {
    padding-left: 0;
    padding-right: 20px;
    font-size: 12px;
}

/* Buttons */

.btn {
    display: inline-block;
    background-color: #f5f5f5;
    background-image: -webkit-linear-gradient(top, #f5f5f5, #f1f1f1);
    background-image: -moz-linear-gradient(top, #f5f5f5, #f1f1f1);
    background-image: -ms-linear-gradient(top, #f5f5f5, #f1f1f1);
    background-image: -o-linear-gradient(top, #f5f5f5, #f1f1f1);
    background-image: linear-gradient(top, #f5f5f5, #f1f1f1);
    color: #555;

    border: 1px solid #dcdcdc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-weight: 600;
    text-align: center;
    min-width: 54px;
    text-decoration: none;
}

.btn-link {
    color: #777;
}

.btn-sm {
    font-size: 11px;
}

.btn.default {

    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background-image: linear-gradient(to bottom, #fefefe, #f2f2f2);
}

.btn:hover {
    background-color: #F8F8F8;
    background-image: -webkit-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -moz-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -ms-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: -o-linear-gradient(top, #f8f8f8, #f1f1f1);
    background-image: linear-gradient(top, #f8f8f8, #f1f1f1);

    border: 1px solid #d8d8d8;
    color: #333;

    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, .1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, .1);
}

.btn.default.active {
    background-color: #E9E9E9;
    border-color: #D1D1D1;
    background-image: none;
}

/* blue */

.btn.primary {
    background-color: #1E79C8;
    background-image: -webkit-linear-gradient(top, #2076C0, #0866B6);
    background-image: -moz-linear-gradient(top, #2076C0, #0866B6);
    background-image: -ms-linear-gradient(top, #2076C0, #0866B6);
    background-image: -o-linear-gradient(top, #2076C0, #0866B6);
    background-image: linear-gradient(top, #2076C0, #0866B6);
    border: 1px solid #1466AB;
    color: white;
}

.btn.primary:hover {
    border: 1px solid #095B99;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    background-image: -webkit-linear-gradient(top, #1E6FB4, #0B5CA1);
    background-image: -moz-linear-gradient(top, #1E6FB4, #0B5CA1);
    background-image: -ms-linear-gradient(top, #1E6FB4, #0B5CA1);
    background-image: -o-linear-gradient(top, #1E6FB4, #0B5CA1);
    background-image: linear-gradient(top, #1E6FB4, #0B5CA1);
}

.btn.primary.active {
    background-color: RGBA(21, 83, 140, 0.94) !important;
    border-color: #214F78;
    background-image: none;
}

/* red */

.btn.red {
    background-color: #D14836;
    background-image: -webkit-linear-gradient(top, #dd4b39, #d14836);
    background-image: -moz-linear-gradient(top, #dd4b39, #d14836);
    background-image: -ms-linear-gradient(top, #dd4b39, #d14836);
    background-image: -o-linear-gradient(top, #dd4b39, #d14836);
    background-image: linear-gradient(top, #dd4b39, #d14836);

    border: 1px solid transparent;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}

.btn.red:hover {
    background-color: #C53727;
    background-image: -webkit-linear-gradient(top, #dd4b39, #c53727);
    background-image: -moz-linear-gradient(top, #dd4b39, #c53727);
    background-image: -ms-linear-gradient(top, #dd4b39, #c53727);
    background-image: -o-linear-gradient(top, #dd4b39, #c53727);
    background-image: linear-gradient(top, #dd4b39, #c53727);
}

.btn.red.active {
    border-color: #B92C1C;
    background-image: none;
    background-color: #c02a19;
}

/* green */

.btn.green {
    background-color: #009688;
    background-image: -webkit-linear-gradient(top, #148D7E, #077D6F);
    background-image: -moz-linear-gradient(top, #148D7E, #077D6F);
    background-image: -ms-linear-gradient(top, #148D7E, #077D6F);
    background-image: -o-linear-gradient(top, #148D7E, #077D6F);
    background-image: linear-gradient(top, #148D7E, #077D6F);
    border: 1px solid #048477;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}

.btn.green:hover {
    background-color: #06776B;
    background-image: -webkit-linear-gradient(top, #0E8173, #06776B);
    background-image: -moz-linear-gradient(top, #0E8173, #06776B);
    background-image: -ms-linear-gradient(top, #0E8173, #06776B);
    background-image: -o-linear-gradient(top, #0E8173, #06776B);
    background-image: linear-gradient(top, #0E8173, #06776B);
    border: 1px solid #0E665D;
}

.btn.green.active {
    background-color: #066F63;
    border-color: #096358;
    background-image: none;
}

/* graysish */

.btn.grayish {
    background-color: #3D9400;
    background-image: -webkit-linear-gradient(top, #7c7461, #615b4c);
    background-image: -moz-linear-gradient(top, #7c7461, #615b4c);
    background-image: -ms-linear-gradient(top, #7c7461, #615b4c);
    background-image: -o-linear-gradient(top, #7c7461, #615b4c);
    background-image: linear-gradient(top, #7c7461, #615b4c);

    border: 1px solid #504b3e;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.1);
}

.btn.grayish:hover {
    background-color: #368200;
    background-image: -webkit-linear-gradient(top, #7c7461, #504b3e);
    background-image: -moz-linear-gradient(top, #7c7461, #504b3e);
    background-image: -ms-linear-gradient(top, #7c7461, #504b3e);
    background-image: -o-linear-gradient(top, #7c7461, #504b3e);
    background-image: linear-gradient(top, #7c7461, #504b3e);
    border: 1px solid #474337;
}

.btn.grayish.active {
    border-color: #514c3e;
    background-image: none;
    background-color: #5F5849;
}

/** collapse **/

.nav-side-menu {
    overflow: auto;
    font-family: verdana;
    font-size: 12px;
    font-weight: 200;
    background-color: #2e353d;
    position: fixed;
    top: 0px;
    width: 300px;
    height: 100%;
    color: #e1ffff;
}

.nav-side-menu .brand {
    background-color: #23282e;
    line-height: 50px;
    display: block;
    text-align: center;
    font-size: 14px;
}

.nav-side-menu .toggle-btn {
    display: none;
}

.nav-side-menu ul,
.nav-side-menu li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    line-height: 35px;
    cursor: pointer;
    /*
      .collapsed{
         .arrow:before{
                   font-family: FontAwesome;
                   content: "\f053";
                   display: inline-block;
                   padding-left:10px;
                   padding-right: 10px;
                   vertical-align: middle;
                   float:right;
              }
       }
  */
}

.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
    font-family: FontAwesome;
    content: "\f078";
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
    float: right;
}

.nav-side-menu ul .active,
.nav-side-menu li .active {
    border-left: 3px solid #d19b3d;
    background-color: #4f5b69;
}

.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
    color: #d19b3d;
}

.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
    color: #d19b3d;
}

.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
    background-color: #181c20;
    border: none;
    line-height: 28px;
    border-bottom: 1px solid #23282e;
    margin-left: 0px;
}

.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
    background-color: #020203;
}

.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
    font-family: FontAwesome;
    content: "\f105";
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
}

.nav-side-menu li {
    padding-left: 0px;
    border-left: 3px solid #2e353d;
    border-bottom: 1px solid #23282e;
}

.nav-side-menu li a {
    text-decoration: none;
    color: #e1ffff;
}

.nav-side-menu li a i {
    padding-left: 10px;
    width: 20px;
    padding-right: 20px;
}

.nav-side-menu li:hover {
    border-left: 3px solid #d19b3d;
    background-color: #4f5b69;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

@media (max-width: 767px) {
    .nav-side-menu {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-side-menu .toggle-btn {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 10 !important;
        padding: 3px;
        background-color: #ffffff;
        color: #000;
        width: 40px;
        text-align: center;
    }

    .brand {
        text-align: left !important;
        font-size: 22px;
        padding-left: 20px;
        line-height: 50px !important;
    }
}

@media (min-width: 767px) {
    .nav-side-menu .menu-list .menu-content {
        display: block;
    }
}

.login-box {
    width: 300px;
    margin: 0 auto;
    padding-top: 8%;

}

.login-box .login-logo {

    font-size: 35px;
}

.login-logo, .register-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 300;
}

.login-box-body, .register-box-body {
	width:360px;
    margin-top: 20px;
    padding: 20px;
    border-top: 0;
    color: #666;
	border: 1px solid #e6e6e6;
    box-shadow: none;
    border-radius: 3px 3px 0 0;
    background: #fff;
    color: #666;
}

.login-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 10px 20px;

}

.login-box .form-control-feedback {
    left: 0px;
}

.login-box-body .form-control-feedback {
    color: #999;
}

.login-box .has-feedback .form-control {
    padding-left: 33.5px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {

    color: #555555;
    background-color: #616261E6;
    border: 1px solid #eaeaea;
    box-shadow: 1px 0px 0px #c0bfbf4d;
    border-left: 4px solid #E7E7E7E6;
    border-left-width: 4px;
    border-left-color: #989898E6;
    border-right: 1px solid #ddd;
    padding-right: 0px;
    border-right: 3px solid #616261E6;
    border-radius: 0px;
    background: #f5f5f5;
    background-image: linear-gradient(to bottom, #fffdfd, #f3f3f3);
    border-right: none;
    border-left: none;

}

@media (max-width: 768px) {

    .panel.no-padding-right {
        padding-right: 15px !important;
        border-right: none;
    }

}

.nav-pills > li > a {

    font-weight: 500;
    color: #999;
}

.nav-pills > li > a:focus,
.nav-pills > li > a:hover {

    color: #777;
}

.panel-ballot {

    border-left: 1px solid #e4e4e4;
    min-height: 500px
}