:root {
    --app-primary: #789feb;
    --app-bg-color-1: #122134;
    --app-bg-color-2: #04172e;
}

/* width */
::-webkit-scrollbar {
    width: 0.2rem;
    height: 0.2rem;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--app-bg-color-2);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #cacfd2;
    border-radius: 0.2rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav > li > a .badge {
    right: 5px;
    top: 6px;
    height: 10px;
    width: 10px;
    line-height: 1.3;
}

.coin-name {
    color: #3c4043;
}

.notification-item p {
    white-space: unset;
}

.notification-item .status {
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    padding: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/*QR Code Style*/
.qr-container {
    position: relative;
    width: min-content;
    margin: auto;
    border-radius: 20px;
    border: 10px solid #789feb;
    padding: 10px;
}

.qr-container img {
    max-width: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 5px;
    z-index: 23;
}

.preloader {
    top: 0 !important;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    overflow: visible;
    background: #FFF url(/assets/img/logo/preloader.gif) no-repeat center center;
}

button.disabled {
    filter: grayscale(.6);
}

#shareFrame {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
    display: none;
}

#shareFrame .close-search-form {
    position: absolute;
    right: 20px;
    top: 20px;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #FFF;
    background: #6de3c2;
    border: solid 1px #ccc;
    border-radius: 3px;
    cursor: pointer;
}

#shareFrame .close-search-form:focus, .search-form .close-search-form:hover {
    background-color: transparent;
    color: #FFF;
}

.update-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    color: white;
}

.swal2-styled.swal2-confirm {
    background-color: var(--app-primary);
}

html {
    background-color: var(--app-bg-color-1);
}

body {
    background-color: var(--app-bg-color-1);
}

.navbar-default {
    box-shadow: 1px 1px 4px 1px black;
    background-color: var(--app-bg-color-2);
}

.page-header-title {
    background-color: var(--app-bg-color-1);
}

.footer {
    background-color: var(--app-bg-color-2);
}

.hover-hue {
    transition: filter 500ms;
}

.hover-hue:hover {
    filter: hue-rotate(
            45deg
    );
}

/*
Mobile menu fix
 */
.mobile-menu-fix {
    position: fixed !important;
    height: calc(100vh - 70px);
    overflow-y: auto;
}
