@charset "UTF-8";
/*!
Theme Name: Wesco
Theme URI: https://underscores.me/
Author: Automattic
Author URI: https://automattic.com/
Description: Hi. I'm a starter theme called <code>_s</code>, or <em>underscores</em>, if you like. I'm a theme meant for hacking so don't use me as a <em>Parent Theme</em>. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Wesco
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

_s is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
.text-dark {
	color: #473848 !important;
}

.text-blue {
	color: #00B3E3;
}

.text-green {
	color: #95D600;
}

.text-navy {
	color: #001689;
}

.text-red {
	color: #CF0A2C;
}

.text-white, .text-white a {
	color: #FFF;
}

.text-muted {
	color: #d1d0d2;
}
.text-inherit {
	color: inherit;
}
.text-grey {
	color: #807981 !important;
}
.text-red {
	color: #CF0A2;
}

.bg-navy {
	background-color: #001689 !important;
}

.bg-blue {
	background-color: #00B3E3 !important;
}

.bg-green {
	background-color: #95D600 !important;
}

.bg-red {
	background-color: #CF0A2C !important;
}

.bg-light {
	background-color: #F1F3F3 !important;
}

.bg-dark {
	background-color: #2B252C !important;
}

.bg-light-gray {
	background-color: #d1d0d2;
}
/* Border Styles */
.border-2 {
	border-width: 2px !important;
}
.border-blue {
	border-color: #00B3E3 !important;
}
.border-green {
	border-color: #95D600 !important;
}
.border-light {
	border-color: #F1F3F3 !important;
}
.border-right-gray {
	border-right-color: #ced4da !important;
}
@media (min-width: 768px) {
	.border-md-right {
		   border-right: 1px solid #dee2e6;
	}
}
@media (min-width: 992px) {
	.bg-lg-navy {
		background-color: #001689 !important;
	}
	.text-lg-white {
		color: #FFF !important;
	}
	.text-lg-light {
		color: #F1F3F3 !important;
	}
	.border-lg-none {
		border: none !important;
	}
	.border-lg-right {
		   border-right: 1px solid #dee2e6;
	}
}

.fill-navy {
	fill: #001689;
}

.fill-red {
	fill: #CF0A2C;
}

.fill-white {
	fill: #FFF;
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */


/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #4A4A4A;
	font-family: din-2014, sans-serif;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: "wesco-icons";
	src: url("fonts/icons/wesco-icons.eot?r0jfx9");
	src: url("fonts/icons/wesco-icons.eot?r0jfx9#iefix") format("embedded-opentype"), url("fonts/icons/wesco-icons.ttf?r0jfx9") format("truetype"), url("fonts/icons/wesco-icons.woff?r0jfx9") format("woff"), url("fonts/icons/wesco-icons.svg?r0jfx9#wesco-icons") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "wesco-icons" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-snapchat-ghost:before {
	content: "";
}

.icon-instagram:before {
	content: "";
}

.icon-twitter:before {
	content: "";
}

.icon-facebook:before {
	content: "";
}

.icon-save-2c:before {
	content: "";
}

.icon-sandwich:before {
	content: "";
}

.icon-save-5c:before {
	content: "";
}

.icon-two-times:before {
	content: "";
}

.icon-number-3:before {
	content: "";
}

.icon-cappuccino:before {
	content: "";
}

.icon-coffee:before {
	content: "";
}

.icon-fountain-drink:before {
	content: "";
}

.icon-number-2:before {
	content: "";
}

.icon-save-3c:before {
	content: "";
}

.icon-save-1d:before {
	content: "";
}

.icon-number-1:before {
	content: "";
}

.icon-x:before {
	content: "";
}

.icon-x-square:before {
	content: "";
}

.icon-x-square-fill:before {
	content: "";
}

.icon-x-octagon:before {
	content: "";
}

.icon-x-octagon-fill:before {
	content: "";
}

.icon-x-diamond:before {
	content: "";
}

.icon-x-diamond-fill:before {
	content: "";
}

.icon-x-circle:before {
	content: "";
}

.icon-x-circle-fill:before {
	content: "";
}

.icon-wrench:before {
	content: "";
}

.icon-window:before {
	content: "";
}

.icon-wifi:before {
	content: "";
}

.icon-watch:before {
	content: "";
}

.icon-wallet:before {
	content: "";
}

.icon-vr:before {
	content: "";
}

.icon-volume-up:before {
	content: "";
}

.icon-volume-up-fill:before {
	content: "";
}

.icon-volume-mute:before {
	content: "";
}

.icon-volume-mute-fill:before {
	content: "";
}

.icon-volume-down:before {
	content: "";
}

.icon-volume-down-fill:before {
	content: "";
}

.icon-view-stacked:before {
	content: "";
}

.icon-view-list:before {
	content: "";
}

.icon-upload:before {
	content: "";
}

.icon-unlock:before {
	content: "";
}

.icon-unlock-fill:before {
	content: "";
}

.icon-union:before {
	content: "";
}

.icon-type:before {
	content: "";
}

.icon-type-underline:before {
	content: "";
}

.icon-type-strikethrough:before {
	content: "";
}

.icon-type-italic:before {
	content: "";
}

.icon-type-h3:before {
	content: "";
}

.icon-type-h2:before {
	content: "";
}

.icon-type-h1:before {
	content: "";
}

.icon-type-bold:before {
	content: "";
}

.icon-tv:before {
	content: "";
}

.icon-tv-fill:before {
	content: "";
}

.icon-trophy:before {
	content: "";
}

.icon-triangle:before {
	content: "";
}

.icon-triangle-half:before {
	content: "";
}

.icon-triangle-fill:before {
	content: "";
}

.icon-trash2:before {
	content: "";
}

.icon-trash2-fill:before {
	content: "";
}

.icon-trash:before {
	content: "";
}

.icon-trash-fill:before {
	content: "";
}

.icon-tools:before {
	content: "";
}

.icon-toggles:before {
	content: "";
}

.icon-toggle-on:before {
	content: "";
}

.icon-toggle-off:before {
	content: "";
}

.icon-three-dots:before {
	content: "";
}

.icon-three-dots-vertical:before {
	content: "";
}

.icon-textarea:before {
	content: "";
}

.icon-textarea-t:before {
	content: "";
}

.icon-text-right:before {
	content: "";
}

.icon-text-left:before {
	content: "";
}

.icon-text-indent-right:before {
	content: "";
}

.icon-text-indent-left:before {
	content: "";
}

.icon-text-center:before {
	content: "";
}

.icon-terminal:before {
	content: "";
}

.icon-terminal-fill:before {
	content: "";
}

.icon-tag:before {
	content: "";
}

.icon-tag-fill:before {
	content: "";
}

.icon-tablet:before {
	content: "";
}

.icon-tablet-landscape:before {
	content: "";
}

.icon-table:before {
	content: "";
}

.icon-sun:before {
	content: "";
}

.icon-subtract:before {
	content: "";
}

.icon-stopwatch:before {
	content: "";
}

.icon-stopwatch-fill:before {
	content: "";
}

.icon-stop:before {
	content: "";
}

.icon-stop-fill:before {
	content: "";
}

.icon-star:before {
	content: "";
}

.icon-star-half:before {
	content: "";
}

.icon-star-fill:before {
	content: "";
}

.icon-square:before {
	content: "";
}

.icon-square-half:before {
	content: "";
}

.icon-square-fill:before {
	content: "";
}

.icon-speaker:before {
	content: "";
}

.icon-sliders:before {
	content: "";
}

.icon-slash:before {
	content: "";
}

.icon-slash-square:before {
	content: "";
}

.icon-slash-square-fill:before {
	content: "";
}

.icon-slash-circle:before {
	content: "";
}

.icon-slash-circle-fill:before {
	content: "";
}

.icon-skip-start:before {
	content: "";
}

.icon-skip-start-fill:before {
	content: "";
}

.icon-skip-forward:before {
	content: "";
}

.icon-skip-forward-fill:before {
	content: "";
}

.icon-skip-end:before {
	content: "";
}

.icon-skip-end-fill:before {
	content: "";
}

.icon-skip-backward:before {
	content: "";
}

.icon-skip-backward-fill:before {
	content: "";
}

.icon-shuffle:before {
	content: "";
}

.icon-shift:before {
	content: "";
}

.icon-shift-fill:before {
	content: "";
}

.icon-shield:before {
	content: "";
}

.icon-shield-shaded:before {
	content: "";
}

.icon-shield-lock:before {
	content: "";
}

.icon-shield-lock-fill:before {
	content: "";
}

.icon-shield-fill:before {
	content: "";
}

.icon-server:before {
	content: "";
}

.icon-search:before {
	content: "";
}

.icon-screwdriver:before {
	content: "";
}

.icon-reply:before {
	content: "";
}

.icon-reply-fill:before {
	content: "";
}

.icon-reply-all:before {
	content: "";
}

.icon-reply-all-fill:before {
	content: "";
}

.icon-question:before {
	content: "";
}

.icon-question-square:before {
	content: "";
}

.icon-question-square-fill:before {
	content: "";
}

.icon-question-octagon:before {
	content: "";
}

.icon-question-octagon-fill:before {
	content: "";
}

.icon-question-diamond:before {
	content: "";
}

.icon-question-diamond-fill:before {
	content: "";
}

.icon-question-circle:before {
	content: "";
}

.icon-question-circle-fill:before {
	content: "";
}

.icon-puzzle:before {
	content: "";
}

.icon-puzzle-fill:before {
	content: "";
}

.icon-power:before {
	content: "";
}

.icon-plus:before {
	content: "";
}

.icon-plus-square:before {
	content: "";
}

.icon-plus-square-fill:before {
	content: "";
}

.icon-plus-circle:before {
	content: "";
}

.icon-plus-circle-fill:before {
	content: "";
}

.icon-plug:before {
	content: "";
}

.icon-play:before {
	content: "";
}

.icon-play-fill:before {
	content: "";
}

.icon-pip:before {
	content: "";
}

.icon-pip-fill:before {
	content: "";
}

.icon-pie-chart:before {
	content: "";
}

.icon-pie-chart-fill:before {
	content: "";
}

.icon-phone:before {
	content: "";
}

.icon-phone-landscape:before {
	content: "";
}

.icon-person-square:before {
	content: "";
}

.icon-person-plus-fill:before {
	content: "";
}

.icon-person-lines-fill:before {
	content: "";
}

.icon-person-fill:before {
	content: "";
}

.icon-person-dash-fill:before {
	content: "";
}

.icon-person-check-fill:before {
	content: "";
}

.icon-person-bounding-box:before {
	content: "";
}

.icon-people-fill:before {
	content: "";
}

.icon-people-circle:before {
	content: "";
}

.icon-pentagon:before {
	content: "";
}

.icon-pentagon-half:before {
	content: "";
}

.icon-pentagon-fill:before {
	content: "";
}

.icon-pencil:before {
	content: "";
}

.icon-pencil-square:before {
	content: "";
}

.icon-pen:before {
	content: "";
}

.icon-pause:before {
	content: "";
}

.icon-pause-fill:before {
	content: "";
}

.icon-paperclip:before {
	content: "";
}

.icon-outlet:before {
	content: "";
}

.icon-option:before {
	content: "";
}

.icon-octagon:before {
	content: "";
}

.icon-octagon-half:before {
	content: "";
}

.icon-octagon-fill:before {
	content: "";
}

.icon-newspaper:before {
	content: "";
}

.icon-music-player:before {
	content: "";
}

.icon-music-player-fill:before {
	content: "";
}

.icon-music-note:before {
	content: "";
}

.icon-music-note-list:before {
	content: "";
}

.icon-music-note-beamed:before {
	content: "";
}

.icon-moon:before {
	content: "";
}

.icon-mic:before {
	content: "";
}

.icon-mic-fill:before {
	content: "";
}

.icon-map:before {
	content: "";
}

.icon-lock:before {
	content: "";
}

.icon-lock-fill:before {
	content: "";
}

.icon-list:before {
	content: "";
}

.icon-list-ul:before {
	content: "";
}

.icon-list-task:before {
	content: "";
}

.icon-list-ol:before {
	content: "";
}

.icon-list-nested:before {
	content: "";
}

.icon-list-check:before {
	content: "";
}

.icon-link:before {
	content: "";
}

.icon-link-45deg:before {
	content: "";
}

.icon-lightning:before {
	content: "";
}

.icon-lightning-fill:before {
	content: "";
}

.icon-life-preserver:before {
	content: "";
}

.icon-layout-wtf:before {
	content: "";
}

.icon-layout-three-columns:before {
	content: "";
}

.icon-layout-text-window:before {
	content: "";
}

.icon-layout-text-window-reverse:before {
	content: "";
}

.icon-layout-text-sidebar:before {
	content: "";
}

.icon-layout-text-sidebar-reverse:before {
	content: "";
}

.icon-layout-split:before {
	content: "";
}

.icon-layout-sidebar:before {
	content: "";
}

.icon-layout-sidebar-reverse:before {
	content: "";
}

.icon-layout-sidebar-inset:before {
	content: "";
}

.icon-layout-sidebar-inset-reverse:before {
	content: "";
}

.icon-layers:before {
	content: "";
}

.icon-layers-half:before {
	content: "";
}

.icon-layers-fill:before {
	content: "";
}

.icon-laptop:before {
	content: "";
}

.icon-kanban:before {
	content: "";
}

.icon-kanban-fill:before {
	content: "";
}

.icon-justify:before {
	content: "";
}

.icon-justify-right:before {
	content: "";
}

.icon-justify-left:before {
	content: "";
}

.icon-intersect:before {
	content: "";
}

.icon-info:before {
	content: "";
}

.icon-info-square:before {
	content: "";
}

.icon-info-square-fill:before {
	content: "";
}

.icon-info-circle:before {
	content: "";
}

.icon-info-circle-fill:before {
	content: "";
}

.icon-inboxes:before {
	content: "";
}

.icon-inboxes-fill:before {
	content: "";
}

.icon-inbox:before {
	content: "";
}

.icon-inbox-fill:before {
	content: "";
}

.icon-images:before {
	content: "";
}

.icon-image:before {
	content: "";
}

.icon-image-fill:before {
	content: "";
}

.icon-image-alt:before {
	content: "";
}

.icon-hr:before {
	content: "";
}

.icon-house:before {
	content: "";
}

.icon-house-fill:before {
	content: "";
}

.icon-house-door:before {
	content: "";
}

.icon-house-door-fill:before {
	content: "";
}

.icon-heart:before {
	content: "";
}

.icon-heart-half:before {
	content: "";
}

.icon-heart-fill:before {
	content: "";
}

.icon-hash:before {
	content: "";
}

.icon-hammer:before {
	content: "";
}

.icon-grid:before {
	content: "";
}

.icon-grid-fill:before {
	content: "";
}

.icon-grid-3x3:before {
	content: "";
}

.icon-grid-3x3-gap-fill:before {
	content: "";
}

.icon-grid-3x2:before {
	content: "";
}

.icon-grid-3x2-gap-fill:before {
	content: "";
}

.icon-grid-1x2:before {
	content: "";
}

.icon-grid-1x2-fill:before {
	content: "";
}

.icon-graph-up:before {
	content: "";
}

.icon-graph-down:before {
	content: "";
}

.icon-gift:before {
	content: "";
}

.icon-gift-fill:before {
	content: "";
}

.icon-geo:before {
	content: "";
}

.icon-geo-alt:before {
	content: "";
}

.icon-gem:before {
	content: "";
}

.icon-gear:before {
	content: "";
}

.icon-gear-wide:before {
	content: "";
}

.icon-gear-wide-connected:before {
	content: "";
}

.icon-gear-fill:before {
	content: "";
}

.icon-funnel:before {
	content: "";
}

.icon-funnel-fill:before {
	content: "";
}

.icon-fullscreen:before {
	content: "";
}

.icon-fullscreen-exit:before {
	content: "";
}

.icon-forward:before {
	content: "";
}

.icon-forward-fill:before {
	content: "";
}

.icon-fonts:before {
	content: "";
}

.icon-folder:before {
	content: "";
}

.icon-folder-symlink:before {
	content: "";
}

.icon-folder-symlink-fill:before {
	content: "";
}

.icon-folder-plus:before {
	content: "";
}

.icon-folder-minus:before {
	content: "";
}

.icon-folder-fill:before {
	content: "";
}

.icon-folder-check:before {
	content: "";
}

.icon-flag:before {
	content: "";
}

.icon-flag-fill:before {
	content: "";
}

.icon-filter:before {
	content: "";
}

.icon-filter-right:before {
	content: "";
}

.icon-filter-left:before {
	content: "";
}

.icon-film:before {
	content: "";
}

.icon-files:before {
	content: "";
}

.icon-files-alt:before {
	content: "";
}

.icon-file:before {
	content: "";
}

.icon-file-zip:before {
	content: "";
}

.icon-file-text:before {
	content: "";
}

.icon-file-spreadsheet:before {
	content: "";
}

.icon-file-richtext:before {
	content: "";
}

.icon-file-post:before {
	content: "";
}

.icon-file-plus:before {
	content: "";
}

.icon-file-minus:before {
	content: "";
}

.icon-file-earmark:before {
	content: "";
}

.icon-file-earmark-zip:before {
	content: "";
}

.icon-file-earmark-text:before {
	content: "";
}

.icon-file-earmark-spreadsheet:before {
	content: "";
}

.icon-file-earmark-ruled:before {
	content: "";
}

.icon-file-earmark-plus:before {
	content: "";
}

.icon-file-earmark-minus:before {
	content: "";
}

.icon-file-earmark-diff:before {
	content: "";
}

.icon-file-earmark-code:before {
	content: "";
}

.icon-file-earmark-check:before {
	content: "";
}

.icon-file-earmark-break:before {
	content: "";
}

.icon-file-earmark-arrow-up:before {
	content: "";
}

.icon-file-earmark-arrow-down:before {
	content: "";
}

.icon-file-diff:before {
	content: "";
}

.icon-file-code:before {
	content: "";
}

.icon-file-check:before {
	content: "";
}

.icon-file-break:before {
	content: "";
}

.icon-file-arrow-up:before {
	content: "";
}

.icon-file-arrow-down:before {
	content: "";
}

.icon-eye-slash:before {
	content: "";
}

.icon-eye-slash-fill:before {
	content: "";
}

.icon-eye-fill:before {
	content: "";
}

.icon-exclude:before {
	content: "";
}

.icon-exclamation:before {
	content: "";
}

.icon-exclamation-triangle:before {
	content: "";
}

.icon-exclamation-triangle-fill:before {
	content: "";
}

.icon-exclamation-square:before {
	content: "";
}

.icon-exclamation-square-fill:before {
	content: "";
}

.icon-exclamation-octagon:before {
	content: "";
}

.icon-exclamation-octagon-fill:before {
	content: "";
}

.icon-exclamation-diamond:before {
	content: "";
}

.icon-exclamation-diamond-fill:before {
	content: "";
}

.icon-exclamation-circle:before {
	content: "";
}

.icon-exclamation-circle-fill:before {
	content: "";
}

.icon-envelope:before {
	content: "";
}

.icon-envelope-open:before {
	content: "";
}

.icon-envelope-open-fill:before {
	content: "";
}

.icon-envelope-fill:before {
	content: "";
}

.icon-eject:before {
	content: "";
}

.icon-eject-fill:before {
	content: "";
}

.icon-egg:before {
	content: "";
}

.icon-egg-fried:before {
	content: "";
}

.icon-egg-fill:before {
	content: "";
}

.icon-droplet:before {
	content: "";
}

.icon-droplet-half:before {
	content: "";
}

.icon-droplet-fill:before {
	content: "";
}

.icon-download:before {
	content: "";
}

.icon-dot:before {
	content: "";
}

.icon-display:before {
	content: "";
}

.icon-display-fill:before {
	content: "";
}

.icon-diamond:before {
	content: "";
}

.icon-diamond-half:before {
	content: "";
}

.icon-diamond-fill:before {
	content: "";
}

.icon-dash:before {
	content: "";
}

.icon-dash-square:before {
	content: "";
}

.icon-dash-square-fill:before {
	content: "";
}

.icon-dash-circle:before {
	content: "";
}

.icon-dash-circle-fill:before {
	content: "";
}

.icon-cursor:before {
	content: "";
}

.icon-cursor-text:before {
	content: "";
}

.icon-cursor-fill:before {
	content: "";
}

.icon-crop:before {
	content: "";
}

.icon-credit-card:before {
	content: "";
}

.icon-controller:before {
	content: "";
}

.icon-cone:before {
	content: "";
}

.icon-cone-striped:before {
	content: "";
}

.icon-compass:before {
	content: "";
}

.icon-command:before {
	content: "";
}

.icon-columns:before {
	content: "";
}

.icon-columns-gap:before {
	content: "";
}

.icon-collection:before {
	content: "";
}

.icon-collection-play:before {
	content: "";
}

.icon-collection-play-fill:before {
	content: "";
}

.icon-collection-fill:before {
	content: "";
}

.icon-code:before {
	content: "";
}

.icon-code-slash:before {
	content: "";
}

.icon-cloud:before {
	content: "";
}

.icon-cloud-upload:before {
	content: "";
}

.icon-cloud-fill:before {
	content: "";
}

.icon-cloud-download:before {
	content: "";
}

.icon-clock:before {
	content: "";
}

.icon-clock-history:before {
	content: "";
}

.icon-clock-fill:before {
	content: "";
}

.icon-clipboard:before {
	content: "";
}

.icon-clipboard-data:before {
	content: "";
}

.icon-circle:before {
	content: "";
}

.icon-circle-square:before {
	content: "";
}

.icon-circle-half:before {
	content: "";
}

.icon-circle-fill:before {
	content: "";
}

.icon-chevron-up:before {
	content: "";
}

.icon-chevron-right:before {
	content: "";
}

.icon-chevron-left:before {
	content: "";
}

.icon-chevron-expand:before {
	content: "";
}

.icon-chevron-down:before {
	content: "";
}

.icon-chevron-double-up:before {
	content: "";
}

.icon-chevron-double-right:before {
	content: "";
}

.icon-chevron-double-left:before {
	content: "";
}

.icon-chevron-double-down:before {
	content: "";
}

.icon-chevron-contract:before {
	content: "";
}

.icon-chevron-compact-up:before {
	content: "";
}

.icon-chevron-compact-right:before {
	content: "";
}

.icon-chevron-compact-left:before {
	content: "";
}

.icon-chevron-compact-down:before {
	content: "";
}

.icon-chevron-bar-up:before {
	content: "";
}

.icon-chevron-bar-right:before {
	content: "";
}

.icon-chevron-bar-left:before {
	content: "";
}

.icon-chevron-bar-expand:before {
	content: "";
}

.icon-chevron-bar-down:before {
	content: "";
}

.icon-chevron-bar-contract:before {
	content: "";
}

.icon-check:before {
	content: "";
}

.icon-check-circle:before {
	content: "";
}

.icon-check-box:before {
	content: "";
}

.icon-check-all:before {
	content: "";
}

.icon-chat:before {
	content: "";
}

.icon-chat-square:before {
	content: "";
}

.icon-chat-square-quote:before {
	content: "";
}

.icon-chat-square-quote-fill:before {
	content: "";
}

.icon-chat-square-fill:before {
	content: "";
}

.icon-chat-square-dots:before {
	content: "";
}

.icon-chat-square-dots-fill:before {
	content: "";
}

.icon-chat-quote:before {
	content: "";
}

.icon-chat-quote-fill:before {
	content: "";
}

.icon-chat-fill:before {
	content: "";
}

.icon-chat-dots:before {
	content: "";
}

.icon-chat-dots-fill:before {
	content: "";
}

.icon-caret-up:before {
	content: "";
}

.icon-caret-up-fill:before {
	content: "";
}

.icon-caret-right:before {
	content: "";
}

.icon-caret-right-fill:before {
	content: "";
}

.icon-caret-left:before {
	content: "";
}

.icon-caret-left-fill:before {
	content: "";
}

.icon-caret-down:before {
	content: "";
}

.icon-caret-down-fill:before {
	content: "";
}

.icon-card-text:before {
	content: "";
}

.icon-card-list:before {
	content: "";
}

.icon-card-image:before {
	content: "";
}

.icon-card-heading:before {
	content: "";
}

.icon-card-checklist:before {
	content: "";
}

.icon-capslock:before {
	content: "";
}

.icon-capslock-fill:before {
	content: "";
}

.icon-camera:before {
	content: "";
}

.icon-camera-video:before {
	content: "";
}

.icon-camera-video-fill:before {
	content: "";
}

.icon-calendar:before {
	content: "";
}

.icon-calendar-fill:before {
	content: "";
}

.icon-bullseye:before {
	content: "";
}

.icon-building:before {
	content: "";
}

.icon-bucket:before {
	content: "";
}

.icon-bucket-fill:before {
	content: "";
}

.icon-brush:before {
	content: "";
}

.icon-brightness-low:before {
	content: "";
}

.icon-brightness-low-fill:before {
	content: "";
}

.icon-brightness-high:before {
	content: "";
}

.icon-brightness-high-fill:before {
	content: "";
}

.icon-brightness-alt-low:before {
	content: "";
}

.icon-brightness-alt-low-fill:before {
	content: "";
}

.icon-brightness-alt-high:before {
	content: "";
}

.icon-brightness-alt-high-fill:before {
	content: "";
}

.icon-briefcase:before {
	content: "";
}

.icon-briefcase-fill:before {
	content: "";
}

.icon-braces:before {
	content: "";
}

.icon-box-arrow-up:before {
	content: "";
}

.icon-box-arrow-up-right:before {
	content: "";
}

.icon-box-arrow-up-left:before {
	content: "";
}

.icon-box-arrow-right:before {
	content: "";
}

.icon-box-arrow-left:before {
	content: "";
}

.icon-box-arrow-in-up:before {
	content: "";
}

.icon-box-arrow-in-up-right:before {
	content: "";
}

.icon-box-arrow-in-up-left:before {
	content: "";
}

.icon-box-arrow-in-right:before {
	content: "";
}

.icon-box-arrow-in-left:before {
	content: "";
}

.icon-box-arrow-in-down:before {
	content: "";
}

.icon-box-arrow-in-down-right:before {
	content: "";
}

.icon-box-arrow-in-down-left:before {
	content: "";
}

.icon-box-arrow-down:before {
	content: "";
}

.icon-box-arrow-down-right:before {
	content: "";
}

.icon-box-arrow-down-left:before {
	content: "";
}

.icon-bounding-box:before {
	content: "";
}

.icon-bounding-box-circles:before {
	content: "";
}

.icon-bootstrap:before {
	content: "";
}

.icon-bootstrap-reboot:before {
	content: "";
}

.icon-bootstrap-fill:before {
	content: "";
}

.icon-bookmarks:before {
	content: "";
}

.icon-bookmarks-fill:before {
	content: "";
}

.icon-bookmark:before {
	content: "";
}

.icon-bookmark-plus:before {
	content: "";
}

.icon-bookmark-fill:before {
	content: "";
}

.icon-bookmark-dash:before {
	content: "";
}

.icon-bookmark-check:before {
	content: "";
}

.icon-book:before {
	content: "";
}

.icon-book-half:before {
	content: "";
}

.icon-blockquote-right:before {
	content: "";
}

.icon-blockquote-left:before {
	content: "";
}

.icon-bell:before {
	content: "";
}

.icon-bell-fill:before {
	content: "";
}

.icon-battery:before {
	content: "";
}

.icon-battery-half:before {
	content: "";
}

.icon-battery-full:before {
	content: "";
}

.icon-battery-charging:before {
	content: "";
}

.icon-bar-chart:before {
	content: "";
}

.icon-bar-chart-fill:before {
	content: "";
}

.icon-bag:before {
	content: "";
}

.icon-bag-fill:before {
	content: "";
}

.icon-backspace:before {
	content: "";
}

.icon-backspace-reverse:before {
	content: "";
}

.icon-backspace-reverse-fill:before {
	content: "";
}

.icon-backspace-fill:before {
	content: "";
}

.icon-award:before {
	content: "";
}

.icon-award-fill:before {
	content: "";
}

.icon-at:before {
	content: "";
}

.icon-aspect-ratio:before {
	content: "";
}

.icon-aspect-ratio-fill:before {
	content: "";
}

.icon-arrows-move:before {
	content: "";
}

.icon-arrows-fullscreen:before {
	content: "";
}

.icon-arrows-expand:before {
	content: "";
}

.icon-arrows-collapse:before {
	content: "";
}

.icon-arrows-angle-expand:before {
	content: "";
}

.icon-arrows-angle-contract:before {
	content: "";
}

.icon-arrow-up:before {
	content: "";
}

.icon-arrow-up-short:before {
	content: "";
}

.icon-arrow-up-right:before {
	content: "";
}

.icon-arrow-up-left:before {
	content: "";
}

.icon-arrow-up-down:before {
	content: "";
}

.icon-arrow-right:before {
	content: "";
}

.icon-arrow-right-short:before {
	content: "";
}

.icon-arrow-return-right:before {
	content: "";
}

.icon-arrow-return-left:before {
	content: "";
}

.icon-arrow-repeat:before {
	content: "";
}

.icon-arrow-left:before {
	content: "";
}

.icon-arrow-left-short:before {
	content: "";
}

.icon-arrow-left-right:before {
	content: "";
}

.icon-arrow-down:before {
	content: "";
}

.icon-arrow-down-short:before {
	content: "";
}

.icon-arrow-down-right:before {
	content: "";
}

.icon-arrow-down-left:before {
	content: "";
}

.icon-arrow-counterclockwise:before {
	content: "";
}

.icon-arrow-clockwise:before {
	content: "";
}

.icon-arrow-bar-up:before {
	content: "";
}

.icon-arrow-bar-right:before {
	content: "";
}

.icon-arrow-bar-left:before {
	content: "";
}

.icon-arrow-bar-down:before {
	content: "";
}

.icon-arrow-90deg-up:before {
	content: "";
}

.icon-arrow-90deg-right:before {
	content: "";
}

.icon-arrow-90deg-left:before {
	content: "";
}

.icon-arrow-90deg-down:before {
	content: "";
}

.icon-archive:before {
	content: "";
}

.icon-archive-fill:before {
	content: "";
}

.icon-app:before {
	content: "";
}

.icon-app-indicator:before {
	content: "";
}

.icon-alt:before {
	content: "";
}

.icon-alarm:before {
	content: "";
}

.icon-alarm-fill:before {
	content: "";
}

.icon-file-ruled:before {
	content: "";
}

.icon-eye:before {
	content: "";
}

.icon-location-icon:before {
	content: "";
}

.icon-remove_red_eyevisibility:before {
	content: "";
}

.icon-visibility_off:before {
	content: "";
}

.icon-location_pin:before {
	content: "";
}

.icon-keyboard_arrow_left:before {
	content: "";
}

.icon-keyboard_arrow_right:before {
	content: "";
}

.icon-arrow-down1:before {
	content: "";
}

.icon-arrow-down-circle:before {
	content: "";
}

.icon-arrow-up1:before {
	content: "";
}

.icon-arrow-up-circle:before {
	content: "";
}

.icon-award1:before {
	content: "";
}

.icon-chevron-down1:before {
	content: "";
}

.icon-chevron-up1:before {
	content: "";
}

.icon-eye1:before {
	content: "";
}

.icon-eye-off:before {
	content: "";
}

.icon-heart1:before {
	content: "";
}

.icon-replay:before {
	content: "";
}

.icon-textsmssms:before {
	content: "";
}

.icon-content_copy:before {
	content: "";
}

.icon-linkinsert_link:before {
	content: "";
}

.icon-attach_file:before {
	content: "";
}

.icon-phone_android:before {
	content: "";
}

.icon-phone_iphone:before {
	content: "";
}

.icon-person_pin_circle:before {
	content: "";
}

.icon-arrow_back:before {
	content: "";
}

.icon-arrow_forward:before {
	content: "";
}

.icon-check1:before {
	content: "";
}

.icon-expand_less:before {
	content: "";
}

.icon-expand_more:before {
	content: "";
}

.icon-keyboard_control:before {
	content: "";
}

.icon-more_vert:before {
	content: "";
}

.icon-arrow_back_ios:before {
	content: "";
}

.icon-arrow_forward_ios:before {
	content: "";
}

.icon-stargrade:before {
	content: "";
}

.icon-star_half:before {
	content: "";
}

.icon-star_outline:before {
	content: "";
}

.icon-account_circle:before {
	content: "";
}

.icon-emailmailmarkunreadlocal_post_office:before {
	content: "";
}

.icon-mail_outline:before {
	content: "";
}

.icon-move_to_inbox:before {
	content: "";
}

.icon-error_outline:before {
	content: "";
}

.icon-not_interesteddo_not_disturb:before {
	content: "";
}

.icon-call:before {
	content: "";
}

.icon-contact_phone:before {
	content: "";
}

.icon-contact_mail:before {
	content: "";
}

.icon-stay_current_portraitstay_primary_portraitsmartphone:before {
	content: "";
}

.icon-phonelink_ring:before {
	content: "";
}

.icon-alternate_email:before {
	content: "";
}

.icon-add_circle_outlinecontrol_point:before {
	content: "";
}

.icon-block:before {
	content: "";
}

.icon-remove_circle_outline:before {
	content: "";
}

.icon-location_history:before {
	content: "";
}

.icon-drive_etatime_to_leave:before {
	content: "";
}

.icon-phone_in_talk:before {
	content: "";
}

.icon-check_circle:before {
	content: "";
}

.icon-done:before {
	content: "";
}

.icon-help:before {
	content: "";
}

.icon-highlight_remove:before {
	content: "";
}

.icon-info1:before {
	content: "";
}

.icon-info_outline:before {
	content: "";
}

.icon-launchopen_in_new:before {
	content: "";
}

.icon-lock_open:before {
	content: "";
}

.icon-lock_outline:before {
	content: "";
}

.icon-search1:before {
	content: "";
}

.icon-settings:before {
	content: "";
}

.icon-help_outline:before {
	content: "";
}

.icon-check_circle_outline:before {
	content: "";
}

.icon-done_outline:before {
	content: "";
}

.icon-supervised_user_circle:before {
	content: "";
}

.icon-logout:before {
	content: "";
}

.icon-local_gas_station:before {
	content: "";
}

.icon-location_on:before {
	content: "";
}

.icon-place:before {
	content: "";
}

.icon-room:before {
	content: "";
}

.icon-map-pin:before {
	content: "";
}

.icon-alert-triangle:before {
	content: "";
}

.icon-arrow-left1:before {
	content: "";
}

.icon-arrow-left-circle:before {
	content: "";
}

.icon-arrow-right1:before {
	content: "";
}

.icon-arrow-right-circle:before {
	content: "";
}

.icon-at-sign:before {
	content: "";
}

.icon-calendar1:before {
	content: "";
}

.icon-camera1:before {
	content: "";
}

.icon-check11:before {
	content: "";
}

.icon-check-circle1:before {
	content: "";
}

.icon-check-square:before {
	content: "";
}

.icon-chevron-left1:before {
	content: "";
}

.icon-chevron-right1:before {
	content: "";
}

.icon-chevrons-left:before {
	content: "";
}

.icon-chevrons-right:before {
	content: "";
}

.icon-download1:before {
	content: "";
}

.icon-edit:before {
	content: "";
}

.icon-link1:before {
	content: "";
}

.icon-mail:before {
	content: "";
}

.icon-paperclip1:before {
	content: "";
}

.icon-phone-call:before {
	content: "";
}

.icon-smartphone:before {
	content: "";
}

.unlink-card.icon-highlight_remove {
    font-size: 1.25rem;
    color: #807981;
}
.unlink-card.icon-highlight_remove:hover {
	color: #CF0A2C;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	clear: both;
	line-height: 1;
}

h1, .h1 {
	font-weight: 800;
}

h2, .h2 {
	font-weight: 700;
}

h2 .dollar-sign, .h2 .dollar-sign {
	top: -0.25rem;
}

h3, .h3 {
	font-weight: 600;
}

h3 .dollar-sign, .h3 .dollar-sign {
	top: -0.25rem;
}

h3.card-title, .h3.card-title {
	font-size: 1.45rem;
}

@media (min-width: 576px) {
	h3.card-title, .h3.card-title {
		font-size: 1.5rem;
	}
}

@media (min-width: 992px) {
	.card-header h6 {
		font-size: 1rem;
	}
}

@media (min-width: 1200px) {
	.card-header h6 {
		font-size: 1.125rem;
	}
}

h4, .h4 {
	font-weight: 600;
}

h4 .dollar-sign, .h4 .dollar-sign {
	top: -0.25rem;
}

h5, .h5 {
	font-weight: 400;
}

h6, .h6 {
	font-weight: 400;
	font-size: 1.125rem;
}

.hero-header {
	font-size: 2.25rem;
	font-weight: 800;
}

.page-title {
	font-size: 1.85rem;
	font-weight: 700;
	margin-top: 0;
}
.page-subheader {
	font-size: 1.125rem;
	font-weight: 600;
}

.bg-blue .page-title, .bg-blue .page-subheader {
	color: #ffffff;
}
.display-5{
	font-size: 3rem;
}
.display-6{
	font-size: 2.75rem;
}
.display-7{
	font-size: 2.25rem;
}


@media (min-width: 576px) {
	.page-title {
		font-size: 2rem;
	}
}

@media (min-width: 768px) {
	.page-title {
		font-size: 2.25rem;
	}
}

@media (min-width: 992px) {
	.page-title {
		font-size: 2.75rem;
	}
}

@media (min-width: 1200px) {
	.page-title {
		font-size: 3.25rem;
	}
}

@media (min-width: 1200px) {
	.display-3 {
		font-size: 5rem;
	}
}

@media (min-width: 992px) {
	.display-4 {
		font-size: 3.25rem;
	}
}

@media (min-width: 576px) {
	.home .hero-header {
		font-size: 2.75rem;
	}
}

@media (min-width: 768px) {
	.home .hero-header {
		font-size: 3rem;
	}
}

@media (min-width: 992px) {
	.home .hero-header {
		font-size: 3.25rem;
	}
}

@media (min-width: 1200px) {
	.home .hero-header {
		font-size: 3.75rem;
	}
}

@media (min-width: 576px) {
	.home .section-header {
		font-size: 2.25rem;
	}
}

@media (min-width: 768px) {
	.home .section-header {
		font-size: 2.5rem;
	}
}

@media (min-width: 992px) {
	.home .section-header {
		font-size: 2.75rem;
	}
}

p {
	margin-bottom: 1.5rem;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5rem;
}

address {
	margin: 0 0 1.5rem;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

strong {
	font-weight: 800;
}

big, .big {
	font-size: 125%;
}

.fw-200 {
	font-weight: 200;
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-600 {
	font-weight: 600;
}

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

.lh-1 {
	line-height: 1;
}

.lh-125 {
	line-height: 1.25;
}

.ls-n1 {
	letter-spacing: -1px;
}

.ls-1 {
	letter-spacing: 1px;
}

.text-underline {
	text-decoration: underline;
}

.text-divider {
	width: 1px;
	height: 15px;
	vertical-align: middle;
	opacity: .75;
}

.cent-symbol {
	position: relative;
	top: -0.5rem;
	font-size: 75%;
}

.dollar-sign {
	font-size: 75%;
	position: relative;
	top: -0.5rem;
}

.card-footer-text {
	font-size: 1rem;
}

@media (min-width: 576px) {
	.card-footer-text {
		font-size: 1.125rem;
	}
}

@media (min-width: 992px) {
	.card-footer-text {
		font-size: .95rem;
	}
}

.hello-member {
	display: block;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #EFEEEE;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5rem 0;
	padding-inline-start: 2rem;
}

ul.menu,
ol.menu {
	padding-left: 0;
	list-style: none;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

.ldBar {
	position: relative;
}

.ldBar.label-center > .ldBar-label {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-shadow: 0 0 3px #fff;
}

.ldBar-label:after {
	content: "%";
	display: inline;
}

.ldBar.no-percent .ldBar-label:after {
	content: "";
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #001689;
}



a:hover, a:focus, a:active {
	color: inherit;
}
a.text-decoration-none, a.text-decoration-none:hover {
	text-decoration: none;
}

a:focus {
	outline: none;
}

a:hover, a:active {
	outline: 0;
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	border-radius: 100% !important;
	height: 36px;
	width: 36px;
	font-size: 2rem;
	padding: 0;
	line-height: 1;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid #d1d0d2;
	color: #d1d0d2;
}

.social-icons .icon-wrapper {
	display: inline-block;
	border-radius: 100%;
	box-shadow: 0px 0px 0px 2px #00B3E3;
	padding: 0.5rem;
	width: 34px;
	height: 34px;
	margin: 0 .25rem;
}

.social-icons .icon-wrapper .social-icon {
	color: #00B3E3;
	line-height: 0;
	font-size: 1.25rem;
}

/* Forms
--------------------------------------------- */
button,
.btn,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-radius: .5rem;
	text-transform: uppercase;
	font-weight: 600;
}

button:hover,
.btn:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus,
.btn:active,
.btn:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

button.btn-primary,
.btn.btn-primary,
input[type="button"].btn-primary,
input[type="reset"].btn-primary,
input[type="submit"].btn-primary {
	background-color: #00B3E3;
	border-color: #00B3E3;
	color: #FFF;
}

button.btn-secondary,
.btn.btn-secondary,
input[type="button"].btn-secondary,
input[type="reset"].btn-secondary,
input[type="submit"].btn-secondary {
	background-color: #001689;
	border-color: #001689;
	color: #FFF;
}

button.btn-light,
.btn.btn-light,
input[type="button"].btn-light,
input[type="reset"].btn-light,
input[type="submit"].btn-light {
	background-color: #F1F3F3 !important;
	border-color: #F1F3F3 !important;
	color: #00B3E3;
}
.btn.btn-light:hover, .btn.btn-light:focus {
	background-color: #dfe0e0 !important;
	border-color: #dfe0e0 !important;
}

.btn .spinner-border-sm {
    width: .75rem;
    height: .75rem;
    border-width: .125em;
    vertical-align: baseline;
}

.btn-group-lg .btn, .btn-lg {
	border-radius: .75rem;
}

.hero .btn-group .btn-light:first-child {
	border-right-color: #00B3E3 !important;
}

.hero .btn-group .btn-light:last-child {
	border-left-color: #00B3E3 !important;
}

.bg-blue .btn-group .btn-light:first-child {
	border-right-color: #00B3E3 !important;
}

.bg-blue .btn-group .btn-light:last-child {
	border-left-color: #00B3E3 !important;
}

.account-menu-item .btn, .dashboard-btn .btn {
	font-size: 1.125rem;
	border-radius: .75rem;
	color: #001689;
}
.account-menu-item a:hover {
	text-decoration: none;
}

.account-menu-item .btn.btn-icon, .dashboard-btn .btn.btn-icon {
	font-size: 1.35rem;
	line-height: 1;
	padding: .375rem .5rem;
	opacity: 1;
	color: #001689;
	border-right: 2px solid #d1d0d2 !important;
}

.cursor-pointer {
	cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ffffff;
	border-radius: .5rem;
}

select {
	border: 1px solid #EFEEEE;
	border-radius: .5rem;
}

textarea {
	width: 100%;
}

.form-control, .custom-select {
	border-radius: .5rem;
	height: calc(1.75rem + .75rem + 2px);
}

.form-control, .custom-select, .bg-white .form-control, bg-white .custom-select, .modal-body .form-control, .modal-body .custom-select {
	background-color: #F1F3F3;
	border-color: #F1F3F3;
}

.bg-blue .form-control, .bg-blue .custom-select, .bg-light .form-control, .bg-light .custom-select {
	background-color: #ffffff;
	border-color: #ffffff;
}

.form-control:focus, .custom-select:focus {
	border-color: #001689;
	box-shadow: 0 0 0 0.2rem #F1F3F3;
}

.input-group .input-group-text {
	border-radius: .5rem;
}

label {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: .85rem;
	line-height: 1.25;
	margin-bottom: .25rem;
	color: #807981;
	font-weight: 600;
}
.card-input-value {
    color: #00B3E3 !important;
    font-size: 1.175rem;
    font-weight: 700;
}
.card-input-value:focus {
	outline: none;
}
@media (min-width: 768px) {
	label {
		margin-bottom: .5rem;
	}
}

.bg-blue label {
	color: #FFF;
}

.custom-control-input {
	height: 1.125rem;
	width: 1.125rem;
}

.custom-control-label::before {
	border-color: #EFEEEE;
	height: 1.125rem;
	width: 1.125rem;
	top: 0;
	background-color: #F1F3F3;
}

.custom-control-label::after {
	height: 1.125rem;
	width: 1.125rem;
	top: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
	background-color: #001689;
	color: #FFF;
	border-color: #001689;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
	border-color: #001689;
}

.custom-control-input:focus ~ .custom-control-label::before {
	box-shadow: 0 0 0 0.2rem #F1F3F3;
}

.input-group-text {
	border-color: #EFEEEE;
	background-color: #F1F3F3;
}

.form-control.is-valid, .was-validated .form-control:valid {
	border-color: #EFEEEE;
	padding-right: .75;
	background-image: none;
	background-repeat: no-repeat;
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
	border-color: #001689;
	box-shadow: 0 0 0 0.2rem #F1F3F3;
}

.form-control.is-invalid, .was-validated .form-control:invalid, .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
	border-color: #ffffff;	
	box-shadow: none;
}
.input-group.input-end .form-control {
	border-top-right-radius: .5rem;
	border-bottom-right-radius: .5rem;
}

.input-group.input-start .input-group-append .input-group-text {
	border-top-right-radius: .5rem;
	border-bottom-right-radius: .5rem;
}
.form-group {
	position: relative;
}

.invalid-tooltip {
	background-color: #CF0A2C;
    font-weight: 400;
    right: .5rem;
    color: #ffffff;
    margin-top: 0;
    border-radius: 0 0 .5rem .5rem;
    margin-top: 0;
    line-height: 1;
    padding: .5rem;
}

@media (min-width: 768px) {
	.form-group {
		margin-bottom: 1.25rem;
	}
}

.error-message {
	display: none;
}

.loading-ellipsis {
	overflow: hidden;
	display: inline-block;
	vertical-align: bottom;
	-webkit-animation: ellipsis steps(4, end) 900ms infinite;
	animation: ellipsis steps(4, end) 900ms infinite;
	width: 0px;
	letter-spacing: 1px;
}

@keyframes ellipsis {
	to {
		width: 1.15em;
	}
}

@-webkit-keyframes ellipsis {
	to {
		width: 1.15em;
	}
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.mobile-menu-open {
	overflow: hidden;
}

@media (min-width: 992px) {
	.mobile-menu-open {
		overflow: visible;
	}
}

.navbar {
	height: 95px;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
}
.navbar.sticky-top {
	z-index: 1061;
}

@media (min-width: 992px) {
	.navbar {
		height: 100px;
	}
}

.navbar .navbar-nav .menu-item {
	border-bottom: 1px solid #EFEEEE;
}

.navbar .navbar-nav .menu-item:last-child {
	border-bottom: 0;
}

@media (min-width: 992px) {
	.navbar .navbar-nav .menu-item {
		border-bottom: none;
	}
	.navbar .navbar-nav .menu-item.current-menu-item .nav-link, .navbar .navbar-nav .menu-item.active .nav-link, .navbar .navbar-nav .menu-item:active .nav-link {
		color: #FFF;
	}
}

.navbar .navbar-nav .nav-link {
	color: #00B3E3;
	text-transform: uppercase;
	font-weight: bold;
	padding: 1.5rem 1rem;
	-webkit-transition-property: colorr;
	transition-property: color;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

@media (min-width: 992px) {
	.navbar .navbar-nav .nav-link {
		color: #00B3E3;
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		font-size: 1.25rem;
	}
	.navbar .navbar-nav .nav-link:hover {
		color: #FFF;
	}
}

@media (min-width: 1200px) {
	.navbar .navbar-nav .nav-link {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.navbar .navbar-brand {
	z-index: 1040;
}

@media (min-width: 992px) {
	.navbar .navbar-brand {
		width: 20%;
	}
}

.navbar .navbar-brand .navbar-logo .header-logo {
	width: 50px;
	height: auto;
	-webkit-transition: all .5s ease-out, background 1s ease-out;
	transition: all .5s ease-out, background 1s ease-out;
}

@media (min-width: 992px) {
	.navbar .navbar-brand .navbar-logo .header-logo {
		width: 50px;
	}
}

.navbar .navbar-brand .navbar-logo .header-logo .rocket-fuels-text {
	opacity: 1;
	-webkit-transition: all .125s ease-out;
	transition: all .125s ease-out;
}

.navbar .navbar-toggler {
	border: none;
	padding: 0;
}

.navbar .navbar-toggler:focus {
	outline: none;
}

.navbar .navbar-toggler .navbar-toggler-icon {
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
	position: relative;
	width: 28px;
	height: 22px;
}

.navbar .navbar-toggler .navbar-toggler-icon .bar {
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #FFF;
	border-radius: 0;
}

.navbar .navbar-toggler .navbar-toggler-icon .bar.bar-top:nth-of-type(1) {
	top: 0;
}

.navbar .navbar-toggler .navbar-toggler-icon .bar.bar-mid:nth-of-type(2) {
	top: 10px;
}

.navbar .navbar-toggler .navbar-toggler-icon .bar.bar-btm:nth-of-type(3) {
	bottom: 0;
}

.navbar .navbar-toggler .navbar-toggler-icon.menu-opened .bar.bar-top:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-315deg);
	-moz-transform: translateY(10px) rotate(-315deg);
	-ms-transform: translateY(10px) rotate(-315deg);
	-o-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}

.navbar .navbar-toggler .navbar-toggler-icon.menu-opened .bar.bar-mid:nth-of-type(2) {
	opacity: 0;
}

.navbar .navbar-toggler .navbar-toggler-icon.menu-opened .bar.bar-btm:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(315deg);
	-moz-transform: translateY(-10px) rotate(315deg);
	-ms-transform: translateY(-10px) rotate(315deg);
	-o-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}

.navbar .location-icon {
	width: 24px;
	margin: 0 2px;
}

.navbar .offcanvas-collapse {
	position: fixed;
	top: 95px;
	/* Height of navbar */
	bottom: 0;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	visibility: hidden;
	background-color: #FFF;
	transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out;
	transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

@media (min-width: 992px) {
	.navbar .offcanvas-collapse {
		position: initial;
		visibility: visible;
		overflow-y: visible;
		background-color: transparent;
		padding-right: 0;
		padding-left: 0;
	}
}

.navbar .offcanvas-collapse.open {
	visibility: visible;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

@media (min-width: 992px) {
	.navbar .offcanvas-collapse.open {
		-webkit-transform: none;
		transform: none;
	}
}

.navbar.shrink-navbar {
	height: 75px;
}

@media (min-width: 992px) {
	.navbar.shrink-navbar {
		height: 75px;
	}
	.member-signed-in .navbar.shrink-navbar .display-signed-in .btn-group {
		top: 0;
		-webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
	}
	.member-signed-in .navbar.shrink-navbar .display-signed-in.welcome-back-text {
		opacity: 0;
	}
	
	
}

.navbar.shrink-navbar .navbar-brand .navbar-logo .header-logo {
	width: 40px;
}

@media (min-width: 992px) {
	.navbar.shrink-navbar .navbar-brand .navbar-logo .header-logo {
		width: 40px;
	}
}

.navbar.shrink-navbar .navbar-brand .navbar-logo .header-logo .rocket-fuels-text {
	opacity: 0;
}

.navbar.shrink-navbar .offcanvas-collapse {
	top: 75px;
}

@media (min-width: 992px) {
	.navbar .account-menu-item {
		width: 20%;
	}
}

@media (min-width: 992px) {
	.member-signed-in .navbar .account-menu-item {
		width: 35%;
	}
}

@media (min-width: 1200px) {
	.member-signed-in .navbar .account-menu-item {
		width: 35%;
	}
}

.member-signed-in .navbar .display-signed-in.welcome-back-text {
	position: absolute;
	top: .75rem;
	right: 1rem;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    opacity: 1;
}

.member-signed-in .navbar .display-signed-in .btn-group {
	position: relative;
	top: .35rem;
	-webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}

.nav-scroller .nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

@media (min-width: 576px) {
	.home .hero {
		padding: 2.5rem 0;
	}
}

@media (min-width: 768px) {
	.home .hero {
		padding: 3rem 0;
	}
}

@media (min-width: 992px) {
	.home .hero {
		padding: 3.5rem 0;
	}
}

.progressbar-togo-text {
	font-weight: 900 !important;
	font-family: din-2014, sans-serif !important;
	line-height: 1;
	font-size: 1.5rem !important;
}

.progressbar-togo-text .dollar-sign {
	top: -0.125rem;
}

@media (min-width: 1200px) {
	.progressbar-togo-text .dollar-sign {
		top: -0.25rem;
	}
}

@media (min-width: 1200px) {
	.progressbar-togo-text {
		font-size: 2.125rem !important;
	}
}

@media (min-width: 768px) {
	.gorewards-transactions {
		height: 415px;
	}
}

@media (min-width: 992px) {
	.gorewards-transactions {
		height: 429px;
	}
}

@media (min-width: 1200px) {
	.gorewards-transactions {
		height: 482px;
	}
}

.page-account .money-togo {
	position: absolute;
	left: 50%;
	top: auto;
	padding: 0px;
	margin: 0px;
	transform: translate(-50%, 50%) scale(0.75);
	opacity: 0;
	bottom: 1.75rem;
	transition: all 800ms;
}

.page-account .money-togo.fade-in {
	transform: translate(-50%, 50%) scale(1);
	opacity: 1;
}

.page-account .progressbar-text {
	top: -0.75rem !important;
	font-weight: 900 !important;
	font-family: din-2014, sans-serif !important;
	line-height: 1;
	font-size: 1.25rem !important;
	bottom: auto !important;
	width: 100%;
}

.page-account .progressbar-text .dollar-sign {
	top: -0.125rem;
}

@media (min-width: 1200px) {
	.page-account .progressbar-text .dollar-sign {
		top: -0.125rem;
	}
}

@media (min-width: 1200px) {
	.page-account .progressbar-text {
		font-size: 1.35rem !important;
	}
}

.rounded-sm {
	border-radius: .25rem !important;
}

.rounded {
	border-radius: .5rem !important;
}

.rounded-lg {
	border-radius: .75rem !important;
}

.page-sign-in .site-main, .page-register .site-main {
	background-color: #00B3E3;
}

.card.angled-card {
	border: none;
	border-radius: 0;
}

.card.angled-card .card-header {
	background-color: #00B3E3;
	position: relative;
	border: none;
	border-radius: 0;
}

.card.angled-card .card-header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	border-top: 1.25rem solid #FFF;
	border-right: 1.25rem solid #00B3E3;
	width: 0;
}

.card.angled-card .card-footer {
	background-color: #F1F3F3 !important;
	position: relative;
	border: none;
	border-radius: 0;
}

.card.angled-card .card-footer:after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	border-bottom: 1.25rem solid #FFF;
	border-left: 1.25rem solid #F1F3F3 !important;
	width: 0;
}

.modal {
	z-index: 1062;
}
.popover {
	border-radius: 0.75rem;
	    font-family: din-2014, sans-serif;
}
.popover-header {
    border-top-left-radius: calc(.75rem - 1px);
    border-top-right-radius: calc(.75rem - 1px);
    background-color: #F1F3F3;
    color: #473848;
    font-weight: 700;
}

.accordion .card {
	border-color: #F1F3F3;
	border-bottom: 2px solid #CF0A2C !important;
}

.accordion .card-header {
	background-color: #00B3E3;
	border: none;
}

.accordion .card-header .entry-title, .accordion .card-header .icon-open-close {
	color: #FFF;
}

.accordion .card-header:hover {
	text-decoration: none;
}

.accordion .card-header.collapsed {
	background-color: #F1F3F3;
}

.accordion .card-header.collapsed .entry-title, .accordion .card-header.collapsed .icon-open-close {
	color: #2B252C;
}

.accordion .card-body p {
	margin-bottom: 0;
}

.accordion .collapsed .icon-open-close:before {
	content: "\e982";
}

.accordion .icon-open-close:before {
	content: "\ea50";
}

.recent-earnings {
	max-height: 350px;
	overflow: scroll;
}

@media (min-width: 768px) {
	.recent-earnings {
		max-height: 355px;
	}
}

@media (min-width: 992px) {
	.recent-earnings {
		max-height: 345px;
	}
}
@media (min-width: 1200px) {
	.recent-earnings {
		max-height: 325px;
	}
}

@media (min-width: 1300px) {
	.recent-earnings {
		max-height: 350px;
	}
}
@media (min-width: 1400px) {
	.recent-earnings {
		max-height: 375px;
	}
}
@media (min-width: 1500px) {
	.recent-earnings {
		max-height: 400px;
	}
}

.cut-corner-top-left:before {
	-webkit-clip-path: polygon(0px 20px, 20px 0px, 0px 0px);
	clip-path: polygon(0px 20px, 20px 0px, 0px 0px);
	-webkit-shape-outside: polygon(0px 20px, 20px 0px, 0px 0px);
	width: 20px;
	height: 20px;
	position: absolute;
	top: -1px;
	left: -1px;
	content: "";
	background-color: #F1F3F3;
}

.cut-corner-bottom-right:after {
	-webkit-clip-path: polygon(0px 20px, 20px 0px, 20px 20px);
	clip-path: polygon(0px 20px, 20px 0px, 20px 20px);
	-webkit-shape-outside: polygon(0px 20px, 20px 0px, 20px 20px);
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: -1px;
	right: -1px;
	content: "";
	background-color: #F1F3F3;
}

.bg-white .cut-corner-bottom-right:after, .bg-white .cut-corner-top-left:before {
	background-color: #ffffff;
}


/* LOADERS */
.loading-screen-content {
	background: #00B3E3;
	min-height: 100%;
	height: 100vh;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.loader {
	position: absolute;
	text-align: center;
	width: 100%;
	height: 2em;
	top: 50%;
	margin-top: -1em;
}

.loader_letter {
	text-transform: uppercase;
	color: #fff;
	font-weight: bold;
	padding: 0 .2em;
	font-size: 2em;
	line-height: 1;
	position: relative;
	display: inline-block;
	animation: bounce 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite alternate;
}

.loader_letter:nth-child(1) {
	animation-delay: 0s;
}

.loader_letter:nth-child(2) {
	animation-delay: 0.05s;
}

.loader_letter:nth-child(3) {
	animation-delay: 0.1s;
}

.loader_letter:nth-child(4) {
	animation-delay: 0.15s;
}

.loader_letter:nth-child(5) {
	animation-delay: 0.2s;
}

.loader_letter:nth-child(6) {
	animation-delay: 0.25s;
}

.loader_letter:nth-child(7) {
	animation-delay: 0.3s;
}

@keyframes bounce {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-1em);
	}
}

.page-account-alt .dashboard-nav .list-group-item {
	padding: 1rem 1.25rem;
}

.page-account-alt .dashboard-nav .list-group-item.active {
	background-color: #F1F3F3;
	border-color: rgba(0, 0, 0, 0.125);
	color: #2B252C;
}

@media (min-width: 992px) {
	.page-account-alt .dashboard-nav .list-group-item.active:after {
		content: "";
		height: 0;
		left: auto;
		margin: auto;
		position: absolute;
		right: -9px;
		top: 0;
		bottom: 0;
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 10px solid #F1F3F3;
		width: 0;
	}
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

.widget .widget-title {
	font-size: 1.5rem;
	font-weight: 700;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

.page-account-alt .card{
	border-radius: .75rem;
	border: none;
}

.page-account-alt .card .card-header {
	background-color: #001689;
	border-radius: calc(.75rem - 1px) calc(.75rem - 1px) 0 0;
}

.page-account-alt .card .list-group {
	border-bottom-right-radius: calc(.75rem - 1px);
	border-bottom-left-radius: calc(.75rem - 1px);
}

.page-account-alt .card .card-footer {
	border-radius: 0 0 calc(.75rem - 1px) calc(.75rem - 1px);
	border: 0;
}

.card {
	border-radius: 0;
}

.card .card-header {
	background-color: #00B3E3;
	border-radius: 0;
	border: none;
}

.card .card-header .card-title {
	color: #FFF;
	margin-bottom: 0;
	font-weight: 700;
}

.card .list-group-item-action {
	font-weight: 400;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
.dashboard-nav .nav-tabs .nav-link{
	border-bottom-color: rgba(0,0,0,.125);
}
@media (min-width:992px) {
	}
@media (min-width: 1200px) {
	.sidebar.dashboard-nav {
		max-width: 300px;
	}
	.dashboard-content {
		max-width: 1140px;
	}
}


/*# sourceMappingURL=style.css.map */


