$bootstrap-sass-asset-helper: false !default;
//
// Variables
// --------------------------------------------------
//== Colors
//## Gray and brand colors for use across Bootstrap.
$gray-base: #000 !default;
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
$gray-dark: lighten($gray-base, 20%) !default; // #333
$gray: lighten($gray-base, 33.5%) !default; // #555
$gray-light: lighten($gray-base, 46.7%) !default; // #777
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
$brand-primary: #19947b !default;
// $brand-primary: #e2ad68 !default;
$brand-primary-darker: darken($brand-primary, 20%) !default;
$brand-success: rgba(35, 189, 135, 0.99) !default;
$brand-info: rgb(93, 203, 236) !default;
$brand-warning: rgb(255, 223, 132) !default;
$brand-danger: rgb(244, 103, 99) !default;
// Custom Variables
$cookie-consent-text: #FFF !default;
$cookie-consent-bg: #000 !default;
// homepage title text and sub text
$home-page-title-text: #FFF !default; // all title text
$home-page-text: #fff !default; // all title text
$home-page-main-title-color: $home-page-title-text !default; // overide for specific main title text
$cookie-consent-btn-bg: $brand-primary !default;
// Footer Colour
$footer-border-color: #eee !default;
$footer-bg-color: $gray-darker !default;
$footer-text-color: #fff !default;
$sub-footer-color: #E5E5E5 !default;
// Breadcrumb
$breadcrumb-background-color: $brand-primary !default;
$breadcrumb-title-color: #fff !default;
$breadcrumb-span-color: #fff !default;
//Contact Page
$contact-banner-text-color: #fff !default;
// Featured Image Jumbotron
$featured-image-text-color: #fff !default;
// Nav Bar Overrides
$navbar-text-color: #ffffff !default;
//== Scaffolding
//
//## Settings for some of the most global styles.
//** Background color for `
`.
$body-bg: rgb(255, 255, 255) !default;
//** Global text color on ``.
$text-color: rgb(0, 0, 0) !default;
//** Global textual link color.
$link-color: $brand-primary !default;
//** Link hover color set via `darken()` function.
$link-hover-color: $link-color !default;
//** Link hover decoration.
$link-hover-decoration: underline !default;
//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
$font-family-sans-serif: Arial, sans-serif !default;
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
//** Default monospace fonts for ``, ``, and `
`.
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
$font-family-base: $font-family-sans-serif !default;
$font-size-base: 15px !default;
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
$font-size-h5: $font-size-base !default;
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
//** Unit-less `line-height` for use in components like buttons.
$line-height-base: 1.428571429 !default; // 20/14
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
//** By default, this inherits from the ``.
$headings-font-family: inherit !default;
$headings-font-weight: 400 !default;
$headings-line-height: 1.1 !default;
$headings-color: inherit !default;
//== Iconography
//
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
//** Load fonts from this directory.
// [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path.
// [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths.
$icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "/assets/fonts/") !default;
//** File name for all font files.
$icon-font-name: "glyphicons-halflings-regular" !default;
//** Element ID within SVG icon file.
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
//== Components
//
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
$padding-base-vertical: 10px !default;
$padding-base-horizontal: 15px !default;
$padding-large-vertical: 18px !default;
$padding-large-horizontal: 27px !default;
$padding-small-vertical: 6px !default;
$padding-small-horizontal: 9px !default;
$padding-xs-vertical: 1px !default;
$padding-xs-horizontal: 5px !default;
$line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
$line-height-small: 1.5 !default;
$border-radius-base: 4px !default;
$border-radius-large: 6px !default;
$border-radius-small: 0px !default;
//** Global color for active items (e.g., navs or dropdowns).
$component-active-color: rgb(255, 255, 255) !default;
//** Global background color for active items (e.g., navs or dropdowns).
$component-active-bg: $brand-primary !default;
//** Width of the `border` for generating carets that indicate dropdowns.
$caret-width-base: 3px !default;
//** Carets increase slightly in size for larger components.
$caret-width-large: 4px !default;
//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.
//** Padding for `
`s and `
`s.
$table-cell-padding: 8px !default;
//** Padding for cells in `.table-condensed`.
$table-condensed-cell-padding: 5px !default;
//** Default background color used for all tables.
$table-bg: transparent !default;
//** Background color used for `.table-striped`.
$table-bg-accent: rgb(249, 249, 249) !default;
//** Background color used for `.table-hover`.
$table-bg-hover: $gray-lighter !default;
$table-bg-active: $table-bg-hover !default;
//** Border color for table and cell borders.
$table-border-color: $gray-lighter !default;
//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.
$btn-font-weight: normal !default;
$btn-default-color: rgb(255, 255, 255) !default;
$btn-default-bg: rgb(51, 51, 51) !default;
$btn-default-border: rgb(51, 51, 51) !default;
$btn-primary-color: rgb(0, 0, 0)!default;
$btn-primary-bg: rgb(255, 255, 255) !default;
$btn-primary-border: rgb(0, 0, 0) !default;
$btn-success-color: $btn-default-color !default;
$btn-success-bg: $brand-success !default;
$btn-success-border: $btn-success-bg !default;
$btn-info-color: #fff !default;
$btn-info-bg: $brand-info !default;
$btn-info-border: darken($btn-info-bg, 5%) !default;
$btn-warning-color: #fff !default;
$btn-warning-bg: $brand-warning !default;
$btn-warning-border: darken($btn-warning-bg, 5%) !default;
$btn-danger-color: #fff !default;
$btn-danger-bg: $brand-danger !default;
$btn-danger-border: darken($btn-danger-bg, 5%) !default;
$btn-link-disabled-color: $gray-light !default;
// Allows for customizing button radius independently from global border radius
$btn-border-radius-base: $border-radius-base !default;
$btn-border-radius-large: $border-radius-large !default;
$btn-border-radius-small: $border-radius-small !default;
//== Forms
//
//##
//** `` background color
$input-bg: #fff !default;
//** `` background color
$input-bg-disabled: $gray-lighter !default;
//** Text color for ``s
$input-color: $gray !default;
//** `` border color
$input-border: #ccc !default;
// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
//** Default `.form-control` border radius
// This has no effect on `