@charset "UTF-8";
/*!
Theme Name: NEWTFG
Theme URI: https://taylorandfrancis.com
Author: Taylor & Francis
Author URI: https://taylorandfrancis.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: newtfg
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.

NEWTFG 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/
*/
/**
 * Theme Colour map
 * To use any of them, call the color($colorname) function and pass in the color
 * name as a parameter and optionally a lighten/darken percentage
 */
/*
$font-size-h1: 40px;
$font-size-h2: 32px;
$font-size-h3: 24px;
$font-size-h4: 20px;
$font-size-h5: 18px;
$font-size-h6: 16px;
$font-size-p:  14px;
$font-size-sm: 12px;
$font-size-xs: 10px;
*/
/**
 * Functions partial
 */
/**
 * Direct color return function: Black
 * @param  float  $opacity The opacity you want on the black color
 * @return string          The calculated RGBA code
 */
/**
 * Direct color return function: White
 * @param  float  $opacity The opacity you want on the white color
 * @return string          The calculated RGBA code
 */
/**
 * Direct color return function: Red - Mainly for debugging
 * @param  float  $opacity The opacity you want on the red color.
 * @return string          The calculated RGBA code
 */
/*
@function red($opacity) {
	@return rgba(255, 0, 0, $opacity);
}
*/
/**
 * Dynamic Color Function
 * -- with Lighten or Darken capabilities
 *
 * @param  string $color-name The color's name as it appears in the $theme-colors map.
 * @param  int    $amount     Positive number with percentage to get a lighter version of the color.
 *                            Negative number with percentage to get a darker version of the color.
 *                            Default: null
 * @return string             The computed color value
 *
 * Examples
 *
 * To get the exact color:
 * background-color: color(printblack);
 *
 * To get a 10% lighter version of the color:
 * background-color: color(printblack, 10%);
 *
 * To get a 10% darker version of the color:
 * background-color: color(printblack, -10%);
 *
 * Note:
 * This function throws an error and stops compilation if incorrect parameter is
 * supplied or if the $theme-colors map does not exist.
 *
 * The function also has debug capabilities. To enable them, just uncomment
 * the @debug lines and the messages will appear in the console.
 */
/**
 * Dynamic Coloradmin Function
 *
 * The coloradmin() function is an abstraction above the main color() function.
 * It is used to grab colors out of the $admin-colors list that is specifically
 * created for the admin panel's use only.
 *
 * @param  string $color-name The color's name as it appears in the $admin-colors map.
 * @param  int    $amount     Positive number with percentage to get a lighter version of the color.
 *                            Negative number with percentage to get a darker version of the color.
 *                            Default: null
 * @return string             The computed color value
 *
 * Note:
 * This function throws an error and stops compilation if incorrect parameter is
 * supplied or if the $admin-colors map does not exist.
 */
/**
 * Transparentize any color value
 *
 * @param  string/function $color   The color value to turn into transparent RGBA
 * @param  float           $opacity Default is 1
 * @return string                   The computed RGBA color value
 */
/**
 * Get a number without its unit
 *
 * @param  any $value Any kind of value with a unit
 * @return int        The number without the unit
 */
/**
 * Media query rules
 *
 * Media query mixin to dynamically allocate style rules within breakpoints
 * based on the passed in parameter.
 *
 * You can either target a breakpoint range, or everything below a given
 * breakpoint. For example, if you call media(md), it will target everything
 * between "sm" and "lg". But, say, if you want to target everything below "lg",
 * that is, from 0 up to "lg", call media(mdAndLess).
 * As the name suggests, this includes the size "md" and everything below.
 *
 * Parameter mapping:
 *
 * @include media(xs)          // 0px - 575px
 * @include media(sm)          // 576px - 767px
 * @include media(smAndLess)   // 0px - 767px
 * @include media(md)          // 768px - 991px
 * @include media(mdAndLess)   // 0px - 991px
 * @include media(lg)          // 992px - 1199px
 * @include media(lgAndLess)   // 0px - 1199px
 * @include media(xl)          // 1200px - ...
 *
 * The breakpoints are from Bootstrap's grid system as found in here:
 * https://getbootstrap.com/docs/4.2/layout/overview/
 *
 * To use the mixin, simply include it within the style declaration block and
 * pass in the required size parameter.
 *
 * Example:
 *
 * .test {
 *   @include media(xs) {
 *     color: red;
 *   }
 * }
 *
 * If you call the mixin without passing in a parameter, you get an error in
 * your console and the compilation terminates.
 */
#hero {
  display: flex;
  position: relative;
  z-index: 9;
}

.hero_wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#fafafa));
  background: -webkit-linear-gradient(top, #eaeaea 0%, #fafafa 100%);
  background: linear-gradient(to bottom, #eaeaea 0%, #fafafa 100%);
}

#heroImage {
  height: inherit;
  display: inherit;
}

.page-header-wrap.container .page-header-title {
  margin-top: 30px;
}

.page-header-wrap.container .page-header-subtitle {
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  .senior-management #hero {
    background-position: 55% 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .senior-management #hero {
    background-position: 65% 0;
  }
}
/* topnav */
#topNavContainer {
  width: 100%;
  text-align: right;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: visible;
  background-color: #eaeaea;
}

@media (min-width: 992px) {
  #topNavContainer {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: transparent;
  }

  #topNavContainer > div:not(#translateContainer) {
    vertical-align: top;
    display: inline-block;
    text-align: right;
    overflow: hidden;
  }
}
#topNav {
  width: 100%;
  display: block;
  text-align: left;
  overflow: visible;
}

@media (min-width: 992px) {
  #topNav {
    width: auto;
    margin-left: 15px;
    display: inline-block;
  }
}
/* ESSENTIAL STYLES */
.topNav, .topNav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topNav li {
  position: relative;
}

.topNav ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.topNav > li {
  float: left;
}

.topNav li:hover > ul,
.topNav li.sfHover > ul {
  display: block;
  z-index: 99;
}

.topNav a {
  display: block;
  position: relative;
}

.topNav a:hover {
  text-decoration: none;
}

.topNav ul ul {
  top: 0;
  left: 100%;
}

.topNav {
  float: left;
}

.topNav ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  min-width: 10em;
  *width: 10em;
}

.topNav a {
  font-size: small;
  font-weight: normal;
  padding: 0.25em 0.5em;
  text-decoration: none;
  zoom: 1;
}

.topNav a img {
  width: 16px;
  height: auto;
  margin-right: 4px;
}

.topNav li {
  white-space: nowrap;
  *white-space: normal;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.topNav ul li {
  background: #ffffff;
}

.topNav ul ul li {
  background: #ffffff;
}

.topNav li:hover,
.topNav li.sfHover {
  background: #fafafa;
  -webkit-transition: none;
  transition: none;
}

.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em;
}

.sf-arrows .sf-with-ul:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #cccccc;
  border-top-color: rgba(0, 0, 0, 0.2);
}

.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
  border-top-color: #cccccc;
}

.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
  border-left-color: #dddddd;
}

.topNav li {
  color: #fff;
}
.topNav li :hover {
  background: #f7f7f7;
}
.topNav a {
  color: #10147e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.navOpen .topNav {
  margin-bottom: 20px;
}
.navOpen .topNav li {
  background-color: #10147e;
}
.navOpen .topNav li :hover {
  background-color: #006db4;
}
.navOpen .topNav a {
  color: #fff;
}
.navOpen .topNav ul li a {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* end topnav */
/* bmenu */
/*@import 'topnav';*/
.newtfg-search-form {
  width: 100%;
  margin: 0;
  padding: 0;
}

.newtfg-search-form .newtfg-search-term {
  display: inline-block;
}

.newtfg-search-form .newtfg-search-button {
  background-color: #fe7b51;
  color: #fff;
  /*font-weight: 600;*/
  border: 0 solid #ffffff;
  border-radius: 0;
  margin: 0;
  margin-top: -4px;
  margin-left: -120px;
  width: 120px;
  /*display: inline-block;*/
  /*height: calc(1.5em + 0.75rem + 4px);*/
  height: 44px;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font: inherit;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.newtfg-search-form .newtfg-search-button:hover {
  background-color: #f2673c;
}

.newtfg-search-form button:not(:disabled):not(.disabled):active,
.newtfg-search-form .newtfg-search-button:focus {
  background-color: #d44922;
}

/* check */
/* end search bar */
h1.hidden-h1 {
  font-size: 0;
  width: 1px;
  height: 1px;
  display: inline-block !important;
  overflow: hidden;
  position: absolute !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  top: 0;
  right: 0;
}

html, body, header, footer {
  min-width: 300px;
}

body, html, #navPad {
  width: 100%;
}

body {
  margin: 0;
  position: static !important;
}

#mainContent {
  outline: none;
}

#mainContent:focus {
  outline: none;
}

* {
  box-sizing: border-box;
}

*:after, *:before {
  box-sizing: border-box;
}

#printAreaContentDotNet:focus, #printAreaContent:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clear {
  clear: both;
}

.cf {
  *zoom: 1;
}

.cf:before {
  content: " ";
  display: table;
}

.cf:after {
  content: " ";
  display: table;
  clear: both;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, #navPad {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary, #navPad {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background: transparent;
  text-decoration: none;
}

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

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
  text-transform: none;
}

select {
  text-transform: none;
}

button, html input[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

a:focus {
  outline: thin dotted;
  outline: none;
  outline-offset: 0;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.ic-img-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ic-thumbnail > img, .ic-thumbnail a > img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ic-img-rounded {
  border-radius: 6px;
}

.ic-img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: 100% \9 ;
  max-width: 100%;
  height: auto;
}

.ic-img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.ic-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ic-sr-only-focusable:active, .ic-sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.ic-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .ic-container {
    width: 750px;
  }

  .ic-row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 992px) {
  .ic-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .ic-container {
    width: 1170px;
  }
}
.ic-container-fluid {
  margin-right: auto;
  margin-left: auto;
}

table {
  background-color: transparent;
}

th {
  text-align: left;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-], table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

input[type=search] {
  box-sizing: border-box;
}

input[type=search] {
  -webkit-appearance: none;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }

  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.ic-fade .modal-dialog {
  transform: translate3d(0, -25%, 0);
  transition: transform 0.3s ease-out;
}

.modal.in.modal-dialog {
  transform: translate3d(0, 0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.ic-fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .ic-btn + .ic-btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .ic-btn-group .ic-btn + .ic-btn {
  margin-left: -1px;
}

.modal-footer .ic-btn-block + .ic-btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.ic-container:before, .ic-container:after {
  content: " ";
  display: table;
}

.ic-container-fluid:before, .ic-container-fluid:after {
  content: " ";
  display: table;
}

.ic-row:before, .ic-row:after {
  content: " ";
  display: table;
}

.ic-form-horizontal .ic-form-group:before, .ic-form-horizontal .ic-form-group:after {
  content: " ";
  display: table;
}

.ic-pager:before, .ic-pager:after {
  content: " ";
  display: table;
}

.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after, .ic-container:after, .ic-container-fluid:after, .ic-row:after, .ic-form-horizontal .ic-form-group:after, .ic-pager:after, .panel-body:after, .modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
  transform: translate3d(0, 0, 0);
}

:-ms-input-placeholder {
  color: #000;
}

::placeholder {
  color: #000;
}

::selection {
  color: white;
  background-color: rgba(185, 25, 14, 0.5);
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

table.icrtAccordion {
  display: none;
}

.Accordion {
  margin-bottom: 8px;
}

.loaded .Accordion {
  animation: fadeIn 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s both;
  -webkit-animation: fadeIn 700ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(0, 10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.AccordionContent {
  display: none;
  padding: 12px;
  background: white;
  border: solid #f0f0f0;
  border-width: 0 1px 1px;
  overflow: hidden;
}

.AccordionContent > :first-child {
  margin-top: 0;
}

.AccordionContent .AccordionContent {
  background: white;
}

.AccordionTrigger {
  display: block;
  position: relative;
  padding: 12px 12px 12px 48px;
  font-weight: 400;
  background-color: white;
  background-image: url(assets/img/structure/Accordion-open.svg);
  background-position: left 12px center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  border: solid 1px #f0f0f0;
  overflow: hidden;
}

.AccordionTrigger:active, .AccordionTrigger:focus, .AccordionTrigger:hover {
  text-decoration: none;
  cursor: pointer;
  background-color: #f0f0f0;
}

.AccordionTrigger.open {
  background-image: url(assets/img/structure/Accordion-close.svg);
  background-color: #f0f0f0;
  box-shadow: none;
}

.AccordionTrigger * {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.25;
  color: inherit !important;
}

.AccordionTrigger a {
  font-weight: 700;
}

.AccordionTrigger a:active, .AccordionTrigger a:hover {
  text-decoration: none;
}

#printAreaContent .tableContainerHead {
  padding: 0.5em;
  background: #eaeaea;
  border: solid 1px #cccccc;
  margin-top: 30px;
}

#printAreaContent .tableContainer {
  max-width: 100%;
  padding: 20px;
  margin-bottom: 30px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  border: solid 1px #cccccc;
}

.headingBackgroundColour {
  background-color: #006db4;
}

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

/* =============================
================================
 */
#newtfg {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

#newtfgMain {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  min-height: 400px;
}

.loaded #newtfgMain {
  opacity: 1;
  transform: translate(0, 0);
}

.newtfg #newtfgMain {
  padding: 30px 0 30px;
}

.tablet .newtfg #newtfgMain,
.mobile .newtfg #newtfgMain {
  padding: 0;
}

.ic-container-fluid {
  width: 94%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

#contentInt {
  background: #fff;
  overflow: hidden;
  width: 100%;
  float: left;
  padding: 0;
  min-height: 400px;
}

.wide #contentInt {
  width: 100%;
  padding-right: 0;
}

@media (min-width: 992px) {
  #contentInt {
    padding: 0 50px 0 0;
    width: calc(100% - 300px);
  }
}
@media (min-width: 1400px) {
  #contentInt {
    width: calc(100% - 360px);
  }
}
#printAreaContent:before {
  clear: left;
  content: "";
  display: table;
}

.toggleContent {
  display: none;
  padding: 10px;
  background: #eee;
  font-size: 0.9em;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .toggleContent {
    display: block;
  }
}
/* ============================= */
/* VZ */
/* ================================ */
.header-background {
  position: relative;
  z-index: 1001;
}

@media (min-width: 992px) {
  .header-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translate(0, 0);
    transition: transform 0.3s ease-in-out;
  }
}
.desktop .logged-in.admin-bar .header-background {
  top: 32px;
}

header {
  width: 100%;
  background-color: #10147e;
  position: relative;
  z-index: 10;
  height: 62px;
}

@media (min-width: 992px) {
  header {
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    height: auto;
  }
}
#header-top {
  width: 100%;
  background-color: #10147e;
  padding: 10px 5px;
  position: relative;
  z-index: 5;
  max-height: 65px;
}

#header-top:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  background: #f0f0f0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.loaded #header-top {
  max-height: 100%;
}

.loaded #header-top:after {
  opacity: 0;
}

@media (min-width: 992px) {
  #header-top {
    background-color: white;
    padding: 0px;
  }

  .nav-bottom.nav-up #header-top {
    padding: 0;
  }
}
#header-top .ic-container-fluid {
  width: 100%;
  max-width: 1050px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#header-top .ic-container-fluid:before, #header-top .ic-container-fluid:after {
  display: none;
}

@media (min-width: 992px) {
  #header-top .ic-container-fluid {
    width: 94%;
  }
}
#header-mid {
  width: 100%;
  background-color: white;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  #header-mid {
    border-top: 1px solid #cccccc;
    z-index: 3;
  }

  .nav-bottom #header-mid {
    background-color: #10147e;
  }
}
#header-mid .ic-container-fluid {
  width: 100%;
}

@media (min-width: 992px) {
  #header-mid .ic-container-fluid {
    width: 85%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    max-width: 1050px;
    transition: all 0.3s ease-in-out;
  }

  .nav-bottom #header-mid .ic-container-fluid {
    width: 98%;
    max-width: 1800px;
  }
}
#header-bottom {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px 0;
  display: none;
}

.newsFeedParser #header-bottom, .hideBanner #header-bottom {
  background: #10147e;
}

@media (min-width: 992px) {
  #header-bottom {
    display: block;
    background: #10147e;
    transition: all 0.5s ease-in-out;
    height: 75px;
  }

  .nav-bottom #header-bottom {
    opacity: 1;
  }

  .nav-bottom.nav-down #header-bottom {
    opacity: 0;
  }

  .nav-bottom.nav-up #header-bottom {
    display: none;
    opacity: 0;
  }

  .nav-top #header-bottom {
    opacity: 1;
    display: block;
  }
}
@media (min-width: 1200px) {
  #header-bottom {
    background-color: #10147e;
    height: 96px;
  }
}
#header-bottom .ic-container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1504px;
}

#logo {
  width: 166px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  #logo {
    width: 180px;
  }
}
@media (min-width: 1200px) {
  #logo {
    width: 266px;
  }
}
#logo .logo-print {
  display: none;
}

#logo.moved {
  width: 160px;
}

#logo a {
  width: 100%;
  display: block;
}

#logo a img {
  width: 100%;
  height: auto;
  display: block;
}

#logo a:focus img {
  outline: 1px solid black;
}

#logo a:active img {
  outline: none !important;
}

#logo p {
  margin: 0 !important;
}

.modal-cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9990;
}

#mainNav {
  width: 100%;
  background: #10147e;
  position: absolute;
  display: none;
  top: 100%;
}

@media (min-width: 992px) {
  #mainNav {
    position: relative;
    background: none;
    display: block !important;
    top: auto;
  }
}
#nav {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 0;
}

@media (min-width: 992px) {
  #nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}
#nav > li {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 1.05882rem;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 991px) {
  #nav > li {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  #nav > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (min-width: 992px) {
  #nav > li {
    padding: 0 12px;
  }

  .nav-bottom #nav > li {
    padding: 0 8px;
  }
}
@media (min-width: 1200px) {
  #nav > li {
    padding: 0 20px;
  }

  .nav-bottom #nav > li {
    padding: 0 15px;
  }
}
@media (min-width: 1400px) {
  #nav > li {
    padding: 0 32px;
  }
}
#nav > li.sfHover {
  border-bottom: 0;
}

@media (min-width: 992px) {
  #stickyHeader #nav > li:last-child {
    padding-right: 8px;
  }

  #stickyHeader #nav > li:last-child a {
    padding-right: 3px;
  }
}
@media (min-width: 1200px) {
  #stickyHeader #nav > li {
    padding: 0 8px;
  }

  #stickyHeader #nav > li:last-child {
    padding-right: 8px;
  }

  #stickyHeader #nav > li:last-child a {
    padding-right: 8px;
  }
}
a.mainNavItem {
  width: 100%;
  display: block;
  position: relative;
  letter-spacing: 1.025px;
  padding: 15px 5px 15px 15px;
  font-family: inherit;
  font-size: 0.94118rem;
  font-weight: 700;
  line-height: 1.41176rem;
  text-align: left;
  text-transform: uppercase;
  text-overflow: ellipsis;
  color: white;
  background-color: #10147e;
  overflow: hidden;
}

@media (max-width: 991px) {
  a.mainNavItem {
    width: calc(100% - 54px);
  }

  a.mainNavItem:hover {
    text-decoration: none;
    color: #fff;
  }

  .current a.mainNavItem:after {
    position: absolute;
    content: "";
    bottom: calc(50% - 20px);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid #006db4;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
@media (min-width: 992px) {
  a.mainNavItem {
    padding: 0.5rem 0;
    font-size: 0.94118rem;
    background-color: transparent;
    color: #000;
  }

  .nav-bottom a.mainNavItem {
    color: white;
    font-size: 0.82353rem;
  }

  a.mainNavItem:after {
    display: block;
    content: "";
    border-bottom: solid 4px transparent;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .current a.mainNavItem:after {
    border-color: #006db4;
    transform: scaleX(1);
  }

  a.mainNavItem:focus, a.mainNavItem:hover {
    text-decoration: none;
  }

  a.mainNavItem:focus {
    background: rgba(0, 0, 0, 0.07);
  }

  .nav-bottom a.mainNavItem:focus {
    background: rgba(255, 255, 255, 0.2);
  }

  .current a.mainNavItem, .sfHover a.mainNavItem {
    color: #000;
  }

  .nav-bottom .current a.mainNavItem, .nav-bottom .sfHover a.mainNavItem {
    color: white;
  }

  a.mainNavItem.current:after, a.mainNavItem:focus:after, a.mainNavItem:hover:after, .sfHover a.mainNavItem:after {
    border-color: #006db4;
    transform: scaleX(1);
  }

  #mainNav:hover a.mainNavItem, #mainNav:focus a.mainNavItem {
    color: #000;
    background: #fff;
  }

  .nav-bottom #mainNav:hover a.mainNavItem, .nav-bottom #mainNav:focus a.mainNavItem {
    background: transparent;
    color: white;
  }

  #mainNav:hover .sfHover a.mainNavItem, #mainNav:focus .sfHover a.mainNavItem {
    color: #000;
  }

  .nav-bottom #mainNav:hover .sfHover a.mainNavItem, .nav-bottom #mainNav:focus .sfHover a.mainNavItem {
    color: white;
  }
}
@media (min-width: 1200px) {
  a.mainNavItem {
    font-size: 1.05882rem;
  }

  .nav-bottom a.mainNavItem {
    font-size: 1rem;
  }
}
.mainNavItem_expander {
  cursor: pointer;
  display: block;
  width: 54px;
  border-left: solid 1px rgba(255, 255, 255, 0.15);
  background: #10147e url(assets/img/structure/mobile-nav-expand-white.svg) center center no-repeat;
  background-size: 24px 24px;
  position: relative;
}

.mobile-open > .mainNavItem_expander {
  background: black url(assets/img/structure/mobile-nav-collapse-white.svg) center center no-repeat;
  background-size: 24px 24px;
}

.tablet #mainNav .dropDownContainer .dropDownContainerInner ul li a img.menu-icon,
.mobile #mainNav .dropDownContainer .dropDownContainerInner ul li a img.menu-icon {
  display: none;
}
.tablet #mainNav .dropDownContainer .dropDownLeft,
.mobile #mainNav .dropDownContainer .dropDownLeft {
  display: none;
  padding: 8px 16px 8px 26px;
}
.tablet #mainNav .dropDownContainer .dropDownLeft a,
.mobile #mainNav .dropDownContainer .dropDownLeft a {
  color: #fff;
}
.tablet #mainNav .dropDownContainer .dropDownLeft p,
.mobile #mainNav .dropDownContainer .dropDownLeft p {
  color: white;
}

#mainNav .dropDownContainer.dropDownContainerSingle {
  left: initial;
  width: auto;
  right: 0;
}

#mainNav .dropDownContainer.dropDownContainerSingle .dropdown.dropdown-single {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 992px) {
  .mainNavItem_expander {
    display: none;
  }
}
#mainNav .dropDownContainer {
  display: none;
  position: absolute;
  z-index: 1000;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 25px 12px;
  border: none;
  border-top: 2px solid #96c9fd;
  background: white;
  text-align: left;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

#mainNav .dropDownContainer .dropdown li a {
  border: 0;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
  white-space: nowrap;
}

#mainNav .dropDownContainer .dropDownLeft p {
  margin-top: 10px;
}

#mainNav .dropDownContainer a img.menu-icon {
  max-width: 22px;
  height: auto;
  margin-top: -6px;
  margin-right: 8px;
}

@media (max-width: 991px) {
  #mainNav .dropDownContainer {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border: none;
    border-top: solid 1px rgba(255, 255, 255, 0.25);
    padding: 0;
    background: transparent;
    position: static;
  }

  #mainNav .dropDownContainer .dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  #mainNav .dropDownContainer .dropdown:first-child {
    margin: 0;
  }

  #mainNav .dropDownContainer .dropdown:last-child a {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  #mainNav .dropDownContainer .dropdown li {
    display: block;
    width: 100%;
    background: none;
  }

  #mainNav .dropDownContainer .dropdown li:hover, #mainNav .dropDownContainer .dropdown li:focus {
    background: rgba(255, 255, 255, 0.15);
  }

  #mainNav .dropDownContainer .dropdown li a {
    display: block;
    width: 100%;
    padding: 8px 16px 8px 26px;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    color: white;
    overflow: hidden;
  }

  #mainNav .dropDownContainer .dropdown li a:hover {
    color: white;
  }

  #mainNav .dropDownContainer .dropdown li a:focus {
    text-decoration: underline;
  }

  #mainNav .dropDownContainer .dropdown li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  #mainNav .dropDownContainer .dropdown.dropDownRight {
    display: none;
  }

  #mainNav .dropDownContainer .dropdown:nth-child(2) li:last-child {
    border-bottom: none;
  }
}
#mainNav .dropdown {
  float: left;
  width: 33.33333%;
  padding: 0 1rem;
  list-style: none;
  overflow: hidden;
}

#mainNav .dropdown:first-child {
  margin: 0;
}

#mainNav .dropdown li {
  float: left;
  width: 100%;
  background: none;
  display: -ms-flexbox;
  display: flex;
}

#mainNav .dropdown li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

#mainNav .mobile-open .dropdown li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

#mainNav .dropdown li a {
  display: inline-block;
  width: 100%;
  color: #333333;
  font-size: 17px;
  font-weight: 400;
  padding: 6px 0;
  text-decoration: none;
  border-top: 0px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

#mainNav .dropdown li.secondary a {
  font-size: 14px;
  padding: 4px 0 4px 15px;
}

#mainNav .dropdown li a:hover, #mainNav .dropdown li a:active, #mainNav .dropdown li a:focus {
  text-decoration: none;
  background-color: transparent;
  color: #006db4;
  font-weight: 400;
}

#mainNav .dropdown li a.viewMore {
  border: 1px solid #cccccc;
  background: url(assets/img/structure/mainnav-dropdown-viewmore-arrow.svg) 95% center no-repeat;
  background-size: 7px 13px;
  padding: 6px 0;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
}

#mainNav .dropdown li:first-child a {
  border: none;
}

@media (min-width: 992px) {
  #mainNav .withImage .dropdown {
    padding: 0 18px;
  }

  #mainNav .withImage .dropdown:nth-child(n+1) {
    width: 35%;
  }

  #mainNav .withImage .dropdown:last-child {
    width: 30%;
  }
}
@media (min-width: 1400px) {
  #mainNav .withImage .dropdown {
    padding: 0 28px;
  }

  #mainNav .withImage .dropdown:nth-child(n+1) {
    width: 40%;
  }

  #mainNav .withImage .dropdown:last-child {
    width: 20%;
  }
}
#mainNav .withImage .dropdown a.dropDownRightInner {
  display: block;
  float: left;
  width: 100%;
  background: #fff;
  position: relative;
}

#mainNav .withImage .dropdown a.dropDownRightInner:before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.95) 100%);
}

#mainNav .withImage .dropdown a.dropDownRightInner img {
  width: 100%;
  height: auto;
}

#mainNav .withImage .dropdown a.dropDownRightInner .dropDownRightOverlay {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.29412rem;
  line-height: 1.3;
  font-weight: 900;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 10px;
  text-align: center;
}

#mainNav .withImage .dropdown a.dropDownRightInner:hover .dropDownRightOverlay, #mainNav .withImage .dropdown a.dropDownRightInner:focus .dropDownRightOverlay {
  text-decoration: underline;
}

.mobileNav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 60px;
  text-align: right;
  vertical-align: middle;
}

@media (min-width: 480px) {
  .mobileNav {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .mobileNav {
    display: none;
  }
}
.mobileNav a {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-left: 4px;
  border-radius: 0.125rem;
  overflow: hidden;
  color: transparent;
}

@media (min-width: 480px) {
  .mobileNav a {
    width: 47px;
    height: 45px;
    margin-left: 0;
  }
}
.mobileNav a img {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 480px) {
  .mobileNav a img {
    width: 47px;
    height: 45px;
  }
}
.mobileNav a.menuTrigger img {
  display: none !important;
  width: 38px;
  height: 38px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .mobileNav a.menuTrigger img {
    width: 45px;
    height: 45px;
  }
}
.menuTrigger {
  position: relative;
  padding: 5px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menuTrigger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 80%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 4px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menuTrigger span:nth-child(1) {
  top: 8px;
}

.menuTrigger span:nth-child(2), .menuTrigger span:nth-child(3) {
  top: 20px;
}

.menuTrigger span:nth-child(4) {
  top: 32px;
}

.menuTrigger.open span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}

.menuTrigger.open span:nth-child(2) {
  transform: rotate(45deg);
}

.menuTrigger.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.menuTrigger.open span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}

.landing .menuTrigger span, .landingInterior .menuTrigger span {
  background: #000;
}

.searchContainer {
  width: 100%;
  padding: 0 20px;
  margin: 20px 0;
  border: 0 solid #000;
  height: 40px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .searchContainer {
    width: calc(100% - 266px);
    padding: 0;
    margin: auto 0 auto auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background-color: transparent;
    border: 0 solid #000;
  }
}
.searchContainer .search {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  border: 0 solid #000;
}

@media (min-width: 992px) {
  .searchContainer .search {
    width: 90%;
    max-width: 1066px;
    margin: 0 0 0 auto;
    border: none;
  }
}
.searchContainer .search:before {
  -ms-flex: 0 0 2.75em;
  flex: 0 0 2.75em;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.searchContainer .search .searchInput, .searchContainer .search .searchButton {
  padding: 0.35em 0.75em;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

@media (min-width: 992px) {
  .searchContainer .search .searchInput, .searchContainer .search .searchButton {
    font-size: 1.1rem;
  }
}
.searchContainer .search .searchInput {
  -ms-flex: 1 0 8em;
  flex: 1 0 8em;
  color: #555555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 50px;
  background: white url(assets/img/structure/search-icon.svg) left 10px center no-repeat !important;
  background-size: 24px 26px !important;
  border-radius: 0;
  transition: background 0.2s ease-in;
  height: 40px;
  width: 100%;
}

.searchContainer .search .searchInput:-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}

.searchContainer .search .searchInput::placeholder {
  color: #cccccc;
  opacity: 1;
}

.searchContainer .search .searchInput:focus {
  background: #fff;
}

.searchContainer .search .searchInput:focus:-ms-input-placeholder {
  color: #cccccc;
}

.searchContainer .search .searchInput:focus::placeholder {
  color: #fff;
}

.searchContainer .search {
  z-index: 1004;
}

#stickySearchBtn {
  width: 100%;
  margin: 0;
  text-align: left;
  color: #fe7b51;
  font-weight: 700;
  background-color: transparent;
  border: none;
  padding: 12px 10px;
  display: none;
}

@media (min-width: 992px) {
  #stickySearchBtn {
    width: 32px;
    height: 32px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 3px;
    margin: 0;
    font-size: 0;
    text-indent: -9999px;
    background: #fe7b51 url(assets/img/structure/search-icon-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
  }

  #stickySearchBtn:hover {
    background-color: #f2673c;
  }

  #stickySearchBtn:focus {
    background-color: #d44922;
    box-shadow: inset 0 0 0 99px rgba(0, 0, 0, 0.05), 0 0 0 0.25rem rgba(40, 93, 154, 0.5);
    outline: none;
  }

  .nav-bottom.nav-up #stickySearchBtn, .nav-bottom.nav-down #stickySearchBtn {
    display: block;
  }
}
@media (min-width: 1200px) {
  #stickySearchBtn {
    width: 38px;
    height: 38px;
    background-size: 26px 26px;
  }
}
#search-popup {
  display: none;
  width: 90vw;
  max-width: 1404px;
  background-color: white;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  margin-right: auto;
  margin-left: auto;
  position: fixed;
  top: 25%;
  right: 0;
  left: 0;
  z-index: 9999;
}

@media (max-width: 991px) {
  #search-popup {
    display: none !important;
  }
}
#search-popup .modal-body {
  padding: 0;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  #search-popup .modal-body {
    max-width: 100%;
    float: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
}
#search-popup .modal-body .searchContainer {
  width: 100%;
}

#search-popup .modal-body .search {
  width: 100%;
  max-width: 100%;
  height: 40px;
  background: #f7f7f7;
  border-radius: 0;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

#search-popup .modal-body .search input {
  width: 100%;
  border: none;
  padding-left: 50px;
  -ms-flex: 1 0 8em;
  flex: 1 0 8em;
  color: #000;
  background: white;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 0;
  transition: background 0.2s ease-in;
  text-indent: 0 !important;
}

@media (min-width: 768px) {
  #search-popup .modal-body .search input {
    width: 100%;
  }
}
#search-popup .modal-body .search input:focus {
  border: 1px solid #006db4;
}

#search-popup .modal-body .search #search_autocomplete {
  top: 100%;
  left: 0;
  border: none !important;
}

#search-popup .modal-body .search #cludo-search-form, #search-popup .modal-body .search .cludo-search-form, #search-popup .modal-body .search .cludo-search_autocomplete {
  z-index: 1004;
}

#search-popup .modal-body .modal-box {
  display: none;
  width: 90vw;
  position: fixed;
  top: 20vh !important;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1404px;
  border-radius: 0.25rem;
  z-index: 9999;
}

#search-popup .modal-body .modal-box .modal-body {
  padding: 0;
}

#search-popup .modal-body .modal-box .searchContainer {
  height: 60px;
  padding: 0;
}

#search-popup .modal-body .modal-box .search {
  height: 60px;
}

#search-popup .modal-body .modal-box .search input {
  padding-left: 15px;
}

@media (min-width: 992px) {
  #search-popup .modal-body .modal-cover {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.66);
    z-index: 9990;
  }
}
#search-popup .modal-body .close {
  width: 30px;
  height: 30px;
  font-size: 30px;
  display: inline-block;
  position: absolute;
  top: -42px;
  right: -7px;
  color: #fff !important;
  line-height: 1.5rem;
  letter-spacing: 0.03125em;
  text-align: center;
  text-decoration: none;
  border-radius: 0.25rem;
  text-shadow: none;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) {
  #search-popup .modal-body .close {
    opacity: 1;
  }
}
#search-popup .modal-body .close:focus, #search-popup .modal-body .close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

#subNavWrapper {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: none;
  width: 100%;
  margin-top: 5px;
}

#subNavWrapper.wide, .wide #subNavWrapper {
  display: none !important;
}

@media (min-width: 992px) {
  #subNavWrapper {
    display: block !important;
    width: 300px;
    float: left;
  }
}
@media (min-width: 1400px) {
  #subNavWrapper {
    width: 360px;
  }
}
#subNavWrapper #subNavContainer {
  border-top: 3px solid #006db4;
  padding-top: 15px;
}

#subNavWrapper #subNavContainer {
  position: relative;
  width: 100%;
}

#subNavWrapper #subNavContainer.wide, .wide #subNavWrapper #subNavContainer {
  display: none;
}

#subNavWrapper ul, #subNavWrapper li {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%;
}

#subNavWrapper .showAllWrapper {
  margin-bottom: 40px;
}

#subNavWrapper .showAllWrapper .extendedMenu {
  font-size: 17px;
  font-weight: 700;
  display: block;
  padding: 25px 30px 15px 0;
  margin-top: 20px;
  color: #285d9a;
  background: url(assets/img/structure/subnav-open.svg) top 30px right 16px no-repeat;
  background-size: 17px 17px;
}

#subNavWrapper .showAllWrapper .extendedMenu.hidden {
  display: none;
}

#subNavWrapper .showAllWrapper .extendedMenu.open {
  background: url(assets/img/structure/subnav-close.svg) top 30px right 16px no-repeat;
  background-size: 17px 17px;
}

#subNavWrapper .showAllWrapper a {
  color: #285d9a;
  background-color: white !important;
}

#subNavWrapper .showAllWrapper a span {
  color: #285d9a;
  font-weight: 700;
}

#subNavWrapper .showAllWrapper a:focus span, #subNavWrapper .showAllWrapper a:hover span {
  color: #000;
}

#subNavWrapper .showAllWrapper #extendedMenu > li > ul > li > a {
  padding-left: 35px;
  background: url(assets/img/structure/subnav-bullet.svg) 13px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .showAllWrapper #extendedMenu > li > ul > li > ul > li > a {
  padding-left: 60px;
  background: url(assets/img/structure/subnav-bullet.svg) 34px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .showAllWrapper #extendedMenu > li > ul > li > ul > li > ul > li > a {
  padding-left: 80px;
  background: url(assets/img/structure/subnav-bullet.svg) 56px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .subNav li {
  border-top: solid 1px #cccccc;
}

#subNavWrapper .subNav a {
  font-size: 17px;
  font-weight: 700;
  display: block;
  padding-right: 45px;
  color: #285d9a;
}

#subNavWrapper .subNav a:focus, #subNavWrapper .subNav a:hover {
  text-decoration: none;
  outline: none;
  color: #000;
  background-color: #fff;
}

#subNavWrapper .subNav a.current {
  font-weight: 900;
}

#subNavWrapper .subNav a.current span {
  font-weight: 900;
  color: #000;
}

#subNavWrapper .subNav > li:first-child {
  border-top-color: white !important;
}

#subNavWrapper .subNav.top > li:first-child {
  border-top: none !important;
}

#subNavWrapper .subNav.top > li:first-child > div[role=button] {
  top: 0;
  height: 100%;
}

#subNavWrapper .subNav div[role=button] {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: calc(100%);
  border: 0;
  border-radius: 0 !important;
  cursor: pointer;
  border: 1px solid transparent;
}

#subNavWrapper .subNav div[role=button]:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 50%;
  width: 17px;
  height: 17px;
  margin-right: -8px;
  opacity: 1;
  background-image: url(assets/img/structure/subnav-open.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 17px 17px;
}

#subNavWrapper .subNav div[role=button]:focus {
  color: #000;
  background: #f0f0f0 !important;
  outline: none;
  border: 1px solid #f0f0f0;
}

#subNavWrapper .subNav li {
  line-height: 1.25;
  position: relative;
  color: #000;
}

#subNavWrapper .subNav li ul ul a {
  padding-left: 35px;
  background: url(assets/img/structure/subnav-bullet.svg) 13px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .subNav li ul ul ul li a {
  padding-left: 60px;
  background: url(assets/img/structure/subnav-bullet.svg) 34px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .subNav li ul ul ul li ul a {
  padding-left: 80px;
  background: url(assets/img/structure/subnav-bullet.svg) 56px 18px no-repeat;
  background-size: 9px 9px;
}

#subNavWrapper .subNav li.open > div[role=button]:after {
  background-image: url(assets/img/structure/subnav-close.svg);
}

#subNavWrapper .subNav > li.open > a {
  font-size: 17px;
}

#subNavWrapper .subNav > li.open > div[role=button]:after {
  background-image: url(assets/img/structure/subnav-close.svg) !important;
}

#subNavWrapper .subNav > li.open li.open > div[role=button]:after {
  background-image: url(assets/img/structure/subnav-close.svg) !important;
}

#subNavWrapper .subNav.top {
  border-bottom: 1px solid #cccccc;
}

#subNavWrapper .subNav.top > li > ul > li > ul > li > ul > li {
  border-top: solid 1px #d8d8d8;
}

#subNavWrapper .subNav.top > li > ul > li > ul > li > ul > li div[role=button]:focus, #subNavWrapper .subNav.top > li > ul > li > ul > li > ul > li div[role=button]:hover {
  background-color: #f0f0f0 !important;
}

#subNavWrapper .subNav.top > li > ul > li > ul > li {
  border-top: solid 1px #d8d8d8;
}

#subNavWrapper .subNav.top > li > ul > li > ul > li a, #subNavWrapper .subNav.top > li > ul > li > ul > li div[role=button] {
  font-size: 16px;
  font-weight: 700;
}

#subNavWrapper .subNav.top > li > ul > li > ul > li a.current:after, #subNavWrapper .subNav.top > li > ul > li > ul > li div[role=button].current:after {
  display: none;
}

#subNavWrapper .subNav.top > li > ul > li {
  border-top: solid 1px #d8d8d8;
}

#subNavWrapper .subNav.top > li > ul > li a.current {
  position: relative;
}

#subNavWrapper .subNav.top > li a {
  background-color: white !important;
}

#subNavWrapper .subNav.top > li a:focus, #subNavWrapper .subNav.top > li a:hover {
  color: #000;
  background-color: #fff !important;
}

#subNavWrapper .subNav.top > li a.current {
  font-weight: 900;
}

#subNavWrapper .subNav.top > li div[role=button]:after {
  background-image: url(assets/img/structure/subnav-open.svg);
}

#subNavWrapper .subNav.top > li div[role=button]:focus, #subNavWrapper .subNav.top > li div[role=button]:hover {
  color: #000;
}

#subNavWrapper .subNav.top > li > a {
  font-size: 1.41176rem;
  font-weight: 400;
  color: #000;
  background-color: white !important;
  border-left: none;
}

#subNavWrapper .subNav.top > li > a:hover {
  color: #000;
  background-color: #fff !important;
}

#subNavWrapper .subNav.top > li > a:focus {
  color: #000;
  background-color: #eee !important;
}

#subNavWrapper .subNav.top > li > a span {
  padding: 0 0 20px;
}

#subNavWrapper .subNav.top > li > a.current {
  font-weight: 700;
  color: #000;
  background-color: transparent;
}

#subNavWrapper .subNav.top > li > a.current:hover, #subNavWrapper .subNav.top > li > a.current:focus {
  text-decoration: underline;
}

.top #subNavWrapper .subNav.top > li > a.current {
  color: #000;
  background-color: transparent !important;
}

#subNavWrapper .subNav.top > li > div[role=button]:after {
  top: 9px;
  background-image: url(assets/img/structure/subnav-open.svg);
}

#subNavWrapper .subNav.top > li > div[role=button].in:after {
  background-image: url(assets/img/structure/subnav-open.svg);
}

#subNavWrapper .subNav span {
  display: block;
  padding: 12px 0;
  border-right: solid 1px transparent;
  overflow: hidden;
  background-image: none;
}

#subNavWrapper .subNav ul {
  display: none;
}

#subNavWrapper .subNav span {
  display: block;
  padding: 12px 0;
  border-right: solid 1px transparent;
  overflow: hidden;
  font-weight: 700;
}

#subNavWrapper .subNav ul {
  display: none;
}

#subNavWrapper .subNav ul ul ul .withChildren a.open {
  background-image: none !important;
}

#subNavBtn {
  display: block;
  margin: 0;
  padding: 0.75rem;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background: #003049;
  color: white;
  border: 0;
  border-radius: 2px;
  border: 2px solid #003049;
  position: relative;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  #subNavBtn {
    display: none;
  }
}
#subNavBtn.hiddenBtn {
  display: none !important;
}

#subNavBtn:active, #subNavBtn:focus, #subNavBtn:hover {
  text-decoration: none;
  background-color: white;
  color: black !important;
  border-color: #003049;
}

.boxImage {
  min-height: 120px;
}

.submenuTitle {
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5) !important;
  text-transform: uppercase;
}

.submenuTitle span {
  padding: 6px 0;
}

@media (max-width: 991px) {
  .submenuTitle span {
    padding: 6px 15px;
    color: #ffffff;
  }
}
/* end bmenu */
/* bmenu */
a.button {
  box-sizing: border-box !important;
  font-size: 0.8em !important;
  padding: 0.5em 1em !important;
  background: transparent !important;
  border: 1px solid #9293ab !important;
  color: #9293ab !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase;
}
a.button:hover {
  background: #f8f9fa !important;
  border-color: #9293ab !important;
  text-decoration: none;
}
a.button span {
  color: #9293ab !important;
}

a.button-inv {
  box-sizing: border-box !important;
  font-size: 0.8em !important;
  padding: 0.5em 1em !important;
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase;
}
a.button-inv:hover {
  border-color: #9293ab !important;
  color: #9293ab !important;
}
a.button-inv span {
  color: #ffffff !important;
}

.btn, button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  margin: 10px 0;
  padding: 0 20px;
  /*background: color(defaultblue);*/
  background-color: #10137d;
  color: white;
  /*height: 40px;*/
  line-height: 40px;
  border-radius: 0;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  border: 1px solid #10137d;
}
.btn:hover, button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: transparent;
  border: 1px solid #10137d;
  color: #10137d;
}
.btn__tfg {
  background-color: #10147e;
  border: 1px solid #10147e;
}
.btn__tfg:hover {
  background-color: #262c4d;
  border: 1px solid #006db4;
}
.btn__danger {
  background: #ca1e47;
  border: 1px solid #ca1e47;
}
.btn__danger:hover {
  border: 1px solid #ca1e47;
  color: #ca1e47;
}
.btn__warning {
  background: #f29500;
  border: 1px solid #f29500;
}
.btn__warning:hover {
  border: 1px solid #f29500;
  color: #f29500;
}
.btn__success {
  background: #58ad60;
  border: 1px solid #58ad60;
}
.btn__success:hover {
  border: 1px solid #58ad60;
  color: #58ad60;
}
.btn__info {
  background: #333;
  border: 1px solid #333;
}
.btn__info:hover {
  border: 1px solid #333;
  color: #333;
}

.ow-button-base a.button .sow-icon-image {
  margin: -0.1em 0.5em -0.2em -0.4em;
  opacity: 0.5;
}

/**
 * Miscellaneous stuff partial
 *
 * All sorts of whitespaces, alignments, one-off fixes, etc.
 */
.screenreadertext {
  display: none;
}

.whitespace-sides {
  padding-right: 40px;
  padding-left: 40px;
}
.whitespace-bottom {
  padding-bottom: 40px;
}
.whitespace-top {
  padding-top: 40px;
}
.whitespace-left {
  padding-left: 40px;
}
.whitespace-right {
  padding-right: 40px;
}
.whitespace-none {
  margin: 0;
  padding: 0;
}

.align-right {
  text-align: right;
}
.align-center {
  text-align: center;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.full-width {
  width: 100%;
}

.scrollable-x {
  overflow-x: auto;
}

.scrollable-y {
  overflow-y: auto;
}

.no-visible {
  visibility: hidden;
}

/**
 * This partial defines the generic styles for forms and input fields.
 *
 * Include this early in style.scss so it can be overridden by more specific
 * styling where needed.
 */
label {
  margin: 0;
}

textarea {
  padding: 5px 10px;
  background: #f7f7f7;
  border: 1px solid #ccc;
}

input {
  height: 40px;
  background: #f7f7f7;
  border: 1px solid #ccc;
}

input[type=text],
input[type=password] {
  width: 100% !important;
  padding: 1em !important;
  margin-bottom: 1em;
}

/**
 * Input placeholder styling
 */
input[type=text]::placeholder,
textarea::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.25);
}

input[type=password]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.25);
}

input[type=text]:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

input[type=password]:focus::placeholder {
  opacity: 0;
}

input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.25);
}

input[type=password]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.25);
}

input[type=text]:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
}

input[type=password]:focus:-ms-input-placeholder {
  opacity: 0;
}

input[type=text]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.25);
}

input[type=password]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.25);
}

input[type=text]:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  opacity: 0;
}

input[type=password]:focus::-ms-input-placeholder {
  opacity: 0;
}

.securedownload__title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-size: 26px;
  margin-bottom: 20px;
  display: block;
}
.securedownload__title .fad {
  float: right;
  position: relative;
  top: 8px;
  color: #10137d;
}

/**
 * Keyframes partial
 *
 * All animation keyframe definitions here.
 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/**
 * This partial declares the generic and default typography rules
 */
p {
  position: relative;
  hyphens: auto;
  font-size: 0.92rem;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: color(printblack);
}

.p-alt {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
}

body {
  font-size: 0.92rem;
}

li {
  font-size: 0.92rem;
}

h1 {
  color: color(printblack);
  font-family: "Droid serif", georgia, serif;
  font-size: 2.3rem;
}

.h1-mimic {
  font-family: "Droid serif", georgia, serif;
  font-size: 2.3rem;
  color: color(printblack);
}

h2 {
  font-family: "Droid serif", georgia, serif;
  font-size: 1.84rem;
  color: color(printblack);
  padding-bottom: 5px;
  font-size: 28px;
  margin-bottom: 30px;
  display: block;
  border-bottom: 1px solid #ccc;
}

.h2-alt {
  font-family: "Droid serif", georgia, serif;
  font-size: 1.61rem;
}

h3 {
  font-family: "Droid serif", georgia, serif;
  font-size: 1.61rem;
  color: color(printblack);
}

h4 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.38rem;
  color: color(printblack);
}

h5 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  color: color(printblack);
}

h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  color: color(printblack);
}

a {
  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  color: #10137d;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.small-text {
  font-size: 0.805rem;
}

.tiny-text {
  font-size: 0.713rem;
}

.font-bold {
  font-weight: bold;
}
.font-heavy {
  font-weight: 900;
}

.uppercase-text {
  text-transform: uppercase;
}

h1, h2, h3 {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

/* CORE */
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
}
body .navigation__locked {
  padding-top: 50px;
}
@media only screen and (max-width: 991px) {
  body {
    margin-top: 46px;
  }
}

blockquote {
  border-left: 5px solid #10137d;
  padding: 20px;
  margin: 40px 0;
}

.frame {
  margin: 40px 0 0;
}

.responsive__container {
  overflow-x: hidden;
}

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

.screen-reader-text {
  display: none;
}

.pagination {
  margin: 20px 0;
  font-size: 20px;
}
.pagination .page-numbers {
  padding: 10px;
  position: relative;
}
.pagination .page-numbers.current {
  padding: 10px;
  font-weight: bold;
  color: #10137d;
}
.pagination .page-numbers::before {
  border: 1px solid #10137d;
  position: absolute;
  top: -5%;
  left: -5%;
  content: "";
  height: 110%;
  width: 110%;
  opacity: 0;
  transition: all ease-in-out 200ms;
}
.pagination .page-numbers:hover {
  font-weight: bold;
  color: #10137d;
}
.pagination .page-numbers:hover::before {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}

main .container .container {
  padding: 0 !important;
  margin: 0 !important;
}

.alignright {
  float: right;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
}

.breadcrumbs {
  margin: 20px 0 0;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs {
    margin: 0;
    display: none;
  }
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
}
.breadcrumbs ul li {
  display: inline-block;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .breadcrumbs ul li {
    margin: 2px 0px;
  }
}
.breadcrumbs__li--separator {
  margin: 0 8px;
}

.page-with-background-title .breadcrumbs {
  max-width: 100%;
  text-align: left;
  position: relative;
  z-index: 9;
  color: #fff;
  height: 30px;
  margin-top: -30px;
  top: -20px;
}
.page-with-background-title .breadcrumbs a {
  color: #fff;
}
.page-with-background-title .breadcrumbs a :hover {
  color: #fff;
}

.modal__hidden {
  display: none;
}
.modal__open {
  overflow-y: hidden !important;
}
.modal__container {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  display: flex;
  z-index: 100000000;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}
.modal__container--inner {
  width: 80%;
  height: 80%;
  position: relative;
  display: block;
  background-color: white;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.modal__container--inner .fal {
  position: absolute;
  top: -20px;
  right: -40px;
  font-size: 40px;
  color: white;
}
.modal__container--inner iframe {
  width: 100% !important;
}
.modal__container--html {
  display: block;
  padding: 20px;
}
.modal__container--login {
  height: 100%;
  padding: 40px;
  background: white;
}
.modal__container--login label,
.modal__container--login input {
  width: 100%;
  display: block;
}
.modal__container--login input[type=checkbox] {
  position: relative;
  width: auto;
  display: inline;
  margin-top: 0;
  margin-right: 10px;
  top: 5px;
  height: 20px;
  font-size: 40px;
}
.modal__container--login .button {
  display: inline-block;
  padding: 0 20px;
  margin: 10px 0;
  background: #10137d;
  border: 1px solid #10137d;
  color: white;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
  cursor: pointer;
  transition: all ease-in-out 200ms;
}
.modal__container--login .button:hover {
  background: none;
  color: #10137d;
}
.modal__container--login .login-remember {
  font-size: 0.805rem;
  display: inline-block;
}
.modal__container--login .loginform__lostpassword {
  float: right;
  padding-top: 5px;
  color: #10137d;
  font-size: 0.805rem;
}

.close__modal:hover {
  color: #0a0c50;
}

.hidden__loginform {
  display: none;
}

.cookies {
  display: none;
}
.cookies__copy {
  font-size: 0.805rem;
}
.cookies__copy p {
  padding: 0;
  margin: 0;
  line-height: 1.5;
}
.cookies__copy input #accept_cookies {
  height: auto;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
.cookies__copy label {
  margin: 0;
  top: -3px;
  position: relative;
  padding: 0;
  padding-left: 10px;
}
.cookies__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: white;
  padding: 15px 0;
  z-index: 1000000;
}
.cookies__container span {
  font-size: 0.805rem;
}
.cookies__container a {
  color: #96c9fd;
}
.cookies__container a:hover {
  color: #f2f3f8;
}
.cookies__accept--button {
  position: relative;
  height: 35px;
  text-align: right;
  line-height: 35px;
}
.cookies__accept--button a {
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  color: #96c9fd;
  text-align: center;
  border: none;
}
.cookies__accept--button a:hover {
  color: #f2f3f8;
  border-bottom: none;
}
.cookies__accept--button__accept {
  font-size: 0.805rem;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
}
.cookies__accept--button__dismiss {
  display: inline-block;
}

.footer {
  margin-top: 30px;
}
.footer .returntotop__container {
  z-index: 20;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #333;
  font-size: 20px;
  text-align: center;
  color: white;
  line-height: 40px;
  transition: all ease-in-out 200ms;
}
.footer .returntotop__container:hover {
  background: #10137d;
}
.footer__navigation {
  padding: 20px 0;
  border-top: 2px solid #ccc;
  background: #10147e;
  color: white;
}
.footer__navigation--titlelinks {
  margin: 0 0 10px;
  padding: 0;
  color: #10137d;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .footer__navigation--titlelinks {
    margin-bottom: 10px;
    text-align: center;
  }
}
.footer__navigation--titlelinks li {
  display: inline-block;
}
.footer__navigation--titlelinks li::after {
  content: " | ";
}
.footer__navigation--titlelinks li:last-of-type::after {
  display: none;
}
.footer__navigation--titlelinks a {
  color: #10137d;
}
.footer__navigation--titlelinks a:hover {
  color: #0a0c50;
}
.footer__navigation--sublinks {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .footer__navigation--sublinks {
    text-align: center;
  }
}
.footer__navigation--sublinks li {
  display: inline-block;
}
.footer__navigation--sublinks li::after {
  content: " | ";
}
.footer__navigation--sublinks li:last-of-type::after {
  display: none;
}
.footer__navigation--sublinks a {
  color: #b3b3b3;
}
.footer__navigation--sublinks a:hover {
  color: #999999;
}
.footer__navigation--socialmedia {
  text-align: right;
}
@media only screen and (max-width: 991px) {
  .footer__navigation--socialmedia {
    text-align: center;
    padding-top: 20px;
  }
}
.footer__navigation--socialmedia a {
  position: relative;
  display: inline-block;
  margin: 0 2.5px;
  vertical-align: middle;
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  .footer__navigation--socialmedia a {
    font-size: 50px;
    margin: 0 5px;
  }
}
.footer__navigation--socialmedia-facebook {
  color: #3A559F;
  transition: all ease-in-out 200ms;
}
.footer__navigation--socialmedia-facebook:hover {
  color: #4e6cbe;
}
.footer__navigation--socialmedia-twitter {
  color: #50ABF1;
  transition: all ease-in-out 200ms;
}
.footer__navigation--socialmedia-twitter:hover {
  color: #7fc2f5;
}
.footer__navigation--socialmedia-youtube {
  color: #a90000;
  transition: all ease-in-out 200ms;
}
.footer__navigation--socialmedia-youtube:hover {
  color: #dc0000;
}
.footer__navigation--socialmedia-linkedin {
  color: #0077B5;
  transition: all ease-in-out 200ms;
}
.footer__navigation--socialmedia-linkedin:hover {
  color: #0099e8;
}
.footer__navigation--socialmedia-googleplus {
  color: #DD4B39;
  transition: all ease-in-out 200ms;
}
.footer__navigation--socialmedia-googleplus:hover {
  color: #e47365;
}
.footer__copyright {
  background: #333;
  color: white;
  padding: 40px 0;
}
.footer__copyright--informa {
  display: block;
}
@media only screen and (max-width: 991px) {
  .footer__copyright--informa {
    text-align: center;
  }
}
.footer__copyright--informa a {
  color: white;
}
.footer__copyright--informa a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer__copyright--address {
  display: block;
  font-size: 0.805rem;
  color: #e6e6e6;
  padding: 20px 0 0;
}
@media only screen and (max-width: 991px) {
  .footer__copyright--address {
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .footer__copyright .footer__branding {
    margin-top: 20px;
    width: 70%;
    position: relative;
    left: 15%;
  }
}
.footer img {
  width: 100%;
}

.widget__categorieslist {
  padding: 10px;
  background: #cac6db;
}
.widget__categorieslist h2 {
  border-bottom: 1px solid #7368a0;
}
.widget__categorieslist .fad {
  float: right;
  position: relative;
  top: 4px;
  color: #7368a0;
}
.widget__categorieslist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget__categorieslist ul li {
  margin-bottom: 5px;
}
.widget__categorieslist ul li a {
  font-size: 14px;
}
.widget__categorieslist ul li a span {
  background: #10137d;
  width: 30px;
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  text-align: center;
}
.widget__title h2 i {
  float: right;
  position: relative;
  top: 5px;
  color: #10137d;
}

.sidebar-box img {
  max-width: 100%;
}

#menu-item-3474 > a,
#menu-item-3757 > a,
#menu-item-3455 > a {
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  cursor: unset;
}

.max-190 .so-widget-sow-image .sow-image-container img {
  max-width: 190px;
}

.max-200 .so-widget-sow-image .sow-image-container img {
  max-width: 200px;
}

.max-210 .so-widget-sow-image .sow-image-container img {
  max-width: 210px;
}

.max-220 .so-widget-sow-image .sow-image-container img {
  max-width: 220px;
}

.max-230 .so-widget-sow-image .sow-image-container img {
  max-width: 230px;
}

.single-post .entry-header {
  position: relative;
  margin-bottom: 0.5em;
}
.single-post .sidebar__primary {
  background-color: #f2f3f8;
  border-top: 6px solid #006db4;
}
.single-post .sidebar__primary .sidebar-box {
  border-top: 1px solid #ccc;
  padding: 1em;
}
.single-post .sidebar__primary .sidebar-box .widget-cta-link {
  display: inline-block;
}
.single-post .post-thumbnail {
  margin-bottom: 30px;
}
.single-post .post-thumbnail img {
  max-width: 100%;
  height: auto;
}
.single-post h1 {
  line-height: 1.3;
  border-bottom: 1px solid #ccc;
}
.single-post .article__type--social {
  position: absolute;
  z-index: 20;
  bottom: 0;
  right: 0;
}
.single-post .article__type--social .sidebar__social {
  margin: 0;
  padding: 0;
}
.single-post .article__type--social .sidebar__social li {
  display: inline-block;
}
.single-post .article__type--social .sidebar__social li a {
  text-decoration: none;
  border-bottom: 0;
  font-size: 25px;
  padding: 4px;
}

/** newsroom page **/
.page-id-4427 .sow-tabs .sow-tabs-tab-container {
  padding: 0;
}
.page-id-4427 .sow-tabs .sow-tabs-tab-container .sow-tabs-tab {
  margin: 0;
  width: 50%;
}
.page-id-4427 .sow-tabs .sow-tabs-tab-container .sow-tabs-tab .sow-tabs-title {
  display: block;
  text-align: center;
}
.page-id-4427 .sidebar__primary {
  background-color: #f2f3f8;
  border-top: 6px solid #006db4;
}
.page-id-4427 .sidebar__primary .sidebar-box {
  border-top: 1px solid #ccc;
  padding: 1em;
}
.page-id-4427 .sidebar__primary .sidebar-box .widget-cta-link {
  display: inline-block;
}

/*--------------------------------------------------------------
# Notes

- Use this file to override Bootstraps variable defaults https://getbootstrap.com/docs/4.3/getting-started/theming/#variable-defaults
- Use `assets/css/bootstrap/_variables.scss` as a reference for all existing variables

--------------------------------------------------------------*/
.entry-content .withIcon img {
  max-width: 2em;
  float: left;
  height: auto;
  margin-right: 20px;
}

.wp-block-button__link {
  font-size: 1rem;
}

.btn-primary a, button a,
input[type=button] a,
input[type=reset] a,
input[type=submit] a {
  color: #fff;
}

.fa, .fas {
  font-family: "Font Awesome 5 Free, Font Awesome";
}

.senior-management-team {
  padding: 10px;
}

a, p, h1, h2, h3, h4, h5,
.senior-management-team .kadence-blocks-gallery-item__caption {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

.no-sidebar.no-margins .site-main {
  margin-top: -30px;
}

.pre-title {
  position: relative;
  z-index: 2;
  background-color: #eeeeee;
  padding: 15px 0;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid #cccccc;
}
.pre-title a {
  opacity: 0.5;
  color: #555555;
}
.pre-title a:hover {
  text-decoration: none;
}

.page-header-subtitle {
  margin-top: -20px;
  margin-bottom: 40px;
  font-size: 120%;
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.wp-block-media-text .wp-block-media-text__media {
  margin-bottom: 1.5rem;
}

.page-header {
  position: relative;
}

.background-image-page-header-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 1;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}

.page-header.background-image-page-header .page-header-title {
  position: relative;
  color: #fff;
  font-weight: 400;
  max-width: 100%;
  z-index: 2;
}

.page-header-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.standfirst {
  margin-bottom: 30px;
}

#secondary h3 {
  font-weight: normal;
  font-size: 1.2rem;
  margin-top: 1.125em;
  margin-bottom: 0.375em;
}

.wp-block-embed__wrapper iframe {
  max-width: 100%;
}

#navPad {
  display: none;
}

@media (min-width: 992px) {
  #navPad {
    display: block;
    height: 135px;
    background-color: #10147e;
  }

  .page-with-background-title #navPad {
    height: 139px;
  }

  .content-full-screen #navPad {
    height: 92px;
  }

  .page-with-background-title.content-full-screen #navPad {
    height: 140px;
  }

  .home #navPad {
    height: 95px;
  }
}
@media (min-width: 1200px) {
  #navPad {
    height: 160px;
  }

  .page-with-background-title #navPad {
    height: 160px;
  }

  .content-full-screen #navPad {
    height: 120px;
  }

  .page-with-background-title.content-full-screen #navPad {
    height: 160px;
  }

  .home #navPad {
    height: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}
.no-hyphens {
  hyphens: none;
}

#newtfgMain .kt-blocks-carousel .slick-next:before,
#newtfgMain .kt-blocks-carousel .slick-prev:before {
  border-width: 4px 4px 0 0;
  left: 0px;
}

#newtfgMain .kt-blocks-carousel .kt-carousel-arrowstyle-blackonlight .slick-prev,
#newtfgMain .kt-blocks-carousel .kt-carousel-arrowstyle-blackonlight .slick-next {
  background: white;
}

#newtfgMain .kt-blocks-carousel .slick-prev,
#newtfgMain .kt-blocks-carousel .slick-next {
  opacity: 0.9;
}

#newtfgMain .kt-blocks-carousel .slick-prev:hover,
#newtfgMain .kt-blocks-carousel .slick-prev:focus,
#newtfgMain .kt-blocks-carousel .slick-next:hover,
#newtfgMain .kt-blocks-carousel .slick-next:focus {
  opacity: 1;
}

/* sm2 */
.sm2-item {
  margin: 20px 0;
}

.sm2-item .ow-button-base a.sm2-button-small {
  font-size: 80%;
}

.sm2-item .textwidget p,
.sm2-item .so-widget-sow-button {
  opacity: 0.7;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sm2-item h4 {
  margin-bottom: 5px;
  opacity: 0.6;
}

.sm2-round .so-widget-sow-image .sow-image-container {
  background: #10147e;
  background: linear-gradient(135deg, #f2673c 35%, #10147e 70%);
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
  z-index: 1;
}

.sm2-round .so-widget-sow-image .sow-image-container img {
  /*
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
  */
  filter: grayscale(100%) saturate(200%) brightness(120%);
  /* sepia(100%) saturate(200%) brightness(100%) hue-rotate(185deg) */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.sm2-round .so-widget-sow-image .sow-image-container:before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  content: "";
  background: #0084d6;
  background: linear-gradient(127deg, #0084d6 35%, #650095 68%);
  transition: all 1s;
  -webkit-transition: all 1s;
  display: inline-block;
}

.sm2-item:hover .textwidget p,
.sm2-item:hover .so-widget-sow-button {
  opacity: 1;
}

/*
.sm2-item:hover .sm2-round .so-widget-sow-image .sow-image-container {
  background: linear-gradient(0deg, rgba(16,20,126,0.05) 0%, rgba(16,20,126,0.7) 100%);

}
 */
.sm2-item:hover .sm2-round .so-widget-sow-image .sow-image-container img {
  filter: grayscale(0);
  /*  sepia(0%)saturate(100%) brightness(100%) hue-rotate(0deg) */
}

.sm2-item:hover .sm2-round .so-widget-sow-image .sow-image-container:before {
  transform: rotate(-180deg);
  opacity: 0;
}

/* sm3 */
.sm3-row .so-widget-sow-image .sow-image-container {
  overflow: hidden;
  background: #f3f3f3;
  background: linear-gradient(127deg, #f3f3f3 35%, #cccccc 68%);
  border-radius: 5px 5px 0 0;
}

.sm3-item {
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.4);
  background-color: #e3e5e5;
  overflow: hidden;
}

.sm3-item .panel-layout {
  background-color: transparent;
  border-radius: 5px;
}

.sm3-item h3 {
  margin-bottom: 5px;
  font-size: 1.2em;
}

.sm3-item h4 {
  padding-right: 10px;
  font-size: 1.05em;
}

.sm3-item .so-widget-sow-image .sow-image-container img {
  transition: transform 0.3s ease;
  -webkit-transition: all 0.3s;
  border-radius: 5px 5px 0 0;
  width: auto;
}

.sm3-item:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
}

.sm3-item:hover .so-widget-sow-image .sow-image-container img {
  transform: scale(1.1);
}

@media (min-width: 781px) {
  .sm3-item .so-widget-sow-image .sow-image-container a {
    max-height: 126px;
  }

  .sm3-item {
    min-height: 285px;
  }

  .sm3-item h3 {
    font-size: 1em;
  }

  .sm3-item h4 {
    font-size: 0.8em;
    margin-bottom: 0;
  }

  .sm3-item .widget_sow-icon {
    display: none;
  }
}
@media (min-width: 992px) {
  .sm3-item .so-widget-sow-image .sow-image-container a {
    max-height: 186px;
  }

  .sm3-item {
    min-height: 310px;
  }
}
@media (min-width: 1200px) {
  .sm3-item .so-widget-sow-image .sow-image-container a {
    max-height: 226px;
  }

  .sm3-item {
    min-height: 320px;
  }

  .sm3-item .widget_sow-icon {
    display: block;
  }
}
@media (min-width: 1400px) {
  .sm3-item .so-widget-sow-image .sow-image-container a {
    max-height: 266px;
  }

  .sm3-item {
    min-height: 360px;
  }

  .sm3-item h3 {
    font-size: 1.1em;
  }

  .sm3-item h4 {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 767px) {
  .sm3-item .so-widget-sow-image .sow-image-container a {
    /*max-height: 266px;*/
  }
}
/* wws2 */
.wws2 {
  margin-top: 40px;
}

.wws2 h1 {
  font-size: 3.7em;
  color: #f2673c;
  margin: 50px 0 30px 0;
}

.wws2 h2 {
  font-size: 3em;
  color: #10147e;
  margin: 30px 0 30px 0;
  border-bottom: 0 solid #ccc;
}

.wws2 h4 {
  font-size: 1.8em;
  line-height: 1.4em;
  margin-bottom: 30px;
}

.wws2 .sow-image-container {
  overflow: hidden;
}

.wws2 .sow-image-container img {
  transform: scale(1);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.wws2 .sow-image-container:hover img {
  transform: scale(1.02);
}

.wws2 .sow-image-grid-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.wws2 .sow-image-grid-image {
  padding: 0;
  margin: 1px;
  width: 200px;
  height: 200px;
  overflow: hidden;
}
.wws2 .sow-image-grid-image a {
  overflow: hidden;
  display: block;
  transform: scale(1);
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
  width: 200px;
  height: 200px;
  margin: 0;
  border: 0;
  position: relative;
  z-index: 10;
  background-color: #10147e;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
}
.wws2 .sow-image-grid-image a img {
  object-fit: cover;
  width: 220px;
  height: 220px !important;
  filter: invert(0%) sepia(100%) saturate(100%) hue-rotate(180deg) brightness(100%) contrast(100%);
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
  opacity: 0.8;
}
.wws2 .sow-image-grid-image a .wws2-img-title {
  padding-top: 3em;
  font-size: 1.2em;
  font-weight: 600;
  color: white;
  background: #10147e;
  background: linear-gradient(180deg, #10147e 10%, rgba(16, 20, 126, 0) 100%);
  position: absolute;
  top: 0;
  height: 7.5em;
  width: 100%;
  z-index: 11;
  text-shadow: 0.15rem 0.15rem 0.4rem rgba(0, 0, 0, 0.7);
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
}

@media only screen and (max-width: 1200px) {
  .wws2 .sow-image-grid-image {
    width: 197px;
    height: 197px;
  }
  .wws2 .sow-image-grid-image a {
    width: 197px;
    height: 197px;
  }
  .wws2 .sow-image-grid-image a img {
    width: 197px;
    height: 197px !important;
  }
  .wws2 .sow-image-grid-image a .wws2-img-title {
    line-height: 1.1em;
  }
}
@media only screen and (max-width: 425px) {
  .wws2 .sow-image-grid-image {
    width: 160px;
    height: 160px;
  }
  .wws2 .sow-image-grid-image a {
    width: 160px;
    height: 160px;
  }
  .wws2 .sow-image-grid-image a img {
    width: 160px;
    height: 160px !important;
  }
  .wws2 .sow-image-grid-image a .wws2-img-title {
    line-height: 1.1em;
  }
}
@media only screen and (min-width: 1400px) {
  .wws2 .sow-image-grid-image {
    width: 270px;
  }
  .wws2 .sow-image-grid-image a {
    width: 270px;
  }
  .wws2 .sow-image-grid-image a img {
    width: 270px;
    height: 270px !important;
  }
}
.wws2 .sow-image-grid-image a:hover {
  /*transform: scale(1.2);*/
  background-color: #10147e;
  /*border: 5px solid rgb(16,20,126);*/
  z-index: 999;
  /*box-shadow: 0 0.2rem 0.5rem rgb(0 0 0 / 40%);*/
}

.wws2 .sow-image-grid-image a:hover img {
  filter: invert(0%) sepia(0%) saturate(100%) hue-rotate(0deg) brightness(100%) contrast(100%);
  opacity: 1;
}

.wws2 .sow-image-grid-image a:hover .wws2-img-title {
  padding-top: 1em;
  font-size: 1.2em;
  color: white;
  background: #10147e;
  background: linear-gradient(180deg, #10147e 20%, #10147e 100%);
  height: 2.2em;
  text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
}

.wws2 .wws2-featured .panel-grid a {
  color: #10147e;
}

.wws2 .wws2-featured .panel-grid {
  background-color: #eeeeee;
  padding: 20px;
  margin-bottom: 5px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.wws2 .wws2-featured .panel-grid h3 {
  margin-bottom: 5px;
  font-family: Open Sans, Arial, sans-serif;
  font-weight: 600;
}

.wws2 .wws2-featured .panel-grid:hover {
  background-color: #f7f7f7;
}

.wws2 .klist .pagenav {
  text-transform: uppercase;
}

.wws2 .klist .page_item a {
  text-transform: none;
  padding: 0;
  border-top: 0 solid #eeeeee;
  color: #68737d;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.wws2 .klist .page_item a:hover {
  color: #17494d;
  text-decoration: underline;
}

.wws2 .wws2-platforms p {
  font: 400 18px/1.6em "Proxima Nova", "Open Sans", Arial, sans-serif;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

.wws2 .wws2-platforms p strong {
  font: 600 30px/1.6em "Proxima Nova", "Open Sans", Arial, sans-serif;
}

.wws2 .wws2-platforms-tfo a {
  border: 10px solid #006db4;
}

.wws2 .wws2-platforms-tf a {
  border: 10px solid #007a96;
}

.wws2 .wws2-platforms-f1k a {
  border: 10px solid #f2673c;
}

.wws2 .wws2-featured .so-widget-sow-image .sow-image-container a img {
  filter: invert(10%) sepia(59%) saturate(3868%) hue-rotate(229deg) brightness(111%) contrast(107%);
}

.newtfg-info-box {
  background-color: #f2f3f8;
  padding: 20px;
  text-align: center;
}

.cust-aside {
  background-color: #f2f3f8;
  border-top: 6px solid #0955a4;
  border-bottom: 1px solid #ccc;
  padding: 1em 1.5em;
  margin: 0 0 2em;
}
.cust-aside img {
  max-width: 100%;
}

.post_icon {
  margin-top: -5px;
  display: block;
  float: left;
  margin-bottom: 20px;
}
.post_icon img {
  width: 50px;
  height: 50px;
}

.industry-icons {
  margin: 40px auto;
}

.industry-icons .sow-image-grid-image {
  position: relative;
}

.industry-icons a {
  vertical-align: top;
  margin-bottom: 1em;
  max-width: 169px;
}

.industry-icons a .icon-img-title {
  padding-top: 5px;
  font-size: 1em;
  line-height: normal;
  font-weight: 600;
  height: auto;
  width: 100%;
  z-index: 11;
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
}

.nav.tf-tabs {
  margin-bottom: 3em;
  border-bottom: 1px solid #cccccc;
}
.nav.tf-tabs .nav-item {
  margin-bottom: 0;
  margin-right: 2px;
  font-weight: 600;
}
.nav.tf-tabs .nav-item .nav-link {
  position: relative;
  background-color: #f2f3f8;
  border-color: #f2f3f8 #f2f3f8 #f2f3f8;
  color: #333;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.nav.tf-tabs .nav-item .nav-link:hover {
  background-color: #cccccc;
  border-color: #f2f3f8 #f2f3f8 #96c9fd;
}
.nav.tf-tabs .nav-item .nav-link.active {
  color: #fff;
  background-color: #10147e;
  border-color: #f2f3f8 #f2f3f8 #f2673c;
  /*
          &::after {
            display: block;
            width: 0;
            height: 0;
            border: 8px solid transparent;
            border-bottom-color: color(tf-accent-lightorange);
            position: absolute;
            bottom: -1px;
            margin: 0;
            left: 47%;
            z-index: 11;
            content: '';
          }
          */
}

.tf-tabs-wrap {
  background-color: #e6e6e6;
  margin-bottom: 1em;
  border-bottom: 1px solid #cccccc;
}
.tf-tabs-wrap .nav.tf-tabs {
  margin-bottom: 0;
  border-bottom: 0 solid transparent;
}
.tf-tabs-wrap .nav.tf-tabs .nav-item {
  margin-bottom: 0;
  margin-right: 0;
  font-weight: 600;
  text-transform: uppercase;
}
.tf-tabs-wrap .nav.tf-tabs .nav-item .nav-link {
  position: relative;
  background-color: transparent;
  border-top: 3px solid;
  border-color: transparent white transparent transparent;
  color: gray;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}
.tf-tabs-wrap .nav.tf-tabs .nav-item .nav-link:hover {
  background-color: #cccccc;
  border-color: #006db4 #f2f3f8 transparent transparent;
  color: #285d9a;
}
.tf-tabs-wrap .nav.tf-tabs .nav-item .nav-link.active {
  color: #10147e;
  background-color: transparent;
}
.tf-tabs-wrap .nav.tf-tabs .nav-item .nav-link.active::after {
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #fe7b51;
  position: absolute;
  bottom: -2px;
  margin: 0;
  left: 43%;
  z-index: 11;
  content: "";
}

#newtfgMain .panel-layout .panel-grid .tf-hub-row {
  align-items: stretch;
}

.tf-covers-layout .sow-image-container a {
  border: 1px solid #eeeeee;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.3);
}

a.anchor {
  display: block;
  position: relative;
  top: -160px;
  visibility: hidden;
}

a[name] {
  padding-top: 40px;
  margin-top: -220px;
  display: inline-block;
  /* required for webkit browsers */
  vertical-align: top;
}

.tf-tabs .tf-nav-link-all::before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  margin-right: 5px;
}
.tf-tabs .tf-nav-link-books::before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  margin-right: 5px;
}
.tf-tabs .tf-nav-link-articles::before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  margin-right: 5px;
}
.tf-tabs .tf-nav-link-news::before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  display: inline-block;
  margin-right: 5px;
}

.home .share_buttons {
  display: none;
}

.share_buttons {
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 100;
}
.share_buttons a {
  border-bottom: 0 solid #ffffff;
  font-size: 2em;
  margin-right: 10px;
  color: #888888;
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
}
.share_buttons a:hover {
  color: #285d9a;
}
.share_buttons ul {
  list-style-type: none;
  display: block;
  margin: 0;
  padding: 0;
}
.share_buttons ul li {
  display: block;
}

.page-with-background-title .share_buttons a {
  color: #cccccc;
  text-shadow: 0.05rem 0.05rem 0.1rem rgba(0, 0, 0, 0.7);
}
.page-with-background-title .share_buttons a:hover {
  color: #f2f3f8;
  text-shadow: 0.05rem 0.05rem 0.2rem rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
  .share_buttons {
    top: 170px;
  }
}
@media (min-width: 1200px) {
  .share_buttons {
    top: 195px;
  }
}
@media only screen and (max-width: 767px) {
  .share_buttons {
    top: 100px;
  }
}
@media only screen and (max-width: 574px) {
  .share_buttons {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
    padding-left: 15px;
    position: fixed;
    height: 40px;
  }
  .share_buttons ul {
    display: inline-block;
  }
  .share_buttons ul li {
    display: inherit;
  }
  .share_buttons ul li a {
    font-size: 27px;
  }
}
@media only screen and (max-width: 320px) {
  .wws2-icon {
    display: none;
  }
}
/* ------------------------------ */
.gsc-result {
  padding: 10px 0 20px;
}

.gsc-result .se-res-link:hover {
  text-decoration: none;
}

.gsc-result .se-res-link:hover .se-res-title {
  text-decoration: underline;
}

.gsc-cursor-page .page-link {
  display: block;
  cursor: pointer;
}

/* ------------------------------ */
.se-res-link {
  display: block;
  position: relative;
  padding: 16px 18px 16px 90px;
  cursor: pointer;
  border-bottom: 1px solid #E9EDF2;
  text-align: left;
  text-decoration: none;
}

.se-res-image {
  display: block;
  margin: 0 0 0 -90px;
  width: 76px;
  height: 106px;
  float: left;
  overflow: hidden;
  /*background-color: #ffffff;*/
}
.se-res-image img {
  max-width: 76px;
}

.se-res-title {
  display: block;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #10147e;
  font-weight: 500;
  font-size: 130%;
}

.se-res-publisher,
.se-res-desc {
  display: block;
  color: #8B9BAD;
  text-decoration: none;
}

.se-res-fileformat {
  display: block;
  font-size: 0.8rem;
  color: #777777;
  padding-top: 2px;
}

.se-res-link:hover .se-res-image {
  /*background-color: #eeeeee;*/
}

.se-res-link:hover .se-res-desc {
  color: #555555;
}

.sort_selected {
  font-weight: bold;
  color: #000000;
}

.newtfg-search-sort {
  float: right;
}

.newtfg-search-button,
.newtfg-sort-byrelevance-button,
.newtfg-sort-bydate-button {
  cursor: pointer;
}

.gsc-result-info {
  /*font-size: smaller;*/
  font-style: italic;
  margin-bottom: 20px;
}

.gsc-no-results-message {
  background-color: #f3e4e4;
  border-left: 1px solid #ff5a5a;
  padding: 20px;
}

.subjects, .book-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.featured-item {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 0px solid #eeeeee;
}
.featured-item:last-child {
  border-bottom: 0px solid #eeeeee;
}
.featured-item h4 {
  margin-bottom: 0;
}
.featured-item a img {
  box-shadow: 0 0 6px 0 rgba(98, 120, 141, 0.2);
  width: 100%;
}

.impact-factor {
  font-size: 0.8em;
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: #ca1e47;
  color: white;
  border-radius: 50%;
  bottom: -20px;
  right: -15px;
  text-align: center;
  line-height: 1.1;
  padding: 0.75rem 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-circle {
  text-align: center;
  vertical-align: middle;
  padding: 0 2px;
}

.item-cover {
  box-sizing: border-box;
  position: relative;
}
.item-cover:before {
  display: table;
  content: "";
}
.item-cover:after {
  display: table;
  content: "";
}

.center {
  text-align: center;
}

.book-links li {
  padding: 0;
  margin: 0;
}
.book-links li a {
  display: block;
  padding: 5px 0;
  font-size: 0.8rem;
  line-height: 1rem;
}
.book-links li a .fas {
  width: 20px;
  text-align: center;
}

.subjects li {
  padding: 0;
  margin: 0;
}
.subjects li a {
  color: #000000;
  background-color: #eeeeee;
  border: 1px solid white;
  display: block;
  padding: 2px 10px;
}
.subjects li a:hover {
  color: white;
  background-color: #6d9de2;
}

.custom-fields {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  margin-top: 20px;
}

.featured-subjects {
  margin-bottom: 30px;
}
.featured-subjects h4 {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  float: left;
  margin-right: 1em;
}

.portfolio-by-the-numbers {
  padding: 15px 0 0;
  background-color: #f6f6f6;
  margin-top: -30px;
  margin-bottom: 20px;
}

.portfolio-numbers {
  margin: 0;
}
.portfolio-numbers h4 {
  color: #888888;
  margin: 0;
  padding: 0;
  padding-bottom: 10px;
}
.portfolio-numbers img {
  max-height: 35px;
  float: left;
  margin-right: 10px;
}
.portfolio-numbers .icon-label {
  display: inline-block;
  font-size: 90%;
}
.portfolio-numbers .icon {
  text-align: left;
  color: #aaaaaa;
  margin-bottom: 20px;
  font-size: 80%;
}
.portfolio-numbers .icon img {
  float: left;
}
.portfolio-numbers .icon h3 {
  margin-bottom: -3px;
  margin-top: 0;
  color: #aaaaaa;
  font-size: 1.4em;
}
.portfolio-numbers .icon a {
  color: #aaaaaa;
}

.wp-block-columns.custom-fields {
  margin-bottom: 20px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #6d9de2;
  color: white;
}

/*
.knb_tiles {
	background: linear-gradient(90deg,#dbe5f0,#ebf3f5);
	padding:30px 0;
}
 */
.knb {
  margin-left: 60px;
  display: block;
  margin-bottom: 30px;
}
.knb .knb_title {
  font-weight: bold;
  display: block;
  margin-left: 5px;
  font-size: 100%;
  margin-top: 10px;
  color: #555555;
  margin-bottom: 10px;
  line-height: 15px;
  text-decoration: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}
.knb .knb_desc {
  display: block;
  margin-left: 5px;
  margin-top: 0;
  font-size: 80%;
}
.knb .knb_icon {
  position: relative;
  display: block;
  max-width: 60px;
  max-height: 60px;
  margin: 0 auto;
  opacity: 0.5;
}

.knb_wrap {
  padding: 0 20px;
  text-align: center;
}
.knb_wrap h2 {
  margin: 5px 0 10px;
  font-family: Roboto;
}

.knb_tiles {
  background: linear-gradient(90deg, #dbe5f0, #ebf3f5);
  padding: 15px 0 20px;
  margin-bottom: 25px;
}

.knb_tile {
  border: 1px solid #cccccc;
  padding: 15px 10px 10px;
  width: 260px;
  display: inline-block;
  text-align: center;
  height: 260px;
  overflow: hidden;
  margin: 6px;
  box-shadow: 0 0 10px 0 rgba(98, 120, 141, 0.2);
  transition: transform 0.3s;
  background-color: #fafafa;
  vertical-align: top;
}
.knb_tile:hover {
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(98, 120, 141, 0.4);
}
.knb_tile:hover .knb_icon {
  opacity: 0.9;
}

.knb_main .knb_tile {
  width: 135px;
  height: 135px;
}
.knb_main .knb .knb_title {
  margin-top: 5px;
  font-size: 90%;
}
.knb_main .knb .knb_icon {
  max-width: 50px;
  max-height: 50px;
}
.knb_main .knb_desc {
  display: none;
}

.sidebar {
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #f7f7f7;
}
.sidebar__primary {
  padding: 0 0 40px 0;
}
.sidebar__primary > li {
  list-style: none;
}
.sidebar .widgettitle {
  font-size: 24px;
}

.sidebar__primary .widget, .sidebar__primary .widget_nav_menu {
  background: #F2F3F8;
  border-top: 6px solid #006db4;
  padding: 3.5%;
}
.sidebar__primary .widget .menu, .sidebar__primary .widget_nav_menu .menu {
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0;
}
.sidebar__primary .widget .menu li.current-menu-item > a, .sidebar__primary .widget_nav_menu .menu li.current-menu-item > a {
  border-bottom: 1px solid;
}
.sidebar__primary .widget .menu li a, .sidebar__primary .widget_nav_menu .menu li a {
  color: #212121;
  border-bottom: none;
  font-size: 90%;
}
.sidebar__primary .widget .menu li:before, .sidebar__primary .widget_nav_menu .menu li:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
  font-size: 0.8em;
  padding-right: 5px;
  color: #212121;
}
.sidebar__primary .widget .sub-menu, .sidebar__primary .widget_nav_menu .sub-menu {
  display: block;
  margin-top: 0.375em;
  margin-bottom: 0.375em;
  padding-left: 1.5em;
  list-style-type: none;
}
.sidebar__primary .widget .sub-menu li:before, .sidebar__primary .widget_nav_menu .sub-menu li:before {
  font-family: "Font Awesome 5 Pro";
  content: "";
}

.sidebar__primary .cta {
  margin-top: 0.375em;
  text-align: center;
  margin-bottom: 1.5em;
}
.sidebar__primary .cta a {
  border-radius: 5px;
  background: #10147e;
  border: none;
  color: #ffffff;
  padding: 0.4em 0.75em;
  text-align: center;
}

.sidebar__primary .widget_tfgroup_cta_widget_widget {
  padding-bottom: 0;
}

#tfgroup_cta_widget_widget-1,
#tfgroup_cta_widget_widget-2,
#tfgroup_cta_widget_widget-3,
#tfgroup_cta_widget_widget-4 {
  display: block;
  border-top: 6px solid #CA1E47;
  border-bottom: 1px solid #ccc;
}

#tfgroup_cta_widget_widget-5, #tfgroup_cta_widget_widget-6 {
  display: block;
  border-top: none !important;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0;
}

#tfgroup_cta_widget_widget-7 {
  display: block;
  border-top: 6px solid #CA1E47;
  border-bottom: 1px solid #ccc;
}

.entry-content img, .widget img {
  max-width: 100%;
  height: auto;
}

article .entry-content .row.justify-content-end .col h3 {
  font-size: 1.3em;
  line-height: 1.2em;
  margin-top: 1.125em;
  margin-bottom: 0.375em;
}

#pageHeading h1.entry-title {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Notes

- @extend the `.btn` class instead of manually adding `.btn` classes to all form elements

--------------------------------------------------------------*/
.klist, .klist ul {
  margin: 0;
  padding: 0;
}

.klist .pagenav {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.klist li {
  position: relative;
  list-style-type: none;
}

.klist .page_item a {
  font-weight: normal;
  text-decoration: none;
  background-color: transparent;
  padding: 4px 10px;
  border-top: 1px solid #eeeeee;
  display: block;
}

/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #10137d;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: white;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #10137d;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --facebook: #3A559F;
  --twitter: #50ABF1;
  --youtube: #a90000;
  --linkedin: #0077B5;
  --gplus: #DD4B39;
  --alert-red: #ca1e47;
  --alert-amber: #f29500;
  --alert-green: #58ad60;
  --black: #000;
  --white: #fff;
  --grey: #ccc;
  --printblack: #333;
  --defaultblue: #10137d;
  --offwhite: #f7f7f7;
  --tf-primary: #10147e;
  --tf-primary-light: #285d9a;
  --tf-accent-grey: #555555;
  --tf-accent-lightgrey: #cccccc;
  --tf-accent-lightblue: #96c9fd;
  --tf-accent-midblue: #006db4;
  --tf-accent-darkblue: #262c4d;
  --tf-accent-slateblue: #5b7a8f;
  --tf-accent-turquoise: #448391;
  --tf-accent-white: #f2f3f8;
  --tf-accent-lightorange: #fe7b51;
  --tf-accent-midorange: #f2673c;
  --tf-accent-darkorange: #d44922;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xx: 1400px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: white;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.75em;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #10137d;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #070939;
  text-decoration: underline;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.75em;
  font-weight: 500;
  line-height: 1.5;
}

h1, .h1 {
  font-size: 1.932rem;
}

h2, .h2 {
  font-size: 1.702rem;
}

h3, .h3 {
  font-size: 1.472rem;
}

h4, .h4 {
  font-size: 1.242rem;
}

h5, .h5 {
  font-size: 1.012rem;
}

h6, .h6 {
  font-size: 0.92rem;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.5;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 0;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: white;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }
}

.container-fluid, .container-xx, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xx, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1340px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xx,
.col-xx-auto, .col-xx-12, .col-xx-11, .col-xx-10, .col-xx-9, .col-xx-8, .col-xx-7, .col-xx-6, .col-xx-5, .col-xx-4, .col-xx-3, .col-xx-2, .col-xx-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xx {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-xx-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xx-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xx-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xx-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xx-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xx-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xx-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xx-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xx-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xx-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xx-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xx-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xx-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xx-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xx-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xx-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xx-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xx-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xx-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xx-first {
    order: -1;
  }

  .order-xx-last {
    order: 13;
  }

  .order-xx-0 {
    order: 0;
  }

  .order-xx-1 {
    order: 1;
  }

  .order-xx-2 {
    order: 2;
  }

  .order-xx-3 {
    order: 3;
  }

  .order-xx-4 {
    order: 4;
  }

  .order-xx-5 {
    order: 5;
  }

  .order-xx-6 {
    order: 6;
  }

  .order-xx-7 {
    order: 7;
  }

  .order-xx-8 {
    order: 8;
  }

  .order-xx-9 {
    order: 9;
  }

  .order-xx-10 {
    order: 10;
  }

  .order-xx-11 {
    order: 11;
  }

  .order-xx-12 {
    order: 12;
  }

  .offset-xx-0 {
    margin-left: 0;
  }

  .offset-xx-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xx-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xx-3 {
    margin-left: 25%;
  }

  .offset-xx-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xx-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xx-6 {
    margin-left: 50%;
  }

  .offset-xx-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xx-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xx-9 {
    margin-left: 75%;
  }

  .offset-xx-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xx-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #bcbddb;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #8384bb;
}

.table-hover .table-primary:hover {
  background-color: #abadd2;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #abadd2;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-facebook,
.table-facebook > th,
.table-facebook > td {
  background-color: #c8cfe4;
}
.table-facebook th,
.table-facebook td,
.table-facebook thead th,
.table-facebook tbody + tbody {
  border-color: #99a7cd;
}

.table-hover .table-facebook:hover {
  background-color: #b7c0dc;
}
.table-hover .table-facebook:hover > td,
.table-hover .table-facebook:hover > th {
  background-color: #b7c0dc;
}

.table-twitter,
.table-twitter > th,
.table-twitter > td {
  background-color: #cee7fb;
}
.table-twitter th,
.table-twitter td,
.table-twitter thead th,
.table-twitter tbody + tbody {
  border-color: #a4d3f8;
}

.table-hover .table-twitter:hover {
  background-color: #b6dbf9;
}
.table-hover .table-twitter:hover > td,
.table-hover .table-twitter:hover > th {
  background-color: #b6dbf9;
}

.table-youtube,
.table-youtube > th,
.table-youtube > td {
  background-color: #e7b8b8;
}
.table-youtube th,
.table-youtube td,
.table-youtube thead th,
.table-youtube tbody + tbody {
  border-color: #d27a7a;
}

.table-hover .table-youtube:hover {
  background-color: #e1a5a5;
}
.table-hover .table-youtube:hover > td,
.table-hover .table-youtube:hover > th {
  background-color: #e1a5a5;
}

.table-linkedin,
.table-linkedin > th,
.table-linkedin > td {
  background-color: #b8d9ea;
}
.table-linkedin th,
.table-linkedin td,
.table-linkedin thead th,
.table-linkedin tbody + tbody {
  border-color: #7ab8d9;
}

.table-hover .table-linkedin:hover {
  background-color: #a4cee4;
}
.table-hover .table-linkedin:hover > td,
.table-hover .table-linkedin:hover > th {
  background-color: #a4cee4;
}

.table-gplus,
.table-gplus > th,
.table-gplus > td {
  background-color: #f5cdc8;
}
.table-gplus th,
.table-gplus td,
.table-gplus thead th,
.table-gplus tbody + tbody {
  border-color: #eda198;
}

.table-hover .table-gplus:hover {
  background-color: #f1b9b2;
}
.table-hover .table-gplus:hover > td,
.table-hover .table-gplus:hover > th {
  background-color: #f1b9b2;
}

.table-alert-red,
.table-alert-red > th,
.table-alert-red > td {
  background-color: #f0c0cb;
}
.table-alert-red th,
.table-alert-red td,
.table-alert-red thead th,
.table-alert-red tbody + tbody {
  border-color: #e38a9f;
}

.table-hover .table-alert-red:hover {
  background-color: #ebabba;
}
.table-hover .table-alert-red:hover > td,
.table-hover .table-alert-red:hover > th {
  background-color: #ebabba;
}

.table-alert-amber,
.table-alert-amber > th,
.table-alert-amber > td {
  background-color: #fbe1b8;
}
.table-alert-amber th,
.table-alert-amber td,
.table-alert-amber thead th,
.table-alert-amber tbody + tbody {
  border-color: #f8c87a;
}

.table-hover .table-alert-amber:hover {
  background-color: #fad7a0;
}
.table-hover .table-alert-amber:hover > td,
.table-hover .table-alert-amber:hover > th {
  background-color: #fad7a0;
}

.table-alert-green,
.table-alert-green > th,
.table-alert-green > td {
  background-color: #d0e8d2;
}
.table-alert-green th,
.table-alert-green td,
.table-alert-green thead th,
.table-alert-green tbody + tbody {
  border-color: #a8d4ac;
}

.table-hover .table-alert-green:hover {
  background-color: #bfe0c2;
}
.table-hover .table-alert-green:hover > td,
.table-hover .table-alert-green:hover > th {
  background-color: #bfe0c2;
}

.table-black,
.table-black > th,
.table-black > td {
  background-color: #b8b8b8;
}
.table-black th,
.table-black td,
.table-black thead th,
.table-black tbody + tbody {
  border-color: #7a7a7a;
}

.table-hover .table-black:hover {
  background-color: #ababab;
}
.table-hover .table-black:hover > td,
.table-hover .table-black:hover > th {
  background-color: #ababab;
}

.table-white,
.table-white > th,
.table-white > td {
  background-color: white;
}
.table-white th,
.table-white td,
.table-white thead th,
.table-white tbody + tbody {
  border-color: white;
}

.table-hover .table-white:hover {
  background-color: #f2f2f2;
}
.table-hover .table-white:hover > td,
.table-hover .table-white:hover > th {
  background-color: #f2f2f2;
}

.table-grey,
.table-grey > th,
.table-grey > td {
  background-color: #f1f1f1;
}
.table-grey th,
.table-grey td,
.table-grey thead th,
.table-grey tbody + tbody {
  border-color: #e4e4e4;
}

.table-hover .table-grey:hover {
  background-color: #e4e4e4;
}
.table-hover .table-grey:hover > td,
.table-hover .table-grey:hover > th {
  background-color: #e4e4e4;
}

.table-printblack,
.table-printblack > th,
.table-printblack > td {
  background-color: #c6c6c6;
}
.table-printblack th,
.table-printblack td,
.table-printblack thead th,
.table-printblack tbody + tbody {
  border-color: #959595;
}

.table-hover .table-printblack:hover {
  background-color: #b9b9b9;
}
.table-hover .table-printblack:hover > td,
.table-hover .table-printblack:hover > th {
  background-color: #b9b9b9;
}

.table-defaultblue,
.table-defaultblue > th,
.table-defaultblue > td {
  background-color: #bcbddb;
}
.table-defaultblue th,
.table-defaultblue td,
.table-defaultblue thead th,
.table-defaultblue tbody + tbody {
  border-color: #8384bb;
}

.table-hover .table-defaultblue:hover {
  background-color: #abadd2;
}
.table-hover .table-defaultblue:hover > td,
.table-hover .table-defaultblue:hover > th {
  background-color: #abadd2;
}

.table-offwhite,
.table-offwhite > th,
.table-offwhite > td {
  background-color: #fdfdfd;
}
.table-offwhite th,
.table-offwhite td,
.table-offwhite thead th,
.table-offwhite tbody + tbody {
  border-color: #fbfbfb;
}

.table-hover .table-offwhite:hover {
  background-color: #f0f0f0;
}
.table-hover .table-offwhite:hover > td,
.table-hover .table-offwhite:hover > th {
  background-color: #f0f0f0;
}

.table-tf-primary,
.table-tf-primary > th,
.table-tf-primary > td {
  background-color: #bcbddb;
}
.table-tf-primary th,
.table-tf-primary td,
.table-tf-primary thead th,
.table-tf-primary tbody + tbody {
  border-color: #8385bc;
}

.table-hover .table-tf-primary:hover {
  background-color: #abadd2;
}
.table-hover .table-tf-primary:hover > td,
.table-hover .table-tf-primary:hover > th {
  background-color: #abadd2;
}

.table-tf-primary-light,
.table-tf-primary-light > th,
.table-tf-primary-light > td {
  background-color: #c3d2e3;
}
.table-tf-primary-light th,
.table-tf-primary-light td,
.table-tf-primary-light thead th,
.table-tf-primary-light tbody + tbody {
  border-color: #8fabca;
}

.table-hover .table-tf-primary-light:hover {
  background-color: #b2c5db;
}
.table-hover .table-tf-primary-light:hover > td,
.table-hover .table-tf-primary-light:hover > th {
  background-color: #b2c5db;
}

.table-tf-accent-grey,
.table-tf-accent-grey > th,
.table-tf-accent-grey > td {
  background-color: #cfcfcf;
}
.table-tf-accent-grey th,
.table-tf-accent-grey td,
.table-tf-accent-grey thead th,
.table-tf-accent-grey tbody + tbody {
  border-color: #a7a7a7;
}

.table-hover .table-tf-accent-grey:hover {
  background-color: #c2c2c2;
}
.table-hover .table-tf-accent-grey:hover > td,
.table-hover .table-tf-accent-grey:hover > th {
  background-color: #c2c2c2;
}

.table-tf-accent-lightgrey,
.table-tf-accent-lightgrey > th,
.table-tf-accent-lightgrey > td {
  background-color: #f1f1f1;
}
.table-tf-accent-lightgrey th,
.table-tf-accent-lightgrey td,
.table-tf-accent-lightgrey thead th,
.table-tf-accent-lightgrey tbody + tbody {
  border-color: #e4e4e4;
}

.table-hover .table-tf-accent-lightgrey:hover {
  background-color: #e4e4e4;
}
.table-hover .table-tf-accent-lightgrey:hover > td,
.table-hover .table-tf-accent-lightgrey:hover > th {
  background-color: #e4e4e4;
}

.table-tf-accent-lightblue,
.table-tf-accent-lightblue > th,
.table-tf-accent-lightblue > td {
  background-color: #e2f0fe;
}
.table-tf-accent-lightblue th,
.table-tf-accent-lightblue td,
.table-tf-accent-lightblue thead th,
.table-tf-accent-lightblue tbody + tbody {
  border-color: #c8e3fe;
}

.table-hover .table-tf-accent-lightblue:hover {
  background-color: #c9e3fd;
}
.table-hover .table-tf-accent-lightblue:hover > td,
.table-hover .table-tf-accent-lightblue:hover > th {
  background-color: #c9e3fd;
}

.table-tf-accent-midblue,
.table-tf-accent-midblue > th,
.table-tf-accent-midblue > td {
  background-color: #b8d6ea;
}
.table-tf-accent-midblue th,
.table-tf-accent-midblue td,
.table-tf-accent-midblue thead th,
.table-tf-accent-midblue tbody + tbody {
  border-color: #7ab3d8;
}

.table-hover .table-tf-accent-midblue:hover {
  background-color: #a4cbe4;
}
.table-hover .table-tf-accent-midblue:hover > td,
.table-hover .table-tf-accent-midblue:hover > th {
  background-color: #a4cbe4;
}

.table-tf-accent-darkblue,
.table-tf-accent-darkblue > th,
.table-tf-accent-darkblue > td {
  background-color: #c2c4cd;
}
.table-tf-accent-darkblue th,
.table-tf-accent-darkblue td,
.table-tf-accent-darkblue thead th,
.table-tf-accent-darkblue tbody + tbody {
  border-color: #8e91a2;
}

.table-hover .table-tf-accent-darkblue:hover {
  background-color: #b4b6c2;
}
.table-hover .table-tf-accent-darkblue:hover > td,
.table-hover .table-tf-accent-darkblue:hover > th {
  background-color: #b4b6c2;
}

.table-tf-accent-slateblue,
.table-tf-accent-slateblue > th,
.table-tf-accent-slateblue > td {
  background-color: #d1dae0;
}
.table-tf-accent-slateblue th,
.table-tf-accent-slateblue td,
.table-tf-accent-slateblue thead th,
.table-tf-accent-slateblue tbody + tbody {
  border-color: #aabac5;
}

.table-hover .table-tf-accent-slateblue:hover {
  background-color: #c2ced6;
}
.table-hover .table-tf-accent-slateblue:hover > td,
.table-hover .table-tf-accent-slateblue:hover > th {
  background-color: #c2ced6;
}

.table-tf-accent-turquoise,
.table-tf-accent-turquoise > th,
.table-tf-accent-turquoise > td {
  background-color: #cbdce0;
}
.table-tf-accent-turquoise th,
.table-tf-accent-turquoise td,
.table-tf-accent-turquoise thead th,
.table-tf-accent-turquoise tbody + tbody {
  border-color: #9ebfc6;
}

.table-hover .table-tf-accent-turquoise:hover {
  background-color: #bbd1d6;
}
.table-hover .table-tf-accent-turquoise:hover > td,
.table-hover .table-tf-accent-turquoise:hover > th {
  background-color: #bbd1d6;
}

.table-tf-accent-white,
.table-tf-accent-white > th,
.table-tf-accent-white > td {
  background-color: #fbfcfd;
}
.table-tf-accent-white th,
.table-tf-accent-white td,
.table-tf-accent-white thead th,
.table-tf-accent-white tbody + tbody {
  border-color: #f8f9fb;
}

.table-hover .table-tf-accent-white:hover {
  background-color: #eaeff5;
}
.table-hover .table-tf-accent-white:hover > td,
.table-hover .table-tf-accent-white:hover > th {
  background-color: #eaeff5;
}

.table-tf-accent-lightorange,
.table-tf-accent-lightorange > th,
.table-tf-accent-lightorange > td {
  background-color: #ffdace;
}
.table-tf-accent-lightorange th,
.table-tf-accent-lightorange td,
.table-tf-accent-lightorange thead th,
.table-tf-accent-lightorange tbody + tbody {
  border-color: #febaa5;
}

.table-hover .table-tf-accent-lightorange:hover {
  background-color: #ffc7b5;
}
.table-hover .table-tf-accent-lightorange:hover > td,
.table-hover .table-tf-accent-lightorange:hover > th {
  background-color: #ffc7b5;
}

.table-tf-accent-midorange,
.table-tf-accent-midorange > th,
.table-tf-accent-midorange > td {
  background-color: #fbd4c8;
}
.table-tf-accent-midorange th,
.table-tf-accent-midorange td,
.table-tf-accent-midorange thead th,
.table-tf-accent-midorange tbody + tbody {
  border-color: #f8b09a;
}

.table-hover .table-tf-accent-midorange:hover {
  background-color: #f9c1b0;
}
.table-hover .table-tf-accent-midorange:hover > td,
.table-hover .table-tf-accent-midorange:hover > th {
  background-color: #f9c1b0;
}

.table-tf-accent-darkorange,
.table-tf-accent-darkorange > th,
.table-tf-accent-darkorange > td {
  background-color: #f3ccc1;
}
.table-tf-accent-darkorange th,
.table-tf-accent-darkorange td,
.table-tf-accent-darkorange thead th,
.table-tf-accent-darkorange tbody + tbody {
  border-color: #e9a08c;
}

.table-hover .table-tf-accent-darkorange:hover {
  background-color: #efbaac;
}
.table-hover .table-tf-accent-darkorange:hover > td,
.table-hover .table-tf-accent-darkorange:hover > th {
  background-color: #efbaac;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: white;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: white;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xx {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xx > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control, 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, select {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control, 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, select {
    transition: none;
  }
}
.form-control::-ms-expand, input[type=text]::-ms-expand,
input[type=email]::-ms-expand,
input[type=url]::-ms-expand,
input[type=password]::-ms-expand,
input[type=search]::-ms-expand,
input[type=number]::-ms-expand,
input[type=tel]::-ms-expand,
input[type=range]::-ms-expand,
input[type=date]::-ms-expand,
input[type=month]::-ms-expand,
input[type=week]::-ms-expand,
input[type=time]::-ms-expand,
input[type=datetime]::-ms-expand,
input[type=datetime-local]::-ms-expand,
input[type=color]::-ms-expand,
textarea::-ms-expand, select::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring, input[type=text]:-moz-focusring,
input[type=email]:-moz-focusring,
input[type=url]:-moz-focusring,
input[type=password]:-moz-focusring,
input[type=search]:-moz-focusring,
input[type=number]:-moz-focusring,
input[type=tel]:-moz-focusring,
input[type=range]:-moz-focusring,
input[type=date]:-moz-focusring,
input[type=month]:-moz-focusring,
input[type=week]:-moz-focusring,
input[type=time]:-moz-focusring,
input[type=datetime]:-moz-focusring,
input[type=datetime-local]:-moz-focusring,
input[type=color]:-moz-focusring,
textarea:-moz-focusring, select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus, input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus, select:focus {
  color: #495057;
  background-color: white;
  border-color: #292ee4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.form-control::placeholder, input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder, select::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, input[type=text]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=number]:disabled,
input[type=tel]:disabled,
input[type=range]:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=time]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=color]:disabled,
textarea:disabled, select:disabled, .form-control[readonly], input[readonly][type=text],
input[readonly][type=email],
input[readonly][type=url],
input[readonly][type=password],
input[readonly][type=search],
input[readonly][type=number],
input[readonly][type=tel],
input[readonly][type=range],
input[readonly][type=date],
input[readonly][type=month],
input[readonly][type=week],
input[readonly][type=time],
input[readonly][type=datetime],
input[readonly][type=datetime-local],
input[readonly][type=color],
textarea[readonly], select[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=date],
input[type=time].form-control,
input[type=time],
input[type=datetime-local].form-control,
input[type=datetime-local],
input[type=month].form-control,
input[type=month] {
  appearance: none;
}

select.form-control:focus::-ms-value, select:focus::-ms-value {
  color: #495057;
  background-color: white;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.15rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.805rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.805rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.15rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select[size], select.form-control[multiple], select[multiple] {
  height: auto;
}

textarea.form-control,
textarea {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.805rem;
  line-height: 1.5;
  color: white;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .was-validated input[type=text]:valid,
.was-validated input[type=email]:valid,
.was-validated input[type=url]:valid,
.was-validated input[type=password]:valid,
.was-validated input[type=search]:valid,
.was-validated input[type=number]:valid,
.was-validated input[type=tel]:valid,
.was-validated input[type=range]:valid,
.was-validated input[type=date]:valid,
.was-validated input[type=month]:valid,
.was-validated input[type=week]:valid,
.was-validated input[type=time]:valid,
.was-validated input[type=datetime]:valid,
.was-validated input[type=datetime-local]:valid,
.was-validated input[type=color]:valid,
.was-validated textarea:valid, .was-validated select:valid, .form-control.is-valid, input.is-valid[type=text],
input.is-valid[type=email],
input.is-valid[type=url],
input.is-valid[type=password],
input.is-valid[type=search],
input.is-valid[type=number],
input.is-valid[type=tel],
input.is-valid[type=range],
input.is-valid[type=date],
input.is-valid[type=month],
input.is-valid[type=week],
input.is-valid[type=time],
input.is-valid[type=datetime],
input.is-valid[type=datetime-local],
input.is-valid[type=color],
textarea.is-valid, select.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .was-validated input[type=text]:valid:focus,
.was-validated input[type=email]:valid:focus,
.was-validated input[type=url]:valid:focus,
.was-validated input[type=password]:valid:focus,
.was-validated input[type=search]:valid:focus,
.was-validated input[type=number]:valid:focus,
.was-validated input[type=tel]:valid:focus,
.was-validated input[type=range]:valid:focus,
.was-validated input[type=date]:valid:focus,
.was-validated input[type=month]:valid:focus,
.was-validated input[type=week]:valid:focus,
.was-validated input[type=time]:valid:focus,
.was-validated input[type=datetime]:valid:focus,
.was-validated input[type=datetime-local]:valid:focus,
.was-validated input[type=color]:valid:focus,
.was-validated textarea:valid:focus, .was-validated select:valid:focus, .form-control.is-valid:focus, input.is-valid[type=text]:focus,
input.is-valid[type=email]:focus,
input.is-valid[type=url]:focus,
input.is-valid[type=password]:focus,
input.is-valid[type=search]:focus,
input.is-valid[type=number]:focus,
input.is-valid[type=tel]:focus,
input.is-valid[type=range]:focus,
input.is-valid[type=date]:focus,
input.is-valid[type=month]:focus,
input.is-valid[type=week]:focus,
input.is-valid[type=time]:focus,
input.is-valid[type=datetime]:focus,
input.is-valid[type=datetime-local]:focus,
input.is-valid[type=color]:focus,
textarea.is-valid:focus, select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid,
.was-validated textarea:valid, textarea.form-control.is-valid,
textarea.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") white no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.805rem;
  line-height: 1.5;
  color: white;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .was-validated input[type=text]:invalid,
.was-validated input[type=email]:invalid,
.was-validated input[type=url]:invalid,
.was-validated input[type=password]:invalid,
.was-validated input[type=search]:invalid,
.was-validated input[type=number]:invalid,
.was-validated input[type=tel]:invalid,
.was-validated input[type=range]:invalid,
.was-validated input[type=date]:invalid,
.was-validated input[type=month]:invalid,
.was-validated input[type=week]:invalid,
.was-validated input[type=time]:invalid,
.was-validated input[type=datetime]:invalid,
.was-validated input[type=datetime-local]:invalid,
.was-validated input[type=color]:invalid,
.was-validated textarea:invalid, .was-validated select:invalid, .form-control.is-invalid, input.is-invalid[type=text],
input.is-invalid[type=email],
input.is-invalid[type=url],
input.is-invalid[type=password],
input.is-invalid[type=search],
input.is-invalid[type=number],
input.is-invalid[type=tel],
input.is-invalid[type=range],
input.is-invalid[type=date],
input.is-invalid[type=month],
input.is-invalid[type=week],
input.is-invalid[type=time],
input.is-invalid[type=datetime],
input.is-invalid[type=datetime-local],
input.is-invalid[type=color],
textarea.is-invalid, select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .was-validated input[type=text]:invalid:focus,
.was-validated input[type=email]:invalid:focus,
.was-validated input[type=url]:invalid:focus,
.was-validated input[type=password]:invalid:focus,
.was-validated input[type=search]:invalid:focus,
.was-validated input[type=number]:invalid:focus,
.was-validated input[type=tel]:invalid:focus,
.was-validated input[type=range]:invalid:focus,
.was-validated input[type=date]:invalid:focus,
.was-validated input[type=month]:invalid:focus,
.was-validated input[type=week]:invalid:focus,
.was-validated input[type=time]:invalid:focus,
.was-validated input[type=datetime]:invalid:focus,
.was-validated input[type=datetime-local]:invalid:focus,
.was-validated input[type=color]:invalid:focus,
.was-validated textarea:invalid:focus, .was-validated select:invalid:focus, .form-control.is-invalid:focus, input.is-invalid[type=text]:focus,
input.is-invalid[type=email]:focus,
input.is-invalid[type=url]:focus,
input.is-invalid[type=password]:focus,
input.is-invalid[type=search]:focus,
input.is-invalid[type=number]:focus,
input.is-invalid[type=tel]:focus,
input.is-invalid[type=range]:focus,
input.is-invalid[type=date]:focus,
input.is-invalid[type=month]:focus,
input.is-invalid[type=week]:focus,
input.is-invalid[type=time]:focus,
input.is-invalid[type=datetime]:focus,
input.is-invalid[type=datetime-local]:focus,
input.is-invalid[type=color]:focus,
textarea.is-invalid:focus, select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid,
.was-validated textarea:invalid, textarea.form-control.is-invalid,
textarea.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") white no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control, .form-inline input[type=text],
.form-inline input[type=email],
.form-inline input[type=url],
.form-inline input[type=password],
.form-inline input[type=search],
.form-inline input[type=number],
.form-inline input[type=tel],
.form-inline input[type=range],
.form-inline input[type=date],
.form-inline input[type=month],
.form-inline input[type=week],
.form-inline input[type=time],
.form-inline input[type=datetime],
.form-inline input[type=datetime-local],
.form-inline input[type=color],
.form-inline textarea, .form-inline select {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.92rem;
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, button,
input[type=button],
input[type=reset],
input[type=submit] {
    transition: none;
  }
}
.btn:hover, button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus, .btn.focus, button.focus,
input.focus[type=button],
input.focus[type=reset],
input.focus[type=submit] {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.btn.disabled, button.disabled,
input.disabled[type=button],
input.disabled[type=reset],
input.disabled[type=submit], .btn:disabled, button:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
input[type=submit]:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled), button:not(:disabled):not(.disabled),
input[type=button]:not(:disabled):not(.disabled),
input[type=reset]:not(:disabled):not(.disabled),
input[type=submit]:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary, button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-primary:hover, button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: white;
  background-color: #0c0e5b;
  border-color: #0a0c50;
}
.btn-primary:focus, button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus, .btn-primary.focus, button.focus,
input.focus[type=button],
input.focus[type=reset],
input.focus[type=submit] {
  color: white;
  background-color: #0c0e5b;
  border-color: #0a0c50;
  box-shadow: 0 0 0 0.2rem rgba(52, 54, 145, 0.5);
}
.btn-primary.disabled, button.disabled,
input.disabled[type=button],
input.disabled[type=reset],
input.disabled[type=submit], .btn-primary:disabled, button:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
input[type=submit]:disabled {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-primary:not(:disabled):not(.disabled):active, button:not(:disabled):not(.disabled):active,
input[type=button]:not(:disabled):not(.disabled):active,
input[type=reset]:not(:disabled):not(.disabled):active,
input[type=submit]:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, button:not(:disabled):not(.disabled).active,
input[type=button]:not(:disabled):not(.disabled).active,
input[type=reset]:not(:disabled):not(.disabled).active,
input[type=submit]:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .show > button.dropdown-toggle,
.show > input.dropdown-toggle[type=button],
.show > input.dropdown-toggle[type=reset],
.show > input.dropdown-toggle[type=submit] {
  color: white;
  background-color: #0a0c50;
  border-color: #090a44;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, button:not(:disabled):not(.disabled):active:focus,
input[type=button]:not(:disabled):not(.disabled):active:focus,
input[type=reset]:not(:disabled):not(.disabled):active:focus,
input[type=submit]:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, button:not(:disabled):not(.disabled).active:focus,
input[type=button]:not(:disabled):not(.disabled).active:focus,
input[type=reset]:not(:disabled):not(.disabled).active:focus,
input[type=submit]:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus, .show > button.dropdown-toggle:focus,
.show > input.dropdown-toggle[type=button]:focus,
.show > input.dropdown-toggle[type=reset]:focus,
.show > input.dropdown-toggle[type=submit]:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 54, 145, 0.5);
}

.btn-secondary {
  color: white;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: white;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: white;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: white;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: white;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: white;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: white;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  color: white;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: white;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: white;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: white;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: white;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  color: white;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: white;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: white;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: white;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: white;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  color: white;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: white;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: white;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: white;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: white;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: white;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: white;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: white;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-facebook {
  color: white;
  background-color: #3A559F;
  border-color: #3A559F;
}
.btn-facebook:hover {
  color: white;
  background-color: #304683;
  border-color: #2c417a;
}
.btn-facebook:focus, .btn-facebook.focus {
  color: white;
  background-color: #304683;
  border-color: #2c417a;
  box-shadow: 0 0 0 0.2rem rgba(88, 111, 173, 0.5);
}
.btn-facebook.disabled, .btn-facebook:disabled {
  color: white;
  background-color: #3A559F;
  border-color: #3A559F;
}
.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, .show > .btn-facebook.dropdown-toggle {
  color: white;
  background-color: #2c417a;
  border-color: #293c70;
}
.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 111, 173, 0.5);
}

.btn-twitter {
  color: #212529;
  background-color: #50ABF1;
  border-color: #50ABF1;
}
.btn-twitter:hover {
  color: white;
  background-color: #2d9aee;
  border-color: #2194ed;
}
.btn-twitter:focus, .btn-twitter.focus {
  color: white;
  background-color: #2d9aee;
  border-color: #2194ed;
  box-shadow: 0 0 0 0.2rem rgba(73, 151, 211, 0.5);
}
.btn-twitter.disabled, .btn-twitter:disabled {
  color: #212529;
  background-color: #50ABF1;
  border-color: #50ABF1;
}
.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active, .show > .btn-twitter.dropdown-toggle {
  color: white;
  background-color: #2194ed;
  border-color: #158fec;
}
.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(73, 151, 211, 0.5);
}

.btn-youtube {
  color: white;
  background-color: #a90000;
  border-color: #a90000;
}
.btn-youtube:hover {
  color: white;
  background-color: #830000;
  border-color: #760000;
}
.btn-youtube:focus, .btn-youtube.focus {
  color: white;
  background-color: #830000;
  border-color: #760000;
  box-shadow: 0 0 0 0.2rem rgba(182, 38, 38, 0.5);
}
.btn-youtube.disabled, .btn-youtube:disabled {
  color: white;
  background-color: #a90000;
  border-color: #a90000;
}
.btn-youtube:not(:disabled):not(.disabled):active, .btn-youtube:not(:disabled):not(.disabled).active, .show > .btn-youtube.dropdown-toggle {
  color: white;
  background-color: #760000;
  border-color: #690000;
}
.btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .btn-youtube.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(182, 38, 38, 0.5);
}

.btn-linkedin {
  color: white;
  background-color: #0077B5;
  border-color: #0077B5;
}
.btn-linkedin:hover {
  color: white;
  background-color: #005e8f;
  border-color: #005582;
}
.btn-linkedin:focus, .btn-linkedin.focus {
  color: white;
  background-color: #005e8f;
  border-color: #005582;
  box-shadow: 0 0 0 0.2rem rgba(38, 139, 192, 0.5);
}
.btn-linkedin.disabled, .btn-linkedin:disabled {
  color: white;
  background-color: #0077B5;
  border-color: #0077B5;
}
.btn-linkedin:not(:disabled):not(.disabled):active, .btn-linkedin:not(:disabled):not(.disabled).active, .show > .btn-linkedin.dropdown-toggle {
  color: white;
  background-color: #005582;
  border-color: #004d75;
}
.btn-linkedin:not(:disabled):not(.disabled):active:focus, .btn-linkedin:not(:disabled):not(.disabled).active:focus, .show > .btn-linkedin.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 139, 192, 0.5);
}

.btn-gplus {
  color: white;
  background-color: #DD4B39;
  border-color: #DD4B39;
}
.btn-gplus:hover {
  color: white;
  background-color: #cd3623;
  border-color: #c23321;
}
.btn-gplus:focus, .btn-gplus.focus {
  color: white;
  background-color: #cd3623;
  border-color: #c23321;
  box-shadow: 0 0 0 0.2rem rgba(226, 102, 87, 0.5);
}
.btn-gplus.disabled, .btn-gplus:disabled {
  color: white;
  background-color: #DD4B39;
  border-color: #DD4B39;
}
.btn-gplus:not(:disabled):not(.disabled):active, .btn-gplus:not(:disabled):not(.disabled).active, .show > .btn-gplus.dropdown-toggle {
  color: white;
  background-color: #c23321;
  border-color: #b7301f;
}
.btn-gplus:not(:disabled):not(.disabled):active:focus, .btn-gplus:not(:disabled):not(.disabled).active:focus, .show > .btn-gplus.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(226, 102, 87, 0.5);
}

.btn-alert-red {
  color: white;
  background-color: #ca1e47;
  border-color: #ca1e47;
}
.btn-alert-red:hover {
  color: white;
  background-color: #a9193b;
  border-color: #9e1737;
}
.btn-alert-red:focus, .btn-alert-red.focus {
  color: white;
  background-color: #a9193b;
  border-color: #9e1737;
  box-shadow: 0 0 0 0.2rem rgba(210, 64, 99, 0.5);
}
.btn-alert-red.disabled, .btn-alert-red:disabled {
  color: white;
  background-color: #ca1e47;
  border-color: #ca1e47;
}
.btn-alert-red:not(:disabled):not(.disabled):active, .btn-alert-red:not(:disabled):not(.disabled).active, .show > .btn-alert-red.dropdown-toggle {
  color: white;
  background-color: #9e1737;
  border-color: #921633;
}
.btn-alert-red:not(:disabled):not(.disabled):active:focus, .btn-alert-red:not(:disabled):not(.disabled).active:focus, .show > .btn-alert-red.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(210, 64, 99, 0.5);
}

.btn-alert-amber {
  color: #212529;
  background-color: #f29500;
  border-color: #f29500;
}
.btn-alert-amber:hover {
  color: white;
  background-color: #cc7d00;
  border-color: #bf7600;
}
.btn-alert-amber:focus, .btn-alert-amber.focus {
  color: white;
  background-color: #cc7d00;
  border-color: #bf7600;
  box-shadow: 0 0 0 0.2rem rgba(211, 132, 6, 0.5);
}
.btn-alert-amber.disabled, .btn-alert-amber:disabled {
  color: #212529;
  background-color: #f29500;
  border-color: #f29500;
}
.btn-alert-amber:not(:disabled):not(.disabled):active, .btn-alert-amber:not(:disabled):not(.disabled).active, .show > .btn-alert-amber.dropdown-toggle {
  color: white;
  background-color: #bf7600;
  border-color: #b26e00;
}
.btn-alert-amber:not(:disabled):not(.disabled):active:focus, .btn-alert-amber:not(:disabled):not(.disabled).active:focus, .show > .btn-alert-amber.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 132, 6, 0.5);
}

.btn-alert-green {
  color: white;
  background-color: #58ad60;
  border-color: #58ad60;
}
.btn-alert-green:hover {
  color: white;
  background-color: #499551;
  border-color: #458d4c;
}
.btn-alert-green:focus, .btn-alert-green.focus {
  color: white;
  background-color: #499551;
  border-color: #458d4c;
  box-shadow: 0 0 0 0.2rem rgba(113, 185, 120, 0.5);
}
.btn-alert-green.disabled, .btn-alert-green:disabled {
  color: white;
  background-color: #58ad60;
  border-color: #58ad60;
}
.btn-alert-green:not(:disabled):not(.disabled):active, .btn-alert-green:not(:disabled):not(.disabled).active, .show > .btn-alert-green.dropdown-toggle {
  color: white;
  background-color: #458d4c;
  border-color: #418447;
}
.btn-alert-green:not(:disabled):not(.disabled):active:focus, .btn-alert-green:not(:disabled):not(.disabled).active:focus, .show > .btn-alert-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(113, 185, 120, 0.5);
}

.btn-black {
  color: white;
  background-color: #000;
  border-color: #000;
}
.btn-black:hover {
  color: white;
  background-color: black;
  border-color: black;
}
.btn-black:focus, .btn-black.focus {
  color: white;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}
.btn-black.disabled, .btn-black:disabled {
  color: white;
  background-color: #000;
  border-color: #000;
}
.btn-black:not(:disabled):not(.disabled):active, .btn-black:not(:disabled):not(.disabled).active, .show > .btn-black.dropdown-toggle {
  color: white;
  background-color: black;
  border-color: black;
}
.btn-black:not(:disabled):not(.disabled):active:focus, .btn-black:not(:disabled):not(.disabled).active:focus, .show > .btn-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}

.btn-white {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-white:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}
.btn-white:focus, .btn-white.focus {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}
.btn-white.disabled, .btn-white:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-white.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus, .show > .btn-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 222, 223, 0.5);
}

.btn-grey {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-grey:hover {
  color: #212529;
  background-color: #b9b9b9;
  border-color: #b3b3b3;
}
.btn-grey:focus, .btn-grey.focus {
  color: #212529;
  background-color: #b9b9b9;
  border-color: #b3b3b3;
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}
.btn-grey.disabled, .btn-grey:disabled {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-grey:not(:disabled):not(.disabled):active, .btn-grey:not(:disabled):not(.disabled).active, .show > .btn-grey.dropdown-toggle {
  color: #212529;
  background-color: #b3b3b3;
  border-color: #acacac;
}
.btn-grey:not(:disabled):not(.disabled):active:focus, .btn-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}

.btn-printblack {
  color: white;
  background-color: #333;
  border-color: #333;
}
.btn-printblack:hover {
  color: white;
  background-color: #202020;
  border-color: #1a1a1a;
}
.btn-printblack:focus, .btn-printblack.focus {
  color: white;
  background-color: #202020;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}
.btn-printblack.disabled, .btn-printblack:disabled {
  color: white;
  background-color: #333;
  border-color: #333;
}
.btn-printblack:not(:disabled):not(.disabled):active, .btn-printblack:not(:disabled):not(.disabled).active, .show > .btn-printblack.dropdown-toggle {
  color: white;
  background-color: #1a1a1a;
  border-color: #131313;
}
.btn-printblack:not(:disabled):not(.disabled):active:focus, .btn-printblack:not(:disabled):not(.disabled).active:focus, .show > .btn-printblack.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}

.btn-defaultblue {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-defaultblue:hover {
  color: white;
  background-color: #0c0e5b;
  border-color: #0a0c50;
}
.btn-defaultblue:focus, .btn-defaultblue.focus {
  color: white;
  background-color: #0c0e5b;
  border-color: #0a0c50;
  box-shadow: 0 0 0 0.2rem rgba(52, 54, 145, 0.5);
}
.btn-defaultblue.disabled, .btn-defaultblue:disabled {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-defaultblue:not(:disabled):not(.disabled):active, .btn-defaultblue:not(:disabled):not(.disabled).active, .show > .btn-defaultblue.dropdown-toggle {
  color: white;
  background-color: #0a0c50;
  border-color: #090a44;
}
.btn-defaultblue:not(:disabled):not(.disabled):active:focus, .btn-defaultblue:not(:disabled):not(.disabled).active:focus, .show > .btn-defaultblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 54, 145, 0.5);
}

.btn-offwhite {
  color: #212529;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-offwhite:hover {
  color: #212529;
  background-color: #e4e4e4;
  border-color: #dedede;
}
.btn-offwhite:focus, .btn-offwhite.focus {
  color: #212529;
  background-color: #e4e4e4;
  border-color: #dedede;
  box-shadow: 0 0 0 0.2rem rgba(215, 216, 216, 0.5);
}
.btn-offwhite.disabled, .btn-offwhite:disabled {
  color: #212529;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-offwhite:not(:disabled):not(.disabled):active, .btn-offwhite:not(:disabled):not(.disabled).active, .show > .btn-offwhite.dropdown-toggle {
  color: #212529;
  background-color: #dedede;
  border-color: #d7d7d7;
}
.btn-offwhite:not(:disabled):not(.disabled):active:focus, .btn-offwhite:not(:disabled):not(.disabled).active:focus, .show > .btn-offwhite.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(215, 216, 216, 0.5);
}

.btn-tf-primary {
  color: white;
  background-color: #10147e;
  border-color: #10147e;
}
.btn-tf-primary:hover {
  color: white;
  background-color: #0c0f5c;
  border-color: #0a0d51;
}
.btn-tf-primary:focus, .btn-tf-primary.focus {
  color: white;
  background-color: #0c0f5c;
  border-color: #0a0d51;
  box-shadow: 0 0 0 0.2rem rgba(52, 55, 145, 0.5);
}
.btn-tf-primary.disabled, .btn-tf-primary:disabled {
  color: white;
  background-color: #10147e;
  border-color: #10147e;
}
.btn-tf-primary:not(:disabled):not(.disabled):active, .btn-tf-primary:not(:disabled):not(.disabled).active, .show > .btn-tf-primary.dropdown-toggle {
  color: white;
  background-color: #0a0d51;
  border-color: #090b45;
}
.btn-tf-primary:not(:disabled):not(.disabled):active:focus, .btn-tf-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 55, 145, 0.5);
}

.btn-tf-primary-light {
  color: white;
  background-color: #285d9a;
  border-color: #285d9a;
}
.btn-tf-primary-light:hover {
  color: white;
  background-color: #204b7c;
  border-color: #1d4572;
}
.btn-tf-primary-light:focus, .btn-tf-primary-light.focus {
  color: white;
  background-color: #204b7c;
  border-color: #1d4572;
  box-shadow: 0 0 0 0.2rem rgba(72, 117, 169, 0.5);
}
.btn-tf-primary-light.disabled, .btn-tf-primary-light:disabled {
  color: white;
  background-color: #285d9a;
  border-color: #285d9a;
}
.btn-tf-primary-light:not(:disabled):not(.disabled):active, .btn-tf-primary-light:not(:disabled):not(.disabled).active, .show > .btn-tf-primary-light.dropdown-toggle {
  color: white;
  background-color: #1d4572;
  border-color: #1b3e67;
}
.btn-tf-primary-light:not(:disabled):not(.disabled):active:focus, .btn-tf-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-primary-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 117, 169, 0.5);
}

.btn-tf-accent-grey {
  color: white;
  background-color: #555555;
  border-color: #555555;
}
.btn-tf-accent-grey:hover {
  color: white;
  background-color: #424242;
  border-color: #3c3c3c;
}
.btn-tf-accent-grey:focus, .btn-tf-accent-grey.focus {
  color: white;
  background-color: #424242;
  border-color: #3c3c3c;
  box-shadow: 0 0 0 0.2rem rgba(111, 111, 111, 0.5);
}
.btn-tf-accent-grey.disabled, .btn-tf-accent-grey:disabled {
  color: white;
  background-color: #555555;
  border-color: #555555;
}
.btn-tf-accent-grey:not(:disabled):not(.disabled):active, .btn-tf-accent-grey:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-grey.dropdown-toggle {
  color: white;
  background-color: #3c3c3c;
  border-color: #353535;
}
.btn-tf-accent-grey:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 111, 111, 0.5);
}

.btn-tf-accent-lightgrey {
  color: #212529;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-tf-accent-lightgrey:hover {
  color: #212529;
  background-color: #b9b9b9;
  border-color: #b3b3b3;
}
.btn-tf-accent-lightgrey:focus, .btn-tf-accent-lightgrey.focus {
  color: #212529;
  background-color: #b9b9b9;
  border-color: #b3b3b3;
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}
.btn-tf-accent-lightgrey.disabled, .btn-tf-accent-lightgrey:disabled {
  color: #212529;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-tf-accent-lightgrey:not(:disabled):not(.disabled):active, .btn-tf-accent-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-lightgrey.dropdown-toggle {
  color: #212529;
  background-color: #b3b3b3;
  border-color: #acacac;
}
.btn-tf-accent-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-lightgrey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(178, 179, 180, 0.5);
}

.btn-tf-accent-lightblue {
  color: #212529;
  background-color: #96c9fd;
  border-color: #96c9fd;
}
.btn-tf-accent-lightblue:hover {
  color: #212529;
  background-color: #70b6fc;
  border-color: #64affc;
}
.btn-tf-accent-lightblue:focus, .btn-tf-accent-lightblue.focus {
  color: #212529;
  background-color: #70b6fc;
  border-color: #64affc;
  box-shadow: 0 0 0 0.2rem rgba(132, 176, 221, 0.5);
}
.btn-tf-accent-lightblue.disabled, .btn-tf-accent-lightblue:disabled {
  color: #212529;
  background-color: #96c9fd;
  border-color: #96c9fd;
}
.btn-tf-accent-lightblue:not(:disabled):not(.disabled):active, .btn-tf-accent-lightblue:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-lightblue.dropdown-toggle {
  color: #212529;
  background-color: #64affc;
  border-color: #57a9fc;
}
.btn-tf-accent-lightblue:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-lightblue:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-lightblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(132, 176, 221, 0.5);
}

.btn-tf-accent-midblue {
  color: white;
  background-color: #006db4;
  border-color: #006db4;
}
.btn-tf-accent-midblue:hover {
  color: white;
  background-color: #00568e;
  border-color: #004e81;
}
.btn-tf-accent-midblue:focus, .btn-tf-accent-midblue.focus {
  color: white;
  background-color: #00568e;
  border-color: #004e81;
  box-shadow: 0 0 0 0.2rem rgba(38, 131, 191, 0.5);
}
.btn-tf-accent-midblue.disabled, .btn-tf-accent-midblue:disabled {
  color: white;
  background-color: #006db4;
  border-color: #006db4;
}
.btn-tf-accent-midblue:not(:disabled):not(.disabled):active, .btn-tf-accent-midblue:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-midblue.dropdown-toggle {
  color: white;
  background-color: #004e81;
  border-color: #004674;
}
.btn-tf-accent-midblue:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-midblue:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-midblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 131, 191, 0.5);
}

.btn-tf-accent-darkblue {
  color: white;
  background-color: #262c4d;
  border-color: #262c4d;
}
.btn-tf-accent-darkblue:hover {
  color: white;
  background-color: #191d33;
  border-color: #15182b;
}
.btn-tf-accent-darkblue:focus, .btn-tf-accent-darkblue.focus {
  color: white;
  background-color: #191d33;
  border-color: #15182b;
  box-shadow: 0 0 0 0.2rem rgba(71, 76, 104, 0.5);
}
.btn-tf-accent-darkblue.disabled, .btn-tf-accent-darkblue:disabled {
  color: white;
  background-color: #262c4d;
  border-color: #262c4d;
}
.btn-tf-accent-darkblue:not(:disabled):not(.disabled):active, .btn-tf-accent-darkblue:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-darkblue.dropdown-toggle {
  color: white;
  background-color: #15182b;
  border-color: #111422;
}
.btn-tf-accent-darkblue:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-darkblue:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-darkblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(71, 76, 104, 0.5);
}

.btn-tf-accent-slateblue {
  color: white;
  background-color: #5b7a8f;
  border-color: #5b7a8f;
}
.btn-tf-accent-slateblue:hover {
  color: white;
  background-color: #4c6678;
  border-color: #475f70;
}
.btn-tf-accent-slateblue:focus, .btn-tf-accent-slateblue.focus {
  color: white;
  background-color: #4c6678;
  border-color: #475f70;
  box-shadow: 0 0 0 0.2rem rgba(116, 142, 160, 0.5);
}
.btn-tf-accent-slateblue.disabled, .btn-tf-accent-slateblue:disabled {
  color: white;
  background-color: #5b7a8f;
  border-color: #5b7a8f;
}
.btn-tf-accent-slateblue:not(:disabled):not(.disabled):active, .btn-tf-accent-slateblue:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-slateblue.dropdown-toggle {
  color: white;
  background-color: #475f70;
  border-color: #425968;
}
.btn-tf-accent-slateblue:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-slateblue:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-slateblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(116, 142, 160, 0.5);
}

.btn-tf-accent-turquoise {
  color: white;
  background-color: #448391;
  border-color: #448391;
}
.btn-tf-accent-turquoise:hover {
  color: white;
  background-color: #386b77;
  border-color: #34646e;
}
.btn-tf-accent-turquoise:focus, .btn-tf-accent-turquoise.focus {
  color: white;
  background-color: #386b77;
  border-color: #34646e;
  box-shadow: 0 0 0 0.2rem rgba(96, 150, 162, 0.5);
}
.btn-tf-accent-turquoise.disabled, .btn-tf-accent-turquoise:disabled {
  color: white;
  background-color: #448391;
  border-color: #448391;
}
.btn-tf-accent-turquoise:not(:disabled):not(.disabled):active, .btn-tf-accent-turquoise:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-turquoise.dropdown-toggle {
  color: white;
  background-color: #34646e;
  border-color: #305c66;
}
.btn-tf-accent-turquoise:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-turquoise:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-turquoise.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(96, 150, 162, 0.5);
}

.btn-tf-accent-white {
  color: #212529;
  background-color: #f2f3f8;
  border-color: #f2f3f8;
}
.btn-tf-accent-white:hover {
  color: #212529;
  background-color: #d9dceb;
  border-color: #d1d4e6;
}
.btn-tf-accent-white:focus, .btn-tf-accent-white.focus {
  color: #212529;
  background-color: #d9dceb;
  border-color: #d1d4e6;
  box-shadow: 0 0 0 0.2rem rgba(211, 212, 217, 0.5);
}
.btn-tf-accent-white.disabled, .btn-tf-accent-white:disabled {
  color: #212529;
  background-color: #f2f3f8;
  border-color: #f2f3f8;
}
.btn-tf-accent-white:not(:disabled):not(.disabled):active, .btn-tf-accent-white:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-white.dropdown-toggle {
  color: #212529;
  background-color: #d1d4e6;
  border-color: #c9cde2;
}
.btn-tf-accent-white:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-white:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 212, 217, 0.5);
}

.btn-tf-accent-lightorange {
  color: #212529;
  background-color: #fe7b51;
  border-color: #fe7b51;
}
.btn-tf-accent-lightorange:hover {
  color: white;
  background-color: #fe5e2b;
  border-color: #fe551e;
}
.btn-tf-accent-lightorange:focus, .btn-tf-accent-lightorange.focus {
  color: white;
  background-color: #fe5e2b;
  border-color: #fe551e;
  box-shadow: 0 0 0 0.2rem rgba(221, 110, 75, 0.5);
}
.btn-tf-accent-lightorange.disabled, .btn-tf-accent-lightorange:disabled {
  color: #212529;
  background-color: #fe7b51;
  border-color: #fe7b51;
}
.btn-tf-accent-lightorange:not(:disabled):not(.disabled):active, .btn-tf-accent-lightorange:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-lightorange.dropdown-toggle {
  color: white;
  background-color: #fe551e;
  border-color: #fe4b12;
}
.btn-tf-accent-lightorange:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-lightorange:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-lightorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 110, 75, 0.5);
}

.btn-tf-accent-midorange {
  color: white;
  background-color: #f2673c;
  border-color: #f2673c;
}
.btn-tf-accent-midorange:hover {
  color: white;
  background-color: #f04b18;
  border-color: #eb4410;
}
.btn-tf-accent-midorange:focus, .btn-tf-accent-midorange.focus {
  color: white;
  background-color: #f04b18;
  border-color: #eb4410;
  box-shadow: 0 0 0 0.2rem rgba(244, 126, 89, 0.5);
}
.btn-tf-accent-midorange.disabled, .btn-tf-accent-midorange:disabled {
  color: white;
  background-color: #f2673c;
  border-color: #f2673c;
}
.btn-tf-accent-midorange:not(:disabled):not(.disabled):active, .btn-tf-accent-midorange:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-midorange.dropdown-toggle {
  color: white;
  background-color: #eb4410;
  border-color: #df400f;
}
.btn-tf-accent-midorange:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-midorange:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-midorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(244, 126, 89, 0.5);
}

.btn-tf-accent-darkorange {
  color: white;
  background-color: #d44922;
  border-color: #d44922;
}
.btn-tf-accent-darkorange:hover {
  color: white;
  background-color: #b33e1d;
  border-color: #a83a1b;
}
.btn-tf-accent-darkorange:focus, .btn-tf-accent-darkorange.focus {
  color: white;
  background-color: #b33e1d;
  border-color: #a83a1b;
  box-shadow: 0 0 0 0.2rem rgba(218, 100, 67, 0.5);
}
.btn-tf-accent-darkorange.disabled, .btn-tf-accent-darkorange:disabled {
  color: white;
  background-color: #d44922;
  border-color: #d44922;
}
.btn-tf-accent-darkorange:not(:disabled):not(.disabled):active, .btn-tf-accent-darkorange:not(:disabled):not(.disabled).active, .show > .btn-tf-accent-darkorange.dropdown-toggle {
  color: white;
  background-color: #a83a1b;
  border-color: #9d3619;
}
.btn-tf-accent-darkorange:not(:disabled):not(.disabled):active:focus, .btn-tf-accent-darkorange:not(:disabled):not(.disabled).active:focus, .show > .btn-tf-accent-darkorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 100, 67, 0.5);
}

.btn-outline-primary {
  color: #10137d;
  border-color: #10137d;
}
.btn-outline-primary:hover {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #10137d;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: white;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: white;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: white;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: white;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: white;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: white;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: white;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: white;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: white;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: white;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-facebook {
  color: #3A559F;
  border-color: #3A559F;
}
.btn-outline-facebook:hover {
  color: white;
  background-color: #3A559F;
  border-color: #3A559F;
}
.btn-outline-facebook:focus, .btn-outline-facebook.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 85, 159, 0.5);
}
.btn-outline-facebook.disabled, .btn-outline-facebook:disabled {
  color: #3A559F;
  background-color: transparent;
}
.btn-outline-facebook:not(:disabled):not(.disabled):active, .btn-outline-facebook:not(:disabled):not(.disabled).active, .show > .btn-outline-facebook.dropdown-toggle {
  color: white;
  background-color: #3A559F;
  border-color: #3A559F;
}
.btn-outline-facebook:not(:disabled):not(.disabled):active:focus, .btn-outline-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 85, 159, 0.5);
}

.btn-outline-twitter {
  color: #50ABF1;
  border-color: #50ABF1;
}
.btn-outline-twitter:hover {
  color: #212529;
  background-color: #50ABF1;
  border-color: #50ABF1;
}
.btn-outline-twitter:focus, .btn-outline-twitter.focus {
  box-shadow: 0 0 0 0.2rem rgba(80, 171, 241, 0.5);
}
.btn-outline-twitter.disabled, .btn-outline-twitter:disabled {
  color: #50ABF1;
  background-color: transparent;
}
.btn-outline-twitter:not(:disabled):not(.disabled):active, .btn-outline-twitter:not(:disabled):not(.disabled).active, .show > .btn-outline-twitter.dropdown-toggle {
  color: #212529;
  background-color: #50ABF1;
  border-color: #50ABF1;
}
.btn-outline-twitter:not(:disabled):not(.disabled):active:focus, .btn-outline-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-twitter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(80, 171, 241, 0.5);
}

.btn-outline-youtube {
  color: #a90000;
  border-color: #a90000;
}
.btn-outline-youtube:hover {
  color: white;
  background-color: #a90000;
  border-color: #a90000;
}
.btn-outline-youtube:focus, .btn-outline-youtube.focus {
  box-shadow: 0 0 0 0.2rem rgba(169, 0, 0, 0.5);
}
.btn-outline-youtube.disabled, .btn-outline-youtube:disabled {
  color: #a90000;
  background-color: transparent;
}
.btn-outline-youtube:not(:disabled):not(.disabled):active, .btn-outline-youtube:not(:disabled):not(.disabled).active, .show > .btn-outline-youtube.dropdown-toggle {
  color: white;
  background-color: #a90000;
  border-color: #a90000;
}
.btn-outline-youtube:not(:disabled):not(.disabled):active:focus, .btn-outline-youtube:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-youtube.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(169, 0, 0, 0.5);
}

.btn-outline-linkedin {
  color: #0077B5;
  border-color: #0077B5;
}
.btn-outline-linkedin:hover {
  color: white;
  background-color: #0077B5;
  border-color: #0077B5;
}
.btn-outline-linkedin:focus, .btn-outline-linkedin.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 181, 0.5);
}
.btn-outline-linkedin.disabled, .btn-outline-linkedin:disabled {
  color: #0077B5;
  background-color: transparent;
}
.btn-outline-linkedin:not(:disabled):not(.disabled):active, .btn-outline-linkedin:not(:disabled):not(.disabled).active, .show > .btn-outline-linkedin.dropdown-toggle {
  color: white;
  background-color: #0077B5;
  border-color: #0077B5;
}
.btn-outline-linkedin:not(:disabled):not(.disabled):active:focus, .btn-outline-linkedin:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-linkedin.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 181, 0.5);
}

.btn-outline-gplus {
  color: #DD4B39;
  border-color: #DD4B39;
}
.btn-outline-gplus:hover {
  color: white;
  background-color: #DD4B39;
  border-color: #DD4B39;
}
.btn-outline-gplus:focus, .btn-outline-gplus.focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, 0.5);
}
.btn-outline-gplus.disabled, .btn-outline-gplus:disabled {
  color: #DD4B39;
  background-color: transparent;
}
.btn-outline-gplus:not(:disabled):not(.disabled):active, .btn-outline-gplus:not(:disabled):not(.disabled).active, .show > .btn-outline-gplus.dropdown-toggle {
  color: white;
  background-color: #DD4B39;
  border-color: #DD4B39;
}
.btn-outline-gplus:not(:disabled):not(.disabled):active:focus, .btn-outline-gplus:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-gplus.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, 0.5);
}

.btn-outline-alert-red {
  color: #ca1e47;
  border-color: #ca1e47;
}
.btn-outline-alert-red:hover {
  color: white;
  background-color: #ca1e47;
  border-color: #ca1e47;
}
.btn-outline-alert-red:focus, .btn-outline-alert-red.focus {
  box-shadow: 0 0 0 0.2rem rgba(202, 30, 71, 0.5);
}
.btn-outline-alert-red.disabled, .btn-outline-alert-red:disabled {
  color: #ca1e47;
  background-color: transparent;
}
.btn-outline-alert-red:not(:disabled):not(.disabled):active, .btn-outline-alert-red:not(:disabled):not(.disabled).active, .show > .btn-outline-alert-red.dropdown-toggle {
  color: white;
  background-color: #ca1e47;
  border-color: #ca1e47;
}
.btn-outline-alert-red:not(:disabled):not(.disabled):active:focus, .btn-outline-alert-red:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-alert-red.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(202, 30, 71, 0.5);
}

.btn-outline-alert-amber {
  color: #f29500;
  border-color: #f29500;
}
.btn-outline-alert-amber:hover {
  color: #212529;
  background-color: #f29500;
  border-color: #f29500;
}
.btn-outline-alert-amber:focus, .btn-outline-alert-amber.focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 149, 0, 0.5);
}
.btn-outline-alert-amber.disabled, .btn-outline-alert-amber:disabled {
  color: #f29500;
  background-color: transparent;
}
.btn-outline-alert-amber:not(:disabled):not(.disabled):active, .btn-outline-alert-amber:not(:disabled):not(.disabled).active, .show > .btn-outline-alert-amber.dropdown-toggle {
  color: #212529;
  background-color: #f29500;
  border-color: #f29500;
}
.btn-outline-alert-amber:not(:disabled):not(.disabled):active:focus, .btn-outline-alert-amber:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-alert-amber.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 149, 0, 0.5);
}

.btn-outline-alert-green {
  color: #58ad60;
  border-color: #58ad60;
}
.btn-outline-alert-green:hover {
  color: white;
  background-color: #58ad60;
  border-color: #58ad60;
}
.btn-outline-alert-green:focus, .btn-outline-alert-green.focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 173, 96, 0.5);
}
.btn-outline-alert-green.disabled, .btn-outline-alert-green:disabled {
  color: #58ad60;
  background-color: transparent;
}
.btn-outline-alert-green:not(:disabled):not(.disabled):active, .btn-outline-alert-green:not(:disabled):not(.disabled).active, .show > .btn-outline-alert-green.dropdown-toggle {
  color: white;
  background-color: #58ad60;
  border-color: #58ad60;
}
.btn-outline-alert-green:not(:disabled):not(.disabled):active:focus, .btn-outline-alert-green:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-alert-green.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 173, 96, 0.5);
}

.btn-outline-black {
  color: #000;
  border-color: #000;
}
.btn-outline-black:hover {
  color: white;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:focus, .btn-outline-black.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}
.btn-outline-black.disabled, .btn-outline-black:disabled {
  color: #000;
  background-color: transparent;
}
.btn-outline-black:not(:disabled):not(.disabled):active, .btn-outline-black:not(:disabled):not(.disabled).active, .show > .btn-outline-black.dropdown-toggle {
  color: white;
  background-color: #000;
  border-color: #000;
}
.btn-outline-black:not(:disabled):not(.disabled):active:focus, .btn-outline-black:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-black.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-white:focus, .btn-outline-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white.disabled, .btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}
.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active, .show > .btn-outline-white.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-grey {
  color: #ccc;
  border-color: #ccc;
}
.btn-outline-grey:hover {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-outline-grey:focus, .btn-outline-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-outline-grey.disabled, .btn-outline-grey:disabled {
  color: #ccc;
  background-color: transparent;
}
.btn-outline-grey:not(:disabled):not(.disabled):active, .btn-outline-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-grey.dropdown-toggle {
  color: #212529;
  background-color: #ccc;
  border-color: #ccc;
}
.btn-outline-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.btn-outline-printblack {
  color: #333;
  border-color: #333;
}
.btn-outline-printblack:hover {
  color: white;
  background-color: #333;
  border-color: #333;
}
.btn-outline-printblack:focus, .btn-outline-printblack.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-outline-printblack.disabled, .btn-outline-printblack:disabled {
  color: #333;
  background-color: transparent;
}
.btn-outline-printblack:not(:disabled):not(.disabled):active, .btn-outline-printblack:not(:disabled):not(.disabled).active, .show > .btn-outline-printblack.dropdown-toggle {
  color: white;
  background-color: #333;
  border-color: #333;
}
.btn-outline-printblack:not(:disabled):not(.disabled):active:focus, .btn-outline-printblack:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-printblack.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.btn-outline-defaultblue {
  color: #10137d;
  border-color: #10137d;
}
.btn-outline-defaultblue:hover {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-outline-defaultblue:focus, .btn-outline-defaultblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}
.btn-outline-defaultblue.disabled, .btn-outline-defaultblue:disabled {
  color: #10137d;
  background-color: transparent;
}
.btn-outline-defaultblue:not(:disabled):not(.disabled):active, .btn-outline-defaultblue:not(:disabled):not(.disabled).active, .show > .btn-outline-defaultblue.dropdown-toggle {
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.btn-outline-defaultblue:not(:disabled):not(.disabled):active:focus, .btn-outline-defaultblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-defaultblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}

.btn-outline-offwhite {
  color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-offwhite:hover {
  color: #212529;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-offwhite:focus, .btn-outline-offwhite.focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}
.btn-outline-offwhite.disabled, .btn-outline-offwhite:disabled {
  color: #f7f7f7;
  background-color: transparent;
}
.btn-outline-offwhite:not(:disabled):not(.disabled):active, .btn-outline-offwhite:not(:disabled):not(.disabled).active, .show > .btn-outline-offwhite.dropdown-toggle {
  color: #212529;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.btn-outline-offwhite:not(:disabled):not(.disabled):active:focus, .btn-outline-offwhite:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-offwhite.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}

.btn-outline-tf-primary {
  color: #10147e;
  border-color: #10147e;
}
.btn-outline-tf-primary:hover {
  color: white;
  background-color: #10147e;
  border-color: #10147e;
}
.btn-outline-tf-primary:focus, .btn-outline-tf-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 20, 126, 0.5);
}
.btn-outline-tf-primary.disabled, .btn-outline-tf-primary:disabled {
  color: #10147e;
  background-color: transparent;
}
.btn-outline-tf-primary:not(:disabled):not(.disabled):active, .btn-outline-tf-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-primary.dropdown-toggle {
  color: white;
  background-color: #10147e;
  border-color: #10147e;
}
.btn-outline-tf-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(16, 20, 126, 0.5);
}

.btn-outline-tf-primary-light {
  color: #285d9a;
  border-color: #285d9a;
}
.btn-outline-tf-primary-light:hover {
  color: white;
  background-color: #285d9a;
  border-color: #285d9a;
}
.btn-outline-tf-primary-light:focus, .btn-outline-tf-primary-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 93, 154, 0.5);
}
.btn-outline-tf-primary-light.disabled, .btn-outline-tf-primary-light:disabled {
  color: #285d9a;
  background-color: transparent;
}
.btn-outline-tf-primary-light:not(:disabled):not(.disabled):active, .btn-outline-tf-primary-light:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-primary-light.dropdown-toggle {
  color: white;
  background-color: #285d9a;
  border-color: #285d9a;
}
.btn-outline-tf-primary-light:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-primary-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 93, 154, 0.5);
}

.btn-outline-tf-accent-grey {
  color: #555555;
  border-color: #555555;
}
.btn-outline-tf-accent-grey:hover {
  color: white;
  background-color: #555555;
  border-color: #555555;
}
.btn-outline-tf-accent-grey:focus, .btn-outline-tf-accent-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 85, 85, 0.5);
}
.btn-outline-tf-accent-grey.disabled, .btn-outline-tf-accent-grey:disabled {
  color: #555555;
  background-color: transparent;
}
.btn-outline-tf-accent-grey:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-grey.dropdown-toggle {
  color: white;
  background-color: #555555;
  border-color: #555555;
}
.btn-outline-tf-accent-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 85, 85, 0.5);
}

.btn-outline-tf-accent-lightgrey {
  color: #cccccc;
  border-color: #cccccc;
}
.btn-outline-tf-accent-lightgrey:hover {
  color: #212529;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-outline-tf-accent-lightgrey:focus, .btn-outline-tf-accent-lightgrey.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}
.btn-outline-tf-accent-lightgrey.disabled, .btn-outline-tf-accent-lightgrey:disabled {
  color: #cccccc;
  background-color: transparent;
}
.btn-outline-tf-accent-lightgrey:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-lightgrey.dropdown-toggle {
  color: #212529;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-outline-tf-accent-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-lightgrey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.btn-outline-tf-accent-lightblue {
  color: #96c9fd;
  border-color: #96c9fd;
}
.btn-outline-tf-accent-lightblue:hover {
  color: #212529;
  background-color: #96c9fd;
  border-color: #96c9fd;
}
.btn-outline-tf-accent-lightblue:focus, .btn-outline-tf-accent-lightblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(150, 201, 253, 0.5);
}
.btn-outline-tf-accent-lightblue.disabled, .btn-outline-tf-accent-lightblue:disabled {
  color: #96c9fd;
  background-color: transparent;
}
.btn-outline-tf-accent-lightblue:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-lightblue:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-lightblue.dropdown-toggle {
  color: #212529;
  background-color: #96c9fd;
  border-color: #96c9fd;
}
.btn-outline-tf-accent-lightblue:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-lightblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-lightblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(150, 201, 253, 0.5);
}

.btn-outline-tf-accent-midblue {
  color: #006db4;
  border-color: #006db4;
}
.btn-outline-tf-accent-midblue:hover {
  color: white;
  background-color: #006db4;
  border-color: #006db4;
}
.btn-outline-tf-accent-midblue:focus, .btn-outline-tf-accent-midblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 109, 180, 0.5);
}
.btn-outline-tf-accent-midblue.disabled, .btn-outline-tf-accent-midblue:disabled {
  color: #006db4;
  background-color: transparent;
}
.btn-outline-tf-accent-midblue:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-midblue:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-midblue.dropdown-toggle {
  color: white;
  background-color: #006db4;
  border-color: #006db4;
}
.btn-outline-tf-accent-midblue:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-midblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-midblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 109, 180, 0.5);
}

.btn-outline-tf-accent-darkblue {
  color: #262c4d;
  border-color: #262c4d;
}
.btn-outline-tf-accent-darkblue:hover {
  color: white;
  background-color: #262c4d;
  border-color: #262c4d;
}
.btn-outline-tf-accent-darkblue:focus, .btn-outline-tf-accent-darkblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 44, 77, 0.5);
}
.btn-outline-tf-accent-darkblue.disabled, .btn-outline-tf-accent-darkblue:disabled {
  color: #262c4d;
  background-color: transparent;
}
.btn-outline-tf-accent-darkblue:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-darkblue:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-darkblue.dropdown-toggle {
  color: white;
  background-color: #262c4d;
  border-color: #262c4d;
}
.btn-outline-tf-accent-darkblue:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-darkblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-darkblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 44, 77, 0.5);
}

.btn-outline-tf-accent-slateblue {
  color: #5b7a8f;
  border-color: #5b7a8f;
}
.btn-outline-tf-accent-slateblue:hover {
  color: white;
  background-color: #5b7a8f;
  border-color: #5b7a8f;
}
.btn-outline-tf-accent-slateblue:focus, .btn-outline-tf-accent-slateblue.focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 122, 143, 0.5);
}
.btn-outline-tf-accent-slateblue.disabled, .btn-outline-tf-accent-slateblue:disabled {
  color: #5b7a8f;
  background-color: transparent;
}
.btn-outline-tf-accent-slateblue:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-slateblue:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-slateblue.dropdown-toggle {
  color: white;
  background-color: #5b7a8f;
  border-color: #5b7a8f;
}
.btn-outline-tf-accent-slateblue:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-slateblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-slateblue.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 122, 143, 0.5);
}

.btn-outline-tf-accent-turquoise {
  color: #448391;
  border-color: #448391;
}
.btn-outline-tf-accent-turquoise:hover {
  color: white;
  background-color: #448391;
  border-color: #448391;
}
.btn-outline-tf-accent-turquoise:focus, .btn-outline-tf-accent-turquoise.focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 131, 145, 0.5);
}
.btn-outline-tf-accent-turquoise.disabled, .btn-outline-tf-accent-turquoise:disabled {
  color: #448391;
  background-color: transparent;
}
.btn-outline-tf-accent-turquoise:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-turquoise:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-turquoise.dropdown-toggle {
  color: white;
  background-color: #448391;
  border-color: #448391;
}
.btn-outline-tf-accent-turquoise:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-turquoise:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-turquoise.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(68, 131, 145, 0.5);
}

.btn-outline-tf-accent-white {
  color: #f2f3f8;
  border-color: #f2f3f8;
}
.btn-outline-tf-accent-white:hover {
  color: #212529;
  background-color: #f2f3f8;
  border-color: #f2f3f8;
}
.btn-outline-tf-accent-white:focus, .btn-outline-tf-accent-white.focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 243, 248, 0.5);
}
.btn-outline-tf-accent-white.disabled, .btn-outline-tf-accent-white:disabled {
  color: #f2f3f8;
  background-color: transparent;
}
.btn-outline-tf-accent-white:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-white:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-white.dropdown-toggle {
  color: #212529;
  background-color: #f2f3f8;
  border-color: #f2f3f8;
}
.btn-outline-tf-accent-white:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-white:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 243, 248, 0.5);
}

.btn-outline-tf-accent-lightorange {
  color: #fe7b51;
  border-color: #fe7b51;
}
.btn-outline-tf-accent-lightorange:hover {
  color: #212529;
  background-color: #fe7b51;
  border-color: #fe7b51;
}
.btn-outline-tf-accent-lightorange:focus, .btn-outline-tf-accent-lightorange.focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 123, 81, 0.5);
}
.btn-outline-tf-accent-lightorange.disabled, .btn-outline-tf-accent-lightorange:disabled {
  color: #fe7b51;
  background-color: transparent;
}
.btn-outline-tf-accent-lightorange:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-lightorange:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-lightorange.dropdown-toggle {
  color: #212529;
  background-color: #fe7b51;
  border-color: #fe7b51;
}
.btn-outline-tf-accent-lightorange:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-lightorange:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-lightorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(254, 123, 81, 0.5);
}

.btn-outline-tf-accent-midorange {
  color: #f2673c;
  border-color: #f2673c;
}
.btn-outline-tf-accent-midorange:hover {
  color: white;
  background-color: #f2673c;
  border-color: #f2673c;
}
.btn-outline-tf-accent-midorange:focus, .btn-outline-tf-accent-midorange.focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 103, 60, 0.5);
}
.btn-outline-tf-accent-midorange.disabled, .btn-outline-tf-accent-midorange:disabled {
  color: #f2673c;
  background-color: transparent;
}
.btn-outline-tf-accent-midorange:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-midorange:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-midorange.dropdown-toggle {
  color: white;
  background-color: #f2673c;
  border-color: #f2673c;
}
.btn-outline-tf-accent-midorange:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-midorange:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-midorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 103, 60, 0.5);
}

.btn-outline-tf-accent-darkorange {
  color: #d44922;
  border-color: #d44922;
}
.btn-outline-tf-accent-darkorange:hover {
  color: white;
  background-color: #d44922;
  border-color: #d44922;
}
.btn-outline-tf-accent-darkorange:focus, .btn-outline-tf-accent-darkorange.focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 73, 34, 0.5);
}
.btn-outline-tf-accent-darkorange.disabled, .btn-outline-tf-accent-darkorange:disabled {
  color: #d44922;
  background-color: transparent;
}
.btn-outline-tf-accent-darkorange:not(:disabled):not(.disabled):active, .btn-outline-tf-accent-darkorange:not(:disabled):not(.disabled).active, .show > .btn-outline-tf-accent-darkorange.dropdown-toggle {
  color: white;
  background-color: #d44922;
  border-color: #d44922;
}
.btn-outline-tf-accent-darkorange:not(:disabled):not(.disabled):active:focus, .btn-outline-tf-accent-darkorange:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tf-accent-darkorange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 73, 34, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #10137d;
  text-decoration: none;
}
.btn-link:hover {
  color: #070939;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > button,
.btn-group-lg > input[type=button],
.btn-group-lg > input[type=reset],
.btn-group-lg > input[type=submit] {
  padding: 0.5rem 1rem;
  font-size: 1.15rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > button,
.btn-group-sm > input[type=button],
.btn-group-sm > input[type=reset],
.btn-group-sm > input[type=submit] {
  padding: 0.25rem 0.5rem;
  font-size: 0.805rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.92rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xx-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xx-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: white;
  text-decoration: none;
  background-color: #10137d;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.805rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .btn-group > button,
.btn-group > input[type=button],
.btn-group > input[type=reset],
.btn-group > input[type=submit],
.btn-group-vertical > .btn,
.btn-group-vertical > button,
.btn-group-vertical > input[type=button],
.btn-group-vertical > input[type=reset],
.btn-group-vertical > input[type=submit] {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover, .btn-group > button:hover,
.btn-group > input[type=button]:hover,
.btn-group > input[type=reset]:hover,
.btn-group > input[type=submit]:hover,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > button:hover,
.btn-group-vertical > input[type=button]:hover,
.btn-group-vertical > input[type=reset]:hover,
.btn-group-vertical > input[type=submit]:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > button:focus,
.btn-group > input[type=button]:focus,
.btn-group > input[type=reset]:focus,
.btn-group > input[type=submit]:focus, .btn-group > .btn:active, .btn-group > button:active,
.btn-group > input[type=button]:active,
.btn-group > input[type=reset]:active,
.btn-group > input[type=submit]:active, .btn-group > .btn.active, .btn-group > button.active,
.btn-group > input.active[type=button],
.btn-group > input.active[type=reset],
.btn-group > input.active[type=submit],
.btn-group-vertical > .btn:focus,
.btn-group-vertical > button:focus,
.btn-group-vertical > input[type=button]:focus,
.btn-group-vertical > input[type=reset]:focus,
.btn-group-vertical > input[type=submit]:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > button:active,
.btn-group-vertical > input[type=button]:active,
.btn-group-vertical > input[type=reset]:active,
.btn-group-vertical > input[type=submit]:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > button.active,
.btn-group-vertical > input.active[type=button],
.btn-group-vertical > input.active[type=reset],
.btn-group-vertical > input.active[type=submit] {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .btn-group > button:not(:first-child),
.btn-group > input[type=button]:not(:first-child),
.btn-group > input[type=reset]:not(:first-child),
.btn-group > input[type=submit]:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > button:not(:last-child):not(.dropdown-toggle),
.btn-group > input[type=button]:not(:last-child):not(.dropdown-toggle),
.btn-group > input[type=reset]:not(:last-child):not(.dropdown-toggle),
.btn-group > input[type=submit]:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > button,
.btn-group > .btn-group:not(:last-child) > input[type=button],
.btn-group > .btn-group:not(:last-child) > input[type=reset],
.btn-group > .btn-group:not(:last-child) > input[type=submit] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), .btn-group > button:not(:first-child),
.btn-group > input[type=button]:not(:first-child),
.btn-group > input[type=reset]:not(:first-child),
.btn-group > input[type=submit]:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > button,
.btn-group > .btn-group:not(:first-child) > input[type=button],
.btn-group > .btn-group:not(:first-child) > input[type=reset],
.btn-group > .btn-group:not(:first-child) > input[type=submit] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > button + .dropdown-toggle-split,
.btn-group-sm > input[type=button] + .dropdown-toggle-split,
.btn-group-sm > input[type=reset] + .dropdown-toggle-split,
.btn-group-sm > input[type=submit] + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > button + .dropdown-toggle-split,
.btn-group-lg > input[type=button] + .dropdown-toggle-split,
.btn-group-lg > input[type=reset] + .dropdown-toggle-split,
.btn-group-lg > input[type=submit] + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .btn-group-vertical > button,
.btn-group-vertical > input[type=button],
.btn-group-vertical > input[type=reset],
.btn-group-vertical > input[type=submit],
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > button:not(:first-child),
.btn-group-vertical > input[type=button]:not(:first-child),
.btn-group-vertical > input[type=reset]:not(:first-child),
.btn-group-vertical > input[type=submit]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > input[type=button]:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > input[type=reset]:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > input[type=submit]:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:last-child) > button,
.btn-group-vertical > .btn-group:not(:last-child) > input[type=button],
.btn-group-vertical > .btn-group:not(:last-child) > input[type=reset],
.btn-group-vertical > .btn-group:not(:last-child) > input[type=submit] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > button:not(:first-child),
.btn-group-vertical > input[type=button]:not(:first-child),
.btn-group-vertical > input[type=reset]:not(:first-child),
.btn-group-vertical > input[type=submit]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child) > button,
.btn-group-vertical > .btn-group:not(:first-child) > input[type=button],
.btn-group-vertical > .btn-group:not(:first-child) > input[type=reset],
.btn-group-vertical > .btn-group:not(:first-child) > input[type=submit] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .btn-group-toggle > button,
.btn-group-toggle > input[type=button],
.btn-group-toggle > input[type=reset],
.btn-group-toggle > input[type=submit],
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > button,
.btn-group-toggle > .btn-group > input[type=button],
.btn-group-toggle > .btn-group > input[type=reset],
.btn-group-toggle > .btn-group > input[type=submit] {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .btn-group-toggle > button input[type=radio],
.btn-group-toggle > input[type=button] input[type=radio],
.btn-group-toggle > input[type=reset] input[type=radio],
.btn-group-toggle > input[type=submit] input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > button input[type=checkbox],
.btn-group-toggle > input[type=button] input[type=checkbox],
.btn-group-toggle > input[type=reset] input[type=checkbox],
.btn-group-toggle > input[type=submit] input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .input-group > input[type=text],
.input-group > input[type=email],
.input-group > input[type=url],
.input-group > input[type=password],
.input-group > input[type=search],
.input-group > input[type=number],
.input-group > input[type=tel],
.input-group > input[type=range],
.input-group > input[type=date],
.input-group > input[type=month],
.input-group > input[type=week],
.input-group > input[type=time],
.input-group > input[type=datetime],
.input-group > input[type=datetime-local],
.input-group > input[type=color],
.input-group > textarea, .input-group > select,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control, .input-group > input[type=text] + .form-control,
.input-group > input[type=email] + .form-control,
.input-group > input[type=url] + .form-control,
.input-group > input[type=password] + .form-control,
.input-group > input[type=search] + .form-control,
.input-group > input[type=number] + .form-control,
.input-group > input[type=tel] + .form-control,
.input-group > input[type=range] + .form-control,
.input-group > input[type=date] + .form-control,
.input-group > input[type=month] + .form-control,
.input-group > input[type=week] + .form-control,
.input-group > input[type=time] + .form-control,
.input-group > input[type=datetime] + .form-control,
.input-group > input[type=datetime-local] + .form-control,
.input-group > input[type=color] + .form-control,
.input-group > textarea + .form-control, .input-group > select + .form-control, .input-group > .form-control + input[type=text], .input-group > input[type=text] + input[type=text],
.input-group > input[type=email] + input[type=text],
.input-group > input[type=url] + input[type=text],
.input-group > input[type=password] + input[type=text],
.input-group > input[type=search] + input[type=text],
.input-group > input[type=number] + input[type=text],
.input-group > input[type=tel] + input[type=text],
.input-group > input[type=range] + input[type=text],
.input-group > input[type=date] + input[type=text],
.input-group > input[type=month] + input[type=text],
.input-group > input[type=week] + input[type=text],
.input-group > input[type=time] + input[type=text],
.input-group > input[type=datetime] + input[type=text],
.input-group > input[type=datetime-local] + input[type=text],
.input-group > input[type=color] + input[type=text],
.input-group > textarea + input[type=text], .input-group > select + input[type=text],
.input-group > .form-control + input[type=email],
.input-group > input[type=text] + input[type=email],
.input-group > input[type=email] + input[type=email],
.input-group > input[type=url] + input[type=email],
.input-group > input[type=password] + input[type=email],
.input-group > input[type=search] + input[type=email],
.input-group > input[type=number] + input[type=email],
.input-group > input[type=tel] + input[type=email],
.input-group > input[type=range] + input[type=email],
.input-group > input[type=date] + input[type=email],
.input-group > input[type=month] + input[type=email],
.input-group > input[type=week] + input[type=email],
.input-group > input[type=time] + input[type=email],
.input-group > input[type=datetime] + input[type=email],
.input-group > input[type=datetime-local] + input[type=email],
.input-group > input[type=color] + input[type=email],
.input-group > textarea + input[type=email],
.input-group > select + input[type=email],
.input-group > .form-control + input[type=url],
.input-group > input[type=text] + input[type=url],
.input-group > input[type=email] + input[type=url],
.input-group > input[type=url] + input[type=url],
.input-group > input[type=password] + input[type=url],
.input-group > input[type=search] + input[type=url],
.input-group > input[type=number] + input[type=url],
.input-group > input[type=tel] + input[type=url],
.input-group > input[type=range] + input[type=url],
.input-group > input[type=date] + input[type=url],
.input-group > input[type=month] + input[type=url],
.input-group > input[type=week] + input[type=url],
.input-group > input[type=time] + input[type=url],
.input-group > input[type=datetime] + input[type=url],
.input-group > input[type=datetime-local] + input[type=url],
.input-group > input[type=color] + input[type=url],
.input-group > textarea + input[type=url],
.input-group > select + input[type=url],
.input-group > .form-control + input[type=password],
.input-group > input[type=text] + input[type=password],
.input-group > input[type=email] + input[type=password],
.input-group > input[type=url] + input[type=password],
.input-group > input[type=password] + input[type=password],
.input-group > input[type=search] + input[type=password],
.input-group > input[type=number] + input[type=password],
.input-group > input[type=tel] + input[type=password],
.input-group > input[type=range] + input[type=password],
.input-group > input[type=date] + input[type=password],
.input-group > input[type=month] + input[type=password],
.input-group > input[type=week] + input[type=password],
.input-group > input[type=time] + input[type=password],
.input-group > input[type=datetime] + input[type=password],
.input-group > input[type=datetime-local] + input[type=password],
.input-group > input[type=color] + input[type=password],
.input-group > textarea + input[type=password],
.input-group > select + input[type=password],
.input-group > .form-control + input[type=search],
.input-group > input[type=text] + input[type=search],
.input-group > input[type=email] + input[type=search],
.input-group > input[type=url] + input[type=search],
.input-group > input[type=password] + input[type=search],
.input-group > input[type=search] + input[type=search],
.input-group > input[type=number] + input[type=search],
.input-group > input[type=tel] + input[type=search],
.input-group > input[type=range] + input[type=search],
.input-group > input[type=date] + input[type=search],
.input-group > input[type=month] + input[type=search],
.input-group > input[type=week] + input[type=search],
.input-group > input[type=time] + input[type=search],
.input-group > input[type=datetime] + input[type=search],
.input-group > input[type=datetime-local] + input[type=search],
.input-group > input[type=color] + input[type=search],
.input-group > textarea + input[type=search],
.input-group > select + input[type=search],
.input-group > .form-control + input[type=number],
.input-group > input[type=text] + input[type=number],
.input-group > input[type=email] + input[type=number],
.input-group > input[type=url] + input[type=number],
.input-group > input[type=password] + input[type=number],
.input-group > input[type=search] + input[type=number],
.input-group > input[type=number] + input[type=number],
.input-group > input[type=tel] + input[type=number],
.input-group > input[type=range] + input[type=number],
.input-group > input[type=date] + input[type=number],
.input-group > input[type=month] + input[type=number],
.input-group > input[type=week] + input[type=number],
.input-group > input[type=time] + input[type=number],
.input-group > input[type=datetime] + input[type=number],
.input-group > input[type=datetime-local] + input[type=number],
.input-group > input[type=color] + input[type=number],
.input-group > textarea + input[type=number],
.input-group > select + input[type=number],
.input-group > .form-control + input[type=tel],
.input-group > input[type=text] + input[type=tel],
.input-group > input[type=email] + input[type=tel],
.input-group > input[type=url] + input[type=tel],
.input-group > input[type=password] + input[type=tel],
.input-group > input[type=search] + input[type=tel],
.input-group > input[type=number] + input[type=tel],
.input-group > input[type=tel] + input[type=tel],
.input-group > input[type=range] + input[type=tel],
.input-group > input[type=date] + input[type=tel],
.input-group > input[type=month] + input[type=tel],
.input-group > input[type=week] + input[type=tel],
.input-group > input[type=time] + input[type=tel],
.input-group > input[type=datetime] + input[type=tel],
.input-group > input[type=datetime-local] + input[type=tel],
.input-group > input[type=color] + input[type=tel],
.input-group > textarea + input[type=tel],
.input-group > select + input[type=tel],
.input-group > .form-control + input[type=range],
.input-group > input[type=text] + input[type=range],
.input-group > input[type=email] + input[type=range],
.input-group > input[type=url] + input[type=range],
.input-group > input[type=password] + input[type=range],
.input-group > input[type=search] + input[type=range],
.input-group > input[type=number] + input[type=range],
.input-group > input[type=tel] + input[type=range],
.input-group > input[type=range] + input[type=range],
.input-group > input[type=date] + input[type=range],
.input-group > input[type=month] + input[type=range],
.input-group > input[type=week] + input[type=range],
.input-group > input[type=time] + input[type=range],
.input-group > input[type=datetime] + input[type=range],
.input-group > input[type=datetime-local] + input[type=range],
.input-group > input[type=color] + input[type=range],
.input-group > textarea + input[type=range],
.input-group > select + input[type=range],
.input-group > .form-control + input[type=date],
.input-group > input[type=text] + input[type=date],
.input-group > input[type=email] + input[type=date],
.input-group > input[type=url] + input[type=date],
.input-group > input[type=password] + input[type=date],
.input-group > input[type=search] + input[type=date],
.input-group > input[type=number] + input[type=date],
.input-group > input[type=tel] + input[type=date],
.input-group > input[type=range] + input[type=date],
.input-group > input[type=date] + input[type=date],
.input-group > input[type=month] + input[type=date],
.input-group > input[type=week] + input[type=date],
.input-group > input[type=time] + input[type=date],
.input-group > input[type=datetime] + input[type=date],
.input-group > input[type=datetime-local] + input[type=date],
.input-group > input[type=color] + input[type=date],
.input-group > textarea + input[type=date],
.input-group > select + input[type=date],
.input-group > .form-control + input[type=month],
.input-group > input[type=text] + input[type=month],
.input-group > input[type=email] + input[type=month],
.input-group > input[type=url] + input[type=month],
.input-group > input[type=password] + input[type=month],
.input-group > input[type=search] + input[type=month],
.input-group > input[type=number] + input[type=month],
.input-group > input[type=tel] + input[type=month],
.input-group > input[type=range] + input[type=month],
.input-group > input[type=date] + input[type=month],
.input-group > input[type=month] + input[type=month],
.input-group > input[type=week] + input[type=month],
.input-group > input[type=time] + input[type=month],
.input-group > input[type=datetime] + input[type=month],
.input-group > input[type=datetime-local] + input[type=month],
.input-group > input[type=color] + input[type=month],
.input-group > textarea + input[type=month],
.input-group > select + input[type=month],
.input-group > .form-control + input[type=week],
.input-group > input[type=text] + input[type=week],
.input-group > input[type=email] + input[type=week],
.input-group > input[type=url] + input[type=week],
.input-group > input[type=password] + input[type=week],
.input-group > input[type=search] + input[type=week],
.input-group > input[type=number] + input[type=week],
.input-group > input[type=tel] + input[type=week],
.input-group > input[type=range] + input[type=week],
.input-group > input[type=date] + input[type=week],
.input-group > input[type=month] + input[type=week],
.input-group > input[type=week] + input[type=week],
.input-group > input[type=time] + input[type=week],
.input-group > input[type=datetime] + input[type=week],
.input-group > input[type=datetime-local] + input[type=week],
.input-group > input[type=color] + input[type=week],
.input-group > textarea + input[type=week],
.input-group > select + input[type=week],
.input-group > .form-control + input[type=time],
.input-group > input[type=text] + input[type=time],
.input-group > input[type=email] + input[type=time],
.input-group > input[type=url] + input[type=time],
.input-group > input[type=password] + input[type=time],
.input-group > input[type=search] + input[type=time],
.input-group > input[type=number] + input[type=time],
.input-group > input[type=tel] + input[type=time],
.input-group > input[type=range] + input[type=time],
.input-group > input[type=date] + input[type=time],
.input-group > input[type=month] + input[type=time],
.input-group > input[type=week] + input[type=time],
.input-group > input[type=time] + input[type=time],
.input-group > input[type=datetime] + input[type=time],
.input-group > input[type=datetime-local] + input[type=time],
.input-group > input[type=color] + input[type=time],
.input-group > textarea + input[type=time],
.input-group > select + input[type=time],
.input-group > .form-control + input[type=datetime],
.input-group > input[type=text] + input[type=datetime],
.input-group > input[type=email] + input[type=datetime],
.input-group > input[type=url] + input[type=datetime],
.input-group > input[type=password] + input[type=datetime],
.input-group > input[type=search] + input[type=datetime],
.input-group > input[type=number] + input[type=datetime],
.input-group > input[type=tel] + input[type=datetime],
.input-group > input[type=range] + input[type=datetime],
.input-group > input[type=date] + input[type=datetime],
.input-group > input[type=month] + input[type=datetime],
.input-group > input[type=week] + input[type=datetime],
.input-group > input[type=time] + input[type=datetime],
.input-group > input[type=datetime] + input[type=datetime],
.input-group > input[type=datetime-local] + input[type=datetime],
.input-group > input[type=color] + input[type=datetime],
.input-group > textarea + input[type=datetime],
.input-group > select + input[type=datetime],
.input-group > .form-control + input[type=datetime-local],
.input-group > input[type=text] + input[type=datetime-local],
.input-group > input[type=email] + input[type=datetime-local],
.input-group > input[type=url] + input[type=datetime-local],
.input-group > input[type=password] + input[type=datetime-local],
.input-group > input[type=search] + input[type=datetime-local],
.input-group > input[type=number] + input[type=datetime-local],
.input-group > input[type=tel] + input[type=datetime-local],
.input-group > input[type=range] + input[type=datetime-local],
.input-group > input[type=date] + input[type=datetime-local],
.input-group > input[type=month] + input[type=datetime-local],
.input-group > input[type=week] + input[type=datetime-local],
.input-group > input[type=time] + input[type=datetime-local],
.input-group > input[type=datetime] + input[type=datetime-local],
.input-group > input[type=datetime-local] + input[type=datetime-local],
.input-group > input[type=color] + input[type=datetime-local],
.input-group > textarea + input[type=datetime-local],
.input-group > select + input[type=datetime-local],
.input-group > .form-control + input[type=color],
.input-group > input[type=text] + input[type=color],
.input-group > input[type=email] + input[type=color],
.input-group > input[type=url] + input[type=color],
.input-group > input[type=password] + input[type=color],
.input-group > input[type=search] + input[type=color],
.input-group > input[type=number] + input[type=color],
.input-group > input[type=tel] + input[type=color],
.input-group > input[type=range] + input[type=color],
.input-group > input[type=date] + input[type=color],
.input-group > input[type=month] + input[type=color],
.input-group > input[type=week] + input[type=color],
.input-group > input[type=time] + input[type=color],
.input-group > input[type=datetime] + input[type=color],
.input-group > input[type=datetime-local] + input[type=color],
.input-group > input[type=color] + input[type=color],
.input-group > textarea + input[type=color],
.input-group > select + input[type=color],
.input-group > .form-control + textarea,
.input-group > input[type=text] + textarea,
.input-group > input[type=email] + textarea,
.input-group > input[type=url] + textarea,
.input-group > input[type=password] + textarea,
.input-group > input[type=search] + textarea,
.input-group > input[type=number] + textarea,
.input-group > input[type=tel] + textarea,
.input-group > input[type=range] + textarea,
.input-group > input[type=date] + textarea,
.input-group > input[type=month] + textarea,
.input-group > input[type=week] + textarea,
.input-group > input[type=time] + textarea,
.input-group > input[type=datetime] + textarea,
.input-group > input[type=datetime-local] + textarea,
.input-group > input[type=color] + textarea,
.input-group > textarea + textarea,
.input-group > select + textarea, .input-group > .form-control + select, .input-group > input[type=text] + select,
.input-group > input[type=email] + select,
.input-group > input[type=url] + select,
.input-group > input[type=password] + select,
.input-group > input[type=search] + select,
.input-group > input[type=number] + select,
.input-group > input[type=tel] + select,
.input-group > input[type=range] + select,
.input-group > input[type=date] + select,
.input-group > input[type=month] + select,
.input-group > input[type=week] + select,
.input-group > input[type=time] + select,
.input-group > input[type=datetime] + select,
.input-group > input[type=datetime-local] + select,
.input-group > input[type=color] + select,
.input-group > textarea + select, .input-group > select + select,
.input-group > .form-control + .custom-select,
.input-group > input[type=text] + .custom-select,
.input-group > input[type=email] + .custom-select,
.input-group > input[type=url] + .custom-select,
.input-group > input[type=password] + .custom-select,
.input-group > input[type=search] + .custom-select,
.input-group > input[type=number] + .custom-select,
.input-group > input[type=tel] + .custom-select,
.input-group > input[type=range] + .custom-select,
.input-group > input[type=date] + .custom-select,
.input-group > input[type=month] + .custom-select,
.input-group > input[type=week] + .custom-select,
.input-group > input[type=time] + .custom-select,
.input-group > input[type=datetime] + .custom-select,
.input-group > input[type=datetime-local] + .custom-select,
.input-group > input[type=color] + .custom-select,
.input-group > textarea + .custom-select,
.input-group > select + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > input[type=text] + .custom-file,
.input-group > input[type=email] + .custom-file,
.input-group > input[type=url] + .custom-file,
.input-group > input[type=password] + .custom-file,
.input-group > input[type=search] + .custom-file,
.input-group > input[type=number] + .custom-file,
.input-group > input[type=tel] + .custom-file,
.input-group > input[type=range] + .custom-file,
.input-group > input[type=date] + .custom-file,
.input-group > input[type=month] + .custom-file,
.input-group > input[type=week] + .custom-file,
.input-group > input[type=time] + .custom-file,
.input-group > input[type=datetime] + .custom-file,
.input-group > input[type=datetime-local] + .custom-file,
.input-group > input[type=color] + .custom-file,
.input-group > textarea + .custom-file,
.input-group > select + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + input[type=text],
.input-group > .form-control-plaintext + input[type=email],
.input-group > .form-control-plaintext + input[type=url],
.input-group > .form-control-plaintext + input[type=password],
.input-group > .form-control-plaintext + input[type=search],
.input-group > .form-control-plaintext + input[type=number],
.input-group > .form-control-plaintext + input[type=tel],
.input-group > .form-control-plaintext + input[type=range],
.input-group > .form-control-plaintext + input[type=date],
.input-group > .form-control-plaintext + input[type=month],
.input-group > .form-control-plaintext + input[type=week],
.input-group > .form-control-plaintext + input[type=time],
.input-group > .form-control-plaintext + input[type=datetime],
.input-group > .form-control-plaintext + input[type=datetime-local],
.input-group > .form-control-plaintext + input[type=color],
.input-group > .form-control-plaintext + textarea,
.input-group > .form-control-plaintext + select,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + input[type=text],
.input-group > .custom-select + input[type=email],
.input-group > .custom-select + input[type=url],
.input-group > .custom-select + input[type=password],
.input-group > .custom-select + input[type=search],
.input-group > .custom-select + input[type=number],
.input-group > .custom-select + input[type=tel],
.input-group > .custom-select + input[type=range],
.input-group > .custom-select + input[type=date],
.input-group > .custom-select + input[type=month],
.input-group > .custom-select + input[type=week],
.input-group > .custom-select + input[type=time],
.input-group > .custom-select + input[type=datetime],
.input-group > .custom-select + input[type=datetime-local],
.input-group > .custom-select + input[type=color],
.input-group > .custom-select + textarea,
.input-group > .custom-select + select,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + input[type=text],
.input-group > .custom-file + input[type=email],
.input-group > .custom-file + input[type=url],
.input-group > .custom-file + input[type=password],
.input-group > .custom-file + input[type=search],
.input-group > .custom-file + input[type=number],
.input-group > .custom-file + input[type=tel],
.input-group > .custom-file + input[type=range],
.input-group > .custom-file + input[type=date],
.input-group > .custom-file + input[type=month],
.input-group > .custom-file + input[type=week],
.input-group > .custom-file + input[type=time],
.input-group > .custom-file + input[type=datetime],
.input-group > .custom-file + input[type=datetime-local],
.input-group > .custom-file + input[type=color],
.input-group > .custom-file + textarea,
.input-group > .custom-file + select,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus, .input-group > input[type=text]:focus,
.input-group > input[type=email]:focus,
.input-group > input[type=url]:focus,
.input-group > input[type=password]:focus,
.input-group > input[type=search]:focus,
.input-group > input[type=number]:focus,
.input-group > input[type=tel]:focus,
.input-group > input[type=range]:focus,
.input-group > input[type=date]:focus,
.input-group > input[type=month]:focus,
.input-group > input[type=week]:focus,
.input-group > input[type=time]:focus,
.input-group > input[type=datetime]:focus,
.input-group > input[type=datetime-local]:focus,
.input-group > input[type=color]:focus,
.input-group > textarea:focus, .input-group > select:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child), .input-group > input[type=text]:not(:last-child),
.input-group > input[type=email]:not(:last-child),
.input-group > input[type=url]:not(:last-child),
.input-group > input[type=password]:not(:last-child),
.input-group > input[type=search]:not(:last-child),
.input-group > input[type=number]:not(:last-child),
.input-group > input[type=tel]:not(:last-child),
.input-group > input[type=range]:not(:last-child),
.input-group > input[type=date]:not(:last-child),
.input-group > input[type=month]:not(:last-child),
.input-group > input[type=week]:not(:last-child),
.input-group > input[type=time]:not(:last-child),
.input-group > input[type=datetime]:not(:last-child),
.input-group > input[type=datetime-local]:not(:last-child),
.input-group > input[type=color]:not(:last-child),
.input-group > textarea:not(:last-child), .input-group > select:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child), .input-group > input[type=text]:not(:first-child),
.input-group > input[type=email]:not(:first-child),
.input-group > input[type=url]:not(:first-child),
.input-group > input[type=password]:not(:first-child),
.input-group > input[type=search]:not(:first-child),
.input-group > input[type=number]:not(:first-child),
.input-group > input[type=tel]:not(:first-child),
.input-group > input[type=range]:not(:first-child),
.input-group > input[type=date]:not(:first-child),
.input-group > input[type=month]:not(:first-child),
.input-group > input[type=week]:not(:first-child),
.input-group > input[type=time]:not(:first-child),
.input-group > input[type=datetime]:not(:first-child),
.input-group > input[type=datetime-local]:not(:first-child),
.input-group > input[type=color]:not(:first-child),
.input-group > textarea:not(:first-child), .input-group > select:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend button,
.input-group-prepend input[type=button],
.input-group-prepend input[type=reset],
.input-group-prepend input[type=submit],
.input-group-append .btn,
.input-group-append button,
.input-group-append input[type=button],
.input-group-append input[type=reset],
.input-group-append input[type=submit] {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend button:focus,
.input-group-prepend input[type=button]:focus,
.input-group-prepend input[type=reset]:focus,
.input-group-prepend input[type=submit]:focus,
.input-group-append .btn:focus,
.input-group-append button:focus,
.input-group-append input[type=button]:focus,
.input-group-append input[type=reset]:focus,
.input-group-append input[type=submit]:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend button + .btn,
.input-group-prepend input[type=button] + .btn,
.input-group-prepend input[type=reset] + .btn,
.input-group-prepend input[type=submit] + .btn, .input-group-prepend .btn + button, .input-group-prepend button + button,
.input-group-prepend input[type=button] + button,
.input-group-prepend input[type=reset] + button,
.input-group-prepend input[type=submit] + button,
.input-group-prepend .btn + input[type=button],
.input-group-prepend button + input[type=button],
.input-group-prepend input[type=button] + input[type=button],
.input-group-prepend input[type=reset] + input[type=button],
.input-group-prepend input[type=submit] + input[type=button],
.input-group-prepend .btn + input[type=reset],
.input-group-prepend button + input[type=reset],
.input-group-prepend input[type=button] + input[type=reset],
.input-group-prepend input[type=reset] + input[type=reset],
.input-group-prepend input[type=submit] + input[type=reset],
.input-group-prepend .btn + input[type=submit],
.input-group-prepend button + input[type=submit],
.input-group-prepend input[type=button] + input[type=submit],
.input-group-prepend input[type=reset] + input[type=submit],
.input-group-prepend input[type=submit] + input[type=submit],
.input-group-prepend .btn + .input-group-text,
.input-group-prepend button + .input-group-text,
.input-group-prepend input[type=button] + .input-group-text,
.input-group-prepend input[type=reset] + .input-group-text,
.input-group-prepend input[type=submit] + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + button,
.input-group-prepend .input-group-text + input[type=button],
.input-group-prepend .input-group-text + input[type=reset],
.input-group-prepend .input-group-text + input[type=submit],
.input-group-append .btn + .btn,
.input-group-append button + .btn,
.input-group-append input[type=button] + .btn,
.input-group-append input[type=reset] + .btn,
.input-group-append input[type=submit] + .btn,
.input-group-append .btn + button,
.input-group-append button + button,
.input-group-append input[type=button] + button,
.input-group-append input[type=reset] + button,
.input-group-append input[type=submit] + button,
.input-group-append .btn + input[type=button],
.input-group-append button + input[type=button],
.input-group-append input[type=button] + input[type=button],
.input-group-append input[type=reset] + input[type=button],
.input-group-append input[type=submit] + input[type=button],
.input-group-append .btn + input[type=reset],
.input-group-append button + input[type=reset],
.input-group-append input[type=button] + input[type=reset],
.input-group-append input[type=reset] + input[type=reset],
.input-group-append input[type=submit] + input[type=reset],
.input-group-append .btn + input[type=submit],
.input-group-append button + input[type=submit],
.input-group-append input[type=button] + input[type=submit],
.input-group-append input[type=reset] + input[type=submit],
.input-group-append input[type=submit] + input[type=submit],
.input-group-append .btn + .input-group-text,
.input-group-append button + .input-group-text,
.input-group-append input[type=button] + .input-group-text,
.input-group-append input[type=reset] + .input-group-text,
.input-group-append input[type=submit] + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + button,
.input-group-append .input-group-text + input[type=button],
.input-group-append .input-group-text + input[type=reset],
.input-group-append .input-group-text + input[type=submit] {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .input-group-lg > input[type=text]:not(textarea),
.input-group-lg > input[type=email]:not(textarea),
.input-group-lg > input[type=url]:not(textarea),
.input-group-lg > input[type=password]:not(textarea),
.input-group-lg > input[type=search]:not(textarea),
.input-group-lg > input[type=number]:not(textarea),
.input-group-lg > input[type=tel]:not(textarea),
.input-group-lg > input[type=range]:not(textarea),
.input-group-lg > input[type=date]:not(textarea),
.input-group-lg > input[type=month]:not(textarea),
.input-group-lg > input[type=week]:not(textarea),
.input-group-lg > input[type=time]:not(textarea),
.input-group-lg > input[type=datetime]:not(textarea),
.input-group-lg > input[type=datetime-local]:not(textarea),
.input-group-lg > input[type=color]:not(textarea),
.input-group-lg > textarea:not(textarea), .input-group-lg > select:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control, .input-group-lg > input[type=text],
.input-group-lg > input[type=email],
.input-group-lg > input[type=url],
.input-group-lg > input[type=password],
.input-group-lg > input[type=search],
.input-group-lg > input[type=number],
.input-group-lg > input[type=tel],
.input-group-lg > input[type=range],
.input-group-lg > input[type=date],
.input-group-lg > input[type=month],
.input-group-lg > input[type=week],
.input-group-lg > input[type=time],
.input-group-lg > input[type=datetime],
.input-group-lg > input[type=datetime-local],
.input-group-lg > input[type=color],
.input-group-lg > textarea, .input-group-lg > select,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > button,
.input-group-lg > .input-group-prepend > input[type=button],
.input-group-lg > .input-group-prepend > input[type=reset],
.input-group-lg > .input-group-prepend > input[type=submit],
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > button,
.input-group-lg > .input-group-append > input[type=button],
.input-group-lg > .input-group-append > input[type=reset],
.input-group-lg > .input-group-append > input[type=submit] {
  padding: 0.5rem 1rem;
  font-size: 1.15rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea), .input-group-sm > input[type=text]:not(textarea),
.input-group-sm > input[type=email]:not(textarea),
.input-group-sm > input[type=url]:not(textarea),
.input-group-sm > input[type=password]:not(textarea),
.input-group-sm > input[type=search]:not(textarea),
.input-group-sm > input[type=number]:not(textarea),
.input-group-sm > input[type=tel]:not(textarea),
.input-group-sm > input[type=range]:not(textarea),
.input-group-sm > input[type=date]:not(textarea),
.input-group-sm > input[type=month]:not(textarea),
.input-group-sm > input[type=week]:not(textarea),
.input-group-sm > input[type=time]:not(textarea),
.input-group-sm > input[type=datetime]:not(textarea),
.input-group-sm > input[type=datetime-local]:not(textarea),
.input-group-sm > input[type=color]:not(textarea),
.input-group-sm > textarea:not(textarea), .input-group-sm > select:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control, .input-group-sm > input[type=text],
.input-group-sm > input[type=email],
.input-group-sm > input[type=url],
.input-group-sm > input[type=password],
.input-group-sm > input[type=search],
.input-group-sm > input[type=number],
.input-group-sm > input[type=tel],
.input-group-sm > input[type=range],
.input-group-sm > input[type=date],
.input-group-sm > input[type=month],
.input-group-sm > input[type=week],
.input-group-sm > input[type=time],
.input-group-sm > input[type=datetime],
.input-group-sm > input[type=datetime-local],
.input-group-sm > input[type=color],
.input-group-sm > textarea, .input-group-sm > select,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > button,
.input-group-sm > .input-group-prepend > input[type=button],
.input-group-sm > .input-group-prepend > input[type=reset],
.input-group-sm > .input-group-prepend > input[type=submit],
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > button,
.input-group-sm > .input-group-append > input[type=button],
.input-group-sm > .input-group-append > input[type=reset],
.input-group-sm > .input-group-append > input[type=submit] {
  padding: 0.25rem 0.5rem;
  font-size: 0.805rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > button,
.input-group > .input-group-prepend > input[type=button],
.input-group > .input-group-prepend > input[type=reset],
.input-group > .input-group-prepend > input[type=submit],
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > button,
.input-group > .input-group-append:not(:last-child) > input[type=button],
.input-group > .input-group-append:not(:last-child) > input[type=reset],
.input-group > .input-group-append:not(:last-child) > input[type=submit],
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > input[type=button]:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > input[type=reset]:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > input[type=submit]:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > button,
.input-group > .input-group-append > input[type=button],
.input-group > .input-group-append > input[type=reset],
.input-group > .input-group-append > input[type=submit],
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > button,
.input-group > .input-group-prepend:not(:first-child) > input[type=button],
.input-group > .input-group-prepend:not(:first-child) > input[type=reset],
.input-group > .input-group-prepend:not(:first-child) > input[type=submit],
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > button:not(:first-child),
.input-group > .input-group-prepend:first-child > input[type=button]:not(:first-child),
.input-group > .input-group-prepend:first-child > input[type=reset]:not(:first-child),
.input-group > .input-group-prepend:first-child > input[type=submit]:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.38rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.19rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: white;
  border-color: #10137d;
  background-color: #10137d;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #292ee4;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: white;
  background-color: #565ae9;
  border-color: #565ae9;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.19rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: white;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.19rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='white' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #10137d;
  background-color: #10137d;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='white' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(16, 19, 125, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(16, 19, 125, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='white'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(16, 19, 125, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.19rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: white;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(16, 19, 125, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: white url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0;
  appearance: none;
}
.custom-select:focus {
  border-color: #292ee4;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: white;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.805rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.15rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #292ee4;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: white;
  border: 1px solid #ced4da;
  border-radius: 0;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0 0 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #10137d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #565ae9;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #10137d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #565ae9;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #10137d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #565ae9;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: white;
  border-color: #dee2e6 #dee2e6 white;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: white;
  background-color: #10137d;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl,
.navbar .container-xx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3275rem;
  padding-bottom: 0.3275rem;
  margin-right: 1rem;
  font-size: 1.15rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.15rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl,
.navbar-expand-sm > .container-xx {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl,
.navbar-expand-sm > .container-xx {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl,
.navbar-expand-md > .container-xx {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl,
.navbar-expand-md > .container-xx {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl,
.navbar-expand-lg > .container-xx {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl,
.navbar-expand-lg > .container-xx {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl,
.navbar-expand-xl > .container-xx {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl,
.navbar-expand-xl > .container-xx {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .navbar-expand-xx > .container,
.navbar-expand-xx > .container-fluid,
.navbar-expand-xx > .container-sm,
.navbar-expand-xx > .container-md,
.navbar-expand-xx > .container-lg,
.navbar-expand-xx > .container-xl,
.navbar-expand-xx > .container-xx {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xx {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xx .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xx .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xx .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xx > .container,
.navbar-expand-xx > .container-fluid,
.navbar-expand-xx > .container-sm,
.navbar-expand-xx > .container-md,
.navbar-expand-xx > .container-lg,
.navbar-expand-xx > .container-xl,
.navbar-expand-xx > .container-xx {
    flex-wrap: nowrap;
  }
  .navbar-expand-xx .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xx .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xx {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xx {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: white;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: white;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: white;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: white;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: white;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: white;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: 0 0 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 0 0;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0;
}

.breadcrumb-item {
  display: flex;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #10137d;
  background-color: white;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #070939;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: white;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.805rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, button .badge,
input[type=button] .badge,
input[type=reset] .badge,
input[type=submit] .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: white;
  background-color: #10137d;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: white;
  background-color: #0a0c50;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}

.badge-secondary {
  color: white;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: white;
  background-color: #545b62;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: white;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: white;
  background-color: #1e7e34;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: white;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: white;
  background-color: #117a8b;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: white;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: white;
  background-color: #bd2130;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: white;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: white;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.badge-facebook {
  color: white;
  background-color: #3A559F;
}
a.badge-facebook:hover, a.badge-facebook:focus {
  color: white;
  background-color: #2c417a;
}
a.badge-facebook:focus, a.badge-facebook.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(58, 85, 159, 0.5);
}

.badge-twitter {
  color: #212529;
  background-color: #50ABF1;
}
a.badge-twitter:hover, a.badge-twitter:focus {
  color: #212529;
  background-color: #2194ed;
}
a.badge-twitter:focus, a.badge-twitter.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(80, 171, 241, 0.5);
}

.badge-youtube {
  color: white;
  background-color: #a90000;
}
a.badge-youtube:hover, a.badge-youtube:focus {
  color: white;
  background-color: #760000;
}
a.badge-youtube:focus, a.badge-youtube.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(169, 0, 0, 0.5);
}

.badge-linkedin {
  color: white;
  background-color: #0077B5;
}
a.badge-linkedin:hover, a.badge-linkedin:focus {
  color: white;
  background-color: #005582;
}
a.badge-linkedin:focus, a.badge-linkedin.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 181, 0.5);
}

.badge-gplus {
  color: white;
  background-color: #DD4B39;
}
a.badge-gplus:hover, a.badge-gplus:focus {
  color: white;
  background-color: #c23321;
}
a.badge-gplus:focus, a.badge-gplus.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(221, 75, 57, 0.5);
}

.badge-alert-red {
  color: white;
  background-color: #ca1e47;
}
a.badge-alert-red:hover, a.badge-alert-red:focus {
  color: white;
  background-color: #9e1737;
}
a.badge-alert-red:focus, a.badge-alert-red.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(202, 30, 71, 0.5);
}

.badge-alert-amber {
  color: #212529;
  background-color: #f29500;
}
a.badge-alert-amber:hover, a.badge-alert-amber:focus {
  color: #212529;
  background-color: #bf7600;
}
a.badge-alert-amber:focus, a.badge-alert-amber.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(242, 149, 0, 0.5);
}

.badge-alert-green {
  color: white;
  background-color: #58ad60;
}
a.badge-alert-green:hover, a.badge-alert-green:focus {
  color: white;
  background-color: #458d4c;
}
a.badge-alert-green:focus, a.badge-alert-green.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(88, 173, 96, 0.5);
}

.badge-black {
  color: white;
  background-color: #000;
}
a.badge-black:hover, a.badge-black:focus {
  color: white;
  background-color: black;
}
a.badge-black:focus, a.badge-black.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

.badge-white {
  color: #212529;
  background-color: #fff;
}
a.badge-white:hover, a.badge-white:focus {
  color: #212529;
  background-color: #e6e6e6;
}
a.badge-white:focus, a.badge-white.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.badge-grey {
  color: #212529;
  background-color: #ccc;
}
a.badge-grey:hover, a.badge-grey:focus {
  color: #212529;
  background-color: #b3b3b3;
}
a.badge-grey:focus, a.badge-grey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.badge-printblack {
  color: white;
  background-color: #333;
}
a.badge-printblack:hover, a.badge-printblack:focus {
  color: white;
  background-color: #1a1a1a;
}
a.badge-printblack:focus, a.badge-printblack.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.badge-defaultblue {
  color: white;
  background-color: #10137d;
}
a.badge-defaultblue:hover, a.badge-defaultblue:focus {
  color: white;
  background-color: #0a0c50;
}
a.badge-defaultblue:focus, a.badge-defaultblue.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 19, 125, 0.5);
}

.badge-offwhite {
  color: #212529;
  background-color: #f7f7f7;
}
a.badge-offwhite:hover, a.badge-offwhite:focus {
  color: #212529;
  background-color: #dedede;
}
a.badge-offwhite:focus, a.badge-offwhite.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(247, 247, 247, 0.5);
}

.badge-tf-primary {
  color: white;
  background-color: #10147e;
}
a.badge-tf-primary:hover, a.badge-tf-primary:focus {
  color: white;
  background-color: #0a0d51;
}
a.badge-tf-primary:focus, a.badge-tf-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(16, 20, 126, 0.5);
}

.badge-tf-primary-light {
  color: white;
  background-color: #285d9a;
}
a.badge-tf-primary-light:hover, a.badge-tf-primary-light:focus {
  color: white;
  background-color: #1d4572;
}
a.badge-tf-primary-light:focus, a.badge-tf-primary-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 93, 154, 0.5);
}

.badge-tf-accent-grey {
  color: white;
  background-color: #555555;
}
a.badge-tf-accent-grey:hover, a.badge-tf-accent-grey:focus {
  color: white;
  background-color: #3c3c3c;
}
a.badge-tf-accent-grey:focus, a.badge-tf-accent-grey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(85, 85, 85, 0.5);
}

.badge-tf-accent-lightgrey {
  color: #212529;
  background-color: #cccccc;
}
a.badge-tf-accent-lightgrey:hover, a.badge-tf-accent-lightgrey:focus {
  color: #212529;
  background-color: #b3b3b3;
}
a.badge-tf-accent-lightgrey:focus, a.badge-tf-accent-lightgrey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.badge-tf-accent-lightblue {
  color: #212529;
  background-color: #96c9fd;
}
a.badge-tf-accent-lightblue:hover, a.badge-tf-accent-lightblue:focus {
  color: #212529;
  background-color: #64affc;
}
a.badge-tf-accent-lightblue:focus, a.badge-tf-accent-lightblue.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(150, 201, 253, 0.5);
}

.badge-tf-accent-midblue {
  color: white;
  background-color: #006db4;
}
a.badge-tf-accent-midblue:hover, a.badge-tf-accent-midblue:focus {
  color: white;
  background-color: #004e81;
}
a.badge-tf-accent-midblue:focus, a.badge-tf-accent-midblue.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 109, 180, 0.5);
}

.badge-tf-accent-darkblue {
  color: white;
  background-color: #262c4d;
}
a.badge-tf-accent-darkblue:hover, a.badge-tf-accent-darkblue:focus {
  color: white;
  background-color: #15182b;
}
a.badge-tf-accent-darkblue:focus, a.badge-tf-accent-darkblue.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(38, 44, 77, 0.5);
}

.badge-tf-accent-slateblue {
  color: white;
  background-color: #5b7a8f;
}
a.badge-tf-accent-slateblue:hover, a.badge-tf-accent-slateblue:focus {
  color: white;
  background-color: #475f70;
}
a.badge-tf-accent-slateblue:focus, a.badge-tf-accent-slateblue.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(91, 122, 143, 0.5);
}

.badge-tf-accent-turquoise {
  color: white;
  background-color: #448391;
}
a.badge-tf-accent-turquoise:hover, a.badge-tf-accent-turquoise:focus {
  color: white;
  background-color: #34646e;
}
a.badge-tf-accent-turquoise:focus, a.badge-tf-accent-turquoise.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(68, 131, 145, 0.5);
}

.badge-tf-accent-white {
  color: #212529;
  background-color: #f2f3f8;
}
a.badge-tf-accent-white:hover, a.badge-tf-accent-white:focus {
  color: #212529;
  background-color: #d1d4e6;
}
a.badge-tf-accent-white:focus, a.badge-tf-accent-white.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(242, 243, 248, 0.5);
}

.badge-tf-accent-lightorange {
  color: #212529;
  background-color: #fe7b51;
}
a.badge-tf-accent-lightorange:hover, a.badge-tf-accent-lightorange:focus {
  color: #212529;
  background-color: #fe551e;
}
a.badge-tf-accent-lightorange:focus, a.badge-tf-accent-lightorange.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(254, 123, 81, 0.5);
}

.badge-tf-accent-midorange {
  color: white;
  background-color: #f2673c;
}
a.badge-tf-accent-midorange:hover, a.badge-tf-accent-midorange:focus {
  color: white;
  background-color: #eb4410;
}
a.badge-tf-accent-midorange:focus, a.badge-tf-accent-midorange.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(242, 103, 60, 0.5);
}

.badge-tf-accent-darkorange {
  color: white;
  background-color: #d44922;
}
a.badge-tf-accent-darkorange:hover, a.badge-tf-accent-darkorange:focus {
  color: white;
  background-color: #a83a1b;
}
a.badge-tf-accent-darkorange:focus, a.badge-tf-accent-darkorange.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(212, 73, 34, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.88rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #080a41;
  background-color: #cfd0e5;
  border-color: #bcbddb;
}
.alert-primary hr {
  border-top-color: #abadd2;
}
.alert-primary .alert-link {
  color: #020314;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

.alert-facebook {
  color: #1e2c53;
  background-color: #d8ddec;
  border-color: #c8cfe4;
}
.alert-facebook hr {
  border-top-color: #b7c0dc;
}
.alert-facebook .alert-link {
  color: #10182e;
}

.alert-twitter {
  color: #2a597d;
  background-color: #dceefc;
  border-color: #cee7fb;
}
.alert-twitter hr {
  border-top-color: #b6dbf9;
}
.alert-twitter .alert-link {
  color: #1d3e57;
}

.alert-youtube {
  color: #580000;
  background-color: #eecccc;
  border-color: #e7b8b8;
}
.alert-youtube hr {
  border-top-color: #e1a5a5;
}
.alert-youtube .alert-link {
  color: #250000;
}

.alert-linkedin {
  color: #003e5e;
  background-color: #cce4f0;
  border-color: #b8d9ea;
}
.alert-linkedin hr {
  border-top-color: #a4cee4;
}
.alert-linkedin .alert-link {
  color: #001c2b;
}

.alert-gplus {
  color: #73271e;
  background-color: #f8dbd7;
  border-color: #f5cdc8;
}
.alert-gplus hr {
  border-top-color: #f1b9b2;
}
.alert-gplus .alert-link {
  color: #4b1913;
}

.alert-alert-red {
  color: #691025;
  background-color: #f4d2da;
  border-color: #f0c0cb;
}
.alert-alert-red hr {
  border-top-color: #ebabba;
}
.alert-alert-red .alert-link {
  color: #3d0915;
}

.alert-alert-amber {
  color: #7e4d00;
  background-color: #fceacc;
  border-color: #fbe1b8;
}
.alert-alert-amber hr {
  border-top-color: #fad7a0;
}
.alert-alert-amber .alert-link {
  color: #4b2e00;
}

.alert-alert-green {
  color: #2e5a32;
  background-color: #deefdf;
  border-color: #d0e8d2;
}
.alert-alert-green hr {
  border-top-color: #bfe0c2;
}
.alert-alert-green .alert-link {
  color: #1d381f;
}

.alert-black {
  color: black;
  background-color: #cccccc;
  border-color: #b8b8b8;
}
.alert-black hr {
  border-top-color: #ababab;
}
.alert-black .alert-link {
  color: black;
}

.alert-white {
  color: #858585;
  background-color: white;
  border-color: white;
}
.alert-white hr {
  border-top-color: #f2f2f2;
}
.alert-white .alert-link {
  color: #6c6c6c;
}

.alert-grey {
  color: #6a6a6a;
  background-color: whitesmoke;
  border-color: #f1f1f1;
}
.alert-grey hr {
  border-top-color: #e4e4e4;
}
.alert-grey .alert-link {
  color: #515151;
}

.alert-printblack {
  color: #1b1b1b;
  background-color: #d6d6d6;
  border-color: #c6c6c6;
}
.alert-printblack hr {
  border-top-color: #b9b9b9;
}
.alert-printblack .alert-link {
  color: #020202;
}

.alert-defaultblue {
  color: #080a41;
  background-color: #cfd0e5;
  border-color: #bcbddb;
}
.alert-defaultblue hr {
  border-top-color: #abadd2;
}
.alert-defaultblue .alert-link {
  color: #020314;
}

.alert-offwhite {
  color: gray;
  background-color: #fdfdfd;
  border-color: #fdfdfd;
}
.alert-offwhite hr {
  border-top-color: #f0f0f0;
}
.alert-offwhite .alert-link {
  color: #676767;
}

.alert-tf-primary {
  color: #080a42;
  background-color: #cfd0e5;
  border-color: #bcbddb;
}
.alert-tf-primary hr {
  border-top-color: #abadd2;
}
.alert-tf-primary .alert-link {
  color: #020315;
}

.alert-tf-primary-light {
  color: #153050;
  background-color: #d4dfeb;
  border-color: #c3d2e3;
}
.alert-tf-primary-light hr {
  border-top-color: #b2c5db;
}
.alert-tf-primary-light .alert-link {
  color: #0a1828;
}

.alert-tf-accent-grey {
  color: #2c2c2c;
  background-color: #dddddd;
  border-color: #cfcfcf;
}
.alert-tf-accent-grey hr {
  border-top-color: #c2c2c2;
}
.alert-tf-accent-grey .alert-link {
  color: #131313;
}

.alert-tf-accent-lightgrey {
  color: #6a6a6a;
  background-color: whitesmoke;
  border-color: #f1f1f1;
}
.alert-tf-accent-lightgrey hr {
  border-top-color: #e4e4e4;
}
.alert-tf-accent-lightgrey .alert-link {
  color: #515151;
}

.alert-tf-accent-lightblue {
  color: #4e6984;
  background-color: #eaf4ff;
  border-color: #e2f0fe;
}
.alert-tf-accent-lightblue hr {
  border-top-color: #c9e3fd;
}
.alert-tf-accent-lightblue .alert-link {
  color: #3b5064;
}

.alert-tf-accent-midblue {
  color: #00395e;
  background-color: #cce2f0;
  border-color: #b8d6ea;
}
.alert-tf-accent-midblue hr {
  border-top-color: #a4cbe4;
}
.alert-tf-accent-midblue .alert-link {
  color: #001a2b;
}

.alert-tf-accent-darkblue {
  color: #141728;
  background-color: #d4d5db;
  border-color: #c2c4cd;
}
.alert-tf-accent-darkblue hr {
  border-top-color: #b4b6c2;
}
.alert-tf-accent-darkblue .alert-link {
  color: #030306;
}

.alert-tf-accent-slateblue {
  color: #2f3f4a;
  background-color: #dee4e9;
  border-color: #d1dae0;
}
.alert-tf-accent-slateblue hr {
  border-top-color: #c2ced6;
}
.alert-tf-accent-slateblue .alert-link {
  color: #1b242b;
}

.alert-tf-accent-turquoise {
  color: #23444b;
  background-color: #dae6e9;
  border-color: #cbdce0;
}
.alert-tf-accent-turquoise hr {
  border-top-color: #bbd1d6;
}
.alert-tf-accent-turquoise .alert-link {
  color: #132428;
}

.alert-tf-accent-white {
  color: #7e7e81;
  background-color: #fcfdfe;
  border-color: #fbfcfd;
}
.alert-tf-accent-white hr {
  border-top-color: #eaeff5;
}
.alert-tf-accent-white .alert-link {
  color: #656567;
}

.alert-tf-accent-lightorange {
  color: #84402a;
  background-color: #ffe5dc;
  border-color: #ffdace;
}
.alert-tf-accent-lightorange hr {
  border-top-color: #ffc7b5;
}
.alert-tf-accent-lightorange .alert-link {
  color: #5d2d1e;
}

.alert-tf-accent-midorange {
  color: #7e361f;
  background-color: #fce1d8;
  border-color: #fbd4c8;
}
.alert-tf-accent-midorange hr {
  border-top-color: #f9c1b0;
}
.alert-tf-accent-midorange .alert-link {
  color: #552415;
}

.alert-tf-accent-darkorange {
  color: #6e2612;
  background-color: #f6dbd3;
  border-color: #f3ccc1;
}
.alert-tf-accent-darkorange hr {
  border-top-color: #efbaac;
}
.alert-tf-accent-darkorange .alert-link {
  color: #42170b;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.69rem;
  background-color: #e9ecef;
  border-radius: 0;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  white-space: nowrap;
  background-color: #10137d;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: white;
}
.list-group-item.active {
  z-index: 2;
  color: white;
  background-color: #10137d;
  border-color: #10137d;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xx {
    flex-direction: row;
  }
  .list-group-horizontal-xx > .list-group-item:first-child {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xx > .list-group-item:last-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xx > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xx > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xx > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #080a41;
  background-color: #bcbddb;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #080a41;
  background-color: #abadd2;
}
.list-group-item-primary.list-group-item-action.active {
  color: white;
  background-color: #080a41;
  border-color: #080a41;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: white;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: white;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: white;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: white;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: white;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: white;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: white;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.list-group-item-facebook {
  color: #1e2c53;
  background-color: #c8cfe4;
}
.list-group-item-facebook.list-group-item-action:hover, .list-group-item-facebook.list-group-item-action:focus {
  color: #1e2c53;
  background-color: #b7c0dc;
}
.list-group-item-facebook.list-group-item-action.active {
  color: white;
  background-color: #1e2c53;
  border-color: #1e2c53;
}

.list-group-item-twitter {
  color: #2a597d;
  background-color: #cee7fb;
}
.list-group-item-twitter.list-group-item-action:hover, .list-group-item-twitter.list-group-item-action:focus {
  color: #2a597d;
  background-color: #b6dbf9;
}
.list-group-item-twitter.list-group-item-action.active {
  color: white;
  background-color: #2a597d;
  border-color: #2a597d;
}

.list-group-item-youtube {
  color: #580000;
  background-color: #e7b8b8;
}
.list-group-item-youtube.list-group-item-action:hover, .list-group-item-youtube.list-group-item-action:focus {
  color: #580000;
  background-color: #e1a5a5;
}
.list-group-item-youtube.list-group-item-action.active {
  color: white;
  background-color: #580000;
  border-color: #580000;
}

.list-group-item-linkedin {
  color: #003e5e;
  background-color: #b8d9ea;
}
.list-group-item-linkedin.list-group-item-action:hover, .list-group-item-linkedin.list-group-item-action:focus {
  color: #003e5e;
  background-color: #a4cee4;
}
.list-group-item-linkedin.list-group-item-action.active {
  color: white;
  background-color: #003e5e;
  border-color: #003e5e;
}

.list-group-item-gplus {
  color: #73271e;
  background-color: #f5cdc8;
}
.list-group-item-gplus.list-group-item-action:hover, .list-group-item-gplus.list-group-item-action:focus {
  color: #73271e;
  background-color: #f1b9b2;
}
.list-group-item-gplus.list-group-item-action.active {
  color: white;
  background-color: #73271e;
  border-color: #73271e;
}

.list-group-item-alert-red {
  color: #691025;
  background-color: #f0c0cb;
}
.list-group-item-alert-red.list-group-item-action:hover, .list-group-item-alert-red.list-group-item-action:focus {
  color: #691025;
  background-color: #ebabba;
}
.list-group-item-alert-red.list-group-item-action.active {
  color: white;
  background-color: #691025;
  border-color: #691025;
}

.list-group-item-alert-amber {
  color: #7e4d00;
  background-color: #fbe1b8;
}
.list-group-item-alert-amber.list-group-item-action:hover, .list-group-item-alert-amber.list-group-item-action:focus {
  color: #7e4d00;
  background-color: #fad7a0;
}
.list-group-item-alert-amber.list-group-item-action.active {
  color: white;
  background-color: #7e4d00;
  border-color: #7e4d00;
}

.list-group-item-alert-green {
  color: #2e5a32;
  background-color: #d0e8d2;
}
.list-group-item-alert-green.list-group-item-action:hover, .list-group-item-alert-green.list-group-item-action:focus {
  color: #2e5a32;
  background-color: #bfe0c2;
}
.list-group-item-alert-green.list-group-item-action.active {
  color: white;
  background-color: #2e5a32;
  border-color: #2e5a32;
}

.list-group-item-black {
  color: black;
  background-color: #b8b8b8;
}
.list-group-item-black.list-group-item-action:hover, .list-group-item-black.list-group-item-action:focus {
  color: black;
  background-color: #ababab;
}
.list-group-item-black.list-group-item-action.active {
  color: white;
  background-color: black;
  border-color: black;
}

.list-group-item-white {
  color: #858585;
  background-color: white;
}
.list-group-item-white.list-group-item-action:hover, .list-group-item-white.list-group-item-action:focus {
  color: #858585;
  background-color: #f2f2f2;
}
.list-group-item-white.list-group-item-action.active {
  color: white;
  background-color: #858585;
  border-color: #858585;
}

.list-group-item-grey {
  color: #6a6a6a;
  background-color: #f1f1f1;
}
.list-group-item-grey.list-group-item-action:hover, .list-group-item-grey.list-group-item-action:focus {
  color: #6a6a6a;
  background-color: #e4e4e4;
}
.list-group-item-grey.list-group-item-action.active {
  color: white;
  background-color: #6a6a6a;
  border-color: #6a6a6a;
}

.list-group-item-printblack {
  color: #1b1b1b;
  background-color: #c6c6c6;
}
.list-group-item-printblack.list-group-item-action:hover, .list-group-item-printblack.list-group-item-action:focus {
  color: #1b1b1b;
  background-color: #b9b9b9;
}
.list-group-item-printblack.list-group-item-action.active {
  color: white;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.list-group-item-defaultblue {
  color: #080a41;
  background-color: #bcbddb;
}
.list-group-item-defaultblue.list-group-item-action:hover, .list-group-item-defaultblue.list-group-item-action:focus {
  color: #080a41;
  background-color: #abadd2;
}
.list-group-item-defaultblue.list-group-item-action.active {
  color: white;
  background-color: #080a41;
  border-color: #080a41;
}

.list-group-item-offwhite {
  color: gray;
  background-color: #fdfdfd;
}
.list-group-item-offwhite.list-group-item-action:hover, .list-group-item-offwhite.list-group-item-action:focus {
  color: gray;
  background-color: #f0f0f0;
}
.list-group-item-offwhite.list-group-item-action.active {
  color: white;
  background-color: gray;
  border-color: gray;
}

.list-group-item-tf-primary {
  color: #080a42;
  background-color: #bcbddb;
}
.list-group-item-tf-primary.list-group-item-action:hover, .list-group-item-tf-primary.list-group-item-action:focus {
  color: #080a42;
  background-color: #abadd2;
}
.list-group-item-tf-primary.list-group-item-action.active {
  color: white;
  background-color: #080a42;
  border-color: #080a42;
}

.list-group-item-tf-primary-light {
  color: #153050;
  background-color: #c3d2e3;
}
.list-group-item-tf-primary-light.list-group-item-action:hover, .list-group-item-tf-primary-light.list-group-item-action:focus {
  color: #153050;
  background-color: #b2c5db;
}
.list-group-item-tf-primary-light.list-group-item-action.active {
  color: white;
  background-color: #153050;
  border-color: #153050;
}

.list-group-item-tf-accent-grey {
  color: #2c2c2c;
  background-color: #cfcfcf;
}
.list-group-item-tf-accent-grey.list-group-item-action:hover, .list-group-item-tf-accent-grey.list-group-item-action:focus {
  color: #2c2c2c;
  background-color: #c2c2c2;
}
.list-group-item-tf-accent-grey.list-group-item-action.active {
  color: white;
  background-color: #2c2c2c;
  border-color: #2c2c2c;
}

.list-group-item-tf-accent-lightgrey {
  color: #6a6a6a;
  background-color: #f1f1f1;
}
.list-group-item-tf-accent-lightgrey.list-group-item-action:hover, .list-group-item-tf-accent-lightgrey.list-group-item-action:focus {
  color: #6a6a6a;
  background-color: #e4e4e4;
}
.list-group-item-tf-accent-lightgrey.list-group-item-action.active {
  color: white;
  background-color: #6a6a6a;
  border-color: #6a6a6a;
}

.list-group-item-tf-accent-lightblue {
  color: #4e6984;
  background-color: #e2f0fe;
}
.list-group-item-tf-accent-lightblue.list-group-item-action:hover, .list-group-item-tf-accent-lightblue.list-group-item-action:focus {
  color: #4e6984;
  background-color: #c9e3fd;
}
.list-group-item-tf-accent-lightblue.list-group-item-action.active {
  color: white;
  background-color: #4e6984;
  border-color: #4e6984;
}

.list-group-item-tf-accent-midblue {
  color: #00395e;
  background-color: #b8d6ea;
}
.list-group-item-tf-accent-midblue.list-group-item-action:hover, .list-group-item-tf-accent-midblue.list-group-item-action:focus {
  color: #00395e;
  background-color: #a4cbe4;
}
.list-group-item-tf-accent-midblue.list-group-item-action.active {
  color: white;
  background-color: #00395e;
  border-color: #00395e;
}

.list-group-item-tf-accent-darkblue {
  color: #141728;
  background-color: #c2c4cd;
}
.list-group-item-tf-accent-darkblue.list-group-item-action:hover, .list-group-item-tf-accent-darkblue.list-group-item-action:focus {
  color: #141728;
  background-color: #b4b6c2;
}
.list-group-item-tf-accent-darkblue.list-group-item-action.active {
  color: white;
  background-color: #141728;
  border-color: #141728;
}

.list-group-item-tf-accent-slateblue {
  color: #2f3f4a;
  background-color: #d1dae0;
}
.list-group-item-tf-accent-slateblue.list-group-item-action:hover, .list-group-item-tf-accent-slateblue.list-group-item-action:focus {
  color: #2f3f4a;
  background-color: #c2ced6;
}
.list-group-item-tf-accent-slateblue.list-group-item-action.active {
  color: white;
  background-color: #2f3f4a;
  border-color: #2f3f4a;
}

.list-group-item-tf-accent-turquoise {
  color: #23444b;
  background-color: #cbdce0;
}
.list-group-item-tf-accent-turquoise.list-group-item-action:hover, .list-group-item-tf-accent-turquoise.list-group-item-action:focus {
  color: #23444b;
  background-color: #bbd1d6;
}
.list-group-item-tf-accent-turquoise.list-group-item-action.active {
  color: white;
  background-color: #23444b;
  border-color: #23444b;
}

.list-group-item-tf-accent-white {
  color: #7e7e81;
  background-color: #fbfcfd;
}
.list-group-item-tf-accent-white.list-group-item-action:hover, .list-group-item-tf-accent-white.list-group-item-action:focus {
  color: #7e7e81;
  background-color: #eaeff5;
}
.list-group-item-tf-accent-white.list-group-item-action.active {
  color: white;
  background-color: #7e7e81;
  border-color: #7e7e81;
}

.list-group-item-tf-accent-lightorange {
  color: #84402a;
  background-color: #ffdace;
}
.list-group-item-tf-accent-lightorange.list-group-item-action:hover, .list-group-item-tf-accent-lightorange.list-group-item-action:focus {
  color: #84402a;
  background-color: #ffc7b5;
}
.list-group-item-tf-accent-lightorange.list-group-item-action.active {
  color: white;
  background-color: #84402a;
  border-color: #84402a;
}

.list-group-item-tf-accent-midorange {
  color: #7e361f;
  background-color: #fbd4c8;
}
.list-group-item-tf-accent-midorange.list-group-item-action:hover, .list-group-item-tf-accent-midorange.list-group-item-action:focus {
  color: #7e361f;
  background-color: #f9c1b0;
}
.list-group-item-tf-accent-midorange.list-group-item-action.active {
  color: white;
  background-color: #7e361f;
  border-color: #7e361f;
}

.list-group-item-tf-accent-darkorange {
  color: #6e2612;
  background-color: #f3ccc1;
}
.list-group-item-tf-accent-darkorange.list-group-item-action:hover, .list-group-item-tf-accent-darkorange.list-group-item-action:focus {
  color: #6e2612;
  background-color: #efbaac;
}
.list-group-item-tf-accent-darkorange.list-group-item-action.active {
  color: white;
  background-color: #6e2612;
  border-color: #6e2612;
}

.close {
  float: right;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  text-shadow: 0 1px 0 white;
  opacity: 0.5;
}
.close:hover {
  color: #000000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.805rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: white;
  text-align: center;
  background-color: #000000;
  border-radius: 0;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.805rem;
  word-wrap: break-word;
  background-color: white;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: white;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: white;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: white;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: white;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: white;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: white;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: white;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #10137d !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0a0c50 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

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

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-facebook {
  background-color: #3A559F !important;
}

a.bg-facebook:hover, a.bg-facebook:focus,
button.bg-facebook:hover,
button.bg-facebook:focus {
  background-color: #2c417a !important;
}

.bg-twitter {
  background-color: #50ABF1 !important;
}

a.bg-twitter:hover, a.bg-twitter:focus,
button.bg-twitter:hover,
button.bg-twitter:focus {
  background-color: #2194ed !important;
}

.bg-youtube {
  background-color: #a90000 !important;
}

a.bg-youtube:hover, a.bg-youtube:focus,
button.bg-youtube:hover,
button.bg-youtube:focus {
  background-color: #760000 !important;
}

.bg-linkedin {
  background-color: #0077B5 !important;
}

a.bg-linkedin:hover, a.bg-linkedin:focus,
button.bg-linkedin:hover,
button.bg-linkedin:focus {
  background-color: #005582 !important;
}

.bg-gplus {
  background-color: #DD4B39 !important;
}

a.bg-gplus:hover, a.bg-gplus:focus,
button.bg-gplus:hover,
button.bg-gplus:focus {
  background-color: #c23321 !important;
}

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

a.bg-alert-red:hover, a.bg-alert-red:focus,
button.bg-alert-red:hover,
button.bg-alert-red:focus {
  background-color: #9e1737 !important;
}

.bg-alert-amber {
  background-color: #f29500 !important;
}

a.bg-alert-amber:hover, a.bg-alert-amber:focus,
button.bg-alert-amber:hover,
button.bg-alert-amber:focus {
  background-color: #bf7600 !important;
}

.bg-alert-green {
  background-color: #58ad60 !important;
}

a.bg-alert-green:hover, a.bg-alert-green:focus,
button.bg-alert-green:hover,
button.bg-alert-green:focus {
  background-color: #458d4c !important;
}

.bg-black {
  background-color: #000 !important;
}

a.bg-black:hover, a.bg-black:focus,
button.bg-black:hover,
button.bg-black:focus {
  background-color: black !important;
}

.bg-white {
  background-color: #fff !important;
}

a.bg-white:hover, a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
  background-color: #e6e6e6 !important;
}

.bg-grey {
  background-color: #ccc !important;
}

a.bg-grey:hover, a.bg-grey:focus,
button.bg-grey:hover,
button.bg-grey:focus {
  background-color: #b3b3b3 !important;
}

.bg-printblack {
  background-color: #333 !important;
}

a.bg-printblack:hover, a.bg-printblack:focus,
button.bg-printblack:hover,
button.bg-printblack:focus {
  background-color: #1a1a1a !important;
}

.bg-defaultblue {
  background-color: #10137d !important;
}

a.bg-defaultblue:hover, a.bg-defaultblue:focus,
button.bg-defaultblue:hover,
button.bg-defaultblue:focus {
  background-color: #0a0c50 !important;
}

.bg-offwhite {
  background-color: #f7f7f7 !important;
}

a.bg-offwhite:hover, a.bg-offwhite:focus,
button.bg-offwhite:hover,
button.bg-offwhite:focus {
  background-color: #dedede !important;
}

.bg-tf-primary {
  background-color: #10147e !important;
}

a.bg-tf-primary:hover, a.bg-tf-primary:focus,
button.bg-tf-primary:hover,
button.bg-tf-primary:focus {
  background-color: #0a0d51 !important;
}

.bg-tf-primary-light {
  background-color: #285d9a !important;
}

a.bg-tf-primary-light:hover, a.bg-tf-primary-light:focus,
button.bg-tf-primary-light:hover,
button.bg-tf-primary-light:focus {
  background-color: #1d4572 !important;
}

.bg-tf-accent-grey {
  background-color: #555555 !important;
}

a.bg-tf-accent-grey:hover, a.bg-tf-accent-grey:focus,
button.bg-tf-accent-grey:hover,
button.bg-tf-accent-grey:focus {
  background-color: #3c3c3c !important;
}

.bg-tf-accent-lightgrey {
  background-color: #cccccc !important;
}

a.bg-tf-accent-lightgrey:hover, a.bg-tf-accent-lightgrey:focus,
button.bg-tf-accent-lightgrey:hover,
button.bg-tf-accent-lightgrey:focus {
  background-color: #b3b3b3 !important;
}

.bg-tf-accent-lightblue {
  background-color: #96c9fd !important;
}

a.bg-tf-accent-lightblue:hover, a.bg-tf-accent-lightblue:focus,
button.bg-tf-accent-lightblue:hover,
button.bg-tf-accent-lightblue:focus {
  background-color: #64affc !important;
}

.bg-tf-accent-midblue {
  background-color: #006db4 !important;
}

a.bg-tf-accent-midblue:hover, a.bg-tf-accent-midblue:focus,
button.bg-tf-accent-midblue:hover,
button.bg-tf-accent-midblue:focus {
  background-color: #004e81 !important;
}

.bg-tf-accent-darkblue {
  background-color: #262c4d !important;
}

a.bg-tf-accent-darkblue:hover, a.bg-tf-accent-darkblue:focus,
button.bg-tf-accent-darkblue:hover,
button.bg-tf-accent-darkblue:focus {
  background-color: #15182b !important;
}

.bg-tf-accent-slateblue {
  background-color: #5b7a8f !important;
}

a.bg-tf-accent-slateblue:hover, a.bg-tf-accent-slateblue:focus,
button.bg-tf-accent-slateblue:hover,
button.bg-tf-accent-slateblue:focus {
  background-color: #475f70 !important;
}

.bg-tf-accent-turquoise {
  background-color: #448391 !important;
}

a.bg-tf-accent-turquoise:hover, a.bg-tf-accent-turquoise:focus,
button.bg-tf-accent-turquoise:hover,
button.bg-tf-accent-turquoise:focus {
  background-color: #34646e !important;
}

.bg-tf-accent-white {
  background-color: #f2f3f8 !important;
}

a.bg-tf-accent-white:hover, a.bg-tf-accent-white:focus,
button.bg-tf-accent-white:hover,
button.bg-tf-accent-white:focus {
  background-color: #d1d4e6 !important;
}

.bg-tf-accent-lightorange {
  background-color: #fe7b51 !important;
}

a.bg-tf-accent-lightorange:hover, a.bg-tf-accent-lightorange:focus,
button.bg-tf-accent-lightorange:hover,
button.bg-tf-accent-lightorange:focus {
  background-color: #fe551e !important;
}

.bg-tf-accent-midorange {
  background-color: #f2673c !important;
}

a.bg-tf-accent-midorange:hover, a.bg-tf-accent-midorange:focus,
button.bg-tf-accent-midorange:hover,
button.bg-tf-accent-midorange:focus {
  background-color: #eb4410 !important;
}

.bg-tf-accent-darkorange {
  background-color: #d44922 !important;
}

a.bg-tf-accent-darkorange:hover, a.bg-tf-accent-darkorange:focus,
button.bg-tf-accent-darkorange:hover,
button.bg-tf-accent-darkorange:focus {
  background-color: #a83a1b !important;
}

.bg-white {
  background-color: white !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #10137d !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-facebook {
  border-color: #3A559F !important;
}

.border-twitter {
  border-color: #50ABF1 !important;
}

.border-youtube {
  border-color: #a90000 !important;
}

.border-linkedin {
  border-color: #0077B5 !important;
}

.border-gplus {
  border-color: #DD4B39 !important;
}

.border-alert-red {
  border-color: #ca1e47 !important;
}

.border-alert-amber {
  border-color: #f29500 !important;
}

.border-alert-green {
  border-color: #58ad60 !important;
}

.border-black {
  border-color: #000 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-grey {
  border-color: #ccc !important;
}

.border-printblack {
  border-color: #333 !important;
}

.border-defaultblue {
  border-color: #10137d !important;
}

.border-offwhite {
  border-color: #f7f7f7 !important;
}

.border-tf-primary {
  border-color: #10147e !important;
}

.border-tf-primary-light {
  border-color: #285d9a !important;
}

.border-tf-accent-grey {
  border-color: #555555 !important;
}

.border-tf-accent-lightgrey {
  border-color: #cccccc !important;
}

.border-tf-accent-lightblue {
  border-color: #96c9fd !important;
}

.border-tf-accent-midblue {
  border-color: #006db4 !important;
}

.border-tf-accent-darkblue {
  border-color: #262c4d !important;
}

.border-tf-accent-slateblue {
  border-color: #5b7a8f !important;
}

.border-tf-accent-turquoise {
  border-color: #448391 !important;
}

.border-tf-accent-white {
  border-color: #f2f3f8 !important;
}

.border-tf-accent-lightorange {
  border-color: #fe7b51 !important;
}

.border-tf-accent-midorange {
  border-color: #f2673c !important;
}

.border-tf-accent-darkorange {
  border-color: #d44922 !important;
}

.border-white {
  border-color: white !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xx-none {
    display: none !important;
  }

  .d-xx-inline {
    display: inline !important;
  }

  .d-xx-inline-block {
    display: inline-block !important;
  }

  .d-xx-block {
    display: block !important;
  }

  .d-xx-table {
    display: table !important;
  }

  .d-xx-table-row {
    display: table-row !important;
  }

  .d-xx-table-cell {
    display: table-cell !important;
  }

  .d-xx-flex {
    display: flex !important;
  }

  .d-xx-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .flex-xx-row {
    flex-direction: row !important;
  }

  .flex-xx-column {
    flex-direction: column !important;
  }

  .flex-xx-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xx-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xx-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xx-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xx-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xx-fill {
    flex: 1 1 auto !important;
  }

  .flex-xx-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xx-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xx-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xx-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xx-start {
    justify-content: flex-start !important;
  }

  .justify-content-xx-end {
    justify-content: flex-end !important;
  }

  .justify-content-xx-center {
    justify-content: center !important;
  }

  .justify-content-xx-between {
    justify-content: space-between !important;
  }

  .justify-content-xx-around {
    justify-content: space-around !important;
  }

  .align-items-xx-start {
    align-items: flex-start !important;
  }

  .align-items-xx-end {
    align-items: flex-end !important;
  }

  .align-items-xx-center {
    align-items: center !important;
  }

  .align-items-xx-baseline {
    align-items: baseline !important;
  }

  .align-items-xx-stretch {
    align-items: stretch !important;
  }

  .align-content-xx-start {
    align-content: flex-start !important;
  }

  .align-content-xx-end {
    align-content: flex-end !important;
  }

  .align-content-xx-center {
    align-content: center !important;
  }

  .align-content-xx-between {
    align-content: space-between !important;
  }

  .align-content-xx-around {
    align-content: space-around !important;
  }

  .align-content-xx-stretch {
    align-content: stretch !important;
  }

  .align-self-xx-auto {
    align-self: auto !important;
  }

  .align-self-xx-start {
    align-self: flex-start !important;
  }

  .align-self-xx-end {
    align-self: flex-end !important;
  }

  .align-self-xx-center {
    align-self: center !important;
  }

  .align-self-xx-baseline {
    align-self: baseline !important;
  }

  .align-self-xx-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1400px) {
  .float-xx-left {
    float: left !important;
  }

  .float-xx-right {
    float: right !important;
  }

  .float-xx-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xx-0 {
    margin: 0 !important;
  }

  .mt-xx-0,
.my-xx-0 {
    margin-top: 0 !important;
  }

  .mr-xx-0,
.mx-xx-0 {
    margin-right: 0 !important;
  }

  .mb-xx-0,
.my-xx-0 {
    margin-bottom: 0 !important;
  }

  .ml-xx-0,
.mx-xx-0 {
    margin-left: 0 !important;
  }

  .m-xx-1 {
    margin: 0.25rem !important;
  }

  .mt-xx-1,
.my-xx-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xx-1,
.mx-xx-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xx-1,
.my-xx-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xx-1,
.mx-xx-1 {
    margin-left: 0.25rem !important;
  }

  .m-xx-2 {
    margin: 0.5rem !important;
  }

  .mt-xx-2,
.my-xx-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xx-2,
.mx-xx-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xx-2,
.my-xx-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xx-2,
.mx-xx-2 {
    margin-left: 0.5rem !important;
  }

  .m-xx-3 {
    margin: 1rem !important;
  }

  .mt-xx-3,
.my-xx-3 {
    margin-top: 1rem !important;
  }

  .mr-xx-3,
.mx-xx-3 {
    margin-right: 1rem !important;
  }

  .mb-xx-3,
.my-xx-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xx-3,
.mx-xx-3 {
    margin-left: 1rem !important;
  }

  .m-xx-4 {
    margin: 1.5rem !important;
  }

  .mt-xx-4,
.my-xx-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xx-4,
.mx-xx-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xx-4,
.my-xx-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xx-4,
.mx-xx-4 {
    margin-left: 1.5rem !important;
  }

  .m-xx-5 {
    margin: 3rem !important;
  }

  .mt-xx-5,
.my-xx-5 {
    margin-top: 3rem !important;
  }

  .mr-xx-5,
.mx-xx-5 {
    margin-right: 3rem !important;
  }

  .mb-xx-5,
.my-xx-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xx-5,
.mx-xx-5 {
    margin-left: 3rem !important;
  }

  .p-xx-0 {
    padding: 0 !important;
  }

  .pt-xx-0,
.py-xx-0 {
    padding-top: 0 !important;
  }

  .pr-xx-0,
.px-xx-0 {
    padding-right: 0 !important;
  }

  .pb-xx-0,
.py-xx-0 {
    padding-bottom: 0 !important;
  }

  .pl-xx-0,
.px-xx-0 {
    padding-left: 0 !important;
  }

  .p-xx-1 {
    padding: 0.25rem !important;
  }

  .pt-xx-1,
.py-xx-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xx-1,
.px-xx-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xx-1,
.py-xx-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xx-1,
.px-xx-1 {
    padding-left: 0.25rem !important;
  }

  .p-xx-2 {
    padding: 0.5rem !important;
  }

  .pt-xx-2,
.py-xx-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xx-2,
.px-xx-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xx-2,
.py-xx-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xx-2,
.px-xx-2 {
    padding-left: 0.5rem !important;
  }

  .p-xx-3 {
    padding: 1rem !important;
  }

  .pt-xx-3,
.py-xx-3 {
    padding-top: 1rem !important;
  }

  .pr-xx-3,
.px-xx-3 {
    padding-right: 1rem !important;
  }

  .pb-xx-3,
.py-xx-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xx-3,
.px-xx-3 {
    padding-left: 1rem !important;
  }

  .p-xx-4 {
    padding: 1.5rem !important;
  }

  .pt-xx-4,
.py-xx-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xx-4,
.px-xx-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xx-4,
.py-xx-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xx-4,
.px-xx-4 {
    padding-left: 1.5rem !important;
  }

  .p-xx-5 {
    padding: 3rem !important;
  }

  .pt-xx-5,
.py-xx-5 {
    padding-top: 3rem !important;
  }

  .pr-xx-5,
.px-xx-5 {
    padding-right: 3rem !important;
  }

  .pb-xx-5,
.py-xx-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xx-5,
.px-xx-5 {
    padding-left: 3rem !important;
  }

  .m-xx-n1 {
    margin: -0.25rem !important;
  }

  .mt-xx-n1,
.my-xx-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xx-n1,
.mx-xx-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xx-n1,
.my-xx-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xx-n1,
.mx-xx-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xx-n2 {
    margin: -0.5rem !important;
  }

  .mt-xx-n2,
.my-xx-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xx-n2,
.mx-xx-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xx-n2,
.my-xx-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xx-n2,
.mx-xx-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xx-n3 {
    margin: -1rem !important;
  }

  .mt-xx-n3,
.my-xx-n3 {
    margin-top: -1rem !important;
  }

  .mr-xx-n3,
.mx-xx-n3 {
    margin-right: -1rem !important;
  }

  .mb-xx-n3,
.my-xx-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xx-n3,
.mx-xx-n3 {
    margin-left: -1rem !important;
  }

  .m-xx-n4 {
    margin: -1.5rem !important;
  }

  .mt-xx-n4,
.my-xx-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xx-n4,
.mx-xx-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xx-n4,
.my-xx-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xx-n4,
.mx-xx-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xx-n5 {
    margin: -3rem !important;
  }

  .mt-xx-n5,
.my-xx-n5 {
    margin-top: -3rem !important;
  }

  .mr-xx-n5,
.mx-xx-n5 {
    margin-right: -3rem !important;
  }

  .mb-xx-n5,
.my-xx-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xx-n5,
.mx-xx-n5 {
    margin-left: -3rem !important;
  }

  .m-xx-auto {
    margin: auto !important;
  }

  .mt-xx-auto,
.my-xx-auto {
    margin-top: auto !important;
  }

  .mr-xx-auto,
.mx-xx-auto {
    margin-right: auto !important;
  }

  .mb-xx-auto,
.my-xx-auto {
    margin-bottom: auto !important;
  }

  .ml-xx-auto,
.mx-xx-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .text-xx-left {
    text-align: left !important;
  }

  .text-xx-right {
    text-align: right !important;
  }

  .text-xx-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: white !important;
}

.text-primary {
  color: #10137d !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #070939 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-facebook {
  color: #3A559F !important;
}

a.text-facebook:hover, a.text-facebook:focus {
  color: #263767 !important;
}

.text-twitter {
  color: #50ABF1 !important;
}

a.text-twitter:hover, a.text-twitter:focus {
  color: #1288e2 !important;
}

.text-youtube {
  color: #a90000 !important;
}

a.text-youtube:hover, a.text-youtube:focus {
  color: #5d0000 !important;
}

.text-linkedin {
  color: #0077B5 !important;
}

a.text-linkedin:hover, a.text-linkedin:focus {
  color: #004569 !important;
}

.text-gplus {
  color: #DD4B39 !important;
}

a.text-gplus:hover, a.text-gplus:focus {
  color: #ac2d1e !important;
}

.text-alert-red {
  color: #ca1e47 !important;
}

a.text-alert-red:hover, a.text-alert-red:focus {
  color: #871430 !important;
}

.text-alert-amber {
  color: #f29500 !important;
}

a.text-alert-amber:hover, a.text-alert-amber:focus {
  color: #a66600 !important;
}

.text-alert-green {
  color: #58ad60 !important;
}

a.text-alert-green:hover, a.text-alert-green:focus {
  color: #3d7c43 !important;
}

.text-black {
  color: #000 !important;
}

a.text-black:hover, a.text-black:focus {
  color: black !important;
}

.text-white {
  color: #fff !important;
}

a.text-white:hover, a.text-white:focus {
  color: #d9d9d9 !important;
}

.text-grey {
  color: #ccc !important;
}

a.text-grey:hover, a.text-grey:focus {
  color: #a6a6a6 !important;
}

.text-printblack {
  color: #333 !important;
}

a.text-printblack:hover, a.text-printblack:focus {
  color: #0d0d0d !important;
}

.text-defaultblue {
  color: #10137d !important;
}

a.text-defaultblue:hover, a.text-defaultblue:focus {
  color: #070939 !important;
}

.text-offwhite {
  color: #f7f7f7 !important;
}

a.text-offwhite:hover, a.text-offwhite:focus {
  color: #d1d1d1 !important;
}

.text-tf-primary {
  color: #10147e !important;
}

a.text-tf-primary:hover, a.text-tf-primary:focus {
  color: #07093a !important;
}

.text-tf-primary-light {
  color: #285d9a !important;
}

a.text-tf-primary-light:hover, a.text-tf-primary-light:focus {
  color: #18385d !important;
}

.text-tf-accent-grey {
  color: #555555 !important;
}

a.text-tf-accent-grey:hover, a.text-tf-accent-grey:focus {
  color: #2f2f2f !important;
}

.text-tf-accent-lightgrey {
  color: #cccccc !important;
}

a.text-tf-accent-lightgrey:hover, a.text-tf-accent-lightgrey:focus {
  color: #a6a6a6 !important;
}

.text-tf-accent-lightblue {
  color: #96c9fd !important;
}

a.text-tf-accent-lightblue:hover, a.text-tf-accent-lightblue:focus {
  color: #4ba2fc !important;
}

.text-tf-accent-midblue {
  color: #006db4 !important;
}

a.text-tf-accent-midblue:hover, a.text-tf-accent-midblue:focus {
  color: #003f68 !important;
}

.text-tf-accent-darkblue {
  color: #262c4d !important;
}

a.text-tf-accent-darkblue:hover, a.text-tf-accent-darkblue:focus {
  color: #0d0f1a !important;
}

.text-tf-accent-slateblue {
  color: #5b7a8f !important;
}

a.text-tf-accent-slateblue:hover, a.text-tf-accent-slateblue:focus {
  color: #3d5260 !important;
}

.text-tf-accent-turquoise {
  color: #448391 !important;
}

a.text-tf-accent-turquoise:hover, a.text-tf-accent-turquoise:focus {
  color: #2c545d !important;
}

.text-tf-accent-white {
  color: #f2f3f8 !important;
}

a.text-tf-accent-white:hover, a.text-tf-accent-white:focus {
  color: #c0c5dd !important;
}

.text-tf-accent-lightorange {
  color: #fe7b51 !important;
}

a.text-tf-accent-lightorange:hover, a.text-tf-accent-lightorange:focus {
  color: #fe4105 !important;
}

.text-tf-accent-midorange {
  color: #f2673c !important;
}

a.text-tf-accent-midorange:hover, a.text-tf-accent-midorange:focus {
  color: #d33d0e !important;
}

.text-tf-accent-darkorange {
  color: #d44922 !important;
}

a.text-tf-accent-darkorange:hover, a.text-tf-accent-darkorange:focus {
  color: #923217 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn):not(button):not(input[type=button]):not(input[type=reset]):not(input[type=submit]) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: white !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*# sourceMappingURL=style.css.map */
