:root {
    --blue: #3b7ddd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #540A10;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --black: #000;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #0000FE;
    --primary-hover: #EEF422;
    --primary-light: #605dc5;
    --primary-dark: #0D0F74;
    --secondary: #2C81DD;
    --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
}

body{
    font-family: var(--font-family-sans-serif) !important;
}

a {
    color: #2019e7;
    cursor: pointer;
}

.bg-primary {
    background-color: var(--primary-dark) !important;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-hover);
}

.breadcrumb{
    background-color: transparent;
    border-bottom: 1px solid var(--primary-light);
    border-radius: 0;
}

main>.container {
    padding: 70px 15px 20px;
}

.footer {
    background-color: #f5f5f5;
    font-size: .9em;
    height: 60px;
}

.footer>.container {
    padding-right: 15px;
    padding-left: 15px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* Add asterick to required fields */
.required label::after,
.required-label::after {
    content: ' *';
    color: red;
}

/* Make Phone input div 100%*/
.iti {
    width: 100%;
}

/* align the logout "link" (button in form) of the navbar */
.nav li>form>button.logout {
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

@media(max-width:767px) {
    .nav li>form>button.logout {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.nav>li>form>button.logout:focus,
.nav>li>form>button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.nav>li>form>button.logout:focus {
    outline: none;
}

.form-group {
    margin-bottom: 1rem;
}


/* ------------------------------------------------
  ----------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 */

.custom-table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
  .custom-table td,
  .custom-table th {
    border: 1px solid #f6ffd7;
    padding: 2px 10px;
  }
  
  .custom-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .custom-table tr:hover {
    background-color: #f6ffd7;
  }
  
  .custom-table th {
    text-align: left;
    background-color: var(--primary);
    color: white;
  }