@import url('https://fonts.googleapis.com/css?family=Share+Tech+Mono');
@import url(https://fonts.googleapis.com/css?family=Quantico:400,400italic,700,700italic);

html {
    font-size: 100%;
}

body {
    background: url(../images/opsuploader-background-black.jpg) no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    font-family: 'Quantico', sans-serif;
    padding-top: 70px;
}

/*navbar logo styles*/
.navbar-header {
    background-image: linear-gradient(to bottom, #2bb1df 0, #a4c2ff 100%);
    padding: 0px;
    height: 75px;
}

.navbar-brand-logo {
    position: absolute;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0;
    text-align: center;
    z-index: -1;
}

img.logo {
    height: 70px;
}

.nav-item-projects {
    position: relative;
    right: 54px;
}

.nav-item-new-project {
    position: relative;
    left: 60px;
}

.nav-item-user {
    position: absolute;
    right: 10px;
    /*z-index: -1;*/
    font-size: 12px;
}

    .nav-item-user a {
        line-height: 4.5;
    }

.nav-item-app-version {
    position: absolute;
    right: 25px;
    color: #ff0000c7;
}

.nav-link {
    background-color: #19492B;
    color: white !important;
    font-weight: bold;
    height: 75px;
    line-height: 3.5;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

    .nav-link:hover {
        background-color: #4c9a63;
    }

    .nav-link:active {
        background-image: none !important;
        outline: 0 !important;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
        box-shadow: inset 0 3px 5px rgba(1, 0, 0, 0.65) !important;
    }

/*Custom Styles*/
.container-fluid {
    width: 100%;
    max-width: none;
    padding-right: 1rem;
    padding-left: 1rem;
}

.custom-container {
    padding-top: 8px;
}

.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-bottom: 1rem;
}

    .grid.no-gap .row {
        margin-left: 0;
        margin-right: 0;
    }

        .grid.no-gap .row .cell,
        .grid.no-gap .row .stub {
            padding: 0;
        }

        .grid.no-gap .row + .row {
            margin-top: 0;
        }

.pull-left {
    float: left;
}

.no-padding {
    padding: 0 !important;
}

.hidden {
    display: none !important;
}

.custom-shadow {
    -webkit-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 2px 8px 0px rgba(0,0,0,0.4);
}

.custom-badge-information {
    line-height: 1.5;
    position: relative;
    top: 1px;
    color: #1d6f42;
    border-radius: 3px !important;
}

.btn-xs {
    padding: 1px 5px !important;
    font-size: 12px !important; 
    line-height: 1.5 !important;
    border-radius: 3px !important;
}

.btn.disabled, .btn:disabled,
.button.disabled, .button:disabled {
    cursor: auto;
    box-shadow: none !important;
    pointer-events: auto;
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn,
.button:disabled, .button.disabled, fieldset:disabled .button {
    pointer-events: none;
    opacity: 0.65;
}

.col-auto {
    width: auto;
}

.ellipses-td {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipses-div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tbl-content {
    font-size: 80%;
    overflow: auto;
}

.blocked-content {
    position: absolute;
    z-index: 1028;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, .6);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.bc-hidden {
    opacity: 0;
    pointer-events:none;
}

.modal-footer {
    justify-content: space-between !important;
}

/*
 * Component: Box
 * --------------
 */
.box {
    position: relative;
    border-radius: 3px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

    .box.box-primary {
        border-top-color: #3c8dbc;
    }

    .box.box-info {
        border-top-color: #00c0ef;
    }

    .box.box-danger {
        border-top-color: #dd4b39;
    }

    .box.box-warning {
        border-top-color: #f39c12;
    }

    .box.box-success {
        border-top-color: #00a65a;
    }

    .box.box-default {
        border-top-color: #d2d6de;
    }

    .box.collapsed-box .box-body,
    .box.collapsed-box .box-footer {
        display: none;
    }

    .box .nav-stacked > li {
        border-bottom: 1px solid #f4f4f4;
        margin: 0;
    }

        .box .nav-stacked > li:last-of-type {
            border-bottom: none;
        }

    .box.height-control .box-body {
        max-height: 300px;
        overflow: auto;
    }

    .box .border-right {
        border-right: 1px solid #f4f4f4;
    }

    .box .border-left {
        border-left: 1px solid #f4f4f4;
    }

    .box.box-solid {
        border-top: 0;
    }

        .box.box-solid > .box-header .btn.btn-default {
            background: transparent;
        }

        .box.box-solid > .box-header .btn:hover,
        .box.box-solid > .box-header a:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .box.box-solid.box-default {
            border: 1px solid #d2d6de;
        }

            .box.box-solid.box-default > .box-header {
                color: #444444;
                background: #d2d6de;
                background-color: #d2d6de;
            }

                .box.box-solid.box-default > .box-header a,
                .box.box-solid.box-default > .box-header .btn {
                    color: #444444;
                }

        .box.box-solid.box-primary {
            border: 1px solid #3c8dbc;
        }

            .box.box-solid.box-primary > .box-header {
                color: #ffffff;
                background: #3c8dbc;
                background-color: #3c8dbc;
            }

                .box.box-solid.box-primary > .box-header a,
                .box.box-solid.box-primary > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-info {
            border: 1px solid #00c0ef;
        }

            .box.box-solid.box-info > .box-header {
                color: #ffffff;
                background: #00c0ef;
                background-color: #00c0ef;
            }

                .box.box-solid.box-info > .box-header a,
                .box.box-solid.box-info > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-danger {
            border: 1px solid #dd4b39;
        }

            .box.box-solid.box-danger > .box-header {
                color: #ffffff;
                background: #dd4b39;
                background-color: #dd4b39;
            }

                .box.box-solid.box-danger > .box-header a,
                .box.box-solid.box-danger > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-warning {
            border: 1px solid #f39c12;
        }

            .box.box-solid.box-warning > .box-header {
                color: #ffffff;
                background: #f39c12;
                background-color: #f39c12;
            }

                .box.box-solid.box-warning > .box-header a,
                .box.box-solid.box-warning > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-success {
            border: 1px solid #00a65a;
        }

            .box.box-solid.box-success > .box-header {
                color: #ffffff;
                background: #00a65a;
                background-color: #00a65a;
            }

                .box.box-solid.box-success > .box-header a,
                .box.box-solid.box-success > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid > .box-header > .box-tools .btn {
            border: 0;
            box-shadow: none;
        }

        .box.box-solid[class*='bg'] > .box-header {
            color: #fff;
        }

    .box .box-group > .box {
        margin-bottom: 5px;
    }

    .box .knob-label {
        text-align: center;
        color: #333;
        font-weight: 100;
        font-size: 12px;
        margin-bottom: 0.3em;
    }

    .box > .overlay,
    .overlay-wrapper > .overlay,
    .box > .loading-img,
    .overlay-wrapper > .loading-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .box .overlay,
    .overlay-wrapper .overlay {
        z-index: 50;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 3px;
    }

        .box .overlay > .fa,
        .overlay-wrapper .overlay > .fa {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -15px;
            margin-top: -15px;
            color: #000;
            font-size: 30px;
        }

        .box .overlay.dark,
        .overlay-wrapper .overlay.dark {
            background: rgba(0, 0, 0, 0.5);
        }

.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
    content: " ";
    display: table;
}

.box-header:after,
.box-body:after,
.box-footer:after {
    clear: both;
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}

    .box-header.with-border {
        border-bottom: 1px solid #f4f4f4;
    }

.collapsed-box .box-header.with-border {
    border-bottom: none;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
    margin-right: 5px;
}

.box-header > .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

    .box-header > .box-tools [data-toggle="tooltip"] {
        position: relative;
    }

    .box-header > .box-tools.pull-right .dropdown-menu {
        right: 0;
        left: auto;
    }

.btn-box-tool {
    padding: 5px;
    font-size: 12px;
    background: transparent;
    color: #97a0b3;
}

    .open .btn-box-tool,
    .btn-box-tool:hover {
        color: #606c84;
    }

    .btn-box-tool.btn:active {
        box-shadow: none;
    }

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.no-header .box-body {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.box-body > .table {
    margin-bottom: 0;
}

.box-body .fc {
    margin-top: 5px;
}

.box-body .full-width-chart {
    margin: -19px;
}

.box-body.no-padding .full-width-chart {
    margin: -9px;
}

.box-body .box-pane {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 3px;
}

.box-body .box-pane-right {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
}

.box-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 1px solid #f4f4f4;
    padding: 10px;
    background-color: #ffffff;
}

.chart-legend {
    margin: 10px 0;
}

@media (max-width: 991px) {
    .chart-legend > li {
        float: left;
        margin-right: 10px;
    }
}

.box-comments {
    background: #f7f7f7;
}

    .box-comments .box-comment {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .box-comments .box-comment:before,
        .box-comments .box-comment:after {
            content: " ";
            display: table;
        }

        .box-comments .box-comment:after {
            clear: both;
        }

        .box-comments .box-comment:last-of-type {
            border-bottom: 0;
        }

        .box-comments .box-comment:first-of-type {
            padding-top: 0;
        }

        .box-comments .box-comment img {
            float: left;
        }

    .box-comments .comment-text {
        margin-left: 40px;
        color: #555;
    }

    .box-comments .username {
        color: #444;
        display: block;
        font-weight: 600;
    }

    .box-comments .text-muted {
        font-weight: 400;
        font-size: 12px;
    }

/*
 * Component: Box Custom Styles
 * --------------
 */
.box {
    margin-bottom: 10px;
}

    .box.box-without-top-border {
        border-top: 0px;
    }

    .box .box-body {
        box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
        border-radius: 0px;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        -o-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
        overflow: hidden;
        overflow-y: auto;
    }

@media (max-width: 575px) {
    .box .box-body {
        height: 500px;
    }
}

.box-body.grid {
    padding: 0px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.box-footer {
    padding-top: 4px;
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
}

.box-header.with-border {
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
}

.box .box-footer ul.pagination {
    margin: auto;
    height: 28px;
}

.box .box-header ul.pagination {
    margin: auto;
    padding-right: 10px;
    padding-top: 3px;
}

.box.box-grey-light {
    border-top-color: rgb(172,172,172);
}

.box.box-background-grey-light,
.box.box-background-grey-light .box-footer {
    background: rgb(232, 233, 234);
}

.box-footer .callout {
    padding: 7px 30px 7px 15px;
}

.box-custom-shadow {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
}

.box-custom-header {
    background: #1c92bb;
    color: white;
    text-align: center;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.with-border {
    border-bottom: 0px !important;
}

.box-title-h {
    margin-top: 0;
    margin-bottom: 0;
}

.box-body .account-actions div:nth-child(1) {
    text-align: left;
}

.box-body .account-actions div:nth-child(2) {
    text-align: center;
}

.box-body .account-actions div:nth-child(3) {
    text-align: right;
}

@media (max-width: 575px) {
    .box-body .account-actions div:nth-child(1),
    .box-body .account-actions div:nth-child(2),
    .box-body .account-actions div:nth-child(3) {
        text-align: center;
    }
}

/*
 * Component: Button
 * -----------------
 */
.btn {
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
}

    .btn.uppercase {
        text-transform: uppercase;
    }

    .btn.btn-flat {
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-width: 1px;
    }

    .btn:active {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn:focus {
        outline: none;
    }

    .btn.btn-file {
        position: relative;
        overflow: hidden;
    }

        .btn.btn-file > input[type='file'] {
            position: absolute;
            top: 0;
            right: 0;
            min-width: 100%;
            min-height: 100%;
            font-size: 100px;
            text-align: right;
            opacity: 0;
            filter: alpha(opacity=0);
            outline: none;
            background: white;
            cursor: inherit;
            display: block;
        }

.btn-default {
    background-color: #f4f4f4;
    color: #444;
    border-color: #ddd;
}

    .btn-default:hover,
    .btn-default:active,
    .btn-default.hover {
        background-color: #e7e7e7;
    }

.btn-primary {
    background-color: #3c8dbc !important;
    border-color: #367fa9 !important;
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary.hover {
        background-color: #367fa9 !important;
    }

.btn-success {
    background-color: #00a65a !important;
    border-color: #008d4c !important;
}

    .btn-success:hover,
    .btn-success:active,
    .btn-success.hover {
        background-color: #008d4c !important;
    }

.btn-info {
    background-color: #00c0ef !important;
    border-color: #00acd6 !important;
}

    .btn-info:hover,
    .btn-info:active,
    .btn-info.hover {
        background-color: #00acd6 !important;
    }

.btn-danger {
    background-color: #dd4b39 !important;
    border-color: #d73925 !important;
}

    .btn-danger:hover,
    .btn-danger:active,
    .btn-danger.hover {
        background-color: #d73925 !important;
    }

.btn-warning {
    background-color: #f39c12 !important;
    border-color: #e08e0b !important;
}

    .btn-warning:hover,
    .btn-warning:active,
    .btn-warning.hover {
        background-color: #e08e0b !important;
    }

.btn-outline {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

    .btn-outline:hover,
    .btn-outline:focus,
    .btn-outline:active {
        color: rgba(255, 255, 255, 0.7);
        border-color: rgba(255, 255, 255, 0.7);
    }

.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn[class*='bg-']:hover {
    -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.btn-app {
    border-radius: 3px;
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    font-size: 12px;
}

    .btn-app > .fa,
    .btn-app > .glyphicon,
    .btn-app > .ion {
        font-size: 20px;
        display: block;
    }

    .btn-app:hover {
        background: #f4f4f4;
        color: #444;
        border-color: #aaa;
    }

    .btn-app:active,
    .btn-app:focus {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    .btn-app > .badge {
        position: absolute;
        top: -3px;
        right: -10px;
        font-size: 10px;
        font-weight: 400;
    }

/*
 * Component: Button Custom Style
 * -----------------
 */
.btn-responsive {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    height: auto;
}

.btn-social-right {
    position: relative;
    padding-right: 44px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .btn-social-right > :first-child {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        line-height: 34px;
        font-size: 1.6em;
        text-align: center;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
    }

.btn-custom-mini {
    font-size: 16px;
    margin-bottom: 2px;
    padding: 1px 5px;
    line-height: 1.5;
    width: 30px;
}

.btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); */
}

    .btn-default:active, .btn-primary:active, .btn-success:active, .btn-info:active, .btn-warning:active, .btn-danger:active, .btn-default.active, .btn-primary.active, .btn-success.active, .btn-info.active, .btn-warning.active, .btn-danger.active {
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
    }

.btn:active, .btn.active {
    background-image: none !important;
    outline: 0 !important;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125) !important;
    box-shadow: inset 0 3px 5px rgba(1, 0, 0, 0.65) !important;
}

.btn {
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5) !important;
}

/*
 * Social Buttons for Bootstrap
 *
 * Copyright 2013-2015 Panayiotis Lipiridis
 * Licensed under the MIT License
 *
 * https://github.com/lipis/bootstrap-social
 */
.btn-social {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .btn-social > :first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        line-height: 34px;
        font-size: 1.6em;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

    .btn-social.btn-lg {
        padding-left: 61px;
    }

        .btn-social.btn-lg > :first-child {
            line-height: 45px;
            width: 45px;
            font-size: 1.8em;
        }

    .btn-social.btn-sm {
        padding-left: 38px;
    }

        .btn-social.btn-sm > :first-child {
            line-height: 28px;
            width: 28px;
            font-size: 1.4em;
        }

    .btn-social.btn-xs {
        padding-left: 30px;
    }

        .btn-social.btn-xs > :first-child {
            line-height: 20px;
            width: 20px;
            font-size: 1.2em;
        }

.btn-social-icon {
    position: relative;
    padding-left: 44px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
    width: 34px;
    padding: 0;
}

    .btn-social-icon > :first-child {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 32px;
        line-height: 34px;
        font-size: 1.6em;
        text-align: center;
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }

    .btn-social-icon.btn-lg {
        padding-left: 61px;
    }

        .btn-social-icon.btn-lg > :first-child {
            line-height: 45px;
            width: 45px;
            font-size: 1.8em;
        }

    .btn-social-icon.btn-sm {
        padding-left: 38px;
    }

        .btn-social-icon.btn-sm > :first-child {
            line-height: 28px;
            width: 28px;
            font-size: 1.4em;
        }

    .btn-social-icon.btn-xs {
        padding-left: 30px;
    }

        .btn-social-icon.btn-xs > :first-child {
            line-height: 20px;
            width: 20px;
            font-size: 1.2em;
        }

    .btn-social-icon > :first-child {
        border: none;
        text-align: center;
        width: 100%;
    }

    .btn-social-icon.btn-lg {
        height: 45px;
        width: 45px;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-social-icon.btn-sm {
        height: 30px;
        width: 30px;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-social-icon.btn-xs {
        height: 22px;
        width: 22px;
        padding-left: 0;
        padding-right: 0;
    }

.btn-adn {
    color: #ffffff;
    background-color: #d87a68;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-adn:focus,
    .btn-adn.focus {
        color: #ffffff;
        background-color: #ce563f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-adn:hover {
        color: #ffffff;
        background-color: #ce563f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-adn:active,
    .btn-adn.active,
    .open > .dropdown-toggle.btn-adn {
        color: #ffffff;
        background-color: #ce563f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-adn:active,
    .btn-adn.active,
    .open > .dropdown-toggle.btn-adn {
        background-image: none;
    }

    .btn-adn .badge {
        color: #d87a68;
        background-color: #ffffff;
    }

.btn-bitbucket {
    color: #ffffff;
    background-color: #205081;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-bitbucket:focus,
    .btn-bitbucket.focus {
        color: #ffffff;
        background-color: #163758;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-bitbucket:hover {
        color: #ffffff;
        background-color: #163758;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-bitbucket:active,
    .btn-bitbucket.active,
    .open > .dropdown-toggle.btn-bitbucket {
        color: #ffffff;
        background-color: #163758;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-bitbucket:active,
    .btn-bitbucket.active,
    .open > .dropdown-toggle.btn-bitbucket {
        background-image: none;
    }

    .btn-bitbucket .badge {
        color: #205081;
        background-color: #ffffff;
    }

.btn-dropbox {
    color: #ffffff;
    background-color: #1087dd;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-dropbox:focus,
    .btn-dropbox.focus {
        color: #ffffff;
        background-color: #0d6aad;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-dropbox:hover {
        color: #ffffff;
        background-color: #0d6aad;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-dropbox:active,
    .btn-dropbox.active,
    .open > .dropdown-toggle.btn-dropbox {
        color: #ffffff;
        background-color: #0d6aad;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-dropbox:active,
    .btn-dropbox.active,
    .open > .dropdown-toggle.btn-dropbox {
        background-image: none;
    }

    .btn-dropbox .badge {
        color: #1087dd;
        background-color: #ffffff;
    }

.btn-facebook {
    color: #ffffff;
    background-color: #3b5998;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-facebook:focus,
    .btn-facebook.focus {
        color: #ffffff;
        background-color: #2d4373;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-facebook:hover {
        color: #ffffff;
        background-color: #2d4373;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-facebook:active,
    .btn-facebook.active,
    .open > .dropdown-toggle.btn-facebook {
        color: #ffffff;
        background-color: #2d4373;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-facebook:active,
    .btn-facebook.active,
    .open > .dropdown-toggle.btn-facebook {
        background-image: none;
    }

    .btn-facebook .badge {
        color: #3b5998;
        background-color: #ffffff;
    }

.btn-flickr {
    color: #ffffff;
    background-color: #ff0084;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-flickr:focus,
    .btn-flickr.focus {
        color: #ffffff;
        background-color: #cc006a;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-flickr:hover {
        color: #ffffff;
        background-color: #cc006a;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-flickr:active,
    .btn-flickr.active,
    .open > .dropdown-toggle.btn-flickr {
        color: #ffffff;
        background-color: #cc006a;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-flickr:active,
    .btn-flickr.active,
    .open > .dropdown-toggle.btn-flickr {
        background-image: none;
    }

    .btn-flickr .badge {
        color: #ff0084;
        background-color: #ffffff;
    }

.btn-foursquare {
    color: #ffffff;
    background-color: #f94877;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-foursquare:focus,
    .btn-foursquare.focus {
        color: #ffffff;
        background-color: #f71752;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-foursquare:hover {
        color: #ffffff;
        background-color: #f71752;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-foursquare:active,
    .btn-foursquare.active,
    .open > .dropdown-toggle.btn-foursquare {
        color: #ffffff;
        background-color: #f71752;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-foursquare:active,
    .btn-foursquare.active,
    .open > .dropdown-toggle.btn-foursquare {
        background-image: none;
    }

    .btn-foursquare .badge {
        color: #f94877;
        background-color: #ffffff;
    }

.btn-github {
    color: #ffffff;
    background-color: #444444;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-github:focus,
    .btn-github.focus {
        color: #ffffff;
        background-color: #2b2b2b;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-github:hover {
        color: #ffffff;
        background-color: #2b2b2b;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-github:active,
    .btn-github.active,
    .open > .dropdown-toggle.btn-github {
        color: #ffffff;
        background-color: #2b2b2b;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-github:active,
    .btn-github.active,
    .open > .dropdown-toggle.btn-github {
        background-image: none;
    }

    .btn-github .badge {
        color: #444444;
        background-color: #ffffff;
    }

.btn-google {
    color: #ffffff;
    background-color: #dd4b39;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-google:focus,
    .btn-google.focus {
        color: #ffffff;
        background-color: #c23321;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-google:hover {
        color: #ffffff;
        background-color: #c23321;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-google:active,
    .btn-google.active,
    .open > .dropdown-toggle.btn-google {
        color: #ffffff;
        background-color: #c23321;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-google:active,
    .btn-google.active,
    .open > .dropdown-toggle.btn-google {
        background-image: none;
    }

    .btn-google .badge {
        color: #dd4b39;
        background-color: #ffffff;
    }

.btn-instagram {
    color: #ffffff;
    background-color: #3f729b;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-instagram:focus,
    .btn-instagram.focus {
        color: #ffffff;
        background-color: #305777;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-instagram:hover {
        color: #ffffff;
        background-color: #305777;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-instagram:active,
    .btn-instagram.active,
    .open > .dropdown-toggle.btn-instagram {
        color: #ffffff;
        background-color: #305777;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-instagram:active,
    .btn-instagram.active,
    .open > .dropdown-toggle.btn-instagram {
        background-image: none;
    }

    .btn-instagram .badge {
        color: #3f729b;
        background-color: #ffffff;
    }

.btn-linkedin {
    color: #ffffff;
    background-color: #007bb6;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-linkedin:focus,
    .btn-linkedin.focus {
        color: #ffffff;
        background-color: #005983;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-linkedin:hover {
        color: #ffffff;
        background-color: #005983;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-linkedin:active,
    .btn-linkedin.active,
    .open > .dropdown-toggle.btn-linkedin {
        color: #ffffff;
        background-color: #005983;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-linkedin:active,
    .btn-linkedin.active,
    .open > .dropdown-toggle.btn-linkedin {
        background-image: none;
    }

    .btn-linkedin .badge {
        color: #007bb6;
        background-color: #ffffff;
    }

.btn-microsoft {
    color: #ffffff;
    background-color: #2672ec;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-microsoft:focus,
    .btn-microsoft.focus {
        color: #ffffff;
        background-color: #125acd;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-microsoft:hover {
        color: #ffffff;
        background-color: #125acd;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-microsoft:active,
    .btn-microsoft.active,
    .open > .dropdown-toggle.btn-microsoft {
        color: #ffffff;
        background-color: #125acd;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-microsoft:active,
    .btn-microsoft.active,
    .open > .dropdown-toggle.btn-microsoft {
        background-image: none;
    }

    .btn-microsoft .badge {
        color: #2672ec;
        background-color: #ffffff;
    }

.btn-openid {
    color: #ffffff;
    background-color: #f7931e;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-openid:focus,
    .btn-openid.focus {
        color: #ffffff;
        background-color: #da7908;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-openid:hover {
        color: #ffffff;
        background-color: #da7908;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-openid:active,
    .btn-openid.active,
    .open > .dropdown-toggle.btn-openid {
        color: #ffffff;
        background-color: #da7908;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-openid:active,
    .btn-openid.active,
    .open > .dropdown-toggle.btn-openid {
        background-image: none;
    }

    .btn-openid .badge {
        color: #f7931e;
        background-color: #ffffff;
    }

.btn-pinterest {
    color: #ffffff;
    background-color: #cb2027;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-pinterest:focus,
    .btn-pinterest.focus {
        color: #ffffff;
        background-color: #9f191f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-pinterest:hover {
        color: #ffffff;
        background-color: #9f191f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-pinterest:active,
    .btn-pinterest.active,
    .open > .dropdown-toggle.btn-pinterest {
        color: #ffffff;
        background-color: #9f191f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-pinterest:active,
    .btn-pinterest.active,
    .open > .dropdown-toggle.btn-pinterest {
        background-image: none;
    }

    .btn-pinterest .badge {
        color: #cb2027;
        background-color: #ffffff;
    }

.btn-reddit {
    color: #000000;
    background-color: #eff7ff;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-reddit:focus,
    .btn-reddit.focus {
        color: #000000;
        background-color: #bcddff;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-reddit:hover {
        color: #000000;
        background-color: #bcddff;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-reddit:active,
    .btn-reddit.active,
    .open > .dropdown-toggle.btn-reddit {
        color: #000000;
        background-color: #bcddff;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-reddit:active,
    .btn-reddit.active,
    .open > .dropdown-toggle.btn-reddit {
        background-image: none;
    }

    .btn-reddit .badge {
        color: #eff7ff;
        background-color: #000000;
    }

.btn-soundcloud {
    color: #ffffff;
    background-color: #ff5500;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-soundcloud:focus,
    .btn-soundcloud.focus {
        color: #ffffff;
        background-color: #cc4400;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-soundcloud:hover {
        color: #ffffff;
        background-color: #cc4400;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-soundcloud:active,
    .btn-soundcloud.active,
    .open > .dropdown-toggle.btn-soundcloud {
        color: #ffffff;
        background-color: #cc4400;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-soundcloud:active,
    .btn-soundcloud.active,
    .open > .dropdown-toggle.btn-soundcloud {
        background-image: none;
    }

    .btn-soundcloud .badge {
        color: #ff5500;
        background-color: #ffffff;
    }

.btn-tumblr {
    color: #ffffff;
    background-color: #2c4762;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-tumblr:focus,
    .btn-tumblr.focus {
        color: #ffffff;
        background-color: #1c2d3f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-tumblr:hover {
        color: #ffffff;
        background-color: #1c2d3f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-tumblr:active,
    .btn-tumblr.active,
    .open > .dropdown-toggle.btn-tumblr {
        color: #ffffff;
        background-color: #1c2d3f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-tumblr:active,
    .btn-tumblr.active,
    .open > .dropdown-toggle.btn-tumblr {
        background-image: none;
    }

    .btn-tumblr .badge {
        color: #2c4762;
        background-color: #ffffff;
    }

.btn-twitter {
    color: #ffffff;
    background-color: #55acee;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-twitter:focus,
    .btn-twitter.focus {
        color: #ffffff;
        background-color: #2795e9;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-twitter:hover {
        color: #ffffff;
        background-color: #2795e9;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-twitter:active,
    .btn-twitter.active,
    .open > .dropdown-toggle.btn-twitter {
        color: #ffffff;
        background-color: #2795e9;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-twitter:active,
    .btn-twitter.active,
    .open > .dropdown-toggle.btn-twitter {
        background-image: none;
    }

    .btn-twitter .badge {
        color: #55acee;
        background-color: #ffffff;
    }

.btn-vimeo {
    color: #ffffff;
    background-color: #1ab7ea;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-vimeo:focus,
    .btn-vimeo.focus {
        color: #ffffff;
        background-color: #1295bf;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vimeo:hover {
        color: #ffffff;
        background-color: #1295bf;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vimeo:active,
    .btn-vimeo.active,
    .open > .dropdown-toggle.btn-vimeo {
        color: #ffffff;
        background-color: #1295bf;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vimeo:active,
    .btn-vimeo.active,
    .open > .dropdown-toggle.btn-vimeo {
        background-image: none;
    }

    .btn-vimeo .badge {
        color: #1ab7ea;
        background-color: #ffffff;
    }

.btn-vk {
    color: #ffffff;
    background-color: #587ea3;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-vk:focus,
    .btn-vk.focus {
        color: #ffffff;
        background-color: #466482;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vk:hover {
        color: #ffffff;
        background-color: #466482;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vk:active,
    .btn-vk.active,
    .open > .dropdown-toggle.btn-vk {
        color: #ffffff;
        background-color: #466482;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-vk:active,
    .btn-vk.active,
    .open > .dropdown-toggle.btn-vk {
        background-image: none;
    }

    .btn-vk .badge {
        color: #587ea3;
        background-color: #ffffff;
    }

.btn-yahoo {
    color: #ffffff;
    background-color: #720e9e;
    border-color: rgba(0, 0, 0, 0.2);
}

    .btn-yahoo:focus,
    .btn-yahoo.focus {
        color: #ffffff;
        background-color: #500a6f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-yahoo:hover {
        color: #ffffff;
        background-color: #500a6f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-yahoo:active,
    .btn-yahoo.active,
    .open > .dropdown-toggle.btn-yahoo {
        color: #ffffff;
        background-color: #500a6f;
        border-color: rgba(0, 0, 0, 0.2);
    }

    .btn-yahoo:active,
    .btn-yahoo.active,
    .open > .dropdown-toggle.btn-yahoo {
        background-image: none;
    }

    .btn-yahoo .badge {
        color: #720e9e;
        background-color: #ffffff;
    }

/*
    Discord Skin
*/
/* Discord Skin */
.discord-skin {
    /*background: #555 !important;*/
}

    .discord-skin ::-webkit-scrollbar-track:hover {
        background-color: gray !important
    }

    .discord-skin ::-webkit-scrollbar-thumb {
        background-color: #a29c9c !important;
        border-radius: 16px !important;
        border: 5px solid #656262 !important;
    }

        .discord-skin ::-webkit-scrollbar-thumb:hover {
            background-color: #a0a0a5 !important;
            border: 4px solid gray !important;
        }

    .discord-skin .h-menu {
        background-color: #36393F !important;
        color: #ffffff !important;
    }

        .discord-skin .h-menu > li:hover {
            background-color: #000000;
        }

        .discord-skin .h-menu > li > a.dropdown-toggle::before {
            border-color: white;
        }

    .discord-skin .custom-panel {
        border-color: gray !important;
    }

    .discord-skin .h-menu .mega-container {
        background: #a0a0a5 !important;
    }

    .discord-skin .table thead {
        border-color: #000000 !important;
    }

    .discord-skin .selected {
        -webkit-box-shadow: 0 0 0 1px #6d6d6d !important;
        box-shadow: 0 0 0 1px #6d6d6d !important;
        background-color: #6d6d6d;
    }

        .discord-skin .selected::before {
            content: none;
        }

        .discord-skin .selected::after {
            border-top: 28px solid #6d6d6d !important;
            border-left: 28px solid transparent !important;
            content: none;
        }

    /*.discord-skin ul.fancytree-container {
        background-color: transparent !important;
    }

        .discord-skin ul.fancytree-container .fancytree-title {
            color: white !important;
        }

        .discord-skin ul.fancytree-container span.fancytree-title:hover {
            background-color: #7a8ca0;
            border-color: #B8D6FB;
        }

        .discord-skin ul.fancytree-container span.fancytree-active span.fancytree-title {
            border: 1px solid #99DEFD;
            background-color: #7f8b90;
        }*/

    .discord-skin .panel-header {
        background-color: #40444B !important;
        color: #ffffff !important;
    }

    .discord-skin .panel .panel-title {
        background-color: #52555d !important;
        border-color: gray !important;
    }

    .discord-skin .panel .panel-footer {
        background-color: #40444B !important;
        color: #ffffff !important;
    }

    /*.discord-skin .panel .remark,*/
    .discord-skin .panel .container-fluid {
        color: white !important;
        border-right-color: gray !important;
        border-top-color: gray !important;
        border-bottom-color: gray !important;
    }

    .discord-skin input[type=text],
    .discord-skin input[type=password],
    .discord-skin input[type=tel],
    .discord-skin input[type=datetime-local],
    .discord-skin input[type=email],
    .discord-skin input[type=file],
    .discord-skin input[type=month],
    .discord-skin input[type=number],
    .discord-skin input[type=search],
    .discord-skin input[type=time],
    .discord-skin input[type=url],
    .discord-skin input[type=week],
    .discord-skin input[type=file],
    .discord-skin select,
    .discord-skin textarea,
    .discord-skin .file,
    .discord-skin .input,
    .discord-skin .textarea,
    .discord-skin .select,
    .discord-skin .tag-input,
    .discord-skin .spinner {
        background-color: #ffffff;
    }

    .discord-skin .button.primary,
    .discord-skin .command-button.primary {
        outline-color: #656565 !important;
        background-color: #36393F !important;
        color: #ffffff !important;
    }

        .discord-skin .button.primary:active,
        .discord-skin .command-button.primary:active,
        .discord-skin .button.primary:focus,
        .discord-skin .command-button.primary:focus {
            -webkit-box-shadow: 0 0 0 3px gray !important;
            box-shadow: 0 0 0 3px gray !important;
        }

        .discord-skin .button.primary:hover,
        .discord-skin .command-button.primary:hover {
            color: #ffffff !important;
            background-color: #717682 !important;
            border-color: #858b96 !important;
        }

    .discord-skin .image-button:hover {
        color: #ffffff !important;
        background-color: #656262 !important;
        border-color: #656262 !important;
    }

    .discord-skin .image-button.active {
        color: #ffffff !important;
        background-color: #656262 !important;
        border-color: #656262 !important;
    }

    .discord-skin .t-menu {
        background-color: #51555a !important;
        color: #ffffff !important;
    }

        .discord-skin .t-menu .dropdown-toggle:after {
            border-color: transparent transparent rgba(255, 255, 255, 0.5) transparent;
        }

        .discord-skin .t-menu .item-selected {
            background-color: #333131 !important;
            color: #737373 !important;
        }

        .discord-skin .t-menu.compact li a {
            padding: 0 .85rem !important;
            line-height: 43px !important;
        }

        .discord-skin .t-menu .d-menu {
            background-color: #51555a !important;
            color: #ffffff !important;
            opacity: .82;
        }

    .discord-skin .card .card-content {
        background-color: #808080 !important;
    }

        .discord-skin .card .card-content label {
            color: #000000 !important;
        }

    .discord-skin .card .card-header,
    .discord-skin .card .card-footer,
    .discord-skin .card .card-footer .d-menu {
        background-color: #33353a !important;
        color: #ffffff !important;
    }

        .discord-skin .card .card-footer .d-menu .divider {
            background-color: #ffffff !important;
        }

        .discord-skin .card .card-footer .flat-button {
            color: #ffffff !important;
        }

            .discord-skin .card .card-footer .flat-button:disabled {
                color: #A8AAAD !important;
                cursor: not-allowed;
            }

    .discord-skin .annotation-content .listview {
        background-color: transparent !important;
    }

        .discord-skin .annotation-content .listview li {
            /*color: white !important;*/
        }

            .discord-skin .annotation-content .listview li:hover {
                background-color: rgba(227, 228, 229, 0.7) !important;
            }

.listview .node.current-select {
    background-color: transparent !important;
    color: white !important;
}

.discord-skin .dialog.info .dialog-title {
    background-color: #36393F !important;
    border-bottom-color: gray !important;
    color: #ffffff !important;
}

.discord-skin .dialog * + .dialog-content {
    background-color: #52555d !important;
}

.discord-skin .dialog.info .dialog-actions {
    background-color: #52555d !important;
    border-top-color: gray !important;
    color: #ffffff !important;
}

.discord-skin .dialog * + .dialog-content table tr th,
.discord-skin .dialog * + .dialog-content table tr td {
    color: #000000 !important;
    border: 1px solid black !important;
}

.discord-skin .dialog.info {
    border: 1px solid gray !important;
}

.discord-skin .hint,
.discord-skin .tooltip {
    background-color: #36393F !important;
    border-bottom-color: gray !important;
    color: #ffffff !important;
}


/*
    Metro Styles
*/
.panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #dfdfdf;
}

    .panel .panel-title,
    .panel .panel-content,
    .panel .panel-footer {
        position: relative;
    }

    .panel .panel-title,
    .panel .panel-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        height: 2.625rem;
        border-bottom: 1px solid #dfdfdf;
        line-height: 2.625rem;
        cursor: default;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .panel .panel-footer {
        order: 3;
        border-bottom: 0px;
    }

        .panel .panel-title .icon,
        .panel .panel-footer .icon {
            -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
            order: 1;
            height: 2.625rem;
            line-height: 2.625rem;
            width: 2.625rem;
            border-right: 1px solid #dfdfdf;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            color: inherit;
            text-align: center;
            font-size: 28px;
        }

        .panel .panel-title img.icon,
        .panel .panel-footer img.icon {
            padding: 0.625rem;
        }

        .panel .panel-title .caption,
        .panel .panel-footer .caption {
            -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
            order: 2;
            width: 100%;
            padding: 0 0.8125rem;
            color: inherit;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .panel .panel-title .dropdown-toggle,
        .panel .panel-footer .dropdown-toggle {
            -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
            order: 4;
            height: 100%;
            width: 2.625rem;
            border-left: 1px solid #dfdfdf;
            -ms-flex-negative: 0;
            flex-shrink: 0;
        }

        .panel .panel-title .btn-custom,
        .panel .panel-footer .btn-custom {
            /*width: 42px;*/
            width:auto;
            height: 42px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: relative;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .panel .panel-title .btn-custom > span,
            .panel .panel-footer .btn-custom > span {
                line-height: 1;
                width: 28px;
                height: 28px;
                font-size: 28px;
                pointer-events: none;
            }

    .panel .panel-content {
        display: block;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        height: auto;
        padding: 0.5rem;
    }

.button,
.flat-button,
.action-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0 0.75rem;
    font-size: 0.875rem;
    line-height: 34px;
    height: 42px;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    background-color: #ebebeb;
    color: #1d1d1d;
    cursor: pointer;
    outline: none;
    position: relative;
}

.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.no-shadow-text {
    text-shadow: none !important;
}

.simple-shadow {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.drop-shadow {
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
}

.win-shadow {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.ribbon-shadow {
    -webkit-box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7);
    box-shadow: 2px 2px 2px 0 rgba(227, 228, 229, 0.7);
}

.shadow-1 {
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.shadow-2 {
    -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}

.shadow-3 {
    -webkit-box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19), 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

.shadow-4 {
    -webkit-box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21), 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}

.shadow-5 {
    -webkit-box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22), 0 27px 24px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22), 0 27px 24px 0 rgba(0, 0, 0, 0.2);
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.fg-white {
    color: #ffffff !important;
}

.fg-black {
    color: #000000 !important;
}

.row.no-gap {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

.downloader-action-buttons {
    position: absolute;
    z-index: 1023;
}

    .downloader-action-buttons.right {
        right: 0px;
    }

.row > * {
    position:relative;
}

.hint,
.tooltip {
    -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.4);
    display: block;
    position: fixed;
    z-index: 1070;
    background-color: #fffcc0;
    color: #1d1d1d;
    font-size: 1rem;
    max-width: 13.75rem;
    padding: 0.325rem;
}

.tooltip-arrow {
    display: none !important;
}

.tooltip-inner {
    background-color: transparent !important;
    font-family: 'Quantico', sans-serif;
    font-weight: bold;
}

/* ========================================================================
 * Custom form elements
 *    - Checkbox 
 *    - Radios
 *    - Switch
 *    - Rounded inputs
 ========================================================================== */
.c-checkbox,
.c-radio {
    margin-right: 4px;
}

    .c-checkbox *,
    .c-radio * {
        cursor: pointer;
    }

    .c-checkbox input,
    .c-radio input {
        opacity: 0;
        position: absolute;
        margin-left: 0 !important;
    }

    .c-checkbox span,
    .c-radio span {
        position: relative;
        display: inline-block;
        vertical-align: top;
        margin-left: 0px;
        width: 20px;
        height: 20px;
        border-radius: 2px;
        border: 1px solid #ccc;
        margin-right: 5px;
    }

    .c-checkbox:hover span,
    .c-radio:hover span {
        border-color: #1c75bf;
    }

.form-inline .c-checkbox span,
.form-inline .c-radio span {
    margin-left: 0;
}

.c-checkbox.c-checkbox-rounded span,
.c-radio.c-checkbox-rounded span,
.c-checkbox.c-radio-rounded span,
.c-radio.c-radio-rounded span {
    border-radius: 500px;
}
/* override for radio */
.c-radio span {
    border-radius: 500px;
}
    /* the icon */
    .c-checkbox span:before,
    .c-radio span:before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        text-align: center !important;
        font-size: 12px;
        line-height: 18px;
        vertical-align: middle;
    }

.c-checkbox-small span:before,
.c-radio-small span:before {
    line-height: 15px;
}
/* Checked state */
input[type=checkbox]:checked ~ span:before,
input[type=radio]:checked ~ span:before {
    color: #fff;
    opacity: 1;
    transition: color 0.3s ease-out;
}

input[type=checkbox]:checked ~ span,
input[type=radio]:checked ~ span {
    border-color: #1c75bf;
    background-color: #1c75bf;
}
/* override for radio */
input[type=radio]:checked ~ span {
    background-color: #fff;
}

    input[type=radio]:checked ~ span:before {
        color: #1c75bf;
    }
/* Disable state */
input[type=checkbox]:disabled ~ span,
input[type=radio]:disabled ~ span {
    border-color: #ddd !important;
    background-color: #ddd !important;
}
/* override for radio */
input[type=radio]:disabled ~ span {
    background-color: #fff !important;
}

    input[type=radio]:disabled ~ span:before {
        color: #ddd;
    }

.form-control-rounded {
    border-radius: 100px;
}

.switch * {
    cursor: pointer;
}

.switch input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.switch span {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 100px;
    transition: all .5s;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
}

    .switch span:after {
        content: "";
        position: absolute;
        background-color: #fff;
        top: 0;
        left: 0;
        height: 28px;
        width: 28px;
        border: 1px solid #ddd;
        border-radius: 400px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        -webkit-transition: all .2s;
    }

.switch input:checked ~ span {
    background-color: #1c75bf;
    border-color: #1c75bf;
    transition: all .5s;
}

    .switch input:checked ~ span:after {
        left: 50%;
        transition: all .2s;
    }

/*
 * Component: Nav
 * --------------
 */
.nav {
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav > li > a:hover,
    .nav > li > a:active,
    .nav > li > a:focus {
        color: #444;
        background: #f7f7f7;
    }
/* NAV PILLS */
.nav-pills > li > a {
    border-radius: 0;
    border-top: 3px solid transparent;
    color: #444;
}

    .nav-pills > li > a > .fa,
    .nav-pills > li > a > .glyphicon,
    .nav-pills > li > a > .ion {
        margin-right: 5px;
    }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    border-top-color: #3c8dbc;
}

.nav-pills > li.active > a {
    font-weight: 600;
}
/* NAV STACKED */
.nav-stacked > li > a {
    border-radius: 0;
    border-top: 0;
    border-left: 3px solid transparent;
    color: #444;
}

.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover {
    background: transparent;
    color: #444;
    border-top: 0;
    border-left-color: #3c8dbc;
}

.nav-stacked > li.header {
    border-bottom: 1px solid #ddd;
    color: #777;
    margin-bottom: 10px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

/*======================================*/
/*    Styles for animation loading.    */
/*====================================*/
.load-bar {
    position: relative;
    width: 100%;
    height: 1.8em;
    background-color: #eee;
}

.bar {
    content: "";
    display: inline;
    position: absolute;
    width: 0;
    height: 100%;
    left: 50%;
    text-align: center;
}

    .bar:nth-child(1) {
        background-color: #eee;
        animation: load-loading 3s linear infinite;
    }

    .bar:nth-child(2) {
        background-color: #e6e5e5;
        animation: load-loading 3s linear 1s infinite;
    }

    .bar:nth-child(3) {
        background-color: #d6d6d6;
        animation: load-loading 3s linear 2s infinite;
    }

@keyframes load-loading {
    from {
        left: 50%;
        width: 0;
        z-index: 100;
    }

    33.3333% {
        left: 0;
        width: 100%;
        z-index: 10;
    }

    to {
        left: 0;
        width: 100%;
    }
}

.loader {
    height: 4px;
    width: 100%;
    top: 75px;
    position: fixed;
    overflow: hidden;
    background-color: #ddd;
    z-index: 1035;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

    .loader.active {
        opacity: 1;
    }

    .loader:before {
        display: block;
        position: absolute;
        content: "";
        left: -200px;
        width: 200px;
        height: 4px;
        background-color: #2980b9;
        animation: loader-loading 2s linear infinite;
    }

@keyframes loader-loading {
    from {
        left: -200px;
        width: 30%;
    }

    50% {
        width: 30%;
    }

    70% {
        width: 70%;
    }

    80% {
        left: 50%;
    }

    95% {
        left: 120%;
    }

    to {
        left: 100%;
    }
}

/*
    resumable upload container
*/
.uploader-container {
    height: 400px;
    border: 3px dashed gray;
}

.uploader-text {
    font-family: Arial;
    font-size: 25px;
    color: gray;
}

.uploader-text-small {
    width: 100%;
    display: block;
    font-family: Arial;
    font-size: 12px;
    font-weight: bold;
    color: #ff3f3f;
}

#charge-file, #file-to-upload {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*
    callout Custom Component Styles
*/
.bd-callout {
    padding: 0.25rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    background-color: rgb(97 97 97 / 8%);
    border-left: 0.25rem solid rgb(89 89 89 / 50%);
}

    .bd-callout h4 {
        margin-bottom: .25rem
    }

    .bd-callout > :last-child {
        margin-bottom: 0
    }

    .bd-callout + .bd-callout {
        margin-top: -.25rem
    }

    .bd-callout .highlight {
        background-color: rgba(0,0,0,0.05)
    }

.bd-callout-info {
    background-color: rgb(13 202 240 / 8%);
    border-left: 0.25rem solid rgb(13 202 240 / 50%);
}

.bd-callout-warning {
    background-color: rgb(255 193 7 / 8%);
    border-left: 0.25rem solid rgb(255 193 7 / 50%);
}

.bd-callout-danger {
    background-color: rgb(220 53 69 / 8%);
    border-left: 0.25rem solid rgb(220 53 69 / 50%);
}