@font-face {
    font-size: inherit; 
    font-family: 'Satoshi';
    src: url(vendors/fonts/Satoshi/Satoshi-Regular.otf);
}
@font-face {
    font-size: inherit; 
    font-family: 'Nunito';
    src: url(vendors/fonts/Nunito/Nunito-Regular.ttf);
}
@font-face {
    font-size: inherit; 
    font-family: 'Poppins';
    src: url(vendors/fonts/Poppins/Poppins-Regular.ttf);
}

:root {
    --primary: #0d6ffd;
    --secondary: #ffffff;
}

* {
    outline: none !important;
    text-decoration: none !important;
    /* transition: 0.2s linear; */
}

html, body {
    margin: 0;
    font-family: 'Satoshi';
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999999;
    transition: 0.5s ease-in-out;
}

.preloader .loader {
    position: relative;
    width: 60px;
    height: 20px;
    margin: auto;
    top: calc(50vh - 40px);
    overflow: hidden;
}

.preloader .loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    animation: s1 1s ease-in-out 0s infinite alternate;
}

@keyframes s1 {
    0% {
        left: -90%;
    }
    100% {
        left: 50%;
    }
}

.preloader .loader::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    animation: s2 1s ease-in-out 0s infinite alternate;
}

@keyframes s2 {
    0% {
        right: -90%;
    }
    100% {
        right: 50%;
    }
}

.app {
    position: relative;
}

.app .auth {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--primary);
}

.auth .auth-body {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 20vh;
    width: 1200px;
    height: auto;
    margin: auto;
    z-index: 1;
}

.auth-body.x-auto {
    top: 35vh;
}

.auth-body .welcome {
    width: 600px;
    color: #fff;
}

.welcome img {
    width: 40px;
}

.welcome .brand {
    font-size: 20px;
    color: #fff;
}

.welcome h2 {
    margin-top: 40px;
    font-size: 40px;
    font-weight: bold;
}

.welcome .text {
    margin-top: 50px;
    font-size: 16px;
    letter-spacing: 1px;
}

.auth-body form {
    width: 420px;
    height: auto;
    max-height: 700px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}

.auth-body form section {
    margin-bottom: 20px;
}

section#interest {
    display: none;
}

.auth-body form h2 {
    font-weight: bold;
}

.auth-body form .text {
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
}

.auth-body form s {
    position: absolute;
    top: 14px;
    right: 5px;
    cursor: pointer;
    z-index: 100;
}

.auth-body form .icon {
    position: absolute;
    z-index: 9 !important;
    margin-left: 5px;
    margin-top: 12px;
    font-size: 16px;
    color: #999
}

.auth-body form .msg {
    width: 100%;
    height: 70px;
    background: #0d54fd4d;
    color: #000;
    padding: 10px;
    letter-spacing: .5px;
    font-size: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.msg.error {
    background: #f5c6cb;
}

.auth-body form label {
    font-size: 10px !important;
    color: #0d6ffd;
    text-transform: uppercase;
    font-weight: bold;
}

.auth-body form input {
    height: 50px !important;
    padding-left: 25px !important;
    font-size: 12px !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    outline: none !important;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.auth-body form button,
[name=signup] button {
    width: 100%;
    height: 40px;
    border-radius: 7px;
    font-size: 14px;
    border: none;
    color: #fff;
    background: var(--primary);
    margin-top: 10px;
}

[name=signup] button {
    width: auto;
    min-width: 300px;
}

.auth-pill {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.auth-pill button {
    font-size: 12px !important;
    background: none !important;
    color: var(--primary) !important;
    border-radius: 50px !important;
}

.auth-pill .active,
.auth-pill *:hover {
    background: #eee !important;
}

.auth-body form .widgets {
    position: relative;
    display: flex;
}

.auth-body form .widgets a {
    display: block;
    width: 50px;
    height: 50px;
    border: 1.5px solid;
    margin: 5px;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s ease-in-out;
}

.auth-body form .widgets a:hover {
    color: #fff !important;
}

.auth-body form img.offsvg {
    position: absolute;
    top: -50px;
    opacity: .0;
    width: 300px;
    margin-left: 120px;
    z-index: -1;
    animation: peek 1s ease-in-out 1s 1 forwards;
}

@keyframes peek {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: -150px;
        opacity: 1;
    }
}

.auth-body form #steps:not(._1_) {
    display: none;
}

input:read-only {
    background: none !important;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: 0.5s ease-in-out;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.overlay .modal.sfc-data {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 400px;
    height: 200px;
    padding: 50px;
    background: #fff;
}

.overlay .modal.deposit {
    display: block;
    position: relative;
    top: -40%;
    width: 400px;
    height: 200px;
    opacity: .0;
    transition: 0.5s ease-in-out;
    padding: 30px;
    background: #fff;
}

.overlay .deposit.show {
    opacity: 1;
    top: -20%;
}

.overlay .deposit h2 {
    height: 30px;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}

.overlay .deposit h2 i {
    float: right;
}

.overlay .deposit input {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.overlay .deposit button {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    margin: auto;
    margin-top: 10px;
    transition: 0.5s ease-in-out;
}

.overlay .deposit button:hover {
    background: #0954c5;
}

.widgets .google {
    border-color: #c30;
    color: #c30 !important;
}

.widgets .google:hover {
    background: #c30;
}

.widgets .facebook {
    border-color: #06f;
    color: #06f !important;
}

.widgets .facebook:hover {
    background: #06f;
}

.widgets .apple {
    border-color: #000;
    color: #000 !important;
}

.widgets .apple:hover {
    background: #000;
}


/**
* DASHBOARD COMPONENTS
**/
.app {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #f7f6f4;
}

.app .sidebar,
.app .content {
    padding: 20px;
}

.app .sidebar {
    flex: 17%;
    background: #fff;
    overflow: hidden;
}

.app .content {
    flex: 83%;
    padding: 0;
    overflow: auto;
}

.sidebar .topbar {
    height: 55px;
    color: var(--primary);
    padding: 10px;
    padding-top: 0;
    font-size: 16px;
    font-weight: bold;
    margin-top: -5px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.sidebar .topbar img {
    margin-right: 5px;
}

.app .sidebar form {
    width: 200px;
    height: 40px;
    margin-bottom: 30px;
    background: #f7f6f4;
    border-radius: 50px;
    overflow: hidden;
}

.app .sidebar form select {
    width: 100%;
    border: none;
    background: none;
    box-shadow: none;
    padding: 10px;
    font-size: 12px;
    text-align: center;
    color: #0d6ffd;
}

.sidebar .menu {
    position: relative;
}

.sidebar .menu ul {
    list-style: none;
    padding: 0;
}

.sidebar .menu ul li {
    width: 200px;
    height: 40px;
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: .5px;
    padding-top: 10px;
    padding-left: 20px;
    transition: 0.2s ease-in-out;
}

.sidebar .menu ul a {
    color: inherit;
}

.sidebar ul a:last-child {
    color: red;
}

.sidebar .menu li:hover,
.sidebar .menu li.active {
    color: #fff;
    background: var(--primary);
    border-radius: 100px;
    cursor: pointer;
}

.sidebar .menu ul li span {
    display: inline-block;
    float: right;
    font-size: 7px;
    color: grey;
    margin-top: 6px;
    margin-right: 10px;
    transition: 0.2s ease-in-out;
}

.sidebar .menu li:hover span,
.sidebar .menu li.active span {
    color: #fff;
}

.sidebar .menu li img {
    margin-right: 10px;
    filter: grayscale(1);
}

.sidebar .menu li:hover img
.sidebar .menu li.active img {
    filter: grayscale(1) brightness(1) invert();
}

.sidebar .menu button {
    width: 100px;
    height: 30px;
    border: none;
    margin-left: 15px;
    font-size: 12px;
    background: #eee;
    border-radius: 100px;
}

.dark .sidebar .menu button {
    background: #20252c;
    color: #fff;
}

.sidebar .menu button i {
    font-size: small;
}

.sidebar .menu button i {
    margin-right: 3px;
    font-size: 15px;
}

.sidebar img.vicky {
    width: 250px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.content header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    background: #fff;
    padding: 0 40px 0 40px;
}

.content header form {
    position: relative;
    width: 400px;
    height: 40px;
    background: #f7f6f4;
    border-radius: 10px;
    overflow: hidden;
}

.content header form i {
    position: absolute;
    margin: 7px;
    margin-left: 14px;   
}

.content header form input {
    width: 100%;
    height: 100% !important;
    background: transparent;
    border: none;
    padding-left: 35px !important;
    font-size: small;
}

.content header .links {
    display: flex;
    justify-content: end;
    align-items: center;
    width: auto;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .2px;
}

.content header .links .p img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin-left: 10px;
}

.content header .links .n {
    position: relative;
}

.content header a:last-child {
    display: none;
    font-size: 25px;
    margin-left: 10px;
    color: #666;
}

.content header .links .notif {
    position: absolute;
    width: 300px;
    height: auto;
    min-height: 50px;
    max-height: 300px;
    z-index: 1;
    left: -260px;
    top: 50px;
    border-radius: 10px;
    opacity: .0;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
    background: #fff;
    transition: 0.5s ease-in-out;
    visibility: hidden;
    overflow: auto;
}

.content header .notif .msg {
    display: flex;
    align-items: center;
    height: 50px;
    background: #f7f6f4;
    font-size: 10px;
    margin-bottom: 1px;
    padding: 10px;
    font-family: 'Poppins';
    transition: 0.2s ease-in-out;
    overflow: hidden;
}

.content header .notif .msg .i {
    width: 35px;
    height: 35px;
    border-radius: 100px;
    flex: 0 0 auto;
    background: #20252c;
    padding-top: 10px;
    margin-right: 10px;
    text-align: center;
}

.content header .notif .msg .b {
    flex: 0 0 auto;
    width: calc(100% - 50px);
    overflow: hidden;
}

.content header .notif .msg span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.content header .notif .msg img {
    filter: brightness() contrast(0)
}

.content header .msg:hover {
    background: #0d54fd4d;
}

.content header .n:hover .notif {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

.content main {
    position: relative;
    padding: 40px;
    padding-bottom: 0;
}

.content main .tile {
    position: relative;
    width: 100%;
    min-height: 320px;
    background: #fff;
    padding: 40px 40px 0 40px;
    margin-bottom: 30px;
    border-radius: 15px;
}

.content main .tile.sm {
    min-height: auto;
    margin-bottom: 20px;
}

.content main .tile.fit {
    padding: 20px;
    min-height: 277.86px;
}

.content main .tile.xxl {
    height: 370px;
}

.content main .tile h2,
.content main h2.title,
.content main h3.title {
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content main h2.title {
    margin-left: 10px;
    font-size: 16px;
    text-transform: none;
}

.content main h3.title {
    font-size: 20px;
    text-transform: none;
    margin-bottom: 50px;
}

.content main h2.title font {
    color: grey;
}

.content main h2.title.alt {
    font-size: 10px;
    text-transform: uppercase;
}

.content main .tile img.dock {
    position: absolute;
    width: 300px;
    bottom: -35px;
    right: -40px;
    pointer-events: none;
}

.content main .tile span.log {
    font-size: 33px;
    font-weight: bold;
}

.content main .book .read {
    width: 95px;
    height: 35px;
    border: none;
    font-size: 12px;
    font-weight: bold;
    border-radius: 7px;
    color: #fff;
    background: var(--primary);
    cursor: pointer;
    letter-spacing: .5px;
}

.content main h3.title span {
    color: #999;
}

.content main h3.title .btns {
    float: right;
    margin-top: -5px;
}

.content main h3.title button {
    border: none;
    width: auto;
    min-width: 40px;
    font-size: 12px;
    padding: 10px;
    border-radius: 20px;
    color: #fff;
    background: var(--primary);
    cursor: pointer;
}

.content main h3.title .danger {
    background: #c30;
}

.content main h3.title button img {
    width: 20px;
    height: 20px;
}

.content main .tile h2 a {
    color: var(--primary);
    float: right;
    text-transform: none;
    letter-spacing: normal;
}

.content main .tile .hello {
    position: relative;
    font-size: 20px;
    font-family: 'Nunito';
}

.content main .hello span {
    display: block;
    margin-bottom: 20px;
}

.content main .hello small {
    display: block;
    font-size: 14px;
}

.content main .tile .ticker {
    position: absolute;
    top: 150px;
    right: 0;
    width: 160px;
    padding: 5px;
    height: 100px;
}

.content main .tile .alert {
    font-size: 12px;
    margin-bottom: 36px;
}

.content main .ticker .pipe {
    position: relative;
    width: 100%;
    height: 7px;
    margin-bottom: 35px;
    background: red;
    border-radius: 50px;
}

.content main .pipe h4 {
    position: absolute;
    top: -16px;
    font-size: 12px;
}

.content main .pipe span {
    display: flex;
    position: relative;
    width: 30px;
    height: 30px;
    background: red;
    color: #fff;
    top: -12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: bold;
    float: right;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;    
}

.content main .tile .book {
    display: flex;
    width: 100%;
    height: 60px;
    margin-bottom: 5px;
}

.content main .book img {
    width: 40px;
    height: 50px;
    margin-right: 10px;
    flex: 0 0 auto
}

.content main .book .info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    font-size: 12.5px;
}

.content main .book .info h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.content main .tile .stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.content main .tile .graph {
    position: relative;
    display: flex;
    justify-content: space-around;
    width: 200px;
    height: 110px;
    float: right;
}

.content main .graph .line {
    position: relative;
    width: 10px;
    height: 100%;
    background: #0d6ffd40;
    border-radius: 8px;
    overflow: hidden;
}

.content main .graph .line .v {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
}

.content main .tile .facts {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content main .facts .box {
    width: 200px;
    height: 60px;
    font-size: 12px;
}

.content main .box .icon {
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 18px;
    background: #71b4f521;
    float: left;
    margin-right: 20px;
    border-radius: 100px;
}

.content main .box .icon i {
    position: relative;
    top: -3px;
    font-size: 30px;
    color: grey;
    line-height: 0;
}

.content main .box .icon img {
    width: 25px;
}

.content main .box span {
    display: block;
    margin-top: 10px;
    font-size: 12px;
}

.content main .box small {
    font-size: 18px;
    font-weight: bold;
}

.content main .stats .card {
    width: 150px;
    height: 90px;
    background: dodgerblue;
    color: #fff;
    border: none;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    justify-content: space-between;
}

.content main .stats .card a {
    color: inherit;
}

.content main .card h5 {
    font-size: 12.5px;
    margin: 0;
}

.content main .card img {
    position: absolute;
    right: 10px;
    top: 17px;
    width: 25px;
    height: 25px;
    filter: grayscale(1) brightness(1) invert();
}

.content main .card span {
    font-size: 25px;
    font-weight: bold;
}

.content form .form-group {
    position: relative;
    margin-bottom: 40px;
}

.content .form-group label {
    display: block;
    font-size: 12px;
}

.content .form-group .hint {
    position: relative;
}

.content .form-group .hint label {
    margin-bottom: 5px;
}

.content .form-group .hint span {
    display: block;
    width: 90%;
    font-size: 12px;
    color: #999;
}

.content .form-group input, 
.content .form-group select,
.content .form-group textarea {
    width: 100%;
    height: 50px;
    padding: 0;
    border-radius: 2px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    background: transparent;
}

.content .form-group textarea {
    height: 100px;
    resize: none;
}

.content .form-group select option {
    font-family: 'Nunito';
}

.content .form-group input:focus, 
.content .form-group select:focus {
    border-color: var(--primary);
}

.content .form-group a.icon-btn {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-top: 23px;
    padding: 8px;
    background: #09f;
    color: #fff;
    text-align: center;
    cursor: pointer;
    line-height: 0;
    font-size: 14px;
    font-weight: 100;
    border-radius: 50px;
}

.content form button {
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    background: var(--primary);
    margin-bottom: 10px;
    cursor: pointer;
}

.content form button.danger,
.content .form-group .danger {
    background: #c30 !important;
}

.content form .mdb button {
    width: auto;
    height: auto;
    background: none;
    color: #09f;
    margin-top: 13px;
    font-size: 14px;
}

.content main .-x- {
    text-align: center;
    width: 350px;
    height: auto;
    margin: auto;
    margin-top: 13vh;
}

.content main .-x-.lg {
    width: 800px;
}

.content main .-x- button {
    display: block;
    margin-top: 10px;
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 100px;
    color: #fff;
    background: var(--primary);
    font-size: 12px;
    margin: auto;
    margin-top: 20px;
}

.content main .-x- h2 {
    font-size: 20px;
    text-transform: none;
}

.content main .-x- span {
    font-size: 14px;
    letter-spacing: .5px;
}

.content main .overflow-x {
    overflow: hidden;
}

.content main .table {
    padding: 50px;
    background: #fff;
}

.content main table {
    width: 100%;
    white-space: nowrap;
    background: #fff;
    font-family: 'Nunito';
    overflow: hidden;
}

.content main table thead {
    height: 50px;
    font-size: 12px;
    font-weight: bold;
    background: #f7f6f4;
}

.content main table tbody {
    font-size: 12px;
}

.content main table td {
    height: 70px;
    padding-top: 30px;
    vertical-align: middle;
}

.content main table td img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.content main table td .pill {
    display: inline-block;
    width: auto;
    min-width: 50px;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 8px;
    border: 1px solid #666;
    color: #666;
    text-align: center;
    text-transform: uppercase;
}

.content main table .pill.pending {
    color: #f90;
    border-color: #f90;
}

.content main table .pill.success {
    color: #090;
    border-color: #090;
}

.content main table .pill.danger {
    color: #c30;
    border-color: #c30;
}

.content main table td button {
    width: 70px;
    border: none;
    text-transform: uppercase;
    padding: 5px;
    font-size: 10px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.content main table td button.disc {
    width: 35px;
    height: 35px;
    border-radius: 100px;
    font-size: 16px;
}

#profile {
    position: relative;
}

#profile .user-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    padding-bottom: 40px;
}

#profile .user-img img {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
    border-radius: 100px;
}

#profile .user-img span {
    font-weight: bold;
    font-size: 14px;
    color: var(--primary);
}

#bookque {
    position: relative;
}

#bookque .packages {
    position: relative;
}

#bookque .packages .top {
    width: 500px;
    text-align: center;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
}

#bookque .packages .top h2 {
    font-size: 30px;
    font-weight: bold;
}

#bookque .packages .top span {
    font-size: 14px;
    color: #666;
}

#bookque .packages .items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

#bookque .packages .items .plan {
    flex: 0 0 auto;
    width: 320px;
    height: auto;
    background: #fff;
    color: black;
    padding: 20px;
    padding-top: 40px;
    margin-bottom: 20px;
    border-radius: 7px;
    box-shadow: 0px 10px 50px 0px #eee;
    overflow: hidden;
}

#bookque .packages .plan:nth-child(2n){
    transform: scale(1.1);
    padding-top: 57px;
    color: #fff;
    background: var(--primary);
}

#bookque .packages .items .plan h2,
#bookque .packages .items .plan h3 {
    margin: auto;
    width: 200px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Nunito';
}

#bookque .packages .items .plan .ribbon {
    position: absolute;
    top: 30px;
    left: -55px;
    width: 200px;
    background: #fff;
    color: var(--primary);
    font-size: 10px;
    padding: 5px;
    text-align: center;
    transform: rotate(-45deg);
}

#bookque .packages .items .plan h2 {
    font-size: 35px;
    margin-top: 0;
    font-family: 'Satoshi';
    letter-spacing: normal;
}

#bookque .packages .plan hr {
    width: 70%;
    border-color: #666;
    margin-left: auto;
    margin-right: auto;
}

#bookque .packages .plan select {
    margin: auto;
    display: block;
    border-radius: 100px;
    background:#fff;
    border: none;
    font-size: 12px;
    padding: 5px;
    width: 100px;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.1);
}

#bookque .packages .plan small {
    text-align: center; 
    font-size: 12px; 
    margin: 15px 0; 
    display: block; 
    letter-spacing: .5px
}

#bookque .packages .plan h2 span {
    font-size: 20px;
}

#bookque .packages .plan a {
    display: block;
    width: 100%;
    height: 40px;
    margin: auto;
    margin-bottom: 10px;
    color: var(--primary);
    padding: 10px;
    background: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid var(--primary);
}

#bookque .packages .plan ul {
    margin: 0;
    margin-top: 50px;
    margin-bottom: 40px;
    font-family: 'Nunito';
}

#bookque .packages .plan:nth-child(2n) ul {
    margin-top: 37px;
}

#bookque .packages .plan ul li {
    font-size: 13px;
    font-weight: bold;
    list-style: none;
    margin-bottom: 10px;
}

#bookque .packages .plan:nth-child(2n) li {
    margin-bottom: 7px;
}

#bookque .packages .plan ul li span {
    font-weight: normal;
}

#bookque .bookque {
    position: relative;
    width: 100%;
    height: 200px;
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

#bookque .bookque.bg {
    color: #fff;
    background: #0d6ffd;
}

#bookque .bookque:hover {
    color: #fff;
    background: #0d6ffd;
    box-shadow: 0px 0px 20px 0px #ccc;
    transform: scale(1.05);
}

#bookque .bookque .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    opacity: 1;
    visibility: visible;
}

#bookque .bookque.bg * {
    color: #fff !important;
    z-index: 9 !important;
}

#bookque .bookque .logo {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#bookque .bookque .logo img {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    padding: 2px;
    background: #06f;
}

#bookque .bookque .logo span {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: auto;
    min-width: 50px;
    height: 15px;
    font-size: 8px;
    font-weight: bold;
    padding: 1px 5px 1px 5px;
    border: 1px solid #c30;
    color: #c30;
    text-align: center;
}

#bookque .bookque.bg .logo span {
    border: 1px solid #fff;
}

#bookque .bookque .logo .warning {
    border: 1px solid #f90;
    color: #f90;
}

#bookque .bookque .logo .info {
    border: 1px solid #06f;
    color: #06f;
}

#bookque .bookque .logo .success {
    border: 1px solid #090;
    color: #090;
}

#bookque .bookque h2 {
    position: relative;
    z-index: 1;
    height: 35px;
    font-size: 14px;
    letter-spacing: 1.2px;
    font-weight: bold;
    color: inherit;
    margin-bottom: 20px;
    overflow: hidden;
}

#bookque .bookque.bg h2 span {
    color: #ccc !important;
}

#bookque .bookque h3 {
    position: relative;
    z-index: 1;
    font-size: 25px;
    color: #06f;
    transition: 0.5s ease-in-out;
}

#bookque .bookque:hover h3 {
    color: #fff;
}

#bookque .bookque h3 img {
    position: relative;
    top: -2px;
    width: 30px;
}

#bookque .bookque a.next i {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 50px;
    font-style: normal;
    transition: 0.5s ease-in-out;
}

#bookque .bookque.bg a.next i {
    right: 30px;
    bottom: 25px;
}

#bookque .bookque:hover a {
    color: #fff;
}

#bookhut {
    position: relative;
}

#bookhut .bookhut {
    display: flex;
    gap: 20px;
    height: 210px;
    padding-left: 10px;
    overflow-y: hidden;
    overflow-x: auto;
}

#bookhut .bookhut .card {
    display: block;
    position: relative;
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    min-height: 150px;
    background: none;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 0;
    padding: 10px;
    padding-left: 30px;
    font-family: 'Nunito';
    overflow: hidden;
}

#bookhut .bookhut .card.sm {
    width: 289px;
    margin-top: 0;
    margin-bottom: -7px;
}

#bookhut .bookhut .card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
    display: block;
    visibility: visible;
    opacity: 1;
}

#bookhut .bookhut .card img {
    position: relative;
    top: 0;
    z-index: 999;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    filter: none;
    margin: 20px 0 5px 0;
    border: 2px solid #fff;
}

#bookhut .bookhut .card span {
    position: relative;
    z-index: 999;
    font-size: 13px;
    text-align: left;
    color: #fff;
}

#bookhut .wallet {
    position: relative;
    width: 100%;
    height: 150px;
    background: url(../images/bg-art1.jpg);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
}

#bookhut .wallet * {
    position: relative;
}

#bookhut .wallet .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0,0,0,.3);
}

#bookhut .wallet h2 {
    font-size: 12px;
    text-transform: none;
}

#bookhut .wallet span {
    font-weight: bold;
    font-size: 25px;
}

#bookhut .tile.wl-mh {
    min-height: 150px;
}

#bookhut .wallet button {
    display: block;
    width: 110px;
    height: 30px;
    margin-top: 10px;
    border: none;
    background: #97224f;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    transition: 0.2s ease-in-out;
}

#bookhut .wallet button:hover {
    background: #ca1859;
}

#bookhut .dp-tnx {
    padding-top: 10px;
    font-size: 12px;
}

#explore header {
    position: relative;
    height: 250px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 70px;
}

#explore header img {
    position: absolute;
    bottom: -50px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    padding: 7px;
    border: 1px solid #0d6ffd;
}

#explore .info {
    position: relative;
    max-width: 70%;
    margin-bottom: 60px;
}

#explore .info h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

#explore .info h2 i {
    display: inline-block;
    position: relative;
    top: -2px;
    background: #0d6ffd;
    color: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    text-align: center;
    font-size: 10px;
}

#explore .info h2 div {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    font-size: 12px;
}

#explore .info h2 div s {
    flex: 0 0 auto;
    width: 25px;
    text-align: center;
    padding: 4px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
    border-radius: 2px;
    transition: 0.2s ease-in-out;
}

#explore .info h2 div s:hover {
    color: #fff;
    background: var(--primary);
}

#explore .info span {
    font-size: 14px;
    letter-spacing: .4px;
}

#explore .info span.pill {
    font-size: 8px;
    border-radius: 100px;
    color: #fff;
    background: #7e7a7a;
    padding: 2px;
    width: 70px;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

#explore .info .stat {
    margin-top: 20px;
}

#explore .info .stat span {
    font-size: 12px;
    margin-right: 10px;
    color: #0d6ffd;
}

#explore .info button {
    width: 125px;
    height: 35px;
    font-size: 12px;
    color: #fff;
    background: #0d6ffd;
    border: none;
    border-radius: 100px;
}

#explore .info .disabled button {
    color: #000;
    background: #ccc;
}

#hutrock {
    position: relative;
}

#hutrock .note {
    position: relative;
    width: 100%;
    height: 150px;
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    z-index: 2;
    font-family: 'Nunito';
    transition: 0.5s ease-in-out;
}

#hutrock .note h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#hutrock .note h2 .action {
    margin: 0;
    color: inherit;
}

#hutrock .note h2 .action a {
    font-size: 14px;
    font-weight: normal;
    color: inherit;
    text-shadow: 1px 1px 1px #666;
}

#hutrock .note span.text {
    display: block;
    height: 40px;
    font-size: 12px;
    cursor: pointer;
}

#hutrock .note .action {
    margin-top: 30px;
    color: #000;
}

#hutrock .note .action a {
    margin-right: 5px;
    color: inherit;
}

#hutrock .note .action small {
    float: right;
    font-size: 10px;
    margin-top: 5px;
}

#hutrock .item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'Nunito';
    transition: 0.5s ease-in-out;
}

#hutrock .item:hover {
    background: none;
    box-shadow: 0px 10px 10px #eee;
}

#hutrock .item .l {
    width: 100%;
}

#hutrock .item .r {
    position: absolute;
    top: 17px;
    right: 20px;
}

#hutrock .item img {
    width: 50px;
    height: 66px;
    float: left;
    margin-right: 10px;
}

#hutrock .item h2 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

#hutrock .item span {
    display: block;
    font-size: 12px;
    color: #666;
    max-height: 40px;
    cursor: pointer;
}

#hutrock .item span.date {
    font-size: 11px;
    margin-top: 10px;  
    color: #999;
}

#hutrock .item .action a {
    margin-left: 15px;
}

#hutrock .data .action a i {
    pointer-events: none;
}

#hutshelf {
    position: relative;
}

#hutshelf .item {
    position: relative;
    width: 100%;
    height: 180px;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

#hutshelf .item:hover {
    background: #fff;
    box-shadow: 0px 10px 20px #ccc;
}

#hutshelf .item img {
    width: 140px;
    height: 180px;
    margin-right: 20px;
    float: left;
}

#hutshelf .item h2 {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 0;
    letter-spacing: .5px;
}

#hutshelf .item span {
    font-size: 10px;
}

#hutshelf .item .ribbon {
    position: absolute;
    top: 15px;
    left: -25px;
    width: 100px;
    height: 15px;
    color: #fff;
    background: dodgerblue;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    padding: 2px;
    transform: rotate(-45deg);
}

#hutshelf .item a.x {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 25px;
    color: #ccc;
}

#hutshelf .item a.x:hover {
    color: #c30;
}

#hutshelf .item .label {
    display: inline-block;
    margin-top: 50px;
    border: 1px solid #09f;
    color: #09f;
    padding: 2px 10px 2px 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

#hutdesk {
    position: relative;
}

#hutdesk .paper {
    position: relative;
    width: 100%;
    height: 600px;
    background: #fff;
    margin: auto;
    overflow: hidden;
}

#hutdesk .paper .page {
    position: relative;
    height: 100%;
    /* flex-basis: 100%; */
    overflow: hidden;
}

#hutdesk .paper .info {
    position: absolute;
    top: 0;
    left: -350px;
    /* flex-basis: 30%; */
    width: 300px;
    height: 100%;
    padding: 10px;
    color: #282826;
    z-index: 99999;
    background: #fff;
    text-align: center;
    font-family: 'Nunito';
    box-shadow: 5px 10px 10px 0px rgba(0,0,0,.1);
    transition: 0.5s ease-in-out;
}

#hutdesk .paper.fv {
    display: flex;
    height: 400px;
}

#hutdesk .paper.fv .info {
    position: relative;
    left: 0;
    flex-basis: 25%;
}

#hutdesk .paper.fv .page {
    flex-basis: 75%;
}

#hutdesk .paper .page .book {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
}

#hutdesk .paper .page #header {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 100%;
    background: #fff;
    z-index: 99999;
    transition: 0.5s ease-in-out;
    opacity: .0;
}

#hutdesk .paper:hover #header {
    opacity: 1;
}

#hutdesk .paper .page #header .navMenu {
    width: 40px;
    background: #f7f6f4;
    cursor: pointer;
    text-align: center;
    padding: 9px;
    margin-right: 15px;
    transition: 0.2s ease-in-out;
}

#hutdesk .paper .page #header .toolbar {
    display: flex;
    flex: 0 0 auto;
    padding: 13px;
    gap: 20px;
    font-size: 14px;
}

#hutdesk .paper .page #header .toolbar span {
    display: inline-block;
    width: 20px;
    color: #666;
    text-align: center;
    cursor: pointer;
}

#hutdesk .paper .page #header .toolbar span:hover {
    color: #333;
}

#hutdesk .paper .page #header .search {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;

}

#hutdesk .paper .page #header .control {
    flex: 0 0 auto;
    font-size: 12px;

}

#hutdesk .paper .page #header .control select {
    width: 120px;
    height: 40px;
    padding: 5px;
    border: none;
    background: #fff;    
}

#hutdesk .paper .page #viewer {
    width: 100%;
    height: 100%;
}

#hutdesk .paper .page #viewer #viewer_search_box {
    z-index: 99999 !important;
}

#hutdesk .paper .page #viewer .e-spin-material {
    display: none !important;
}

#hutdesk .paper .page #modals {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: .0;
    z-index: 99999;
    transition: 0.2s ease-in-out;
    visibility: hidden;
}

#hutdesk .paper .page #modals.show {
    opacity: 1;
    visibility: visible;
}

#hutdesk .paper .page #modals iframe {
    width: 80%;
    height: 500px;
    background: #fff;
    padding: 5px;
    transform: scale(0.5);
    opacity: .0;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

#hutdesk .paper .page #modals.show iframe {
    opacity: 1;
    transform: scale(1.0);
}

#hutdesk .paper .page #modals span {
    color: #fff;
    font-size: 50px;
    line-height: 0;
    cursor: pointer;
}

#hutdesk .paper .page .loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hutdesk .paper .page .loader img {
    width: 50px;
    height: 50px;
}

#hutdesk .paper .page .book img {
    margin: 0;
}

#hutdesk .paper .page .tray {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 95%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    width: auto;
    height: 50px;
    gap: 20px;
    box-shadow: 0px 10px 20px 0px #eee;
    padding: 10px;
    background: #fff;
    opacity: .0;
    transition: 0.5s ease-in-out;
}

#hutdesk .paper .page .tray a {
    cursor: pointer;
}

#hutdesk .paper .page:hover .tray {
    top: 92%;
    opacity: 1;
}

#hutdesk .paper .page .offv {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .0;
    transition: 0.5s ease-in-out;
    overflow-x: auto;
    overflow-y: hidden;
}

#hutdesk .paper .page .offv.show {
    right: 0;
    opacity: 1;
    z-index: 999;
}

#hutdesk .paper .page .offv iframe {
    width: 100%;
    height: 100%;
}

#hutdesk .paper .page a {
    font-size: 12px;
    text-align: center;
    color: #0d6ffd;
}

#hutdesk .paper .page a:hover {
    color: #282826;
}

#hutdesk .paper .page a img {
    width: 20px;
    height: 20px;
    display: block;
    margin: auto;
}

#hutdesk .paper .page .chat {
    height: calc(100% - 60px);
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

#hutdesk .paper .chat .msg {
    display: inline-block;
    width: auto;
    min-width: 30%;
    max-width: 70%;
    height: auto;
    min-height: 70px;
    padding: 15px;
    background: #0d6ffd;
    color: #fff;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 10px;
}

#hutdesk .paper .chat .msg span {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    color: #eee;
    font-weight: bold;
}

#hutdesk .paper .chat .msg font {
    color: #ccc;
    font-weight: normal;
}

#hutdesk .paper .page form {
    position: relative;
    background: #f7f6f4;
    width: 100%;
    height: 60px;
}

#hutdesk .paper .page form input {
    border: none;
    width: 100%;
    background: none;
    height: 100%;
    padding: 20px;
    padding-right: 50px;
    font-size: 14px;
}

#hutdesk .paper .page form button {
    width: auto;
    height: auto;
    background: transparent;
    margin: 0;
}

#hutdesk .paper .page form i {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    color: #06f;
}

#hutdesk .paper .info.show {
    left: 0;
}

#hutdesk .paper .info img {
    width: 200px;
    height: 250px;
    margin-top: 20%;
    box-shadow: 0px 10px 20px 0px #ccc;
    margin-bottom: 10px;
}

#hutdesk .paper .info h2 {
    font-size: 16px;
    padding: 20px;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

#hutdesk .paper .info h3 {
    font-size: 12px;
    color: #999;
}

#hutdesk .paper .info .stat {
    width: 100px;
    margin: auto;
    background: #282826;
    height: 30px;
    color: #fff;
    font-size: 12px;
    padding: 5px;
    margin-top: 40px;
    border-radius: 50px;
}

#hutdesk .paper .info button {
    margin-top: 40px;
    width: 150px;
    height: 30px;
    background: none;
    font-size: 10px;
    text-transform: uppercase;
}

#hutdesk .paper .info .pending {
    border: 1px solid #f90;
    color: #f90;
}

#hutdesk .paper .info .success {
    border: 1px solid #090;
    color: #090;
}

#hutchat {
    position: relative;
    margin-top: 100px;
}

#hutchat .wall {
    position: relative;
    width: 100%;
    height: auto;
    margin: auto;
}

#hutchat .wall .chat {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

#hutchat .wall .chat img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

#hutchat .wall .chat .box {
    width: 100%;
    margin-left: 10px;
    border-radius: 10px;
    overflow: hidden;
}

#hutchat .wall .box h2 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    margin-top: 10px;
}

#hutchat .wall .box h2 span {
    font-size: 12px;
    font-weight: normal;
    float: right;
    color: #999;
}

#hutchat .wall .box small {
    color: #0d6ffd;
    font-size: 12px;
}

#hutchat .wall .chat .msg {
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 20px;
    background: #fff;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
}

#hutchat .fab {
    position: fixed;
    right: 90px;
    bottom: 50px;  
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    background: var(--primary);
    transition: 0.5s ease-in-out;
}

#hutchat .fab:hover {
    color: var(--primary);
    background: #fff;
    cursor: pointer;
}

#hutchat .fab i {
    display: block;
    transition: 0.5s ease-in-out;
}

#hutchat .fab:hover i {
    transform: scale(1.2);
}

#hutchat form {
    position: fixed;
    right: 87px;
    bottom: 90px;
    width: 400px;
    height: 150px;
    background: #fff;
    opacity: .0;
    pointer-events: none;
    visibility: hidden;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
}

#hutchat form.show {
    opacity: 1;
    bottom: 120px;
    visibility: visible;
    pointer-events: all;
}

#hutchat form .peek {
    position: absolute;
    width: 100%;
    height: 40px;
    background: #000;
    color: #fff;
    top: -50px;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
    text-align: left;
}

#hutchat form textarea {
    resize: none;
    border: none;
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    padding: 20px;
    font-size: 14px;
    border-radius: 10px;
}

#hutchat form button {
    width: 50px;
    height: 30px;
    float: right;
    border-radius: 100px;
    font-size: 12px;
    margin-right: 10px;
}

#hutchat form #emoji {
    width: 30px;
    margin-right: 5px;
}

#huttalk {
    position: relative;
    height: calc(100vh - 200px);
}

#huttalk .loader {
    position: absolute;
    top: 0;
    left: 0;
    background: #f7f6f4;
    width: 100%;
    height: calc(100dvh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#huttalk .loader span {
    color: #999;
}

#huttalk h4 {
    text-align: center;
    font-size: 16px;
    font-family: 'Nunito';
}

#huttalk .speaker {
    width: 300px;
    height: auto;
    margin: auto;
    margin-top: 10vh;
    font-size: 15px;
    color: #999;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;  
}

#huttalk .speaker img {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    border: 4px solid #fff;
    margin-bottom: 10px;
}

#huttalk .speaker span {
    color: #333;
    letter-spacing: .5px;
}

#huttalk .x-list {
    display: block;
    position: relative;
    left: 8.2vw;
    width: 400px;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: 0.5s ease-in-out;
    opacity: .0;
    transform: scale(0.5);
}

#huttalk .x-list.show {
    transform: scale(1.0);
    opacity: 1;
}

#huttalk .x-list .top {
    padding-bottom: 10px;
    font-size: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

#huttalk .x-list .top span {
    font-weight: bold;
}

#huttalk .x-list .top button {
    float: right;
    border: none;
    background: none;
    color: #666;
    font-size: 25px;
    line-height: 0;
    margin-top: -5px;
}

#huttalk .x-list .top button:hover {
    color: #000;
}

#huttalk .x-list ul {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 200px;
    overflow: auto;
}

#huttalk .x-list ul .busy {
    position: absolute;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#huttalk .x-list ul li {
    position: relative;
    list-style: none;
    padding: 5px;
    padding-bottom: 10px;
    transition: 0.2s ease-in-out;
    margin-bottom: 5px;
}

/* #huttalk .x-list ul li:hover {
    background: #eee;
} */

#huttalk .x-list ul li img {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    margin-right: 5px;
}

#huttalk .x-list ul li span {
    position: relative;
    display: inline-block;
    font-size: 10px;
}

#huttalk .x-list span#role {
    top: -4px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    padding: 0 6px;
    text-align: center;
    font-size: 8px;
    letter-spacing: 1px;
}

#huttalk .x-list span#name {
    display: block;
    margin-top: -4px;
    letter-spacing: .2px;
}

#huttalk .x-list ul li .qac {
    display: flex;
    justify-content: end;
    gap: 5px;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding-right: 5px;
}

#huttalk .x-list ul li .qac button {
    position: relative;
    width: 30px;
    height: 30px;
    background: #eee;
    border: none;
    border-radius: 100%;
    font-size: 14px;
    transition: 0.5s ease-in-out;
}

#huttalk .x-list li:hover .qac button {
    background: #fff;
}

#huttalk .x-list ul li .qac i {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #c30;
    font-size: 10px;
}

#huttalk .x-list .qac #mute:hover {
    color: #fff;
    background: #aaa;
}

#huttalk .x-list .qac #kick:hover {
    color: #fff;
    background: #c30;
}

#huttalk .balloon {
    position: fixed;
    width: 250px;
    height: 80px;
    background: #fff;
    bottom: -20%;
    right: 3%;
    box-shadow: 0px 2px 10px 0px #ddd;
    padding: 20px;
    border-radius: 5px;
    font-size: 12px;
    opacity: .0;
    transition: 0.5s ease-in-out;
}

#huttalk .balloon.show {
    opacity: 1;
    bottom: 5%;
}

#huttalk .balloon img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    float: left;
    margin-right: 10px;
}

#huttalk .control {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: auto;
    height: auto;
}

#huttalk .control .more {
    position: absolute;
    right: -30px;
    cursor: pointer;
    font-size: 18px;
}

#huttalk .control .menu {
    position: absolute;
    width: 180px;
    height: 80px;
    background:#fff;
    top: -70px;
    padding: 20px;
    border-radius: 10px;
    opacity: .0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

#huttalk .more:hover .menu {
    opacity: 1;
    visibility: visible;
    top: -80px;
}

#huttalk .control .menu span {
    display: block;
    font-size: 12px;
    height: 20px;
    line-height: 0;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

#huttalk .control .menu span:hover {
    color: #000;
}

#huttalk .control .menu span i {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 15px;
    font-size: 16px;
    text-align: center;
}

#huttalk .control .menu span:last-child {
    color: #f30 !important;
}

#huttalk .control button {
    position: relative;
    border: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 100px;
}

#huttalk .control button i {
    font-size: 20px;
}

#huttalk .control #users span {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #f30;
    border-radius: 100px;
    font-size: 5px;
    text-align: center;
    padding: 2.5px;
    font-weight: bold;
}

#huttalk .control button:nth-child(1n){
    background: #000;
}

#huttalk .control button:nth-child(2n){
    width: 60px;
    height: 60px;
    background: #09f;
}

#huttalk .control button:nth-child(3n){
    background: #f30;
}

#notch {
    position: fixed;
    width: calc(100% - 17%);
    height: auto;
    text-align: center;
    left: 17%;
    bottom: 0;
    z-index: 999;
    visibility: hidden;
}

#notch.show {
    visibility: visible;
}

#notch .incall {
    position: relative;
    width: 300px;
    background: #000;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,.2);
    padding: 15px;
    border-radius: 0px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 12px;
    opacity: .0;
    transform: scale(.5);
    transition: 0.5s ease-in-out;
}

#notch.show .incall {
    opacity: 1;
    transform: scale(1.0);
}

#notch .incall .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fff;
    font-size: 10px;
}

#notch .incall .btnCl {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: auto;
    margin-top: 10px;
}

#notch .btnCl button {
    flex: 0 0 auto;
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100px;
}

#notch .btnCl button a {
    color: #000;
}

#notch .btnCl button#link {
    background: #fff;
}

#notch .btnCl button#leave {
    width: 40px;
    height: 40px;
    background: #f30;
}

#notch .btnCl button#mic {
    background: #09f;
}

#knetmart {
    position: relative;
}

#knetmart .banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: #0d6ffdd4;
    color: #fff;
    padding: 40px;
    padding-right: 400px;
    margin-bottom: 40px;
    border-radius: 15px;
}

#knetmart .banner h2 {
    color: #fff;
    font-family: 'Nunito';
    margin-top: 30px;
    font-weight: bold;
    line-height: 50px;
}

#knetmart .banner span {
    font-size: 16px;
    letter-spacing: 1.2px;
}

#knetmart .banner .hero {
    position: absolute;
    top: 0;
    right: 20px;
    width: 300px;
    transform: scaleX(-1);
}

#knetmart .banner button {
    width: 150px;
    height: 50px;
    display: block;
    border: none;
    background: #fff;
    color: #0d6ffdd4;
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    padding: 10px;
    border-radius: 50px;
    transition: 0.2s ease-in-out;
}

#knetmart .banner button:hover {
    color: #fff;
    background: #0d6ffdd4;
    cursor: pointer;
}

#knetmart .filter {
    display: flex;
    justify-content: space-between;
    height: 50px;
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
    margin-left: 10px;
    border-radius: 15px;
    margin-top: 0px;
}

#knetmart .filter h2 {
    font-size: 12px;
    font-weight: bold;
    margin: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#knetmart .filter .flexy {
    flex: 1;
}

#knetmart .filter .group {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

#knetmart .filter .group span {
    font-size: 12px;
    color: #666;
    margin-right: 10px;
}

#knetmart .filter .group input,
#knetmart .filter .group select {
    width: auto;
    min-width: 100px;
    height: 30px;
    border: none;
    border-radius: 100px;
    padding: 5px 10px;
    font-size: 12px;
    background: #eee;
}

#knetmart .filter .group .value {
    width: 70px;
    height: 30px;
    margin: 0;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
    background: #eee;
    padding: 7px;
    border-radius: 100px;
    text-align: center;
}

#knetmart .rack {
    width: 100%;
    height: 270px;
    margin-top: 20px;
    padding-left: 10px;
    overflow: hidden;
}

#knetmart .rack.x2 {
    height: auto;
    max-height: 550px;
    overflow: auto;
}

#knetmart .flow {
    display: flex;
    gap: 20px;
    justify-content: start;
    width: 100%;
    height: 300px;
    overflow-y: hidden;
    overflow-x: auto;
}

#knetmart .flex-wrap {
    overflow-x: hidden;
}

#knetmart .flow.fit {
    gap: 0;
}

#knetmart .rack .book {
    position: relative;
    width: 150px;
    cursor: pointer;
}

#knetmart .book::before {
    position: absolute;
    top: 0;
    left: 10px;
    content: "";
    width: 10px;
    height: 25px;
    background: #f01d1d;
    z-index: 9;
}

#knetmart .book img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-top: 2px solid #fff;
    border-left: 2px solid #1d9bf0;
    border-bottom: 2px solid #fff;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,.2);
    transition: 0.5s ease-in-out;
}

#knetmart .book:hover img {
    transform: scale(.9);
    filter: grayscale(1);
}

#knetmart .book span {
    display: block;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#knetmart .book small {
    display: block;
    margin-top: 5px;
    color: #0009;
    font-size: 10px;
}

#knetmart .book .cover {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 9;
    text-align: center;
    opacity: .0;
    transition: 0.2s ease-in-out;
}

#knetmart .book:hover .cover {
    opacity: 1;
}

#knetmart .book .cover .x {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: 20px;
    background: rgba(0,0,0,.8);
    color: #fff;
    padding: 6px;
}

#knetmart .author {
    position: relative;
    width: 150px;
    text-align: center;
    margin-right: 20px;
}

#knetmart .author img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-bottom: 5px;
    padding: 5px;
    border: 2px dashed blue;
    transition: 0.2s ease-in-out;
}

#knetmart .author img:hover {
    border-color: #fff;
}

#knetmart .author span {
    font-size: 12px;
    color: #000;
}

#knetmart .genres {
    position: relative;
}

#knetmart .genres .item {
    display: inline-block;
    width: auto;
    min-width: 50px;
    height: 25px;
    text-align: center;
    padding: 5px 10px 5px 10px;
    font-size: 10px;
    margin-bottom: 10px;
    border-radius: 50px;
    color: #fff;
    background: var(--primary);
}

#library {
    position: relative;
}

#library .header {
    position: relative;
    display: flex;
    height: auto;
    padding: 40px;
}

#library .header .book {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 300px;
    height: 400px;
    background: #fff;
    flex: 0 0 auto;
    border: 5px solid #fff;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,.2);
    transition: 0.5s ease-in-out;
    overflow: hidden;
}

#library .header .book:hover {
    transform: rotate(-15deg);
}

#library .header .book a {
    position: relative;
    padding: 7px;
    width: 120px;
    height: 35px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    transition: 0.5s ease-in-out;
    font-weight: bold;
    background: rgba(0,0,0,.5);
}

#library .header .book a:hover {
    background: #fff;
    color: #000;
}

#library .header .book:hover a {
    transform: rotate(15deg);
}

#library .header .book .tag {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 120px;
    height: 20px;
    background: #090;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(-45deg);
}

#library .header .book img {
    width: 100%;
    height: 100%;
}

#library .header .info {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-flow: column;
    width: 100%;
    height: auto;
    margin-left: 40px;
}

#library .info:last-child ul {
    padding: 20px;
    padding-right: 100px;
}

#library .header .info h2 {
    display: block;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: bold;
}

#library .header .info h5 {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary);
}

#library .header .info form {
    background: #fff;
    padding: 50px 0 0 50px;
    width: 100%;
}

#library .header form label {
    display: block;
    font-size: 12px;
    font-weight: bold;
}

#library .header form span {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px;
    font-size: small;
}

#library .header form input,
#library .header form textarea {
    width: 100%;
    height: 40px;
    border: none;
    border-bottom: 1px solid #e6e3db;
    font-size: 12px;
}

#library .header form textarea {
    resize: none;
    height: 200px;
}

#library .header form button {
    width: 120px;
    font-size: 12px;
}

#library .header .mdb button {
    display: none;
}

#library .header .info ul {
    margin: 0;
    width: 100%;
}

#library .header .info ul li {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 20px;
    font-size: 12px;
}

#library .header .info .pub {
    font-size: 12.5px;
}

#library .info span:first-child {
    font-weight: bold;
}

#library .header .info .log {
    font-size: 15px;
    color: grey;
    margin-top: 20px;
    padding-right: 250px;
}

#library .header .info .log span {
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    color: #0d6ffdab;
}

#library .header .info .log img {
    width: 15px;
    height: 15px;
}

#library .header .info .w-card {
    width: 150px;
    display: inline-block;
    height: 100px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    padding: 10px;
    color: var(--primary);
    text-align: center;
    font-size: 12px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

#library .header .info .w-card i {
    display: block;
    line-height: 0;
    font-size: 40px;
}

#library .header .info .w-card span {
    margin: 0;
    margin-top: 2px;
    padding: 0;
    font-size: 10px;
    font-weight: bold;
}

#library .header .w-card.active,
#library .header .w-card:hover {
    background: linear-gradient(30deg, var(--primary), #108fec);
    color: #fff;
}

#library .header .info .action {
    position: relative;
    display: flex;
    height: 40px;
    justify-content: space-between;
    margin-top: 30px;
}

#library .header .action button {
    border: none;
    background: none;
    border-radius: 50px;
    font-size: 12px;
    text-align: center;
    line-height: 0;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

#library .header button:hover {
    background: var(--primary);
}

#library .header .action img {
    width: 15px;
    height: 15px;
}

#library .header button:hover img {
    filter: grayscale(1) brightness(1) invert();
}

#library .header .action .goto {
    width: 150px;
    height: 100%;
    color: #fff;
    background: var(--primary);
    margin-right: 10px;
}

#library .header .action .link {
    margin-left: 15px;
    margin-top: 10px;
    position: relative;
    display: block;
    font-size: small;
    opacity: .5;
}

#library .header .action .link:hover {
    opacity: 1;
}

#library .header #danger {
    background: #b81010;
    color: #fff;
    border: 1.5px solid #fff !important;
}

#library .header .goto img,
#library .header #heart img {
    filter: grayscale(1) brightness(1) invert();
}

#library .header .action .chip {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1.5px solid var(--primary);
}

#library .header .action .chip#heart {
    background: var(--primary);
}




/**
* CSS PLUG-INS POLYFILL
**/
.swal-text {
    font-size: 14px !important;
}


/**
* RESPONSIVE MEDIAQUERY
**/
@media(max-width: 600px) {
    .app .auth {
        height: auto;
    }
    .auth .auth-body {
        top: 5vh;
        width: 100%;
        flex-flow: wrap;
    }
    .auth-body.x-auto {
        top: 20vh;
    }    
    .auth-body .welcome {
        padding: 25px;
    }
    .welcome img {
        width: 40px;
    }
    .welcome .brand {
        font-size: 20px;
    }
    .welcome h2 {
        font-size: 20px !important;
    }
    .welcome .text {
        font-size: 12px;
        margin-top: 25px;
    }
    .auth-body form {
        width: 340px;
        padding: 30px;
        margin: auto;
    }
    .auth form h2 {
        font-size: 25px !important;
    }
    .auth form .text {
        font-size: 12.5px;
    }
    .auth-body img {
        display: none !important;
    }
    .overlay .sfc-data {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .app .sidebar,
    .app .content {
        padding: 0;
        overflow-x: hidden;
    }   
    .app .sidebar {
        position: fixed;
        left: -250px;
        padding: 10px;
        height: 100%;
        z-index: 9999;
        opacity: .0;
        transition: 0.5s ease-in-out;
        overflow: auto;
    }
    .app .sidebar.show {
        left: 0;
        opacity: 1;
    }
    .sidebar .topbar {
        padding-top: 10px;
        margin: 0;
        margin-bottom: 7px;
    }
    .sidebar img.vicky {
        display: none;
    }
    .content header {
        padding: 0 10px 0 10px
    }
    .content header form {
        width: 220px;
    }
    .content header .links span {
        display: none;
    }
    .content header a:last-child {
        display: block;
    }    
    .content main {
        padding: 10px;
    }
    .content main .tile.fit,
    .content main .tile.xxl {
        min-height: auto;
    }
    .content main .tile {
        padding: 20px 20px 0 20px;
        min-height: auto;
        margin-bottom: 20px;
    }
    .content main .tile .ticker {
        width: 150px;
    }
    .content main .stats .card {
        width: 144px;
    }
    .content main .stats .card.fw {
        width: 100%;
    }
    .content main .facts .box:first-child {
        display: none;
    }
    .content main .tile .graph {
        width: 100%;
    }
    .content main h2.title,
    .content main h3.title {
        font-size: 14px;
        margin-top: 10px;
        margin-left: 5px;
    }
    .content main h3.title .btns {
        position: absolute;
        right: 10px;
        top: 17px;
        background: #f7f6f4;
        padding-left: 10px;
    }
    .dark .content main h3.title .btns {
        background: #20252C;

    }
    .content main h3.title button {
        position: relative;
        top: -2px;
    }
    .content main .table {
        padding: 10px;
    }
    .content main .book .info h3 {
        font-size: 10px;
        max-height: 25px;
        overflow: hidden;
    }
    .content main .book .read {
        width: 80px;
        margin-left: 10px;
    }
    .content main .-x- {
        width: 300px !important;
    }
    .content main .-x- img {
        width: 200px;
    }
    .content main .-x- span {
        font-size: 12px;
    }
    #bookque .bookque h2 {
        font-size: 12px;
    }
    #bookque .packages .top {
        width: 100%;
        margin-bottom: 50px;
    }
    #bookque .packages .top h2 {
        font-size: 25px;
    }
    #bookque .packages .top span {
        font-size: 12px;
    }
    #bookque .packages .plan {
        margin-bottom: 30px !important;
    }
    #bookhut .bookhut {
        padding-left: 5px;
    }
    #bookhut .bookhut .card.sm {
        width: 330px;
    }
    #knetmart .banner {
        height: 170px;
        padding: 20px;
        padding-right: 100px;
    }
    #knetmart .banner .hero {
        width: 180px;
        right: 0;
    }
    #knetmart .banner h2 {
        font-size: 18px;
        line-height: normal;
        margin-top: 10px;
        margin-bottom: 0;
    }
    #knetmart .banner span {
        font-size: 11px;
        letter-spacing: .5px;
    }
    #knetmart .banner button {
        display: none;
    }
    #knetmart .filter {
        margin-left: 0;
        background: #0d6ffdd4;
    }
    #knetmart .filter .group {
        margin: 10px;
    }
    #knetmart .filter .group span {
        color: #fff;
    }
    #knetmart .filter .group input, 
    #knetmart .filter .group select {
        width: 100px;
        min-width: auto;
    }
    #knetmart .filter .group .value {
        display: none;
    }
    #knetmart .rack {
        height: 240px;
        margin-bottom: 0 !important;
        padding: 0 5px;
    }
    #knetmart .rack .book {
        width: 150px;
    }
    #knetmart .flow {
        justify-content: space-between;
    }
    #knetmart .book img {
        height: 190px;
        margin-bottom: 10px;
    }
    #knetmart .author {
        width: 120px;
    }
    #knetmart .author img {
        width: 120px;
        height: 120px;
        margin: auto;
    }
    #explore header {
        height: 150px;
        margin-bottom: 50px;
    }
    #explore header img {
        width: 70px;
        height: 70px;
        left: 20px;
        bottom: -30px;
    }
    #explore .info {
        max-width: 100%;
    }
    #explore .info h2 {
        font-size: 18px;
    }
    #explore .info span {
        font-size: 12px;
    }
    #library .header {
        flex-flow: column;
        padding: 10px;
    }
    #library .header .book {
        width: 200px;
        height: 250px;
        margin: auto;
    }
    #library .header .info {
        margin-top: 20px;
        margin-left: 0;
    }
    #library .header .info .action {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #library .header .info h2 {
        font-size: 18px;
    }
    #library .header .info h5 {
        font-size: 10px;
    }
    #library .header .info ul {
        padding: 20px !important;
    }
    #library .header .info .log {
        padding: 0;
        font-size: 12px;
    }
    #library .header .info form {
        padding: 30px 10px 10px;
    }
    #library .header form span {
        font-size: 12px;
    }
    #library .header .info ul li {
        margin-bottom: 10px;
    }
    #library .header .info .w-card {
        width: 120px;
        height: 80px;
    }
    #library .header .info .w-card i {
        font-size: 40px;
    }
    #library .header form button {
        margin-bottom: 0;
    }
    #library .header form textarea {
        height: 120px;
    }
    #hutdesk .paper {
        height: calc(100dvh - 70px);
    }
    #hutdesk .paper.fv {
        height: 300px;
    }
    #hutdesk .paper .info {
        width: 280px;
        left: -320px;
    }
    #hutdesk .paper .info h2 {
        font-size: 12px;
    }
    #hutdesk .paper.fv .info {
        display: none;
    }
    #hutdesk .paper.fv .page {
        flex-basis: 100%;
    }
    #hutdesk .paper .page form {
        height: 50px;
    }
    #hutdesk .paper .page form input {
        font-size: 12px;
        padding: 10px;
    }
    #hutdesk .paper .page:hover .tray {
        top: 90%;
    }
    #hutdesk .paper .page .tray a {
        font-size: 10px;
        white-space: nowrap;
    }
    #hutdesk .paper .page #header .search {
        display: none;
    }
    #hutdesk .paper .page .chat {
        height: calc(100% - 40px);
    }
    #hutdesk .paper .chat .msg {
        max-width: 95%;
    }
    #hutdesk .paper .page #modals iframe {
        width: 90%;
        margin-top: 40px;
    }
    #hutrock .item span {
        font-size: 10.5px;
    }
    #hutchat .wall .box h2 span {
        font-size: 10px;
        margin-top: 2px;
    }
    #hutchat .wall .box small {
        font-size: 10px !important;
    }
    #hutchat .fab {
        width: 50px;
        height: 50px;
        right: 10px;
        bottom: 10px;
    }
    #hutchat .wall .chat .msg {
        font-size: 12px;
        padding: 10px !important;
    }
    #hutchat form {
        width: 350px;
        right: 0;
    }
    #hutchat form.show {
        bottom: 70px !important;
    }
    #huttalk .speaker img {
        width: 150px;
        height: 150px;
    }
    #huttalk .modal {
        width: 95%;
        left: 0;
    }
    #huttalk .control {
        bottom: -20px !important;
    }
    #notch {
        width: 100%;
        left: 0;
    }
    #notch .incall {
        margin-bottom: 10px !important;
        padding: 10px;
    }
}
