:root{
    --blue1: #318dfe;
    --blue2: #2870db;
    --blue3: #3470d3;
    --blue4: #25155e;
    --gray1: #f4f7fa;
    --gray2: #f5f6fb;
    --green1: #2eca6a;
    --green2: #e4fcec;
}
*{
    font-family: "Nunito", sans-serif;
}
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
}
.center-xy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

/*
Auth
 */
#auth-wrapper{
    background: var(--gray2);
    height: 100%;
    overflow: auto;
}
#auth-wrapper .card{
    border: none!important;
}
#auth-wrapper .card .card-header{
    background: var(--blue1);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
#auth-wrapper .card .card-header p{
    opacity: 90%;
}
#auth-wrapper .card .card-header .btn-group{
    background: var(--blue2);
    border-radius: 20px;
    padding: 1px;
}
#auth-wrapper .card .card-header .btn-group .btn:first-of-type{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
#auth-wrapper .card .card-header .btn-group .btn:last-of-type{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#auth-wrapper .card .card-header .btn-group .btn{
    background: transparent;
    border: 1px solid var(--blue2);
    font-weight: 600;
    font-size: 13px;
}
#auth-wrapper .card .card-header .btn-group .btn.active{
    background: #fff;
    color: var(--blue3);
    border-radius: 20px;
}

/*
Fonts
 */
.font-mont {
  font-family: "Montserrat", sans-serif;
}
.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;
}

/*
Forms
 */
.form-errors{
    display: none;
    padding-left: 1rem!important;
    margin-left: 0!important;
    margin-bottom: 0!important;
}
.form-errors.shown{
    display: block;
}
::placeholder{
    font-size: 13px;
    opacity: 0.8!important;
}
.form-wrap{
    background: var(--gray1);
    border-radius: 0.5rem;
    padding: 0 10px;
}
.form-label{
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    color: #737277;
}
input.form-control, select.form-select, textarea.form-control{
    border: none;
    font-size: 12px;
    border-radius: 0.5rem;
    box-shadow: none;
    background: var(--gray1);
    padding-left: 0;
    color: #06070b;
}
input.form-control:focus, textarea.form-control:focus, select.form-select:focus {
    border: none;
    box-shadow: none;
    background: var(--gray1);
}
input.form-control:hover, select.form-select:hover, textarea.form-control:hover{
    border: none;
    box-shadow: none;
    background: var(--gray1);
}
select.form-select:hover{
    cursor: pointer;
}
.input-group.custom .input-group-text{
    border-radius: 0.5em;
    background: var(--blue1);
    border: solid 0.1Rem var(--blue1);
    color: #fff;
}
.input-group.custom input.form-control{
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pass-toggle{
    cursor: pointer;
    color: #8f9194;
}

/*
Links
 */
a{
    color: #2c77ea;
    text-decoration: none;
}
/*
Buttons
 */
.btn.custom{
    font-weight: 600;
    border-radius: 20px;
}
.btn.custom.btn-primary{
    background: var(--blue1)!important;
    border: 0.1em solid var(--blue1);
    box-shadow: none;
}
.btn.custom.btn-primary:hover{
    opacity: 0.9;
}
.btn.custom.btn-primary:focus{
    box-shadow: none;
}
.btn.custom.btn-outline-primary{
    border: 0.1em solid var(--blue1);
    box-shadow: none;
    color: var(--blue1);
}
.btn.custom.btn-outline-primary:hover{
    background: var(--blue1)!important;
    color: #fff;
}
.btn.custom.btn-outline-primary:focus{
    box-shadow: none;
    background: var(--blue1)!important;
    color: #fff;
}
.btn.custom.btn-light{
    color: #02024f;
    background: #F4F7FF;
    border: none;
}
.btn.custom.btn-light:hover, .btn.custom.btn-light:focus{
    background: #e3e9fa;
}

/* Cards */
.card.custom{
    box-shadow: none;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #fff;
}
.info-cards .card{
    border-radius: 0;
    border-bottom: 1px dashed var(--gray2);
}
.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
 */
.toastr{
    border-radius: 0.5rem;
    font-size: 14px;
}
.toastr.success{
    background: linear-gradient(to right, #00b09b, #96c93d);
}
.toastr.error{
    background: linear-gradient(to right, #dc3545, #d5606a);
}

/* Modals */
.modal.custom .modal-content{
    border-radius: 0.5rem;
    border: none;
}
.modal.custom .modal-content .hd{
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/*
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(--gray1);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}
.dropdown-menu.custom .dropdown-item{
    font-size: 13px;
}
.dropdown-menu.custom .dropdown-divider{
    border-top: 1px solid var(--gray1);
}

/*
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;
}

.wallet-card{
    background: var(--bg)!important;
    border: none!important;
}
.wallet-card p{
    font-size: 12px;
}
.wallet-card h6{
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.wallet-card p i{
    font-size: 9px;
}
.wallet-card .icon-wrap{
    width: 35px;
    height: 35px;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.25);
    position: relative;
}
.wallet-card .icon-wrap .icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
}
.wallet-card.subs{
    background: #fff!important;
}
.wallet-card.subs .icon-wrap{
    background: var(--blue1);
}
.wallet-card.subs .icon-wrap .icon{
    filter: brightness(0) invert(1);
}

.wlt-acts table{

}
.wlt-acts th{
    border: none;
}
.wlt-acts td{
    padding-top: 15px;
    border: none;
}
.wlt-acts .act{
    padding: 10px;
    border-bottom: 1px solid var(--gray2);
    background: #fff;
}
.wlt-acts .act:last-of-type{
    border-bottom: none;
}
.wlt-acts .act h6{
    font-family: "Quicksand", sans-serif;
}
.wlt-acts .sm{
    border-radius: 0.5rem;
    overflow: hidden;
}


/*
Earnings chart
 */
.earnings-chart-tooltip{
    background: #fff;
    padding: 5px 10px;
}
.earnings-chart-tooltip p{
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
    opacity: 75%;
}
.earnings-chart-tooltip h6{
    margin-bottom: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 13px;
}

.adv-card-img{
    width: 100%;
    height: 120px;
    background-image: var(--bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 0.5rem;
}

/* 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;
}

/*
Dashboard
 */
#dashboard-wrapper {
    height: 100%;
    background: var(--gray1);
}
#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: #fff;
    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: var(--blue4);
}
#dashboard-wrapper #sidebar {
    position: fixed;
    height: 100%;
    width: 220px;
    top: 0;
    left: 0;
    background: #fff;
    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: #fff;
    padding: 8px 0;
}
#dashboard-wrapper #footer h4{
    font-family: "Montserrat", sans-serif;
}
#dashboard-wrapper #header{
    z-index: 2;
    background: #fff;
}
#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: var(--blue4);
    font-weight: 700;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}
#dashboard-wrapper #header .profile-pic{
    width: 28px;
    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(--blue4);
}
#dashboard-wrapper #header .wallet-btn{
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
}
#dashboard-wrapper #sidebar-header{
    padding-top: 20px;
    padding-left: 15px;
}
#dashboard-wrapper #sidebar-header .brand{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--blue4);
}
#dashboard-wrapper #sidebar-content{
    flex: 1;
    overflow: auto;
    padding: 15px;
}
#dashboard-wrapper #sidebar-content .nv-item{
    width: 100%;
    margin-bottom: 5px;
    cursor: pointer;
    border-radius: 0.5rem;
    padding: 10px 15px;
}
#dashboard-wrapper #sidebar-content .nv-item.active, #dashboard-wrapper #sidebar-content .nv-item:hover{
    /*background: #e9eff6;*/
    background: var(--blue1);
}
#dashboard-wrapper #sidebar-content .nv-item a{
    text-decoration: none;
    color: #393939;
    font-size: 12px;
}
#dashboard-wrapper #sidebar-content .nv-item.active a, #dashboard-wrapper #sidebar-content .nv-item:hover a{
    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;
}
#dashboard-wrapper #sidebar-content .nv-item img{
    margin-right: 10px; display: inline-block; width: 20px;
}
#dashboard-wrapper #sidebar-content .nv-item.active a, #dashboard-wrapper #sidebar-content .nv-item:hover a img{
    filter: brightness(0) invert(1);
}
/*
Media queries
 */
@media only screen and (max-width: 768px) {
    #dashboard-wrapper #main-bar{
        width: 100vw;
    }
    #dashboard-wrapper #sidebar{
        left: -220px;
    }
}