:root {
    --blue: #3b7ddd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #050784;
    --primary-hover: #030549;
    --primary-light: #0a0ef4;
    --primary-dark: #020231;
    --secondary: #ffc400;
    --success: #0cad3c;
    --info: #1e9ff2;
    --warning: #fd7e14;
    --danger: #dc3545;
    --light: #e9ecef;
    --dark: #232c02;
    --tertiary: #669ae5;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1440px;
    --font-family-sans-serif: "Hind Vadodara", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

/* ------------------------------------------------
  ----------BREADCRUMBB CUSTOM STYLES STARTS
  -------------------------------------------------*/
.breadcrumbb {
    text-align: center;
    display: inline-block;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 1px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag;
}

.breadcrumbb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 30px;
    padding: 0 10px 0 40px;
    position: relative;
    background: var(--secondary);
    color: var(--white);
    transition: all 0.1s;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumbb a:first-child {
    padding-left: 34px;
}

.breadcrumbb a:first-child:before {
    left: 8px;
}

.breadcrumbb a:last-child {
    padding-right: 20px;
}

/*we dont need an arrow after the last link*/
.breadcrumbb a:last-child:after {
    content: none;
}

.breadcrumbb a.active,
.breadcrumbb a:hover {
    background: var(--primary-hover);
    color: var(--white);
}

.breadcrumbb a.active:after,
.breadcrumbb a:hover:after {
    background: var(--primary-hover);
    color: var(--white);
}

.breadcrumbb a.active:before,
.breadcrumbb a:hover:before {
    background: var(--primary-hover);
    color: var(--white);
}

/*adding the arrows for the breadcrumbbs using rotated pseudo elements*/
.breadcrumbb a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 30px;
    height: 30px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: var(--secondary);
    box-shadow: 2px -2px 0 1px rgba(0, 0, 0, 0.4), 2px -2px 0 1px var(--primary);
    border-radius: 0 5px 0 50px;
    color: var(--black);
    transition: all 0.1s;
}

/*we will use the :before element to show numbers*/
.breadcrumbb a:before {
    content: counter(flag);
    counter-increment: flag;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    line-height: 15px;
    margin: 7px 0;
    position: absolute;
    top: 0;
    left: 22px;
    background: var(--secondary);
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 0 0 1px var(--primary);
}

.custom-table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.custom-table td,
.custom-table th {
    border: 1px solid #ddd;
    padding: 5px 10px;
}

.custom-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.custom-table tr:hover {
    background-color: #ddd;
}

.custom-table th {
    text-align: left;
    background-color: var(--primary-dark);
    color: white;
}

/* Add asterick to required fields */
.required label::after,
.required-label::after {
    content: ' *';
    color: red;
}

/* Make Phone input div 100%*/
.iti {
    width: 100%;
}