:root{
    --color0: #6d3bfe;
    --color1: #f0f1f9;
    --color2: #25155e;
    --color3: #d1d0e8;
    --color4: #EAEBEF;
    --color5: #1b1a1a;
    --color6: #2eca6a;
    --color7: #a8ded9;
    --color8: #010100;
    --color9: #0dcaf0;
}
*{
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100, "YTLC" 500;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}
.center-xy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}
.no-dec{
    text-decoration: none;
}
a{
    color: var(--color7);
}
a:hover, a:focus{
    color: var(--color9);
}
/* forms */
.form-errors{
    display: none;
}
.form-errors.shown{
    display: block;
}
.form-label{
    opacity: 0.8;
    font-size: 12px;
    color: #fff;
}
::placeholder{
    font-size: 13px;
    opacity: 0.8!important;
}
input.form-control, select.form-select, textarea.form-control{
    border: 0.1rem solid #151415;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    box-shadow: none;
    background: var(--color8);
    color: #fff;
}
input.form-control:focus, textarea.form-control:focus, select.form-select:focus {
    border: solid 0.1rem var(--color7);
    box-shadow: none;
    background: var(--color8);
    color: #fff;
}
input.form-control:hover, select.form-select:hover, textarea.form-control:hover{
    border: solid 0.1rem var(--color7);
    box-shadow: none;
}
select.form-select:hover{
    cursor: pointer;
}
.input-group.custom .input-group-text{
    border-radius: 0.5em;
    background: var(--color7);
    border: solid 0.1Rem var(--color7);
    color: #fff;
}
.input-group.custom input.form-control{
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group.custom2 input.form-control{
    width: 0;
    padding-left: 0;
    padding-right: 0;
    visibility: hidden;
}
.input-group.custom2 .input-group-text{
    background: var(--color0);
    border: solid 0.1rem var(--color0);
    overflow: hidden;
    border-radius: 0.5rem!important;
    color: #fff;
}
.input-group.pswd button{
    background: var(--color8);
    border: 0.1rem solid #151415;
    border-left: none;
    color: #fff;
    border-radius: 0 0.5rem 0.5rem 0;
}
.input-group.pswd.hovered button{
    border: solid 0.1rem var(--color7);
    border-left: none;
    box-shadow: none;
    background: var(--color8);
}
.input-group.pswd.hovered input{
    border: solid 0.1rem var(--color7);
    box-shadow: none;
}
.form-check-input.custom{
    height: 1.2em;
    width: 1.2em;
    box-shadow: none;
    vertical-align: -1px;
}
.form-check-input.custom:checked {
    background-color: var(--color7);
    border-color: var(--color7);
}

/*
Auth
 */
#auth-wrapper{
    height: 100%;
    background: linear-gradient(345deg, var(--color8) 80%, #2d3c3b 100%);
    overflow: auto;
}
#auth-wrapper .brand{
    font-family: "Dosis", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}
#auth-wrapper .activate-banner{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
#auth-wrapper .activate-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

/*
Fonts
 */
.font-quicksand{
    font-family: "Quicksand", sans-serif;
}
.fs-09{
    font-size: 0.9em;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fs-12{
    font-size: 12px;
}
.fs-13{
    font-size: 13px;
}
.fs-14{
    font-size: 14px;
}
.fs-16{
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22{
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-30 {
    font-size: 30px;
}
.fs-40{
    font-size: 40px;
}
.fw-700{
    font-weight: 700;
}
.fw-600{
    font-weight: 600;
}
.fw-500{
    font-weight: 500;
}

/*
Buttons
 */
.btn.custom{
    border-radius: 0.5rem;
}
.btn.custom.btn-primary{
    background: var(--color7)!important;
    border: 1px solid var(--color7);
    box-shadow: none;
}
.btn.custom.btn-primary:hover, .btn.custom.btn-primary:focus{
    background: var(--color9)!important;
    border: 1px solid var(--color9);
}
.btn.custom.btn-primary:focus{
    box-shadow: none;
}
.btn.custom.btn-outline-primary{
    border: 1px solid var(--color7);
    box-shadow: none;
    color: var(--color7);
}
.btn.custom.btn-outline-primary:hover, .btn.custom.btn-outline-primary:focus{
    background: var(--color9)!important;
    color: #fff;
    border: 1px solid var(--color9);
}
.btn.custom.btn-outline-primary:focus{
    box-shadow: none;
}

/* Customize bootstrap card */
.card.custom{
    box-shadow: none;
    border: 1px solid #151415;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #151415;
}
.card.custom .card-header{
    background: #151415;
    border-bottom: 1px solid #efecec;
}
.card.custom .card-header h5{
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    font-family: "Dosis", sans-serif;
}
.card.summary{
    border-radius: 1rem;
    background: var(--bg);
    border: none;
}
.card.summary h4{
    font-family: "Abel", sans-serif;
}
.card.summary img{
    width: 20px;
}

/*
Info
 */
.info-block{
    border: 1px solid #212021;
    border-radius: 0.5rem;
}
.info-block img{
    width: 20px;
}
.info-block h6{
    font-family: "Abel", sans-serif;
}
.info-cards .card{
    border-radius: 0;
    border-bottom: 1px dashed #212021;
}
.info-cards .card:first-of-type{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}
.info-cards .card:last-of-type{
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom: none;
}

/*
toasts
 */
.text-bg-success{
    background-color: #2eca6a!important;
}
.text-bg-error{
    background-color: #dc3545!important;
}
.toast *{
    font-family: "Nunito", sans-serif;
}
.toast .icon{
    width: 1.25rem;
    height:1.25rem;
    border-radius: 0.375rem;
    position: relative;
}

/*
Scroll
 */
.custom-scroll::-webkit-scrollbar {
    width: 3px;
}
.custom-scroll::-webkit-scrollbar-track {
    border-radius: 0;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: #7f7f7f;
    border-radius: 0;
}

/*
Dropdown
 */
.dropdown-menu.custom{
    border: 1px solid var(--color5);
    box-shadow: 0 8px 28px rgba(168, 222, 217, 0.05);
    background: var(--color5);
}
.dropdown-menu.custom .dropdown-item{
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}
.dropdown-menu.custom .dropdown-item:hover{
    background: var(--color7);
    opacity: 1;
}
.dropdown-menu.custom .dropdown-divider{
    border-top: 1px solid #efecec;
}

/*
Breadcrumbs
 */
.breadcrumb{
    background: transparent;
    margin: 0;
}
.breadcrumb .breadcrumb-item::before {
    content: "-";
}
.breadcrumb .breadcrumb-item:first-of-type::before{
    content: none;
}
.breadcrumb .breadcrumb-item.active {
    opacity: 0.8;
}

/* Modals */
.modal.custom .modal-content{
    border-radius: 0.5em;
    border: none;
}
.modal.custom h6{
    font-family: "Dosis", sans-serif;
}

/*
Tables
 */
.table.custom{
    background: rgba(88, 70, 249, 0.05);
    overflow-y: visible;
    border-radius: 0.5em;
}
.table.custom tr{
    border: 1px solid rgba(88, 70, 249, 0.1);
}
.table.custom th{
    color: var(--color2);
    font-family: "Quicksand", sans-serif;
}
.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
    position: static;
}

/* Youtube video */
.youtube-video{
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
}
.youtube-video .overlay{
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
}
.youtube-video .iframe-wrapper{
    z-index: 1;
}

/*
Circular progress
 */
.circular-progress {
    position: relative;
    border-radius: 50%;
    box-shadow: inset 0 0 25px 10px rgba(109, 59, 254, 0.2);
}

/*
Dashboard
 */
#dashboard-wrapper {
    height: 100%;
    background: var(--color8);
}
#dashboard-wrapper #sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
    display: none;
    padding-left: 220px;
    background: rgba(0,0,0,0.5);
}
#dashboard-wrapper #sidebar-overlay .sidebar-toggle-icon{
    width: 35px;
    height: 35px;
    background: var(--color5);
    position: relative;
    margin-top: 30px;
    border-top-right-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    cursor: pointer;
}
#dashboard-wrapper #sidebar-overlay .sidebar-toggle-icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    color: #fff;
}
#dashboard-wrapper #sidebar {
    position: fixed;
    height: 100%;
    width: 220px;
    top: 0;
    left: 0;
    background: linear-gradient(345deg, var(--color5) 80%, #2d3c3b 100%);
    z-index: 4;
    display: flex;
    flex-direction: column;
}
#dashboard-wrapper #sidebar.sm-shown {
    left: 0;
}
#dashboard-wrapper #main-bar {
    position: fixed;
    height: 100%;
    width: calc(100vw - 220px);
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
}
#dashboard-wrapper #content {
    flex: 1;
    overflow: auto;
    z-index: 1;
}
#dashboard-wrapper #footer {
    z-index: 2;
    background: var(--color5);
    padding: 8px 0;
}
#dashboard-wrapper #footer h4{
    font-family: "Abel", sans-serif;
}
#dashboard-wrapper #header{
    z-index: 2;
    background: var(--color5);
}
#dashboard-wrapper #header .sidebar-toggle{
    font-size: 18px;
    color: var(--color2);
    text-decoration: none;
}
#dashboard-wrapper #header .sidebar-toggle img{
    width: 18px;
}
#dashboard-wrapper #header .navbar-brand {
    margin-right: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    font-family: "Dosis", sans-serif;
}
#dashboard-wrapper #header .profile-pic{
    width: 30px;
    border-radius: 0.5rem;
}
#dashboard-wrapper #header .user-area .quick-link{
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}
#dashboard-wrapper #header .user-area .quick-link img{
    width: 25px;
}
#dashboard-wrapper #header .pg-title{
    color: var(--color2);
}
#dashboard-wrapper #header .wallet-btn{
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
}
#dashboard-wrapper #sidebar-header{
    padding-top: 20px;
    padding-left: 25px;
}
#dashboard-wrapper #sidebar-header .brand{
    color: #e4e4e5;
    font-family: "Dosis", sans-serif;
    font-weight: 600;
    font-size: 20px;
}
#dashboard-wrapper #sidebar-content{
    flex: 1;
    overflow: auto;
    padding: 25px;
}
#dashboard-wrapper #sidebar-content .nv-item{
    width: 100%;
    opacity: 0.5;
    margin-bottom: 25px;
    cursor: pointer;
}
#dashboard-wrapper #sidebar-content .nv-item.active, #dashboard-wrapper #sidebar-content .nv-item:hover{
    opacity: 1;
}
#dashboard-wrapper #sidebar-content .nv-item a{
    text-decoration: none;
    color: #fff;
}
#dashboard-wrapper #sidebar-content .nv-item.active a, #dashboard-wrapper #sidebar-content .nv-item:hover a{
    color: #a8ded9;
}
#dashboard-wrapper #sidebar-content .nv-item p{
    margin-bottom: 0;
    font-size: 12px;
    margin-left: 15px;
    font-family: "Abel", sans-serif;
}

/*
Media queries
 */
@media only screen and (max-width: 768px) {
    #dashboard-wrapper #main-bar{
        width: 100vw;
    }
    #dashboard-wrapper #sidebar{
        left: -220px;
    }
}

.earnings-chart-tooltip{
    background: var(--color7);
    padding: 5px 10px;
    color: #001411;
}
.earnings-chart-tooltip p{
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}
.earnings-chart-tooltip h6{
    margin-bottom: 0;
    font-family: "Abel", sans-serif;
    font-weight: 600;
    font-size: 13px;
}
.wallet-card{
    background: #151415!important;
    border: none!important;
}
.wallet-card p{
    font-size: 12px;
}
.wallet-card h6{
    font-family: "Abel", sans-serif;
    font-weight: 600;
    font-size: 14px;
}
.wallet-card p i{
    font-size: 9px;
}
.wallet-card .icon-wrap{
    width: 35px;
    height: 35px;
    border-radius: 0.5em;
    background: var(--color7);
    position: relative;
}
.wallet-card .icon-wrap .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
}
.wlt-acts table{
    background: var(--color8)!important;
}
.wlt-acts td{
    color: #fff;
    opacity: 0.5;
    padding-top: 15px;
    border: none;
}
.wlt-acts .act{
    padding: 10px;
    border-bottom: 1px solid #151415;
}
.wlt-acts .act:last-of-type{
    border-bottom: none;
}
.wlt-acts .act h6{
    color: #fff;
    font-family: "Abel", sans-serif;
}
.wlt-acts .act p{
    color: #fff;
    opacity: 0.5;
}
.wlt-acts .sm{
    border: 1px solid #151415;
    border-radius: 0.5rem;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--color9);
}