.card-header {
    background: #fff;
    padding: .3em .6em;
}

.switch label {
    cursor: pointer;
}

.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    background-color: #818181;
    border-radius: .9375rem;
    margin-right: .625rem;
    vertical-align: middle;
    margin: 0 1rem;
    width: 2.5rem;
    height: .9375rem;
    transition: background .3s ease;
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: #f1f1f1;
    border-radius: 1.3125rem;
    left: -.3125rem;
    top: -.1875rem;
    box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, .4);
    width: 1.3125rem;
    height: 1.3125rem;
    transition: left .3s ease, background .3s ease, box-shadow 1s ease;
}

.switch label input[type=checkbox]:checked+.lever:after {
    left: 1.5rem;
}

.switch.primary-switch label input[type=checkbox]:checked+.lever {
    background-color: #689DF6;
}

.switch.primary-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #4285F4;
}

.switch.default-switch label input[type=checkbox]:checked+.lever {
    background-color: #4DCCBF;
}

.switch.default-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #2BBBAD;
}

.switch.secondary-switch label input[type=checkbox]:checked+.lever {
    background-color: #C791E2;
}

.switch.secondary-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #a6c;
}

.switch.success-switch label input[type=checkbox]:checked+.lever {
    background-color: #2ACC6C;
}

.switch.success-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #00C851;
}

.switch.info-switch label input[type=checkbox]:checked+.lever {
    background-color: #59C3EB;
}

.switch.info-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #33b5e5;
}

.switch.warning-switch label input[type=checkbox]:checked+.lever {
    background-color: #FFA339;
}

.switch.warning-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #F80;
}

.switch.danger-switch label input[type=checkbox]:checked+.lever {
    background-color: #FF606F;
}

.switch.danger-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #ff3547;
}

.switch.teal-switch label input[type=checkbox]:checked+.lever {
    background-color: #b2dfdb;
}

.switch.teal-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #80cbc4;
}

.switch.pink-switch label input[type=checkbox]:checked+.lever {
    background-color: #f8bbd0;
}

.switch.pink-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #f48fb1;
}

.switch.blue-switch label input[type=checkbox]:checked+.lever {
    background-color: #b3e5fc;
}

.switch.blue-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #81d4fa;
}

.switch.amber-switch label input[type=checkbox]:checked+.lever {
    background-color: #ffe082;
}

.switch.amber-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #ffd54f;
}

.switch.mdb-color-switch label input[type=checkbox]:checked+.lever {
    background-color: #618FB5;
}

.switch.mdb-color-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #3F729B;
}

.switch.indigo-switch label input[type=checkbox]:checked+.lever {
    background-color: #9fa8da;
}

.switch.indigo-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #7986cb;
}

.switch.blue-white-switch label input[type=checkbox]:checked+.lever {
    background-color: #2196f3;
}

.switch.blue-white-switch label input[type=checkbox]:checked+.lever:after {
    background-color: #fff;
}

.switch.blue-white-switch label .lever {
    background-color: #ccc;
}

.switch.blue-white-switch label .lever:after {
    background-color: #fff;
}

.switch.round label .lever {
    width: 54px;
    height: 34px;
    border-radius: 10em;
}

.switch.round label .lever:after {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

.switch.square label .lever {
    width: 54px;
    height: 34px;
    border-radius: 0px;
}

.switch.square label .lever:after {
    width: 26px;
    height: 26px;
    border-radius: 0px;
    left: 4px;
    top: 4px;
}

.font-small {
    font-size: .9rem;
}

pre {
    background: #333;
    white-space: pre;
    word-wrap: break-word;
    overflow: auto;
    border-radius: 4px;
    position: relative;
    margin: 0;
}

pre code {
    display: block;
    padding: 10px 15px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 2em;
    color: #4285f4;
}

pre code::-webkit-scrollbar {
    display: none;
}

.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, .5);
    z-index: 999;
    display: none;
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

body {
    background-color: #f2f2f2;
}

.hidden {
    display: none;
}

.list-group-item {
    cursor: pointer;
    display: flex !important;
    white-space: pre-line;
}

.list-group-item.active a {
    color: #fff !important;
    font-weight: 500;
}

.list-group-item.header {
    font-weight: bold !important;
    margin-right: -15px;
    margin-left: -15px;
}

.list-group-item div[class^="col-"]:first-child {
    padding-left: 0;
}

.list-group-item div[class^="col-"]:last-child {
    padding-right: 0;
}

.fa-check-circle {
    color: #00C851;
}

.fa-exclamation-circle {
    color: #ff4444;
}

i.error {
    color: #ff4444;
}

.iframe {
    width: 100%;
    overflow-y: auto;
    height: 500px;
    border: none;
}