body {
    font-family: 'Hind', sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    color: #3d3d50;
    font-weight: 300;
    background: #ffffff;
}

/* --------------------------------------
 * Global Typography
 *------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #2b2b3d;
}

h1 {
    font-size: 26px;
    line-height: 1.8em;
    font-weight: 700;
}

h2 {
    font-size: 18px;
    line-height: 1.8em;
    font-weight: 700;
}

h3 {
    font-size: 16px;
    line-height: 1.8em;
    font-weight: 500;
}

h4 {
    font-size: 15px;
    line-height: 1.8em;
    font-weight: 500;
}

h5 {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 500;
}

h6 {
    font-size: 15px;
    line-height: 1.5em;
}

/* --------------------------------------
 * LINK STYLE
 *------------------------------------------*/
a {
    color: #2a54f5;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a,
a:active,
a:focus,
a:active {
    text-decoration: none;
    outline: none
}

a:hover,
a:focus {
    text-decoration: none;
    color: #2a54f5;
}

p {
    margin-bottom: 20px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*------------------
 * Button Style
 *------------------*/
.btn {
    padding: 14px 30px 11px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
}

.btn-lg {
    font-weight: 700;
    font-size: 24px;
    padding: 15px 30px;
}

/*btn-primary*/
.btn-primary {
    background-color: #2a54f5;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background: #1e3eb5;
}

/*btn-default*/
.btn-default {
    color: #2a54f5;
    background-color: transparent;
    border: 2px solid #2a54f5;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active:focus {
    background: #2a54f5;
    color: #ffffff;
    border-color: #2a54f5;
}

button:focus,
.btn:focus,
.btn:active:focus {
    outline: none;
}

.btn-more {
    background-color: transparent !important;
    border: 2px solid #2a54f5;
    color: #2a54f5 !important;
    margin-top: 20px;
}
.btn-more:hover,
.btn-more:focus,
.btn-more:active:focus {
    color: #2a54f5 !important;
    border-color: #2a54f5 !important;
}

/* --------------------
 * Column Block
 * -------------------*/

.columns-block {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: space-around;
}

.blocks {
    box-sizing: border-box;
}

.left-col-block {
    width: 50%;
    text-align: center;
    overflow: hidden;
    position: fixed;
    left: 0;
}

.right-col-block {
    width: 50%;
    position: absolute;
    right: 0;
    box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.23);
}

@media (max-width: 600px) {
    .left-col-block {
        width: 100%;
        position: relative;
    }

    .right-col-block {
        width: 100%;
        position: relative;
        box-shadow: none;
    }
}

/* --------------------
 * Section Background
 * -------------------*/

.gray-bg {
    background-color: #f9f9f9;
}

/* --------------------
 *  main Wrapper
 * -------------------*/
#main-wrapper {
    background: #ffffff;
    overflow: hidden;
}

/*-------------------
 * Section Wrapper
 *-------------------*/
.section-wrapper {
    padding: 50px;
}

@media (max-width: 480px) {
    .section-wrapper {
        padding: 30px 20px;
    }
}

/*---------------------------
* Section Title
*---------------------------*/
.section-title {
    margin-bottom: 15px;
}

.section-title h2 {
    margin-bottom: 5px;
    color: #bebece;
}

/*---------------------------
* Section Title
*---------------------------*/
.section-contact {
    background-image: url(../img/map.png);
    background-position: center;
    background-repeat: no-repeat;
}

.section-title h2 {
    margin-bottom: 5px;
    color: #bebece;
}

/*-----------------------------
 * NAVIGATION & HEADER STYLE
 *-------------------------------*/

.header {
    padding: 0;
    margin: 0;
    height: 100vh;
    vertical-align: middle;
    position: relative;
}

.header .profile-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url(../img/profile.jpg);
    background-size: cover;
    background-position: center top;
}

.header .profile-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            -30deg,
            rgba(42, 84, 245, 0.5) 0%,
            rgba(42, 84, 245, 0.5) 40%,
            transparent 60%,
            transparent 100%
    );
}

.header .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10%;
}

.header .content h1 {
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
    margin: 0;
}

.header .content p {
    font-size: 18px;
    color: #ffffff;
}

.header .btn {
    margin-top: 40px;
}

.header .content .social-icon {
    margin: 0;
    padding: 0;
    display: block;
}

.header .content .social-icon li {
    display: inline-block;
    margin: 0 2px;
}

.header .content .social-icon li a {
    display: block;
    font-size: 12px;
    color: #ffffff;
    width: 34px;
    height: 34px;
    line-height: 33px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid rgba(255, 255, 255, .2);
}

.header .content .social-icon li a:hover {
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .header .profile-img {
        z-index: 1;
    }

    .header .content {
        z-index: 2;
    }
}

/*-------------------
 * Intro
 *-------------------*/

.intro {
}

/*-------------------
 * Expertise
 *-------------------*/
.expertise-item {
    margin-bottom: 20px;
}

.expertise-item h3 {
    margin-bottom: 5px;
    font-weight: 700;
}

/*-------------------
 * Skills Progressbar
 *-------------------*/

.progress-item {
    position: relative;
}

.progress-item .progress-title {
    font-size: 15px;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 5px;
}

.progress-item .progress {
    height: 4px;
    box-shadow: none;
    border-radius: 5px;
}

.progress-item .progress-bar {
    background-color: #2a54f5;
    box-shadow: none;
    text-align: right;
}

.progress-item .progress-percent {
    font-size: 10px;
    background-color: #313131;
    position: absolute;
    top: 5px;
    padding: 0 8px;
    border-radius: 3px;
}

.progress-item .progress-percent::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    border-top: 6px solid #313131;
    border-right: 8px solid transparent;
}

/*-------------------
 * Portfolio
 *-------------------*/

.portfolio-item {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.portfolio-item .portfolio-thumb img {
    height: auto;
    display: block;
    max-width: 100%;
}

.portfolio-item .portfolio-info {
    position: absolute;
    bottom: 0;
    padding: 30px 15px 5px;
    width: 100%;
    background: -webkit-linear-gradient(
            top,
            transparent 0%,
            rgba(0, 0, 0, 0.5) 100%
    );
}

.portfolio-item .portfolio-info h3 {
    margin: 0;
    line-height: 1;
    color: #ffffff;
}

.portfolio-item .portfolio-info small {
    color: #ffffff;
}

.portfolio-item:hover .portfolio-info {
    background: -webkit-linear-gradient(
            top,
            transparent 0%,
            rgba(42, 84, 245, 0.5) 100%
    );
}

/*-------------------
 * Content Item
 *-------------------*/

.content-item {
    margin-bottom: 40px;
}

.content-item h3 {
    margin: 0 0 10px;
    line-height: 1;
    font-weight: bold;
    text-transform: uppercase;
}

.content-item h4 {
    margin: 0;
    line-height: 1;
}

.content-item small {
    color: #888888;
}

/*-------------------
 * Contact
 *-------------------*/

.feedback-form {
    margin-top: 50px;
}

/*-------------------
 * Form Style
 *-------------------*/
.form-control {
    height: 50px;
    padding: 0 20px;
    font-size: 13px;
    line-height: 50px;
    color: #969595;
    border: 1px solid #cccccc;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
}

/* --------------------------------------------
 *   Footer
 *---------------------------------------------- */

/* Copyright */

.footer {
    padding: 10px 50px;
}

.footer .copyright-section {
    font-size: 13px;
    color: #888888;

}

.footer .copyright-section .copy-text {
    font-weight: 400;
    display: block;
}

@media (max-width: 480px) {
    .footer {
        padding: 10px 20px;
    }
}

/* ====================
 * Preloader
 * ====================*/
#preloader {
    background: #181a1b;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

#status,
.status-mes {
    background-image: url(../img/puff.svg);
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    position: absolute;
    top: 50%;
    width: 200px;
}

.status-mes {
    background: none;
    left: 0;
    margin: 0;
    text-align: center;
    top: 65%;
}

/*
                        _______
                       /       \
                      .==.    .==.
                     ((  ))==((  ))
                    / "=="    "=="\
                   /____|| || ||___\
       ________     ____    ________  ___    ___
       |  ___  \   /    \   |  ___  \ |  |  /  /
       |  |  \  \ /  /\  \  |  |  \  \|  |_/  /
       |  |   )  /  /__\  \ |  |__/  /|  ___  \
       |  |__/  /  ______  \|  ____  \|  |  \  \
_______|_______/__/ ____ \__\__|___\__\__|___\__\____
|  ___  \ |  ____/ /    \   |  ___  \ |  ____|  ___  \
|  |  \  \|  |___ /  /\  \  |  |  \  \|  |___|  |  \  \
|  |__/  /|  ____/  /__\  \ |  |   )  |  ____|  |__/  /
|  ____  \|  |__/  ______  \|  |__/  /|  |___|  ____  \
|__|   \__\____/__/      \__\_______/ |______|__|   \__\
                https://darkreader.org
*/
/* User-Agent Style */
html {
    background-color: #181a1b !important;
}

html, body, input, textarea, select, button {
    background-color: #181a1b;
}

html, body, input, textarea, select, button {
    border-color: #736b5e;
    color: #e8e6e3;
}

a {
    color: #3391ff;
}

table {
    border-color: #545b5e;
}

::placeholder {
    color: #b2aba1;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: #555b00 !important;
    color: #e8e6e3 !important;
}

::-webkit-scrollbar {
    background-color: #202324;
    color: #aba499;
}

::-webkit-scrollbar-thumb {
    background-color: #454a4d;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #575e62;
}

::-webkit-scrollbar-thumb:active {
    background-color: #484e51;
}

::-webkit-scrollbar-corner {
    background-color: #181a1b;
}

* {
    scrollbar-color: #202324 #454a4d;
}

::selection {
    background-color: #004daa !important;
    color: #e8e6e3 !important;
}

::-moz-selection {
    background-color: #004daa !important;
    color: #e8e6e3 !important;
}

/* Invert Style */
.jfk-bubble.gtx-bubble, embed[type="application/pdf"] {
    filter: invert(100%) hue-rotate(180deg) contrast(90%) !important;
}

/* Override Style */
.vimvixen-hint {
    background-color: #7b5300 !important;
    border-color: #d8b013 !important;
    color: #f3e8c8 !important;
}

::placeholder {
    opacity: 0.5 !important;
}

/* Variables Style */
:root {
    --darkreader-neutral-background: #181a1b;
    --darkreader-neutral-text: #e8e6e3;
    --darkreader-selection-background: #004daa;
    --darkreader-selection-text: #e8e6e3;
}

/* Modified CSS */
.fa-border {
    border-color: rgb(53, 57, 59);
}

.fa-inverse {
    color: rgb(232, 230, 227);
}

.sr-only {
    border-color: initial;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-color: initial;
}

abbr[title] {
    border-bottom-color: initial;
}

mark {
    color: rgb(232, 230, 227);
    background-image: initial;
    background-color: rgb(204, 204, 0);
}

img {
    border-color: initial;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
}

fieldset {
    border-color: rgb(66, 71, 74);
}

legend {
    border-color: initial;
}

html {
    -webkit-tap-highlight-color: rgba(232, 230, 227, 0);
}

body {
    color: rgb(200, 195, 188);
    background-color: rgb(24, 26, 27);
}

a {
    color: rgb(105, 166, 213);
    text-decoration-color: initial;
}

a:focus,
a:hover {
    color: rgb(141, 187, 223);
    text-decoration-color: initial;
}

a:focus {
    outline-color: rgb(186, 123, 0);
}

.img-thumbnail {
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

hr {
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-top-color: rgb(53, 57, 59);
}

.sr-only {
    border-color: initial;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    color: rgb(157, 148, 136);
}

.mark,
mark {
    background-color: rgb(63, 54, 7);
}

.text-muted {
    color: rgb(157, 148, 136);
}

.text-primary {
    color: rgb(105, 166, 213);
}

a.text-primary:focus,
a.text-primary:hover {
    color: rgb(129, 180, 220);
}

.text-success {
    color: rgb(139, 196, 140);
}

a.text-success:focus,
a.text-success:hover {
    color: rgb(162, 208, 164);
}

.text-info {
    color: rgb(117, 178, 208);
}

a.text-info:focus,
a.text-info:hover {
    color: rgb(144, 192, 217);
}

.text-warning {
    color: rgb(198, 171, 123);
}

a.text-warning:focus,
a.text-warning:hover {
    color: rgb(209, 187, 148);
}

.text-danger {
    color: rgb(194, 102, 100);
}

a.text-danger:focus,
a.text-danger:hover {
    color: rgb(204, 127, 126);
}

.bg-primary {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: rgb(32, 77, 115);
}

.bg-success {
    background-color: rgb(41, 60, 23);
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: rgb(56, 83, 31);
}

.bg-info {
    background-color: rgb(14, 48, 65);
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: rgb(19, 66, 90);
}

.bg-warning {
    background-color: rgb(63, 54, 7);
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: rgb(90, 77, 10);
}

.bg-danger {
    background-color: rgb(56, 22, 22);
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: rgb(79, 30, 30);
}

.page-header {
    border-bottom-color: rgb(53, 57, 59);
}

.list-unstyled {
    list-style-image: initial;
}

.list-inline {
    list-style-image: initial;
}

abbr[data-original-title],
abbr[title] {
    border-bottom-color: rgb(101, 94, 83);
}

blockquote {
    border-left-color: rgb(53, 57, 59);
}

blockquote .small,
blockquote footer,
blockquote small {
    color: rgb(157, 148, 136);
}

.blockquote-reverse,
blockquote.pull-right {
    border-right-color: rgb(53, 57, 59);
    border-left-color: initial;
}

code {
    color: rgb(221, 73, 110);
    background-color: rgb(43, 20, 26);
}

kbd {
    color: rgb(232, 230, 227);
    background-color: rgb(38, 42, 43);
    box-shadow: rgba(0, 0, 0, 0.25) 0 -1px 0 inset;
}

kbd kbd {
    box-shadow: none;
}

pre {
    color: rgb(200, 195, 188);
    background-color: rgb(30, 32, 33);
    border-color: rgb(62, 68, 70);
}

pre code {
    color: inherit;
    background-color: transparent;
}

table {
    background-color: transparent;
}

caption {
    color: rgb(157, 148, 136);
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    border-top-color: rgb(58, 62, 65);
}

.table > thead > tr > th {
    border-bottom-color: rgb(58, 62, 65);
}

.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th {
    border-top-color: initial;
}

.table > tbody + tbody {
    border-top-color: rgb(58, 62, 65);
}

.table .table {
    background-color: rgb(24, 26, 27);
}

.table-bordered {
    border-color: rgb(58, 62, 65);
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border-color: rgb(58, 62, 65);
}

.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: rgb(27, 30, 31);
}

.table-hover > tbody > tr:hover {
    background-color: rgb(30, 32, 33);
}

.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > thead > tr > td.active,
.table > thead > tr > th.active {
    background-color: rgb(30, 32, 33);
}

.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr.active:hover > th,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover {
    background-color: rgb(37, 40, 42);
}

.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > thead > tr > td.success,
.table > thead > tr > th.success {
    background-color: rgb(41, 60, 23);
}

.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr.success:hover > th,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover {
    background-color: rgb(48, 71, 27);
}

.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > thead > tr > td.info,
.table > thead > tr > th.info {
    background-color: rgb(14, 48, 65);
}

.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr.info:hover > th,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover {
    background-color: rgb(44, 48, 50);
}

.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > thead > tr > td.warning,
.table > thead > tr > th.warning {
    background-color: rgb(63, 54, 7);
}

.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr.warning:hover > th,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover {
    background-color: rgb(77, 65, 8);
}

.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > thead > tr > td.danger,
.table > thead > tr > th.danger {
    background-color: rgb(56, 22, 22);
}

.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr.danger:hover > th,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover {
    background-color: rgb(67, 26, 26);
}

@media screen and (max-width: 767px) {
    .table-responsive {
        border-color: rgb(58, 62, 65);
    }

    .table-responsive > .table-bordered {
        border-color: initial;
    }

    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > thead > tr > th:first-child {
        border-left-color: initial;
    }

    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > thead > tr > th:last-child {
        border-right-color: initial;
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom-color: initial;
    }
}

fieldset {
    border-color: initial;
}

legend {
    color: rgb(200, 195, 188);
    border-top-color: initial;
    border-right-color: initial;
    border-left-color: initial;
    border-bottom-color: rgb(55, 60, 62);
}

input[type="file"]:focus, input[type="checkbox"]:focus, input[type="radio"]:focus {
    outline-color: rgb(186, 123, 0);
}

output {
    color: rgb(178, 172, 162);
}

.form-control {
    color: rgb(178, 172, 162);
    background-color: rgb(24, 26, 27);
    background-image: none;
    border-color: rgb(62, 68, 70);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
}

.form-control:focus {
    border-color: rgb(19, 84, 135);
    outline-color: initial;
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset,
    rgba(20, 85, 136, 0.6) 0 0 8px;
}

.form-control::-webkit-input-placeholder {
    color: rgb(168, 160, 149);
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: rgb(34, 36, 38);
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
    color: rgb(139, 196, 140);
}

.has-success .form-control {
    border-color: rgb(68, 134, 69);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
}

.has-success .form-control:focus {
    border-color: rgb(73, 143, 75);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset,
    rgb(64, 125, 80) 0 0 6px;
}

.has-success .input-group-addon {
    color: rgb(139, 196, 140);
    background-color: rgb(41, 60, 23);
    border-color: rgb(68, 134, 69);
}

.has-success .form-control-feedback {
    color: rgb(139, 196, 140);
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
    color: rgb(198, 171, 123);
}

.has-warning .form-control {
    border-color: rgb(137, 108, 59);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
}

.has-warning .form-control:focus {
    border-color: rgb(148, 117, 64);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset,
    rgb(125, 98, 53) 0 0 6px;
}

.has-warning .input-group-addon {
    color: rgb(198, 171, 123);
    background-color: rgb(63, 54, 7);
    border-color: rgb(137, 108, 59);
}

.has-warning .form-control-feedback {
    color: rgb(198, 171, 123);
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: rgb(194, 102, 100);
}

.has-error .form-control {
    border-color: rgb(133, 53, 52);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset;
}

.has-error .form-control:focus {
    border-color: rgb(143, 58, 56);
    box-shadow: rgba(0, 0, 0, 0.07) 0 1px 1px inset,
    rgb(111, 45, 44) 0 0 6px;
}

.has-error .input-group-addon {
    color: rgb(194, 102, 100);
    background-color: rgb(56, 22, 22);
    border-color: rgb(133, 53, 52);
}

.has-error .form-control-feedback {
    color: rgb(194, 102, 100);
}

.help-block {
    color: rgb(159, 151, 139);
}

.btn {
    background-image: none;
    border-color: transparent;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline-color: rgb(186, 123, 0);
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: rgb(200, 195, 188);
    text-decoration-color: initial;
}

.btn.active,
.btn:active {
    background-image: none;
    outline-color: initial;
    box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    box-shadow: none;
}

.btn-default {
    color: rgb(200, 195, 188);
    background-color: rgb(24, 26, 27);
    border-color: rgb(62, 68, 70);
}

.btn-default.focus,
.btn-default:focus {
    color: rgb(200, 195, 188);
    background-color: rgb(38, 41, 43);
    border-color: rgb(80, 87, 91);
}

.btn-default:hover {
    color: rgb(200, 195, 188);
    background-color: rgb(38, 41, 43);
    border-color: rgb(71, 77, 80);
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
    color: rgb(200, 195, 188);
    background-color: rgb(38, 41, 43);
    border-color: rgb(71, 77, 80);
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
    color: rgb(200, 195, 188);
    background-color: rgb(48, 52, 54);
    border-color: rgb(80, 87, 91);
}

.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: rgb(24, 26, 27);
    border-color: rgb(62, 68, 70);
}

.btn-default .badge {
    color: rgb(232, 230, 227);
    background-color: rgb(38, 42, 43);
}

.btn-primary {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
    border-color: rgb(42, 100, 150);
}

.btn-primary.focus,
.btn-primary:focus {
    color: rgb(232, 230, 227);
    background-color: rgb(32, 77, 115);
    border-color: rgb(126, 117, 104);
}

.btn-primary:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(32, 77, 115);
    border-color: rgb(46, 110, 165);
}

.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
    color: rgb(232, 230, 227);
    background-color: rgb(32, 77, 115);
    border-color: rgb(46, 110, 165);
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(26, 62, 93);
    border-color: rgb(126, 117, 104);
}

.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: rgb(41, 98, 146);
    border-color: rgb(42, 100, 150);
}

.btn-primary .badge {
    color: rgb(105, 166, 213);
    background-color: rgb(24, 26, 27);
}

.btn-success {
    color: rgb(232, 230, 227);
    background-color: rgb(77, 133, 58);
    border-color: rgb(55, 125, 55);
}

.btn-success.focus,
.btn-success:focus {
    color: rgb(232, 230, 227);
    background-color: rgb(54, 126, 54);
    border-color: rgb(66, 152, 66);
}

.btn-success:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(54, 126, 54);
    border-color: rgb(60, 138, 60);
}

.btn-success.active,
.btn-success:active,
.open > .dropdown-toggle.btn-success {
    color: rgb(232, 230, 227);
    background-color: rgb(54, 126, 54);
    border-color: rgb(60, 138, 60);
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(46, 106, 46);
    border-color: rgb(66, 152, 66);
}

.btn-success.active,
.btn-success:active,
.open > .dropdown-toggle.btn-success {
    background-image: none;
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
    background-color: rgb(77, 133, 58);
    border-color: rgb(55, 125, 55);
}

.btn-success .badge {
    color: rgb(105, 190, 105);
    background-color: rgb(24, 26, 27);
}

.btn-info {
    color: rgb(232, 230, 227);
    background-color: rgb(28, 115, 141);
    border-color: rgb(28, 115, 140);
}

.btn-info.focus,
.btn-info:focus {
    color: rgb(232, 230, 227);
    background-color: rgb(34, 136, 166);
    border-color: rgb(35, 141, 172);
}

.btn-info:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(34, 136, 166);
    border-color: rgb(31, 128, 156);
}

.btn-info.active,
.btn-info:active,
.open > .dropdown-toggle.btn-info {
    color: rgb(232, 230, 227);
    background-color: rgb(34, 136, 166);
    border-color: rgb(31, 128, 156);
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info.focus,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(30, 123, 150);
    border-color: rgb(35, 141, 172);
}

.btn-info.active,
.btn-info:active,
.open > .dropdown-toggle.btn-info {
    background-image: none;
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
    background-color: rgb(28, 115, 141);
    border-color: rgb(28, 115, 140);
}

.btn-info .badge {
    color: rgb(98, 195, 223);
    background-color: rgb(24, 26, 27);
}

.btn-warning {
    color: rgb(232, 230, 227);
    background-color: rgb(153, 95, 13);
    border-color: rgb(154, 96, 13);
}

.btn-warning.focus,
.btn-warning:focus {
    color: rgb(232, 230, 227);
    background-color: rgb(181, 113, 15);
    border-color: rgb(189, 118, 16);
}

.btn-warning:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(181, 113, 15);
    border-color: rgb(171, 107, 14);
}

.btn-warning.active,
.btn-warning:active,
.open > .dropdown-toggle.btn-warning {
    color: rgb(232, 230, 227);
    background-color: rgb(181, 113, 15);
    border-color: rgb(171, 107, 14);
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning.focus,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(170, 106, 14);
    border-color: rgb(189, 118, 16);
}

.btn-warning.active,
.btn-warning:active,
.open > .dropdown-toggle.btn-warning {
    background-image: none;
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
    background-color: rgb(153, 95, 13);
    border-color: rgb(154, 96, 13);
}

.btn-warning .badge {
    color: rgb(241, 176, 84);
    background-color: rgb(24, 26, 27);
}

.btn-danger {
    color: rgb(232, 230, 227);
    background-color: rgb(148, 35, 32);
    border-color: rgb(143, 35, 31);
}

.btn-danger.focus,
.btn-danger:focus {
    color: rgb(232, 230, 227);
    background-color: rgb(161, 38, 35);
    border-color: rgb(175, 42, 37);
}

.btn-danger:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(161, 38, 35);
    border-color: rgb(158, 38, 34);
}

.btn-danger.active,
.btn-danger:active,
.open > .dropdown-toggle.btn-danger {
    color: rgb(232, 230, 227);
    background-color: rgb(161, 38, 35);
    border-color: rgb(158, 38, 34);
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger.focus,
.open > .dropdown-toggle.btn-danger:focus,
.open > .dropdown-toggle.btn-danger:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(138, 33, 30);
    border-color: rgb(175, 42, 37);
}

.btn-danger.active,
.btn-danger:active,
.open > .dropdown-toggle.btn-danger {
    background-image: none;
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
    background-color: rgb(148, 35, 32);
    border-color: rgb(143, 35, 31);
}

.btn-danger .badge {
    color: rgb(219, 94, 90);
    background-color: rgb(24, 26, 27);
}

.btn-link {
    color: rgb(105, 166, 213);
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none;
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    border-color: transparent;
}

.btn-link:focus,
.btn-link:hover {
    color: rgb(141, 187, 223);
    text-decoration-color: initial;
    background-color: transparent;
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
    color: rgb(157, 148, 136);
    text-decoration-color: initial;
}

.caret {
    border-top-color: initial;
    border-right-color: transparent;
    border-left-color: transparent;
}

.dropdown-toggle:focus {
    outline-color: initial;
}

.dropdown-menu {
    list-style-image: initial;
    background-color: rgb(24, 26, 27);
    border-color: rgba(140, 130, 115, 0.15);
    box-shadow: rgba(0, 0, 0, 0.18) 0 6px 12px;
}

.dropdown-menu .divider {
    background-color: rgb(39, 42, 44);
}

.dropdown-menu > li > a {
    color: rgb(200, 195, 188);
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
    color: rgb(208, 204, 198);
    text-decoration-color: initial;
    background-color: rgb(30, 32, 33);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    color: rgb(232, 230, 227);
    text-decoration-color: initial;
    background-color: rgb(41, 98, 146);
    outline-color: initial;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    color: rgb(157, 148, 136);
}

.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    text-decoration-color: initial;
    background-color: transparent;
    background-image: none;
}

.open > a {
    outline-color: initial;
}

.dropdown-header {
    color: rgb(157, 148, 136);
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top-color: initial;
    border-bottom-color: initial;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline-color: initial;
}

.btn-group.open .dropdown-toggle {
    box-shadow: rgba(0, 0, 0, 0.13) 0 3px 5px inset;
}

.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none;
}

.input-group-addon {
    color: rgb(178, 172, 162);
    background-color: rgb(34, 36, 38);
    border-color: rgb(62, 68, 70);
}

.input-group-addon:first-child {
    border-right-color: initial;
}

.input-group-addon:last-child {
    border-left-color: initial;
}

.nav {
    list-style-image: initial;
}

.nav > li > a:focus,
.nav > li > a:hover {
    text-decoration-color: initial;
    background-color: rgb(34, 36, 38);
}

.nav > li.disabled > a {
    color: rgb(157, 148, 136);
}

.nav > li.disabled > a:focus,
.nav > li.disabled > a:hover {
    color: rgb(157, 148, 136);
    text-decoration-color: initial;
    background-color: transparent;
}

.nav .open > a,
.nav .open > a:focus,
.nav .open > a:hover {
    background-color: rgb(34, 36, 38);
    border-color: rgb(40, 96, 145);
}

.nav .nav-divider {
    background-color: rgb(39, 42, 44);
}

.nav-tabs {
    border-bottom-color: rgb(58, 62, 65);
}

.nav-tabs > li > a {
    border-color: transparent;
}

.nav-tabs > li > a:hover {
    border-color: rgb(53, 57, 59) rgb(53, 57, 59) rgb(58, 62, 65);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: rgb(178, 172, 162);
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65) rgb(58, 62, 65) transparent;
}

.nav-tabs.nav-justified {
    border-bottom-color: initial;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:focus,
.nav-tabs.nav-justified > .active > a:hover {
    border-color: rgb(58, 62, 65);
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom-color: rgb(58, 62, 65);
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: rgb(48, 52, 54);
    }
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
}

.nav-tabs-justified {
    border-bottom-color: initial;
}

.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:focus,
.nav-tabs-justified > .active > a:hover {
    border-color: rgb(58, 62, 65);
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom-color: rgb(58, 62, 65);
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs-justified > .active > a:hover {
        border-bottom-color: rgb(48, 52, 54);
    }
}

.navbar {
    border-color: transparent;
}

.navbar-collapse {
    border-top-color: transparent;
    box-shadow: rgba(24, 26, 27, 0.1) 0 1px 0 inset;
}

@media (min-width: 768px) {
    .navbar-collapse {
        border-top-color: initial;
        box-shadow: none;
    }
}

.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration-color: initial;
}

.navbar-toggle {
    background-color: transparent;
    background-image: none;
    border-color: transparent;
}

.navbar-toggle:focus {
    outline-color: initial;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        background-color: transparent;
        border-color: initial;
        box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-nav .open .dropdown-menu > li > a:hover {
        background-image: none;
    }
}

.navbar-form {
    border-top-color: transparent;
    border-bottom-color: transparent;
    box-shadow: rgba(24, 26, 27, 0.1) 0 1px 0 inset,
    rgba(24, 26, 27, 0.1) 0 1px 0;
}

@media (min-width: 768px) {
    .navbar-form {
        border-color: initial;
        box-shadow: none;
    }
}

.navbar-default {
    background-color: rgb(28, 30, 31);
    border-color: rgb(55, 59, 62);
}

.navbar-default .navbar-brand {
    color: rgb(157, 148, 136);
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: rgb(173, 165, 155);
    background-color: transparent;
}

.navbar-default .navbar-text {
    color: rgb(157, 148, 136);
}

.navbar-default .navbar-nav > li > a {
    color: rgb(157, 148, 136);
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: rgb(200, 195, 188);
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: rgb(178, 172, 162);
    background-color: rgb(38, 41, 42);
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:focus,
.navbar-default .navbar-nav > .disabled > a:hover {
    color: rgb(200, 195, 188);
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border-color: rgb(58, 62, 65);
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: rgb(43, 47, 49);
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: rgb(91, 99, 103);
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: rgb(55, 59, 62);
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
    color: rgb(178, 172, 162);
    background-color: rgb(38, 41, 42);
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: rgb(157, 148, 136);
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        color: rgb(200, 195, 188);
        background-color: transparent;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: rgb(178, 172, 162);
        background-color: rgb(38, 41, 42);
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: rgb(200, 195, 188);
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: rgb(157, 148, 136);
}

.navbar-default .navbar-link:hover {
    color: rgb(200, 195, 188);
}

.navbar-default .btn-link {
    color: rgb(157, 148, 136);
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: rgb(200, 195, 188);
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: rgb(200, 195, 188);
}

.navbar-inverse {
    background-color: rgb(26, 28, 29);
    border-color: rgb(137, 128, 113);
}

.navbar-inverse .navbar-brand {
    color: rgb(170, 163, 152);
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: rgb(232, 230, 227);
    background-color: transparent;
}

.navbar-inverse .navbar-text {
    color: rgb(170, 163, 152);
}

.navbar-inverse .navbar-nav > li > a {
    color: rgb(170, 163, 152);
}

.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
    color: rgb(232, 230, 227);
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(6, 7, 7);
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:focus,
.navbar-inverse .navbar-nav > .disabled > a:hover {
    color: rgb(189, 183, 175);
    background-color: transparent;
}

.navbar-inverse .navbar-toggle {
    border-color: rgb(123, 114, 101);
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: rgb(38, 42, 43);
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: rgb(24, 26, 27);
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: rgb(135, 125, 111);
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(6, 7, 7);
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: rgb(137, 128, 113);
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: rgb(6, 7, 7);
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: rgb(170, 163, 152);
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
        color: rgb(232, 230, 227);
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover {
        color: rgb(232, 230, 227);
        background-color: rgb(6, 7, 7);
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover {
        color: rgb(189, 183, 175);
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: rgb(170, 163, 152);
}

.navbar-inverse .navbar-link:hover {
    color: rgb(232, 230, 227);
}

.navbar-inverse .btn-link {
    color: rgb(170, 163, 152);
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
    color: rgb(232, 230, 227);
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: rgb(189, 183, 175);
}

.breadcrumb {
    list-style-image: initial;
    background-color: rgb(30, 32, 33);
}

.breadcrumb > li + li::before {
    color: rgb(200, 195, 188);
}

.breadcrumb > .active {
    color: rgb(157, 148, 136);
}

.pagination > li > a,
.pagination > li > span {
    color: rgb(105, 166, 213);
    text-decoration-color: initial;
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: rgb(141, 187, 223);
    background-color: rgb(34, 36, 38);
    border-color: rgb(58, 62, 65);
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
    border-color: rgb(40, 96, 145);
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
    color: rgb(157, 148, 136);
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

.pager {
    list-style-image: initial;
}

.pager li > a,
.pager li > span {
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

.pager li > a:focus,
.pager li > a:hover {
    text-decoration-color: initial;
    background-color: rgb(34, 36, 38);
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
    color: rgb(157, 148, 136);
    background-color: rgb(24, 26, 27);
}

.label {
    color: rgb(232, 230, 227);
}

a.label:focus,
a.label:hover {
    color: rgb(232, 230, 227);
    text-decoration-color: initial;
}

.label-default {
    background-color: rgb(90, 97, 101);
}

.label-default[href]:focus,
.label-default[href]:hover {
    background-color: rgb(71, 77, 80);
}

.label-primary {
    background-color: rgb(41, 98, 146);
}

.label-primary[href]:focus,
.label-primary[href]:hover {
    background-color: rgb(32, 77, 115);
}

.label-success {
    background-color: rgb(77, 133, 58);
}

.label-success[href]:focus,
.label-success[href]:hover {
    background-color: rgb(54, 126, 54);
}

.label-info {
    background-color: rgb(28, 115, 141);
}

.label-info[href]:focus,
.label-info[href]:hover {
    background-color: rgb(34, 136, 166);
}

.label-warning {
    background-color: rgb(153, 95, 13);
}

.label-warning[href]:focus,
.label-warning[href]:hover {
    background-color: rgb(181, 113, 15);
}

.label-danger {
    background-color: rgb(148, 35, 32);
}

.label-danger[href]:focus,
.label-danger[href]:hover {
    background-color: rgb(161, 38, 35);
}

.badge {
    color: rgb(232, 230, 227);
    background-color: rgb(90, 97, 101);
}

a.badge:focus,
a.badge:hover {
    color: rgb(232, 230, 227);
    text-decoration-color: initial;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: rgb(105, 166, 213);
    background-color: rgb(24, 26, 27);
}

.jumbotron {
    color: inherit;
    background-color: rgb(34, 36, 38);
}

.jumbotron .h1,
.jumbotron h1 {
    color: inherit;
}

.jumbotron > hr {
    border-top-color: rgb(60, 65, 67);
}

.thumbnail {
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
    border-color: rgb(40, 96, 145);
}

.thumbnail .caption {
    color: rgb(200, 195, 188);
}

.alert {
    border-color: transparent;
}

.alert h4 {
    color: inherit;
}

.alert-dismissable .close,
.alert-dismissible .close {
    color: inherit;
}

.alert-success {
    color: rgb(139, 196, 140);
    background-color: rgb(41, 60, 23);
    border-color: rgb(60, 91, 35);
}

.alert-success hr {
    border-top-color: rgb(65, 97, 37);
}

.alert-success .alert-link {
    color: rgb(162, 208, 164);
}

.alert-info {
    color: rgb(117, 178, 208);
    background-color: rgb(14, 48, 65);
    border-color: rgb(22, 90, 104);
}

.alert-info hr {
    border-top-color: rgb(24, 97, 111);
}

.alert-info .alert-link {
    color: rgb(144, 192, 217);
}

.alert-warning {
    color: rgb(198, 171, 123);
    background-color: rgb(63, 54, 7);
    border-color: rgb(108, 76, 11);
}

.alert-warning hr {
    border-top-color: rgb(114, 80, 12);
}

.alert-warning .alert-link {
    color: rgb(209, 187, 148);
}

.alert-danger {
    color: rgb(194, 102, 100);
    background-color: rgb(56, 22, 22);
    border-color: rgb(89, 35, 43);
}

.alert-danger hr {
    border-top-color: rgb(95, 36, 46);
}

.alert-danger .alert-link {
    color: rgb(204, 127, 126);
}

.progress {
    background-color: #606060;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px inset;
}

.progress-bar {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
    box-shadow: rgba(0, 0, 0, 0.15) 0 -1px 0 inset;
}

.progress-bar-striped,
.progress-striped .progress-bar {
    background-image: linear-gradient(45deg,
    rgba(24, 26, 27, 0.15) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(24, 26, 27, 0.15) 50%,
    rgba(24, 26, 27, 0.15) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0));
}

.progress-bar-success {
    background-color: rgb(77, 133, 58);
}

.progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg,
    rgba(24, 26, 27, 0.15) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(24, 26, 27, 0.15) 50%,
    rgba(24, 26, 27, 0.15) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0));
}

.progress-bar-info {
    background-color: rgb(28, 115, 141);
}

.progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg,
    rgba(24, 26, 27, 0.15) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(24, 26, 27, 0.15) 50%,
    rgba(24, 26, 27, 0.15) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0));
}

.progress-bar-warning {
    background-color: rgb(153, 95, 13);
}

.progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg,
    rgba(24, 26, 27, 0.15) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(24, 26, 27, 0.15) 50%,
    rgba(24, 26, 27, 0.15) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0));
}

.progress-bar-danger {
    background-color: rgb(148, 35, 32);
}

.progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg,
    rgba(24, 26, 27, 0.15) 25%,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 0) 50%,
    rgba(24, 26, 27, 0.15) 50%,
    rgba(24, 26, 27, 0.15) 75%,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 0));
}

.media-list {
    list-style-image: initial;
}

.list-group-item {
    background-color: rgb(24, 26, 27);
    border-color: rgb(58, 62, 65);
}

a.list-group-item,
button.list-group-item {
    color: rgb(178, 172, 162);
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: rgb(200, 195, 188);
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
    color: rgb(178, 172, 162);
    text-decoration-color: initial;
    background-color: rgb(30, 32, 33);
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
    color: rgb(157, 148, 136);
    background-color: rgb(34, 36, 38);
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
    color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
    color: rgb(157, 148, 136);
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
    border-color: rgb(40, 96, 145);
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > small {
    color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
    color: rgb(176, 208, 232);
}

.list-group-item-success {
    color: rgb(139, 196, 140);
    background-color: rgb(41, 60, 23);
}

a.list-group-item-success,
button.list-group-item-success {
    color: rgb(139, 196, 140);
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
    color: rgb(139, 196, 140);
    background-color: rgb(48, 71, 27);
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(48, 94, 49);
    border-color: rgb(68, 134, 69);
}

.list-group-item-info {
    color: rgb(117, 178, 208);
    background-color: rgb(14, 48, 65);
}

a.list-group-item-info,
button.list-group-item-info {
    color: rgb(117, 178, 208);
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
    color: rgb(117, 178, 208);
    background-color: rgb(44, 48, 50);
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(39, 90, 114);
    border-color: rgb(50, 115, 147);
}

.list-group-item-warning {
    color: rgb(198, 171, 123);
    background-color: rgb(63, 54, 7);
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: rgb(198, 171, 123);
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
    color: rgb(198, 171, 123);
    background-color: rgb(77, 65, 8);
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(110, 87, 47);
    border-color: rgb(137, 108, 59);
}

.list-group-item-danger {
    color: rgb(194, 102, 100);
    background-color: rgb(56, 22, 22);
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: rgb(194, 102, 100);
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
    color: rgb(194, 102, 100);
    background-color: rgb(67, 26, 26);
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
    color: rgb(232, 230, 227);
    background-color: rgb(135, 54, 53);
    border-color: rgb(133, 53, 52);
}

.panel {
    background-color: rgb(24, 26, 27);
    border-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px;
}

.panel-heading {
    border-bottom-color: transparent;
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}

.panel-title {
    color: inherit;
}

.panel-title > .small,
.panel-title > .small > a,
.panel-title > a,
.panel-title > small,
.panel-title > small > a {
    color: inherit;
}

.panel-footer {
    background-color: rgb(30, 32, 33);
    border-top-color: rgb(58, 62, 65);
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top-color: initial;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom-color: initial;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
    border-top-color: rgb(58, 62, 65);
}

.panel > .table > tbody:first-child > tr:first-child td,
.panel > .table > tbody:first-child > tr:first-child th {
    border-top-color: initial;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border-color: initial;
}

.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left-color: initial;
}

.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right-color: initial;
}

.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
    border-bottom-color: initial;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom-color: initial;
}

.panel > .table-responsive {
    border-color: initial;
}

.panel-group .panel-heading {
    border-bottom-color: initial;
}

.panel-group .panel-heading + .panel-collapse > .list-group,
.panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(58, 62, 65);
}

.panel-group .panel-footer {
    border-top-color: initial;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom-color: rgb(58, 62, 65);
}

.panel-default {
    border-color: rgb(58, 62, 65);
}

.panel-default > .panel-heading {
    color: rgb(200, 195, 188);
    background-color: rgb(30, 32, 33);
    border-color: rgb(58, 62, 65);
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(58, 62, 65);
}

.panel-default > .panel-heading .badge {
    color: rgb(226, 223, 219);
    background-color: rgb(38, 42, 43);
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(58, 62, 65);
}

.panel-primary {
    border-color: rgb(40, 96, 145);
}

.panel-primary > .panel-heading {
    color: rgb(232, 230, 227);
    background-color: rgb(41, 98, 146);
    border-color: rgb(40, 96, 145);
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(40, 96, 145);
}

.panel-primary > .panel-heading .badge {
    color: rgb(105, 166, 213);
    background-color: rgb(24, 26, 27);
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(40, 96, 145);
}

.panel-success {
    border-color: rgb(60, 91, 35);
}

.panel-success > .panel-heading {
    color: rgb(139, 196, 140);
    background-color: rgb(41, 60, 23);
    border-color: rgb(60, 91, 35);
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(60, 91, 35);
}

.panel-success > .panel-heading .badge {
    color: rgb(202, 230, 191);
    background-color: rgb(48, 94, 49);
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(60, 91, 35);
}

.panel-info {
    border-color: rgb(22, 90, 104);
}

.panel-info > .panel-heading {
    color: rgb(117, 178, 208);
    background-color: rgb(14, 48, 65);
    border-color: rgb(22, 90, 104);
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(22, 90, 104);
}

.panel-info > .panel-heading .badge {
    color: rgb(186, 222, 241);
    background-color: rgb(39, 90, 114);
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(22, 90, 104);
}

.panel-warning {
    border-color: rgb(108, 76, 11);
}

.panel-warning > .panel-heading {
    color: rgb(198, 171, 123);
    background-color: rgb(63, 54, 7);
    border-color: rgb(108, 76, 11);
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(108, 76, 11);
}

.panel-warning > .panel-heading .badge {
    color: rgb(248, 239, 189);
    background-color: rgb(110, 87, 47);
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(108, 76, 11);
}

.panel-danger {
    border-color: rgb(89, 35, 43);
}

.panel-danger > .panel-heading {
    color: rgb(194, 102, 100);
    background-color: rgb(56, 22, 22);
    border-color: rgb(89, 35, 43);
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: rgb(89, 35, 43);
}

.panel-danger > .panel-heading .badge {
    color: rgb(231, 195, 195);
    background-color: rgb(135, 54, 53);
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: rgb(89, 35, 43);
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    border-color: initial;
}

.well {
    background-color: rgb(30, 32, 33);
    border-color: rgb(56, 61, 63);
    box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px inset;
}

.well blockquote {
    border-color: rgba(140, 130, 115, 0.15);
}

.close {
    color: rgb(232, 230, 227);
    text-shadow: rgb(24, 26, 27) 0 1px 0;
}

.close:focus,
.close:hover {
    color: rgb(232, 230, 227);
    text-decoration-color: initial;
}

button.close {
    background-image: initial;
    background-color: initial;
    border-color: initial;
}

.modal {
    outline-color: initial;
}

.modal-content {
    background-color: rgb(24, 26, 27);
    border-color: rgba(140, 130, 115, 0.2);
    outline-color: initial;
    box-shadow: rgba(0, 0, 0, 0.5) 0 3px 9px;
}

.modal-backdrop {
    background-color: rgb(0, 0, 0);
}

.modal-header {
    border-bottom-color: rgb(55, 60, 62);
}

.modal-footer {
    border-top-color: rgb(55, 60, 62);
}

@media (min-width: 768px) {
    .modal-content {
        box-shadow: rgba(0, 0, 0, 0.5) 0 5px 15px;
    }
}

.tooltip {
    text-decoration-color: initial;
    text-shadow: none;
}

.tooltip-inner {
    color: rgb(232, 230, 227);
    background-color: rgb(0, 0, 0);
}

.tooltip-arrow {
    border-color: transparent;
}

.tooltip.top .tooltip-arrow {
    border-top-color: rgb(140, 130, 115);
}

.tooltip.top-left .tooltip-arrow {
    border-top-color: rgb(140, 130, 115);
}

.tooltip.top-right .tooltip-arrow {
    border-top-color: rgb(140, 130, 115);
}

.tooltip.right .tooltip-arrow {
    border-right-color: rgb(140, 130, 115);
}

.tooltip.left .tooltip-arrow {
    border-left-color: rgb(140, 130, 115);
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: rgb(140, 130, 115);
}

.tooltip.bottom-left .tooltip-arrow {
    border-bottom-color: rgb(140, 130, 115);
}

.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: rgb(140, 130, 115);
}

.popover {
    text-decoration-color: initial;
    text-shadow: none;
    background-color: rgb(24, 26, 27);
    border-color: rgba(140, 130, 115, 0.2);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
}

.popover-title {
    background-color: rgb(29, 31, 32);
    border-bottom-color: rgb(54, 58, 60);
}

.popover > .arrow,
.popover > .arrow::after {
    border-color: transparent;
}

.popover.top > .arrow {
    border-top-color: rgba(140, 130, 115, 0.25);
}

.popover.top > .arrow::after {
    border-top-color: rgb(48, 52, 54);
}

.popover.right > .arrow {
    border-right-color: rgba(140, 130, 115, 0.25);
}

.popover.right > .arrow::after {
    border-right-color: rgb(48, 52, 54);
}

.popover.bottom > .arrow {
    border-bottom-color: rgba(140, 130, 115, 0.25);
}

.popover.bottom > .arrow::after {
    border-bottom-color: rgb(48, 52, 54);
}

.popover.left > .arrow {
    border-left-color: rgba(140, 130, 115, 0.25);
}

.popover.left > .arrow::after {
    border-left-color: rgb(48, 52, 54);
}

.carousel-control {
    color: rgb(232, 230, 227);
    text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
    background-color: rgba(0, 0, 0, 0);
}

.carousel-control.left {
    background-image: linear-gradient(to right,
    rgba(0, 0, 0, 0.5) 0,
    rgba(0, 0, 0, 0) 100%);
}

.carousel-control.right {
    background-image: linear-gradient(to right,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.5) 100%);
}

.carousel-control:focus,
.carousel-control:hover {
    color: rgb(232, 230, 227);
    text-decoration-color: initial;
    outline-color: initial;
}

.carousel-indicators {
    list-style-image: initial;
}

.carousel-indicators li {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgb(48, 52, 54);
}

.carousel-indicators .active {
    background-color: rgb(24, 26, 27);
}

.carousel-caption {
    color: rgb(232, 230, 227);
    text-shadow: rgba(0, 0, 0, 0.6) 0 1px 2px;
}

.carousel-caption .btn {
    text-shadow: none;
}

.text-hide {
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border-color: initial;
}

body {
    color: rgb(187, 182, 173);
    background-image: initial;
    background-color: rgb(24, 26, 27);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: rgb(199, 194, 187);
}

a {
    color: rgb(57, 141, 246);
    text-decoration-color: initial;
}

a,
a:active,
a:focus,
a:active {
    text-decoration-color: initial;
    outline-color: initial;
}

a:hover,
a:focus {
    text-decoration-color: initial;
    color: rgb(57, 141, 246);
}

ul {
    list-style-image: initial;
}

.btn {
    border-color: initial;
}

.btn-primary {
    background-color: rgb(8, 43, 177);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background-image: initial;
    background-color: rgb(24, 50, 145);
}

.btn-default {
    color: rgb(57, 141, 246);
    background-color: transparent;
    border-color: rgb(8, 39, 161);
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active:focus {
    background-image: initial;
    background-color: rgb(8, 43, 177);
    color: rgb(232, 230, 227);
    border-color: rgb(8, 39, 161);
}

button:focus,
.btn:focus,
.btn:active:focus {
    outline-color: initial;
}

.right-col-block {
    box-shadow: rgba(0, 0, 0, 0.23) -10px -10px 30px;
}

@media (max-width: 600px) {
    .right-col-block {
        box-shadow: none;
    }
}

.gray-bg {
    background-color: rgb(27, 30, 31);
}

#main-wrapper {
    background-image: initial;
    background-color: rgb(24, 26, 27);
}

.section-title h2 {
    color: rgb(196, 191, 183);
}

.header .profile-img {
    background-image: url(../img/profile.jpg);
}

.header .profile-img::before {
    background-image: linear-gradient(-30deg,
    rgba(8, 43, 177, 0.5) 0%,
    rgba(8, 43, 177, 0.5) 40%,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0) 100%);
    background-color: initial;
}

.header .content h1 {
    color: rgb(232, 230, 227);
}

.header .content p {
    color: rgb(232, 230, 227);
}

.header .content .social-icon li a {
    color: rgb(232, 230, 227);
}

.header .content .social-icon li a:hover {
    border-color: rgb(48, 52, 54);
}

.progress-item .progress {
    box-shadow: none;
}

.progress-item .progress-bar {
    background-color: rgb(8, 43, 177);
    box-shadow: none;
}

.progress-item .progress-percent {
    background-color: rgb(37, 40, 42);
}

.progress-item .progress-percent::before {
    border-top-color: rgb(124, 115, 102);
    border-right-color: transparent;
}

.portfolio-item .portfolio-info {
    background-image: -webkit-linear-gradient(top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%);
    background-color: initial;
}

.portfolio-item .portfolio-info h3 {
    color: rgb(232, 230, 227);
}

.portfolio-item .portfolio-info small {
    color: rgb(232, 230, 227);
}

.portfolio-item:hover .portfolio-info {
    background-image: -webkit-linear-gradient(top,
    rgba(0, 0, 0, 0) 0%,
    rgba(8, 43, 177, 0.5) 100%);
    background-color: initial;
}

.content-item small {
    color: rgb(157, 148, 136);
}

.content-item small .gray-out {
    /*color: #181a1b;*/
}

.form-control {
    color: rgb(165, 158, 146);
    border-color: rgb(62, 68, 70);
    box-shadow: none;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
}

.footer .copyright-section {
    color: rgb(157, 148, 136);
}

#preloader {
    background-image: initial;
    background-color: #181a1b;
}

#status,
.status-mes {
    background-image: url(../img/puff.svg);
}

.status-mes {
    background-image: none;
    background-color: initial;
}

html {
    background-color: rgb(19, 21, 22) !important;
}

html,
body,
input,
textarea,
select,
button {
    background-color: rgb(19, 21, 22);
}

html,
body,
input,
textarea,
select,
button {
    border-color: rgb(106, 98, 87);
    color: rgb(216, 212, 207);
}

a {
    color: rgb(61, 165, 255);
}

table {
    border-color: rgb(111, 103, 91);
}

::placeholder {
    color: rgb(178, 171, 161);
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: rgb(68, 73, 0) !important;
    color: rgb(216, 212, 207) !important;
}

::-webkit-scrollbar {
    background-color: rgb(26, 28, 29);
    color: rgb(173, 166, 156);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(55, 60, 62);
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(70, 75, 78);
}

::-webkit-scrollbar-thumb:active {
    background-color: rgb(58, 62, 65);
}

::-webkit-scrollbar-corner {
    background-color: rgb(19, 21, 22);
}

::selection {
    background-color: rgb(0, 62, 136) !important;
    color: rgb(216, 212, 207) !important;
}

.vimvixen-hint {
    background-color: rgb(98, 66, 0) !important;
    border-color: rgb(170, 138, 15) !important;
    color: rgb(237, 221, 175) !important;
}

a:focus {
    outline-color: initial;
}

a:active,
a:hover {
    outline-color: initial;
}

abbr[title] {
    border-bottom-color: initial;
}

mark {
    background-image: initial;
    background-color: rgb(163, 163, 0);
    color: rgb(216, 212, 207);
}

img {
    border-color: initial;
}

fieldset {
    border-color: rgb(117, 109, 96);
}

legend {
    border-color: initial;
}

html {
    -webkit-tap-highlight-color: rgba(216, 212, 207, 0);
}

body {
    color: rgb(193, 188, 180);
    background-color: rgb(19, 21, 22);
}

button,
input,
select[multiple],
textarea {
    background-image: none;
}

a {
    color: rgb(95, 161, 210);
    text-decoration-color: initial;
}

a:hover,
a:focus {
    color: rgb(124, 179, 219);
    text-decoration-color: initial;
}

a:focus {
    outline-color: rgb(199, 132, 0);
}

.img-thumbnail {
    background-color: rgb(19, 21, 22);
    border-color: rgb(120, 111, 98);
}

hr {
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-top-color: rgb(122, 113, 100);
}

.sr-only {
    border-color: initial;
}

.text-muted {
    color: rgb(171, 164, 153);
}

.text-primary {
    color: rgb(95, 161, 210);
}

.text-warning {
    color: rgb(201, 167, 107);
}

.text-danger {
    color: rgb(197, 104, 103);
}

.text-success {
    color: rgb(131, 192, 132);
}

.text-info {
    color: rgb(105, 172, 205);
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
    color: rgb(171, 164, 153);
}

.page-header {
    border-bottom-color: rgb(122, 113, 100);
}

.list-unstyled {
    list-style-image: initial;
}

.list-inline {
    list-style-image: initial;
}

abbr[title],
abbr[data-original-title] {
    border-bottom-color: rgb(113, 105, 93);
}

blockquote {
    border-left-color: rgb(122, 113, 100);
}

blockquote small {
    color: rgb(171, 164, 153);
}

blockquote.pull-right {
    border-right-color: rgb(122, 113, 100);
    border-left-color: initial;
}

.badge {
    color: rgb(216, 212, 207);
    background-color: rgb(66, 71, 74);
}

a.badge:hover,
a.badge:focus {
    color: rgb(216, 212, 207);
    text-decoration-color: initial;
}

a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: rgb(95, 161, 210);
    background-color: rgb(19, 21, 22);
}

.tooltip-inner {
    color: rgb(216, 212, 207);
    text-decoration-color: initial;
    background-color: rgb(0, 0, 0);
}

.tooltip-arrow {
    border-color: transparent;
}

.tooltip.top .tooltip-arrow {
    border-top-color: rgb(84, 91, 95);
}

.tooltip.top-left .tooltip-arrow {
    border-top-color: rgb(84, 91, 95);
}

.tooltip.top-right .tooltip-arrow {
    border-top-color: rgb(84, 91, 95);
}

.tooltip.right .tooltip-arrow {
    border-right-color: rgb(84, 91, 95);
}

.tooltip.left .tooltip-arrow {
    border-left-color: rgb(84, 91, 95);
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: rgb(84, 91, 95);
}

.tooltip.bottom-left .tooltip-arrow {
    border-bottom-color: rgb(84, 91, 95);
}

.tooltip.bottom-right .tooltip-arrow {
    border-bottom-color: rgb(84, 91, 95);
}

.text-hide {
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border-color: initial;
}

body {
    background-image: initial;
    background-color: rgb(69, 75, 78);
}

.switcher-bar {
    background-image: initial;
    background-color: rgb(30, 33, 34);
    border-bottom-color: rgb(105, 97, 86);
}

.logo {
    border-right-color: rgb(105, 97, 86);
}

.logo.textual a {
    color: rgb(172, 164, 154);
    text-decoration-color: initial;
}

.header-btn a {
    border-left-color: rgb(105, 97, 86);
    text-decoration-color: initial;
}

.header-btn a::before {
    color: rgb(172, 164, 154);
}

.header-btn a:hover,
.header-btn.current a {
    background-image: initial;
    background-color: rgb(21, 22, 23);
    text-decoration-color: initial;
}

.header-btn a:hover::before,
.header-btn.current a::before {
    color: rgb(216, 212, 207);
}

.purchase-btn {
    background-image: initial;
    background-color: rgb(79, 116, 38);
}

.purchase-btn a {
    border-color: initial !important;
}

.purchase-btn a::before {
    color: rgb(216, 212, 207) !important;
}

.remove-btn a {
    border-color: initial !important;
}

.header-btn a:focus,
.product-switcher a:focus {
    outline-color: initial;
}

.product-switcher {
    background-image: initial;
    background-color: rgb(21, 22, 23);
}

.product-switcher a {
    color: rgb(172, 164, 154);
    text-decoration-color: initial;
}

.product-switcher .badge {
    background-image: initial;
    background-color: rgb(125, 37, 17);
    color: rgb(216, 212, 207);
}

.switcher-body {
    background-image: initial;
    background-color: rgb(35, 38, 39);
}

.toggle .switcher-body {
    border-bottom-color: rgb(103, 96, 85);
    border-top-color: rgb(103, 96, 85);
}

.products-prev,
.products-next {
    text-decoration-color: initial;
}

.products-prev::before,
.products-next::before {
    color: rgb(216, 212, 207);
}

.products-prev:hover,
.products-next:hover {
    text-decoration-color: initial;
}

.product {
    border-color: rgb(103, 96, 85);
    text-decoration-color: initial !important;
}

.product .title {
    background-image: initial;
    background-color: rgb(19, 21, 22);
    color: rgb(171, 164, 153);
    text-decoration-color: initial;
}

.product .badge {
    background-color: rgb(125, 37, 17);
    background-image: linear-gradient(rgb(120, 28, 9) 0%,
    rgb(125, 37, 17) 100%);
    border-color: rgb(161, 63, 40);
    color: rgb(216, 212, 207);
}

.preloader {
    background-image: initial;
    background-color: rgb(0, 0, 0);
}

.preloading-icon {
    background-color: rgb(125, 37, 17);
    background-image: linear-gradient(rgb(120, 28, 9) 0%,
    rgb(125, 37, 17) 100%);
    border-color: rgb(161, 63, 40);
}

.preloading-icon .icon-bolt::before {
    color: rgb(216, 212, 207);
}

@media screen and (max-width: 1024px) {
    .preloading-icon.glyphicons::before {
        color: rgb(216, 212, 207);
    }
}

body.dark,
.dark .switcher-bar {
    background-image: initial;
    background-color: rgb(16, 18, 18);
}

.dark .switcher-bar,
.dark .logo,
.dark .header-btn a {
    border-color: rgb(84, 91, 95);
}

[class^="icon-"], [class*=" icon-"] {
    text-decoration-color: inherit;
}

[class^="icon-"]::before, [class*=" icon-"]::before {
    text-decoration-color: inherit;
}

.icon-muted {
    color: rgb(208, 204, 198);
}

.icon-light {
    color: rgb(216, 212, 207);
}

.icon-dark {
    color: rgb(193, 188, 180);
}

.icon-border {
    border-color: rgb(122, 113, 100);
}

[class^="icon-"], [class*=" icon-"] {
    background-image: none;
}

.icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] {
    background-image: none;
}

a .icon-stack,
a .icon-spin {
    text-decoration-color: initial;
}

body {
    background-image: initial;
    background-color: rgb(27, 29, 30);
}
