:root {
    --wet-asphalt-blue: #34495e;
    --alizarin-red: #e74c3c;
    --carrot-orange: #e67e22;
    --emerald-green: #2ecc71;
    --belize-hole-blue: #004aa0;
    --cloud-white: #f7f8fa;
    --hb-black: #000000;
    --hb-primary: #2E3742;
    --hb-secondary: #2e374b;
    --custom-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
}

body {
    font-size: .875rem;
    font-family: 'Neo-Regular', sans-serif;
    background: #fff;
    height: 100vh;
}

form {
    width: 100% !important;
}

a {
    text-decoration: none;
}

.btn.btn-primary {
    background-color: var(--hb-primary);
    border-color: var(--hb-primary);
}

.btn.btn-outline-primary {
    color: var(--hb-primary);
    border-color: var(--hb-primary);
}

.btn.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--hb-primary);
    border-color: var(--hb-primary);
}

.custom-padding {
    padding-top: 65px;
}

/** Custom Cards **/

.card.custom-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    box-shadow: var(--custom-box-shadow);
    box-sizing: border-box;
}

.card.custom-card .card-header {
    background-color: #f3f3f3;
    color: var(--hb-primary);
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.card.card-sales-statistics .card-header {
    font-weight: bold;
    background: #fff;
}

.card.card-sales-statistics .card-title.plus {
    color: var(--emerald-green);
}

.card.card-sales-statistics .card-title.minus {
    color: var(--alizarin-red);
}

.bg-custom {
    background: var(--hb-primary);
}

/** Helper Classes **/
.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.important-input {
    color: var(--alizarin-red);
}

.custom-headline {
    background: var(--hb-primary);
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.highlight-color {
    color: var(--hb-primary);
}

.highlight-bg {
    background: var(--hb-primary);
    color: #fff;
}

.card.custom-card .card-body .card-link {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.toast {
    border: none;
    border-radius: 10px;
}

/** FormValidation FIX **/

.fv-plugins-bootstrap5:not(.fv-plugins-bootstrap5-form-inline) label ~ .fv-plugins-icon {
    top: 40px !important;
    width: 15px !important;
    height: 15px !important;
    right: 12px;
}

.fv-plugins-bootstrap5 .row .fv-plugins-icon {
    right: 20px !important;
}

/** Slider Switch **/

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 23px;
    border: none;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hb-primary);
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--emerald-green);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--emerald-green);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/** Dashboard Quicklinks **/

a.quicklink {
    text-align: center;
    cursor: pointer;
    background: var(--hb-primary);
    color: #fff;
    display: block;
    padding: 1.75em 0.5em;
    margin-bottom: 2rem;
    height: calc(100% - 2rem);
    border-radius: 0.35rem;
    box-shadow: var(--custom-box-shadow);
}

a.quicklink span.quicklink-text {
    margin-top: 10px;
    font-size: 1.2rem;
}

a.quicklink:hover {
    background: var(--hb-secondary);
    color: #fff;
}

/** Breadcrumb **/

.breadcrumb {
    padding: 25px 0;
    margin: 0 auto;
}

.breadcrumb li.breadcrumb-item a {
    font-size: 20px;
}

.breadcrumb li.breadcrumb-item.active a {
    color: var(--hb-primary);
}

/** Dropdown Menu **/

.dropdown .dropdown-menu {
    padding: 0;
    border-radius: 0;
}

.dropdown .dropdown-menu li.dropdown-divider {
    margin: 0;
}

.dropdown .dropdown-menu li a.dropdown-item {
    padding: 15px 10px;
    transition: 0.3s;
}

.sheet-signature canvas {
    height: 400px !important;
}