:root{
    --color1: #2563EB;
    --color1a: rgba(37, 99, 235, 0.2);
    --color2: #fafafc;
    --color3: #EAEBEF;
    --color4: #2eca6a;
    --heading-color: #192d75;
    --section-color: #374151;
    --text-color: #4B5563;
    --title-font: 'Poppins', system-ui, sans-serif;
    --text-font: 'Inter', system-ui, sans-serif;
}
[v-cloak] {
    display: none;
}
* {
    /*font-family: Arial, sans-serif;*/
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6!important;
}
html, body {
    /*height: 100%;*/
    /*width: 100%;*/
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background: var(--color2);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
    color: var(--heading-color);
}
.center-xy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

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

/*
Sections
 */
section{
    padding-top: 100px;
}
section.refs{
    padding-bottom: 100px;
}
section .seo-title{
    font-size: 30px;
}
section .seo-text{
    /*color: var(--color3);*/
}

/* HERO */
.hero .badge {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--color1);
    color: var(--color1);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}
.hero h1 {
    font-size: 50px;
    font-weight: 700;
}

/* Cards */
.card.custom{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.0);
    border-radius: 0.5rem;
    border: 1px solid #fff;
}
.card.job .card-header{
    border-bottom: none;
}
.card.job .card-footer{
    border-top: none;
}
.card.job .info p{
    color: var(--text-color);
}
.card.job h3, .card.job h6{
    font-family: 'Inter', system-ui, sans-serif;
}

.card.job .info{
    background: var(--color2);
    border-radius: 0.5rem;
}
.card.job-editor h3{
    font-family: 'Inter', system-ui, sans-serif;
}
.info-block{
    background: var(--color2);
    border-radius: 0.5rem;
}
.info-block p{
    color: var(--text-color);
}
.info-block h6{
    font-family: 'Inter', system-ui, sans-serif;
}

.info-cards .card{
    border-radius: 0;
    border-bottom: 1px dashed var(--color3);
}
.info-cards .card:hover{
    transform: none;
}
.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;
}
.card.stat{
    background: var(--bg);
}
.card.stat p, .card.stat h6{
    color: #fff;
}
.card.stat .icon-wrap{
    background: #fff;
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 50%;
}
.card.stat .icon-wrap img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
}

/*
Popovers
 */
.popover {
    font-size: 12px;
    border-radius: 0.5rem;
    border: 1px solid var(--color3);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.popover .popover-header {
    background: #fff;
    color: var(--heading-color);
    font-weight: 600;
    border-bottom: 1px solid var(--color3);
    font-size: 14px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}
.popover .popover-body {
    color: var(--text-color);
}
.tooltip1{
    font-size: 12px;
}
.modal.custom1 .modal-header{
    border-bottom: 1px solid var(--color3);
}
.modal.custom1 .modal-content{
    border-radius: 0.5rem;
}

/*
Alerts
 */
.alert{
    border-radius: 0.5rem;
}

/*
Quick bar
 */
.quick-bar a{
    text-decoration: none;
}
.quick-bar a:hover{
    text-decoration: underline;
}

/*
Icons
 */
.icon1{
    width:60px;
    height:60px;
    border-radius:1rem;
    background: var(--color2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}
.htw-icon{
    height: 45px;
}

#body1 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
#header1 {
    background: #fff;
}
#header1 .navbar-brand {
    font-size: 22px;
    font-weight: 700;
    font-family: var(--title-font);
    color: var(--heading-color);
}
#header1 .nav-link{
    font-size: 14px;
    color: var(--section-color);
}
#header1 .nav-link:hover, #header1 .nav-link:focus{
    color: var(--color1);
}
#header1 .navbar-toggler{
    border: none;
    font-size: 1.4rem;
}
#header1 .navbar-toggler:focus{
    box-shadow: none;
}
#header1 .navbar-toggler i{
    color: var(--heading-color);
}
#header1 .profile-pic {
    width: 30px;
    height: 30px;
    border-radius: 0.5rem;
    object-fit: cover;
}

/*
Main
 */
#main-content1{
    flex-grow: 1;
}

/* FOOTER */
#footer1{
    background: #fff;
}
#footer1 .lower{
    border-top: 1px solid #f0f0f4;
}
#footer1 .upper h6{
    font-size: 14px;
}
#footer1 .upper ul{
    margin: 0!important;
    padding: 0!important;
}
#footer1 .upper ul li{
    padding-bottom: 0.5rem!important;
}
#footer1 .upper ul li:last-of-type{
    padding-bottom: 0!important;
}
#footer1 .upper ul li a{
    text-decoration: none;
    font-size: 12px;
    color: var(--section-color);
}
#footer1 .upper ul li a:hover{
    color: var(--color1);
}
#footer1 .upper .disclaimer{
    font-style: italic;
}

/*
Auth
 */
#auth-page{
    background: var(--color2)
}

/*
Dashboard
 */
#dashboard {
    height: 100vh;
    overflow: hidden;
}
#dashboard .sidebar {
    width: 220px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
}
#dashboard .sidebar-header {
    background: #fff;
    z-index: 2;
}
#dashboard .sidebar .sidebar-header .brand{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
    font-family: var(--title-font);
}
#dashboard .sidebar .sidebar-header .sidebar-toggle{
    height: 25px;
    cursor: pointer;
    display: none;
}
#dashboard .sidebar-body {
    flex: 1;
    overflow-y: auto;
}
#dashboard .sidebar .nav-item {
    position: relative;
}
#dashboard .sidebar .nav-item a {
    display: block;
    overflow: hidden;
    padding: 10px 5px;
    margin-left: 15px;
    margin-right: 15px;
    color: #545454;
    position: relative;
    text-decoration: none;
}
#dashboard .sidebar .nav-item a i {
    font-size: 20px; margin-right: 10px; display: inline-block; vertical-align: -4px;
}
#dashboard .sidebar .nav-item a img {
    margin-right: 10px;
    display: inline-block;
    width: 20px;
}
#dashboard .sidebar .nav-item a span {
    font-size: 13px;
}
#dashboard .sidebar .nav-item.has-sub a::before {
    content: "\e844"; font-family: "iconkit"; position: absolute; right: 3px; top: 15px;
    -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); transform: rotate(0deg);
    -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content {
    background-color: #F5F6FB;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .menu-item {
    padding: 10px 5px; font-size: 13px; padding-left: 50px; margin: 0;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .menu-item::before {
    display: none;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .menu-item.active {
    color: #5846f9;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item::after {
    display: none;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item a {
    position: relative;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item a::before {
    content: "\e844"; font-family: "iconkit"; position: absolute; right: 20px; top: 10px;
    display: inline-block; -moz-transform: rotate(0deg); -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg);
    -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item .submenu-content .menu-item {
    padding-left: 70px;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item .submenu-content .menu-item::before {
    display: none;
}
#dashboard .sidebar .nav-item.has-sub .submenu-content .nav-item.open a::before {
    -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); transform: rotate(90deg);
}
#dashboard .sidebar .nav-item:not(.open) .submenu-content {
    display: none;
}
#dashboard .sidebar .nav-item.open a::before {
    -moz-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg); transform: rotate(90deg);
}
#dashboard .sidebar .nav-item.active::after, #dashboard .sidebar .nav-item:hover::after, #dashboard .sidebar .nav-item.open::after {
    background: var(--color1);
    border-radius: 10px;
    color: #fff;
    content: " ";
    height: 30px;
    left: 0;
    top: 13px;
    position: absolute;
    width: 3px;
}
#dashboard .sidebar .nav-level {
    font-size: 14px; font-weight: 700;
    padding: 8px 20px;
    text-transform: uppercase;
    width: 100%;
    color: #02024f;
    font-family: "Quicksand", sans-serif;
    border-top: 1px solid #F5F6FB;
}

/* RIGHT CONTENT AREA */
#dashboard .content-wrapper {
    flex: 1;
    height: 100vh;
    overflow: hidden;
}
#dashboard .main-content {
    flex: 1;
    overflow-y: auto;
    background: var(--color2);
}
#dashboard .footer {
    background: #fff;
}
#dashboard .header {
    background: #fff;
}
#dashboard .header .sidebar-toggle img{
    width: 18px;
}
#dashboard .header .profile-pic{
    width: 28px;
    border-radius: 0.5rem;
}
#dashboard .header .user-area .quick-link{
    text-decoration: none;
    font-size: 12px;
    color: #545454;
}
#dashboard .header .user-area .quick-link:hover{
    color: var(--color1);
}
#dashboard .header .user-area .quick-link img{
    width: 25px;
}

/*
Toasts
 */
.text-bg-success{
    background-color: #2eca6a!important;
}
.text-bg-error{
    background-color: #dc3545!important;
}
.toast .icon{
    width: 1.25rem;
    height:1.25rem;
    border-radius: 0.375rem;
    position: relative;
}

/*
Dropdowns
 */
.dropdown-menu.custom{
    border: 1px solid var(--color3);
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
}
.dropdown-menu.custom .dropdown-item{
    font-size: 14px;
}
.dropdown-menu.custom .dropdown-divider {
    border-top: 1px solid var(--color3);
}

/*
Buttons and links
 */
.btn.custom1{
    border-radius: 0.5rem;
    box-shadow: none;
}
.btn.custom1:hover{
    opacity: 0.8;
}
.btn.custom1:focus{
    box-shadow: none;
}
.btn.custom1.btn-primary{
    background: var(--color1)!important;
    border: 1px solid var(--color1);
}
.btn.custom1.btn-outline-primary{
    border: 1px solid var(--color1);
    color: var(--color1)!important;
}
.btn.custom1.btn-outline-primary:hover, .btn.custom1.btn-outline-primary:focus{
    background: var(--color1)!important;
    color: #fff!important;
}
.btn.custom1.btn-success{
    background: var(--color4);
    border: 1px solid var(--color4);
}
.take-task-btn{
    color: var(--bs-link-color);
    text-decoration: underline;
}
.take-task-btn:hover{
    color: var(--bs-link-hover-color);
}

/*
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;
    /*color: var(--color3)!important;*/
}
.form-label{
    /*font-family: "Inter", sans-serif;*/
    font-size: 12px;
    margin-bottom: 0;
    /*color: var(--color4);*/
}
input.form-control, select.form-select, textarea.form-control{
    border: 1px solid var(--color3);
    font-size: 13px;
    border-radius: 0.5rem;
    transition: 0.3s;
}
input.form-control:hover, select.form-select:hover, textarea.form-control:hover, input.form-control:focus, textarea.form-control:focus, select.form-select:focus {
    border: 1px solid var(--color1);
    box-shadow: none;
}
.input-group.pswd input{
    border-right: none;
    transition: 0s;
}
.input-group.pswd .input-group-text{
    background: #fff;
    border: 1px solid var(--color3);
    border-left: none;
    border-radius: 0.5rem;
    cursor: pointer;
}
.input-group.pswd:has(:hover, :focus-within) .input-group-text{
    border: solid 1px var(--color1);
    border-left: none;
    box-shadow: none;
}
.input-group.pswd:has(:hover, :focus-within) input{
    border: solid 1px var(--color1);
    border-right: none;
    box-shadow: none;
}
.input-group.custom1{
    border-radius: 0.5rem;
}
.input-group.custom1 input{
    background: transparent;
}
.input-group.custom1 .btn{
    z-index: 2;
    margin-left: -0.5rem!important;
    border-top-left-radius: 0.5rem!important;
    border-bottom-left-radius: 0.5rem!important;
}
.form-check-input:checked {
    background-color: var(--color1);
    border-color: var(--color1);
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--color1a);
}
/* WebKit browsers (Chrome, Safari, Edge) */
.custom-range::-webkit-slider-thumb {
    background-color: var(--color1);
}
/* Firefox */
.custom-range::-moz-range-thumb {
    background-color: var(--color1);
}
/* Active / Press state */
.custom-range::-webkit-slider-thumb:active {
  background-color: var(--color1);
}
.custom-range::-moz-range-thumb:active {
  background-color: var(--color1);
}

/*
Tables
 */
.table.custom{
    --bs-table-bg: var(--color3);
    overflow-y: visible;
    border-radius: 0.5em;
}
.table.custom tr{
    border: 1px solid rgba(88, 70, 249, 0.1);
}
.table.custom th{
    color: var(--heading-color);
}
.table.custom td{
    opacity: 80%;
}
.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
    position: static;
}

/*
Navs
 */
.nav-tabs.custom{
    border-bottom: none;
}
.nav-tabs.custom .nav-link{
    border: none;
    border-bottom: 2px solid transparent;
    opacity: 0.7;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--heading-color);
}
.nav-tabs.custom .nav-link.active{
    background: 0 0;
    border-bottom: 2px solid var(--color1);
    opacity: 1;
    color: var(--color1);
}


/*
Fonts
 */
.fs-10{
    font-size: 10px;
}
.fs-11{
    font-size: 11px;
}
.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-40{
    font-size: 40px;
}
.fw-700{
    font-weight: 700;
}
.fw-600{
    font-weight: 600;
}
.fw-500{
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050;
        background-color: #fff;
        border-bottom: 1px solid var(--color2);
    }
}
@media (max-width: 768px) {
    #dashboard .sidebar {
        position: fixed;
        top: 0;
        left: -220px;
        width: 220px;
        z-index: 1050;
        transition: left 0.3s ease;
    }
    #dashboard .sidebar.show {
        left: 0;
    }
    #dashboard .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        display: none;
    }
    #dashboard .sidebar-overlay.show {
        display: block;
    }
    #dashboard .sidebar .sidebar-header .sidebar-toggle{
        display: block;
    }
    #earnings-chart-card {
        min-height: 250px;
    }
}
@media(max-width:576px){
    #header1 .navbar-brand {
        font-size: 18px;
    }
    #header1 .profile-pic {
        width: 25px;
        height: 25px;
    }
    .hero h1{
        font-size:40px;
    }
    .hero p{
        font-size:13px;
    }
    section{
        padding-top: 50px;
    }
    section.refs{
        padding-bottom: 50px;
    }
    section .seo-title{
        font-size: 25px;
    }
    section .seo-text{
        font-size: 14px;
    }
    #footer1 .upper ul li{
        padding-bottom: 0.1rem!important;
    }
}
@media(max-width:400px){
    .hero h1{
        font-size:30px;
    }
}
@media(max-width:350px){
    #dashboard .sidebar {
        left: -75%;
        width: 75vw;
    }
}