/* This file includes all the variables used throught the website */

:root {
    --white: #fff;
    --black: #000;
    /* --logo-primary: #f69424; */
    /* --logo-primary-rgb-base: 246, 148, 36; */
    --logo-primary: var(--primary-color, #F8B11E);
    --logo-primary-dark: color-mix(in srgb, var(--logo-primary) 80%, black 20%);
    --default-primary-rgb: 248, 177, 30;
    --default-secondary-rgb: 67, 168, 194;
    --logo-primary-rgb-base: var(--primary-color-rgb, var(--default-primary-rgb));
    --logo-secondary: var(--secondary-color, #43A8C2);
    --logo-secondary-dark: color-mix(in srgb, var(--logo-secondary) 80%, black 20%);
    --logo-secondar-rgb-base: var(--secondary-color-rgb, var(--default-secondary-rgb));
    --font-1: "Poppins";
    --font-2: "Poppins";
    --heading-fonts: var(--font-1), serif;
    --body-fonts: var(--font-2), serif;
    --bg-hover: rgba(60, 64, 67, 0.1);
    --nav-height: 30px;
    --section-space: 10px;
    --flex-gap: 10px;
    --navbar-header-padding: 5px;
    --sidebar-width: 255px;
    --sidebar-top-margin: calc(var(--nav-height) + var(--navbar-header-padding) * 2 + var(--section-space));
    --footer-height: 50px;
    --section-header-height: 50px;
    --section-header-dynamic: 0px;
    --input-height: 30px;
    --edge-radius: 5px;
    --ie-std-btn-width: 100px;
    --action-btn-height: 30px;
    --action-btn-width: 30px;
    --success: rgb(15, 157, 88);
    --danger: rgb(219, 68, 55);
    --info: rgb(51, 102, 204);
    --warning: rgb(248, 177, 30);
    --ai-panel-width: 0;
}

.bg-none {
    background-color: transparent !important;
}

.bg-light {
    background-color: var(--white);
    color: var(--black);
}

.bg-primary {
    background-color: var(--logo-primary) !important;
}

.bg-secondary {
    background-color: var(--logo-secondary) !important;
}

.color-dark {
    color: var(--black);
}

.shadow {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22) !important;
}

.float-unset {
    float: unset !important;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

@media screen and (max-width: 769px) {
    .float-sm-right {
        float: right;
    }
}

@media screen and (max-width: 426px) {
    .float-xs-right {
        float: right;
    }
}

.p-section {
    padding: var(--section-space);
}

.p-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.p-0 {
    padding: 0;
}

.p-10 {
    padding: 10px;
}

.p-5 {
    padding: 5px;
}

.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pb-10 {
    padding-top: 10px !important;
}

.ps-5 {
    padding-left: 5px;
}

.ps-10 {
    padding-left: 10px !important;
}

.pe-5 {
    padding-right: 5px;
}

.pe-10 {
    padding-right: 10px;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-10 {
    margin: 10px !important;
}

.m-10 {
    margin: 10px;
}

.mt-0 {
    margin-top: 0px !important;
}

.ms-5 {
    margin-left: 5px !important;
}

.me-5 {
    margin-right: 5px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

@media screen and (max-width: 769px) {
    .mb-sm-5 {
        margin-bottom: 5px !important;
    }

    .mb-sm-10 {
        margin-bottom: 10px !important;
    }
}

/* box sizes */
.h-unset {
    height: unset !important;
}

.h-fit {
    height: fit-content;
}

.h-100 {
    height: 100%;
}

.max-h-420 {
    max-height: 420px !important;
}

.w-fit-content {
    width: fit-content !important;
}

.w-unset {
    width: unset !important;
}

.w-fit {
    width: fit-content !important;
}

@media screen and (min-width: 1023px) {
    .w-md-fit {
        width: fit-content !important;
    }
}

.w-100 {
    width: 100% !important;
}

.w-60 {
    width: 60%;
}

.w-40 {
    width: 40%;
}

/* fonts */
.fs-larger {
    font-size: larger;
}

.fs {
    font-size: large;
    vertical-align: text-bottom;
}

.fw-5 {
    font-weight: 500 !important;
}

.fw-6 {
    font-weight: 600 !important;
}

.fw-7 {
    font-weight: 700 !important;
}

.fw-b {
    font-weight: bolder !important;
}

.font-secondary {
    color: rgba(0, 0, 0, 0.5);
}

/* text */
.text-primary {
    color: var(--logo-primary) !important;
}

.text-secondary {
    color: var(--logo-secondary);
}

.text-right {
    text-align: right;
}

.v-align-middle {
    vertical-align: middle;
}

@media screen and (max-width: 769px) {
    .text-sm-right {
        text-align: right !important;
    }
}

@media screen and (max-width: 426px) {
    .text-xs-right {
        text-align: right !important;
    }
}

.text-center {
    text-align: center;
}

.text-upper {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-lower {
    text-transform: lowercase;
}

/* display */
.hide {
    display: hidden;
}

.flex {
    display: flex;
}

.table {
    display: table;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
}

@media screen and (min-width: 770px) {
    .flex-md {
        display: flex;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column !important;
}

@media screen and (max-width: 769px) {
    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-column_r {
        flex-direction: column-reverse !important;
    }
}

@media screen and (max-width: 426px) {
    .flex-xs-column {
        flex-direction: column !important;
    }
}

.flex-1 {
    flex: 1;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-rv-end {
    align-items: flex-end !important;
}

.flex-rv-center {
    align-items: center !important;
}

@media screen and (max-width: 769px) {
    .flex-sm-rv-end {
        align-items: flex-end;
    }
}

.flex-rv-space-center {
    align-items: center;
}

.flex-rh-end {
    justify-content: end !important;
}

.flex-rh-space-between {
    justify-content: space-between !important;
}

@media screen and (max-width: 426px) {
    .flex-xs-rh-space-between {
        justify-content: space-between !important;
    }
}

.flex-rh-space-around {
    justify-content: space-around;
}

.flex-rh-space-center {
    justify-content: center;
}

.flex-gap {
    gap: var(--flex-gap);
}

.self-stretch {
    align-self: stretch;
}

.self-h-center {
    justify-self: center;
}

.self-h-end {
    justify-self: end;
}

.self-v-center {
    align-self: center;
}

.section-gap {
    gap: var(--section-space)
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.d-none {
    display: none !important;
}

@media screen and (max-width: 426px) {
    .d-xs-none {
        display: none !important;
    }
}

@media screen and (max-width: 769px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media screen and (min-width: 1440px) {
    .d-lg-none {
        display: none !important;
    }
}

.table-cell {
    display: table-cell !important;
}

/* shadow */
.b-shadow-none {
    box-shadow: none !important;
}

/* border */
.b-none {
    border: none !important;
}

.b-b-secondary {
    border-bottom: 1px solid var(--logo-secondary);
}

.b-b-primary {
    border-bottom: 1px solid var(--logo-primary);
}

/* border radius none */
.b-rad-none {
    border-radius: 0 !important;
}

/* position */
.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-0 {
    top: 0 !important;
}

.left-0 {
    left: 0 !important;
}

.z-index-1 {
    z-index: 1 !important;
}

/* overflow styles (scroll styles) */
.overflow-visible {
    overflow: visible !important;
}

.scroll-x {
    overflow-x: scroll !important;
}

.scroll {
    overflow: auto !important;
}

/* ---------------------------------------- form controls ---------------------------------------- */
.form-control {
    border: 1px solid var(--logo-primary);
}