* {
    --bs-body-bg: #1a1b1c;
    --bs-border-color: #303437;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

hr {
    color: var(--bs-border-color);
    opacity: 1;
}

a {
    color: #bbbbbb;
    text-decoration: none;
}

a:hover {
    color: #929292;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--bs-body-color);
}

.form-check-input:checked {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.form-range::-moz-range-thumb {
    background-color: var(--bs-secondary);
}

.container {
    max-width: 1200px;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.fs-7 {
    font-size: .85rem !important;
}

.fs-8 {
    font-size: .75rem !important;
}

.fs-9 {
    font-size: .65rem !important;
}

.fs-10 {
    font-size: .55rem !important;
}

.btn-xs {
    padding: 0px 2px;
    font-size: .9em;
}

.btn {
    border-radius: 0;
}

.notify-container {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 100%;
    z-index: 999;
    overflow: hidden;
}

.notify-container--top-left {
    bottom: unset;
    right: unset;
    top: 0;
    left: 0;
}

.notify-container--top-center {
    top: 0;
    bottom: unset;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
}

.notify-container--top-right {
    bottom: unset;
    right: 0;
    left: unset;
    top: 0;
}

.notify-container--bottom-left {
    bottom: 0;
    right: unset;
    left: 0;
    top: unset;
}

.notify-container--bottom-center {
    bottom: 0;
    right: unset;
    left: 50%;
    top: unset;
    transform: translateX(-50%);
}

.notify-container--fixed {
    position: fixed;
}

.notify-container * {
    box-sizing: border-box;
}

.notify__wrapper {
    overflow: hidden;
    height: auto;
    margin: 0;
    border-radius: 3px;
    display: flex;
    min-width: auto;
    transition-property: all;
    transition-timing-function: ease;
    transition-duration: 0.5s;
}

.notify {
    display: inline-flex;
    box-sizing: border-box;
    border-radius: 3px;
    color: #eee;
    font-size: 16px;
    background-color: #131517;
    vertical-align: bottom;
    margin: 0 10px;
    flex-grow: 1;
}

.notify__close,
.notify__status,
.notify__message-wrapper {
    position: relative;
}

.notify__message-wrapper {
    flex: 1;
    padding: 12px;
}

.notify__message {
    display: inline-block;
}

.notify__status {
    display: none;
    min-width: 15px;
    margin-right: 5px;
    border-radius: 3px 0 0 3px;
    background-color: transparent;
}

.notify__status.notify--success,
.notify__status.notify--warning,
.notify__status.notify--danger,
.notify__status.notify--info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify__status.notify--success {
    background-color: #4caf50;
}

.notify__status.notify--warning {
    background-color: #ff9800;
}

.notify__status.notify--danger {
    background-color: #b90909;
}

.notify__status.notify--info {
    background-color: #2196f3;
}

.notify__icon {
    display: block;
    border: 2px solid white;
    font-weight: bold;
    border-radius: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
    margin: 0 5px;
    font-family: monospace;
}

.notify__action {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: #838cff;
    cursor: pointer;
}

.notify__action:hover {
    background-color: #333;
}

.notify__close {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 10px;
    user-select: none;
    color: #BBB;
}

.notify__close:hover {
    background-color: #1e1e1e;
}

#description {
    border: 1px var(--bs-border-color) solid;
    background: var(--bs-form-control-bg);
    padding: 15px 20px;
    margin: 10px 0;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #494f55;
    border-color: #333;
}

.page-link {
    color: #b7b7b7;
}