@charset "UTF-8";
/*
Theme Name: Legal People
Theme URI: http://www.webgenerator.nl/themes/budget
Author: WebGenerator
Author URI: http://www.webgenerator.nl/
Description: Legal People
Version: 1.1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: legalpeople
Domain Path: /languages
*/
/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import './plugins/fancybox/jquery.fancybox.css';
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

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

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

/* STRAKS TOEVOEGEN DOOR TIM */
.heading_title {
  max-width: 300px;
}

.person-box {
  perspective: 1000;
  width: 25%;
}

.person-box, .front, .backflip {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}

.person-box .backflip p {
  font-size: 13px;
  line-height: 1.7em;
}

.person-box .front .image-container img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.person-box .front .person-overlay,
.person-box .backflip .description-container {
  position: absolute;
  opacity: 0.9;
  filter: alpha(opacity=90);
  bottom: 0;
  width: 100%;
}

.person-box .backflip .description-container {
  height: 100%;
}

.person-box .backflip .social-media-icons {
  position: absolute;
  right: 15px;
  top: 15px;
}

.person-box .backflip .social-media-icons .person-twitter-icon,
.person-box .backflip .social-media-icons .person-linkedin-icon {
  display: inline-block;
  background: url(/wp-content/uploads/2016/02/Twitter.png) no-repeat left top !important;
  margin: 0 0 0 4px !important;
  padding: 0 !important;
  width: 32px;
  height: 32px;
}

.person-box .backflip .social-media-icons .person-linkedin-icon {
  background: url(/wp-content/uploads/2016/02/Linkedin.png) no-repeat left top !important;
}

.person-box .front .person-overlay h2,
.person-box .front .person-overlay h3,
.person-box .backflip .description-container h2,
.person-box .backflip .description-container a, .person-box .backflip .description-container a:link, .person-box .backflip .description-container a:active, .person-box .backflip .description-container a:visited {
  display: block;
  background: #8a9bac;
  margin: 0 15px;
  padding: 7px;
  line-height: 1em;
  color: #FFFFFF;
}

.person-box .backflip .description-container h2 {
  position: absolute;
  bottom: 46px;
}

.person-box .backflip .description-container a {
  position: absolute;
  bottom: 0;
}

.person-box .backflip .social-media-icons a {
  position: relative !important;
}

.person-box .front .person-overlay h3,
.person-box .backflip .description-container a, .person-box .backflip .description-container a:link, .person-box .backflip .description-container a:active, .person-box .backflip .description-container a:visited {
  background: #b3c1cf;
  margin: 5px 15px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #384047;
}

.person-box .backflip .description-container a, .person-box .backflip .description-container a:link, .person-box .backflip .description-container a:active, .person-box .backflip .description-container a:visited {
  display: inline-block;
  margin: 5px 0 15px 15px;
  text-decoration: none;
}

.person-box .backflip .description-container a:hover {
  background: #8a9bac;
  color: #FFFFFF;
}

.person-box .backflip .description-container .btn-contact {
  position: absolute;
  right: 15px;
}

.person-box .backflip h2 {
  margin-top: 0;
}

.person-box .front img, .person-box .backflip img {
  width: 100%;
  height: auto !important;
}

/* entire container, keeps perspective */
/* flip the pane when hovered */
.person-box:hover .flipper, .person-box.hover .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
  filter: FlipH;
  -ms-filter: "FlipH";
}

/* START: Accommodating for IE */
.flip-container:hover .backflip, .flip-container.hover .backflip {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.flip-container:hover .front, .flip-container.hover .front {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 0.6s;
  -moz-transition: 0.6s;
  -moz-transform: perspective(1000px);
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.front, .backflip {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -webkit-transform: rotateY(0deg);
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -moz-transform: rotateY(0deg);
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  -o-transform: rotateY(0deg);
  -ms-transition: 0.6s;
  -ms-transform-style: preserve-3d;
  -ms-transform: rotateY(0deg);
  transition: 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  position: absolute;
  top: 0;
  left: 0;
}

.front {
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
}

.backflip {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.bootstrap-styles {
  /*!
   * Bootstrap v4.3.1 (https://getbootstrap.com/)
   * Copyright 2011-2019 The Bootstrap Authors
   * Copyright 2011-2019 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
   */
}
.bootstrap-styles :root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #FCF302;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #274186;
  --secondary: #00A0E3;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #FCF302;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --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;
}
.bootstrap-styles *,
.bootstrap-styles *::before,
.bootstrap-styles *::after {
  box-sizing: border-box;
}
.bootstrap-styles html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.bootstrap-styles article, .bootstrap-styles aside, .bootstrap-styles figcaption, .bootstrap-styles figure, .bootstrap-styles footer, .bootstrap-styles header, .bootstrap-styles hgroup, .bootstrap-styles main, .bootstrap-styles nav, .bootstrap-styles section {
  display: block;
}
.bootstrap-styles 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: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
.bootstrap-styles [tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
.bootstrap-styles hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
.bootstrap-styles h1, .bootstrap-styles h2, .bootstrap-styles h3, .bootstrap-styles h4, .bootstrap-styles h5, .bootstrap-styles h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.bootstrap-styles p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.bootstrap-styles abbr[title],
.bootstrap-styles abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}
.bootstrap-styles address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
.bootstrap-styles ol,
.bootstrap-styles ul,
.bootstrap-styles dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
.bootstrap-styles ol ol,
.bootstrap-styles ul ul,
.bootstrap-styles ol ul,
.bootstrap-styles ul ol {
  margin-bottom: 0;
}
.bootstrap-styles dt {
  font-weight: 700;
}
.bootstrap-styles dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.bootstrap-styles blockquote {
  margin: 0 0 1rem;
}
.bootstrap-styles b,
.bootstrap-styles strong {
  font-weight: bolder;
}
.bootstrap-styles small {
  font-size: 80%;
}
.bootstrap-styles sub,
.bootstrap-styles sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
.bootstrap-styles sub {
  bottom: -0.25em;
}
.bootstrap-styles sup {
  top: -0.5em;
}
.bootstrap-styles a {
  color: #274186;
  text-decoration: none;
  background-color: transparent;
}
.bootstrap-styles a:hover {
  color: #16244b;
  text-decoration: underline;
}
.bootstrap-styles a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.bootstrap-styles a:not([href]):not([tabindex]):hover, .bootstrap-styles a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
.bootstrap-styles a:not([href]):not([tabindex]):focus {
  outline: 0;
}
.bootstrap-styles pre,
.bootstrap-styles code,
.bootstrap-styles kbd,
.bootstrap-styles samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
.bootstrap-styles pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}
.bootstrap-styles figure {
  margin: 0 0 1rem;
}
.bootstrap-styles img {
  vertical-align: middle;
  border-style: none;
}
.bootstrap-styles svg {
  overflow: hidden;
  vertical-align: middle;
}
.bootstrap-styles table {
  border-collapse: collapse;
}
.bootstrap-styles caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
.bootstrap-styles th {
  text-align: inherit;
}
.bootstrap-styles label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.bootstrap-styles button {
  border-radius: 0;
}
.bootstrap-styles button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
.bootstrap-styles input,
.bootstrap-styles button,
.bootstrap-styles select,
.bootstrap-styles optgroup,
.bootstrap-styles textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.bootstrap-styles button,
.bootstrap-styles input {
  overflow: visible;
}
.bootstrap-styles button,
.bootstrap-styles select {
  text-transform: none;
}
.bootstrap-styles select {
  word-wrap: normal;
}
.bootstrap-styles button,
.bootstrap-styles [type=button],
.bootstrap-styles [type=reset],
.bootstrap-styles [type=submit] {
  -webkit-appearance: button;
}
.bootstrap-styles button:not(:disabled),
.bootstrap-styles [type=button]:not(:disabled),
.bootstrap-styles [type=reset]:not(:disabled),
.bootstrap-styles [type=submit]:not(:disabled) {
  cursor: pointer;
}
.bootstrap-styles button::-moz-focus-inner,
.bootstrap-styles [type=button]::-moz-focus-inner,
.bootstrap-styles [type=reset]::-moz-focus-inner,
.bootstrap-styles [type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.bootstrap-styles input[type=radio],
.bootstrap-styles input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
.bootstrap-styles input[type=date],
.bootstrap-styles input[type=time],
.bootstrap-styles input[type=datetime-local],
.bootstrap-styles input[type=month] {
  -webkit-appearance: listbox;
}
.bootstrap-styles textarea {
  overflow: auto;
  resize: vertical;
}
.bootstrap-styles fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.bootstrap-styles 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;
}
.bootstrap-styles progress {
  vertical-align: baseline;
}
.bootstrap-styles [type=number]::-webkit-inner-spin-button,
.bootstrap-styles [type=number]::-webkit-outer-spin-button {
  height: auto;
}
.bootstrap-styles [type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
.bootstrap-styles [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.bootstrap-styles ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
.bootstrap-styles output {
  display: inline-block;
}
.bootstrap-styles summary {
  display: list-item;
  cursor: pointer;
}
.bootstrap-styles template {
  display: none;
}
.bootstrap-styles [hidden] {
  display: none !important;
}
.bootstrap-styles h1, .bootstrap-styles h2, .bootstrap-styles h3, .bootstrap-styles h4, .bootstrap-styles h5, .bootstrap-styles h6,
.bootstrap-styles .h1, .bootstrap-styles .h2, .bootstrap-styles .h3, .bootstrap-styles .h4, .bootstrap-styles .h5, .bootstrap-styles .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.bootstrap-styles h1, .bootstrap-styles .h1 {
  font-size: 2.5rem;
}
.bootstrap-styles h2, .bootstrap-styles .h2 {
  font-size: 2rem;
}
.bootstrap-styles h3, .bootstrap-styles .h3 {
  font-size: 1.75rem;
}
.bootstrap-styles h4, .bootstrap-styles .h4 {
  font-size: 1.5rem;
}
.bootstrap-styles h5, .bootstrap-styles .h5 {
  font-size: 1.25rem;
}
.bootstrap-styles h6, .bootstrap-styles .h6 {
  font-size: 1rem;
}
.bootstrap-styles .lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.bootstrap-styles .display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.bootstrap-styles .display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.bootstrap-styles .display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.bootstrap-styles .display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.bootstrap-styles hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.bootstrap-styles small,
.bootstrap-styles .small {
  font-size: 80%;
  font-weight: 400;
}
.bootstrap-styles mark,
.bootstrap-styles .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.bootstrap-styles .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.bootstrap-styles .list-inline {
  padding-left: 0;
  list-style: none;
}
.bootstrap-styles .list-inline-item {
  display: inline-block;
}
.bootstrap-styles .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.bootstrap-styles .initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.bootstrap-styles .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.bootstrap-styles .blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.bootstrap-styles .blockquote-footer::before {
  content: "— ";
}
.bootstrap-styles .img-fluid {
  max-width: 100%;
  height: auto;
}
.bootstrap-styles .img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.bootstrap-styles .figure {
  display: inline-block;
}
.bootstrap-styles .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.bootstrap-styles .figure-caption {
  font-size: 90%;
  color: #6c757d;
}
.bootstrap-styles code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > .bootstrap-styles code {
  color: inherit;
}
.bootstrap-styles kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
.bootstrap-styles kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
.bootstrap-styles pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
.bootstrap-styles pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.bootstrap-styles .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.bootstrap-styles .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .bootstrap-styles .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .container {
    max-width: 1080px;
  }
}
.bootstrap-styles .container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.bootstrap-styles .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.bootstrap-styles .no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.bootstrap-styles .no-gutters > .col,
.bootstrap-styles .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.bootstrap-styles .col-xl,
.bootstrap-styles .col-xl-auto, .bootstrap-styles .col-xl-12, .bootstrap-styles .col-xl-11, .bootstrap-styles .col-xl-10, .bootstrap-styles .col-xl-9, .bootstrap-styles .col-xl-8, .bootstrap-styles .col-xl-7, .bootstrap-styles .col-xl-6, .bootstrap-styles .col-xl-5, .bootstrap-styles .col-xl-4, .bootstrap-styles .col-xl-3, .bootstrap-styles .col-xl-2, .bootstrap-styles .col-xl-1, .bootstrap-styles .col-lg,
.bootstrap-styles .col-lg-auto, .bootstrap-styles .col-lg-12, .bootstrap-styles .col-lg-11, .bootstrap-styles .col-lg-10, .bootstrap-styles .col-lg-9, .bootstrap-styles .col-lg-8, .bootstrap-styles .col-lg-7, .bootstrap-styles .col-lg-6, .bootstrap-styles .col-lg-5, .bootstrap-styles .col-lg-4, .bootstrap-styles .col-lg-3, .bootstrap-styles .col-lg-2, .bootstrap-styles .col-lg-1, .bootstrap-styles .col-md,
.bootstrap-styles .col-md-auto, .bootstrap-styles .col-md-12, .bootstrap-styles .col-md-11, .bootstrap-styles .col-md-10, .bootstrap-styles .col-md-9, .bootstrap-styles .col-md-8, .bootstrap-styles .col-md-7, .bootstrap-styles .col-md-6, .bootstrap-styles .col-md-5, .bootstrap-styles .col-md-4, .bootstrap-styles .col-md-3, .bootstrap-styles .col-md-2, .bootstrap-styles .col-md-1, .bootstrap-styles .col-sm,
.bootstrap-styles .col-sm-auto, .bootstrap-styles .col-sm-12, .bootstrap-styles .col-sm-11, .bootstrap-styles .col-sm-10, .bootstrap-styles .col-sm-9, .bootstrap-styles .col-sm-8, .bootstrap-styles .col-sm-7, .bootstrap-styles .col-sm-6, .bootstrap-styles .col-sm-5, .bootstrap-styles .col-sm-4, .bootstrap-styles .col-sm-3, .bootstrap-styles .col-sm-2, .bootstrap-styles .col-sm-1, .bootstrap-styles .col,
.bootstrap-styles .col-auto, .bootstrap-styles .col-12, .bootstrap-styles .col-11, .bootstrap-styles .col-10, .bootstrap-styles .col-9, .bootstrap-styles .col-8, .bootstrap-styles .col-7, .bootstrap-styles .col-6, .bootstrap-styles .col-5, .bootstrap-styles .col-4, .bootstrap-styles .col-3, .bootstrap-styles .col-2, .bootstrap-styles .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.bootstrap-styles .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.bootstrap-styles .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.bootstrap-styles .col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.bootstrap-styles .col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.bootstrap-styles .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.bootstrap-styles .col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.bootstrap-styles .col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.bootstrap-styles .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.bootstrap-styles .col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.bootstrap-styles .col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.bootstrap-styles .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.bootstrap-styles .col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.bootstrap-styles .col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.bootstrap-styles .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.bootstrap-styles .order-first {
  order: -1;
}
.bootstrap-styles .order-last {
  order: 13;
}
.bootstrap-styles .order-0 {
  order: 0;
}
.bootstrap-styles .order-1 {
  order: 1;
}
.bootstrap-styles .order-2 {
  order: 2;
}
.bootstrap-styles .order-3 {
  order: 3;
}
.bootstrap-styles .order-4 {
  order: 4;
}
.bootstrap-styles .order-5 {
  order: 5;
}
.bootstrap-styles .order-6 {
  order: 6;
}
.bootstrap-styles .order-7 {
  order: 7;
}
.bootstrap-styles .order-8 {
  order: 8;
}
.bootstrap-styles .order-9 {
  order: 9;
}
.bootstrap-styles .order-10 {
  order: 10;
}
.bootstrap-styles .order-11 {
  order: 11;
}
.bootstrap-styles .order-12 {
  order: 12;
}
.bootstrap-styles .offset-1 {
  margin-left: 8.3333333333%;
}
.bootstrap-styles .offset-2 {
  margin-left: 16.6666666667%;
}
.bootstrap-styles .offset-3 {
  margin-left: 25%;
}
.bootstrap-styles .offset-4 {
  margin-left: 33.3333333333%;
}
.bootstrap-styles .offset-5 {
  margin-left: 41.6666666667%;
}
.bootstrap-styles .offset-6 {
  margin-left: 50%;
}
.bootstrap-styles .offset-7 {
  margin-left: 58.3333333333%;
}
.bootstrap-styles .offset-8 {
  margin-left: 66.6666666667%;
}
.bootstrap-styles .offset-9 {
  margin-left: 75%;
}
.bootstrap-styles .offset-10 {
  margin-left: 83.3333333333%;
}
.bootstrap-styles .offset-11 {
  margin-left: 91.6666666667%;
}
@media (min-width: 576px) {
  .bootstrap-styles .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-styles .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-styles .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .bootstrap-styles .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .bootstrap-styles .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-styles .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .bootstrap-styles .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .bootstrap-styles .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-styles .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .bootstrap-styles .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .bootstrap-styles .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-styles .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .bootstrap-styles .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .bootstrap-styles .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-styles .order-sm-first {
    order: -1;
  }
  .bootstrap-styles .order-sm-last {
    order: 13;
  }
  .bootstrap-styles .order-sm-0 {
    order: 0;
  }
  .bootstrap-styles .order-sm-1 {
    order: 1;
  }
  .bootstrap-styles .order-sm-2 {
    order: 2;
  }
  .bootstrap-styles .order-sm-3 {
    order: 3;
  }
  .bootstrap-styles .order-sm-4 {
    order: 4;
  }
  .bootstrap-styles .order-sm-5 {
    order: 5;
  }
  .bootstrap-styles .order-sm-6 {
    order: 6;
  }
  .bootstrap-styles .order-sm-7 {
    order: 7;
  }
  .bootstrap-styles .order-sm-8 {
    order: 8;
  }
  .bootstrap-styles .order-sm-9 {
    order: 9;
  }
  .bootstrap-styles .order-sm-10 {
    order: 10;
  }
  .bootstrap-styles .order-sm-11 {
    order: 11;
  }
  .bootstrap-styles .order-sm-12 {
    order: 12;
  }
  .bootstrap-styles .offset-sm-0 {
    margin-left: 0;
  }
  .bootstrap-styles .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrap-styles .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrap-styles .offset-sm-3 {
    margin-left: 25%;
  }
  .bootstrap-styles .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrap-styles .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrap-styles .offset-sm-6 {
    margin-left: 50%;
  }
  .bootstrap-styles .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrap-styles .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrap-styles .offset-sm-9 {
    margin-left: 75%;
  }
  .bootstrap-styles .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrap-styles .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-styles .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-styles .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .bootstrap-styles .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .bootstrap-styles .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-styles .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .bootstrap-styles .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .bootstrap-styles .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-styles .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .bootstrap-styles .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .bootstrap-styles .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-styles .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .bootstrap-styles .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .bootstrap-styles .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-styles .order-md-first {
    order: -1;
  }
  .bootstrap-styles .order-md-last {
    order: 13;
  }
  .bootstrap-styles .order-md-0 {
    order: 0;
  }
  .bootstrap-styles .order-md-1 {
    order: 1;
  }
  .bootstrap-styles .order-md-2 {
    order: 2;
  }
  .bootstrap-styles .order-md-3 {
    order: 3;
  }
  .bootstrap-styles .order-md-4 {
    order: 4;
  }
  .bootstrap-styles .order-md-5 {
    order: 5;
  }
  .bootstrap-styles .order-md-6 {
    order: 6;
  }
  .bootstrap-styles .order-md-7 {
    order: 7;
  }
  .bootstrap-styles .order-md-8 {
    order: 8;
  }
  .bootstrap-styles .order-md-9 {
    order: 9;
  }
  .bootstrap-styles .order-md-10 {
    order: 10;
  }
  .bootstrap-styles .order-md-11 {
    order: 11;
  }
  .bootstrap-styles .order-md-12 {
    order: 12;
  }
  .bootstrap-styles .offset-md-0 {
    margin-left: 0;
  }
  .bootstrap-styles .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrap-styles .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrap-styles .offset-md-3 {
    margin-left: 25%;
  }
  .bootstrap-styles .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrap-styles .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrap-styles .offset-md-6 {
    margin-left: 50%;
  }
  .bootstrap-styles .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrap-styles .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrap-styles .offset-md-9 {
    margin-left: 75%;
  }
  .bootstrap-styles .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrap-styles .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-styles .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-styles .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .bootstrap-styles .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .bootstrap-styles .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-styles .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .bootstrap-styles .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .bootstrap-styles .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-styles .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .bootstrap-styles .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .bootstrap-styles .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-styles .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .bootstrap-styles .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .bootstrap-styles .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-styles .order-lg-first {
    order: -1;
  }
  .bootstrap-styles .order-lg-last {
    order: 13;
  }
  .bootstrap-styles .order-lg-0 {
    order: 0;
  }
  .bootstrap-styles .order-lg-1 {
    order: 1;
  }
  .bootstrap-styles .order-lg-2 {
    order: 2;
  }
  .bootstrap-styles .order-lg-3 {
    order: 3;
  }
  .bootstrap-styles .order-lg-4 {
    order: 4;
  }
  .bootstrap-styles .order-lg-5 {
    order: 5;
  }
  .bootstrap-styles .order-lg-6 {
    order: 6;
  }
  .bootstrap-styles .order-lg-7 {
    order: 7;
  }
  .bootstrap-styles .order-lg-8 {
    order: 8;
  }
  .bootstrap-styles .order-lg-9 {
    order: 9;
  }
  .bootstrap-styles .order-lg-10 {
    order: 10;
  }
  .bootstrap-styles .order-lg-11 {
    order: 11;
  }
  .bootstrap-styles .order-lg-12 {
    order: 12;
  }
  .bootstrap-styles .offset-lg-0 {
    margin-left: 0;
  }
  .bootstrap-styles .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrap-styles .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrap-styles .offset-lg-3 {
    margin-left: 25%;
  }
  .bootstrap-styles .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrap-styles .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrap-styles .offset-lg-6 {
    margin-left: 50%;
  }
  .bootstrap-styles .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrap-styles .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrap-styles .offset-lg-9 {
    margin-left: 75%;
  }
  .bootstrap-styles .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrap-styles .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-styles .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-styles .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .bootstrap-styles .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .bootstrap-styles .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-styles .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .bootstrap-styles .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .bootstrap-styles .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-styles .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .bootstrap-styles .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .bootstrap-styles .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-styles .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .bootstrap-styles .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .bootstrap-styles .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-styles .order-xl-first {
    order: -1;
  }
  .bootstrap-styles .order-xl-last {
    order: 13;
  }
  .bootstrap-styles .order-xl-0 {
    order: 0;
  }
  .bootstrap-styles .order-xl-1 {
    order: 1;
  }
  .bootstrap-styles .order-xl-2 {
    order: 2;
  }
  .bootstrap-styles .order-xl-3 {
    order: 3;
  }
  .bootstrap-styles .order-xl-4 {
    order: 4;
  }
  .bootstrap-styles .order-xl-5 {
    order: 5;
  }
  .bootstrap-styles .order-xl-6 {
    order: 6;
  }
  .bootstrap-styles .order-xl-7 {
    order: 7;
  }
  .bootstrap-styles .order-xl-8 {
    order: 8;
  }
  .bootstrap-styles .order-xl-9 {
    order: 9;
  }
  .bootstrap-styles .order-xl-10 {
    order: 10;
  }
  .bootstrap-styles .order-xl-11 {
    order: 11;
  }
  .bootstrap-styles .order-xl-12 {
    order: 12;
  }
  .bootstrap-styles .offset-xl-0 {
    margin-left: 0;
  }
  .bootstrap-styles .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .bootstrap-styles .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .bootstrap-styles .offset-xl-3 {
    margin-left: 25%;
  }
  .bootstrap-styles .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .bootstrap-styles .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .bootstrap-styles .offset-xl-6 {
    margin-left: 50%;
  }
  .bootstrap-styles .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .bootstrap-styles .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .bootstrap-styles .offset-xl-9 {
    margin-left: 75%;
  }
  .bootstrap-styles .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .bootstrap-styles .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.bootstrap-styles .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.bootstrap-styles .table th,
.bootstrap-styles .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.bootstrap-styles .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.bootstrap-styles .table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.bootstrap-styles .table-sm th,
.bootstrap-styles .table-sm td {
  padding: 0.3rem;
}
.bootstrap-styles .table-bordered {
  border: 1px solid #dee2e6;
}
.bootstrap-styles .table-bordered th,
.bootstrap-styles .table-bordered td {
  border: 1px solid #dee2e6;
}
.bootstrap-styles .table-bordered thead th,
.bootstrap-styles .table-bordered thead td {
  border-bottom-width: 2px;
}
.bootstrap-styles .table-borderless th,
.bootstrap-styles .table-borderless td,
.bootstrap-styles .table-borderless thead th,
.bootstrap-styles .table-borderless tbody + tbody {
  border: 0;
}
.bootstrap-styles .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.bootstrap-styles .table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}
.bootstrap-styles .table-primary,
.bootstrap-styles .table-primary > th,
.bootstrap-styles .table-primary > td {
  background-color: #c3cadd;
}
.bootstrap-styles .table-primary th,
.bootstrap-styles .table-primary td,
.bootstrap-styles .table-primary thead th,
.bootstrap-styles .table-primary tbody + tbody {
  border-color: #8f9cc0;
}
.bootstrap-styles .table-hover .table-primary:hover {
  background-color: #b3bcd4;
}
.bootstrap-styles .table-hover .table-primary:hover > td,
.bootstrap-styles .table-hover .table-primary:hover > th {
  background-color: #b3bcd4;
}
.bootstrap-styles .table-secondary,
.bootstrap-styles .table-secondary > th,
.bootstrap-styles .table-secondary > td {
  background-color: #b8e4f7;
}
.bootstrap-styles .table-secondary th,
.bootstrap-styles .table-secondary td,
.bootstrap-styles .table-secondary thead th,
.bootstrap-styles .table-secondary tbody + tbody {
  border-color: #7acef0;
}
.bootstrap-styles .table-hover .table-secondary:hover {
  background-color: #a1dbf4;
}
.bootstrap-styles .table-hover .table-secondary:hover > td,
.bootstrap-styles .table-hover .table-secondary:hover > th {
  background-color: #a1dbf4;
}
.bootstrap-styles .table-success,
.bootstrap-styles .table-success > th,
.bootstrap-styles .table-success > td {
  background-color: #c3e6cb;
}
.bootstrap-styles .table-success th,
.bootstrap-styles .table-success td,
.bootstrap-styles .table-success thead th,
.bootstrap-styles .table-success tbody + tbody {
  border-color: #8fd19e;
}
.bootstrap-styles .table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.bootstrap-styles .table-hover .table-success:hover > td,
.bootstrap-styles .table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
.bootstrap-styles .table-info,
.bootstrap-styles .table-info > th,
.bootstrap-styles .table-info > td {
  background-color: #bee5eb;
}
.bootstrap-styles .table-info th,
.bootstrap-styles .table-info td,
.bootstrap-styles .table-info thead th,
.bootstrap-styles .table-info tbody + tbody {
  border-color: #86cfda;
}
.bootstrap-styles .table-hover .table-info:hover {
  background-color: #abdde5;
}
.bootstrap-styles .table-hover .table-info:hover > td,
.bootstrap-styles .table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.bootstrap-styles .table-warning,
.bootstrap-styles .table-warning > th,
.bootstrap-styles .table-warning > td {
  background-color: #fefcb8;
}
.bootstrap-styles .table-warning th,
.bootstrap-styles .table-warning td,
.bootstrap-styles .table-warning thead th,
.bootstrap-styles .table-warning tbody + tbody {
  border-color: #fdf97b;
}
.bootstrap-styles .table-hover .table-warning:hover {
  background-color: #fefb9f;
}
.bootstrap-styles .table-hover .table-warning:hover > td,
.bootstrap-styles .table-hover .table-warning:hover > th {
  background-color: #fefb9f;
}
.bootstrap-styles .table-danger,
.bootstrap-styles .table-danger > th,
.bootstrap-styles .table-danger > td {
  background-color: #f5c6cb;
}
.bootstrap-styles .table-danger th,
.bootstrap-styles .table-danger td,
.bootstrap-styles .table-danger thead th,
.bootstrap-styles .table-danger tbody + tbody {
  border-color: #ed969e;
}
.bootstrap-styles .table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.bootstrap-styles .table-hover .table-danger:hover > td,
.bootstrap-styles .table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
.bootstrap-styles .table-light,
.bootstrap-styles .table-light > th,
.bootstrap-styles .table-light > td {
  background-color: #fdfdfe;
}
.bootstrap-styles .table-light th,
.bootstrap-styles .table-light td,
.bootstrap-styles .table-light thead th,
.bootstrap-styles .table-light tbody + tbody {
  border-color: #fbfcfc;
}
.bootstrap-styles .table-hover .table-light:hover {
  background-color: #ececf6;
}
.bootstrap-styles .table-hover .table-light:hover > td,
.bootstrap-styles .table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.bootstrap-styles .table-dark,
.bootstrap-styles .table-dark > th,
.bootstrap-styles .table-dark > td {
  background-color: #c6c8ca;
}
.bootstrap-styles .table-dark th,
.bootstrap-styles .table-dark td,
.bootstrap-styles .table-dark thead th,
.bootstrap-styles .table-dark tbody + tbody {
  border-color: #95999c;
}
.bootstrap-styles .table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.bootstrap-styles .table-hover .table-dark:hover > td,
.bootstrap-styles .table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
.bootstrap-styles .table-active,
.bootstrap-styles .table-active > th,
.bootstrap-styles .table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}
.bootstrap-styles .table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.bootstrap-styles .table-hover .table-active:hover > td,
.bootstrap-styles .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.bootstrap-styles .table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.bootstrap-styles .table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.bootstrap-styles .table-dark {
  color: #fff;
  background-color: #343a40;
}
.bootstrap-styles .table-dark th,
.bootstrap-styles .table-dark td,
.bootstrap-styles .table-dark thead th {
  border-color: #454d55;
}
.bootstrap-styles .table-dark.table-bordered {
  border: 0;
}
.bootstrap-styles .table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.bootstrap-styles .table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .bootstrap-styles .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-styles .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .bootstrap-styles .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-styles .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .bootstrap-styles .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-styles .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .bootstrap-styles .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-styles .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.bootstrap-styles .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bootstrap-styles .table-responsive > .table-bordered {
  border: 0;
}
.bootstrap-styles .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .form-control {
    transition: none;
  }
}
.bootstrap-styles .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.bootstrap-styles .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #5d7cd0;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.bootstrap-styles .form-control:disabled, .bootstrap-styles .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.bootstrap-styles select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.bootstrap-styles .form-control-file,
.bootstrap-styles .form-control-range {
  display: block;
  width: 100%;
}
.bootstrap-styles .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;
}
.bootstrap-styles .col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.bootstrap-styles .col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.bootstrap-styles .form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.bootstrap-styles .form-control-plaintext.form-control-sm, .bootstrap-styles .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.bootstrap-styles .form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.bootstrap-styles .form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.bootstrap-styles select.form-control[size], .bootstrap-styles select.form-control[multiple] {
  height: auto;
}
.bootstrap-styles textarea.form-control {
  height: auto;
}
.bootstrap-styles .form-group {
  margin-bottom: 1rem;
}
.bootstrap-styles .form-text {
  display: block;
  margin-top: 0.25rem;
}
.bootstrap-styles .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.bootstrap-styles .form-row > .col,
.bootstrap-styles .form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.bootstrap-styles .form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.bootstrap-styles .form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.bootstrap-styles .form-check-input[disabled] ~ .form-check-label {
  color: #6c757d;
}
.bootstrap-styles .form-check-label {
  margin-bottom: 0;
}
.bootstrap-styles .form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.bootstrap-styles .form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.bootstrap-styles .valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
.bootstrap-styles .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.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .bootstrap-styles .form-control:valid, .bootstrap-styles .form-control.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' 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: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .bootstrap-styles .form-control:valid:focus, .bootstrap-styles .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .bootstrap-styles .form-control:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .form-control:valid ~ .valid-tooltip, .bootstrap-styles .form-control.is-valid ~ .valid-feedback,
.bootstrap-styles .form-control.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles textarea.form-control:valid, .bootstrap-styles textarea.form-control.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 .bootstrap-styles .custom-select:valid, .bootstrap-styles .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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' 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") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .bootstrap-styles .custom-select:valid:focus, .bootstrap-styles .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .bootstrap-styles .custom-select:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .custom-select:valid ~ .valid-tooltip, .bootstrap-styles .custom-select.is-valid ~ .valid-feedback,
.bootstrap-styles .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .form-control-file:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .form-control-file:valid ~ .valid-tooltip, .bootstrap-styles .form-control-file.is-valid ~ .valid-feedback,
.bootstrap-styles .form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .form-check-input:valid ~ .form-check-label, .bootstrap-styles .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .bootstrap-styles .form-check-input:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .form-check-input:valid ~ .valid-tooltip, .bootstrap-styles .form-check-input.is-valid ~ .valid-feedback,
.bootstrap-styles .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-control-input:valid ~ .custom-control-label, .bootstrap-styles .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .bootstrap-styles .custom-control-input:valid ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .bootstrap-styles .custom-control-input:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .custom-control-input:valid ~ .valid-tooltip, .bootstrap-styles .custom-control-input.is-valid ~ .valid-feedback,
.bootstrap-styles .custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-control-input:valid:checked ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}
.was-validated .bootstrap-styles .custom-control-input:valid:focus ~ .custom-control-label::before, .bootstrap-styles .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 .bootstrap-styles .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .bootstrap-styles .custom-file-input:valid ~ .custom-file-label, .bootstrap-styles .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .bootstrap-styles .custom-file-input:valid ~ .valid-feedback,
.was-validated .bootstrap-styles .custom-file-input:valid ~ .valid-tooltip, .bootstrap-styles .custom-file-input.is-valid ~ .valid-feedback,
.bootstrap-styles .custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-file-input:valid:focus ~ .custom-file-label, .bootstrap-styles .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);
}
.bootstrap-styles .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.bootstrap-styles .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.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .bootstrap-styles .form-control:invalid, .bootstrap-styles .form-control.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' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .bootstrap-styles .form-control:invalid:focus, .bootstrap-styles .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .bootstrap-styles .form-control:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .form-control:invalid ~ .invalid-tooltip, .bootstrap-styles .form-control.is-invalid ~ .invalid-feedback,
.bootstrap-styles .form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles textarea.form-control:invalid, .bootstrap-styles textarea.form-control.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 .bootstrap-styles .custom-select:invalid, .bootstrap-styles .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .bootstrap-styles .custom-select:invalid:focus, .bootstrap-styles .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .bootstrap-styles .custom-select:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .custom-select:invalid ~ .invalid-tooltip, .bootstrap-styles .custom-select.is-invalid ~ .invalid-feedback,
.bootstrap-styles .custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .form-control-file:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .form-control-file:invalid ~ .invalid-tooltip, .bootstrap-styles .form-control-file.is-invalid ~ .invalid-feedback,
.bootstrap-styles .form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .form-check-input:invalid ~ .form-check-label, .bootstrap-styles .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .bootstrap-styles .form-check-input:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .form-check-input:invalid ~ .invalid-tooltip, .bootstrap-styles .form-check-input.is-invalid ~ .invalid-feedback,
.bootstrap-styles .form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-control-input:invalid ~ .custom-control-label, .bootstrap-styles .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .bootstrap-styles .custom-control-input:invalid ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .bootstrap-styles .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .custom-control-input:invalid ~ .invalid-tooltip, .bootstrap-styles .custom-control-input.is-invalid ~ .invalid-feedback,
.bootstrap-styles .custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-control-input:invalid:checked ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}
.was-validated .bootstrap-styles .custom-control-input:invalid:focus ~ .custom-control-label::before, .bootstrap-styles .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 .bootstrap-styles .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap-styles .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .bootstrap-styles .custom-file-input:invalid ~ .custom-file-label, .bootstrap-styles .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .bootstrap-styles .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .bootstrap-styles .custom-file-input:invalid ~ .invalid-tooltip, .bootstrap-styles .custom-file-input.is-invalid ~ .invalid-feedback,
.bootstrap-styles .custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .bootstrap-styles .custom-file-input:invalid:focus ~ .custom-file-label, .bootstrap-styles .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);
}
.bootstrap-styles .form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.bootstrap-styles .form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .bootstrap-styles .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .bootstrap-styles .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .bootstrap-styles .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .bootstrap-styles .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .bootstrap-styles .form-inline .input-group,
  .bootstrap-styles .form-inline .custom-select {
    width: auto;
  }
  .bootstrap-styles .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .bootstrap-styles .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .bootstrap-styles .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .bootstrap-styles .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.bootstrap-styles .btn {
  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: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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) {
  .bootstrap-styles .btn {
    transition: none;
  }
}
.bootstrap-styles .btn:hover {
  color: #212529;
  text-decoration: none;
}
.bootstrap-styles .btn:focus, .bootstrap-styles .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .btn.disabled, .bootstrap-styles .btn:disabled {
  opacity: 0.65;
}
.bootstrap-styles a.btn.disabled,
.bootstrap-styles fieldset:disabled a.btn {
  pointer-events: none;
}
.bootstrap-styles .btn-primary {
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .btn-primary:hover {
  color: #fff;
  background-color: #1e3368;
  border-color: #1c2e5e;
}
.bootstrap-styles .btn-primary:focus, .bootstrap-styles .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(71, 94, 152, 0.5);
}
.bootstrap-styles .btn-primary.disabled, .bootstrap-styles .btn-primary:disabled {
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .btn-primary:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-primary:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1c2e5e;
  border-color: #192955;
}
.bootstrap-styles .btn-primary:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(71, 94, 152, 0.5);
}
.bootstrap-styles .btn-secondary {
  color: #fff;
  background-color: #00A0E3;
  border-color: #00A0E3;
}
.bootstrap-styles .btn-secondary:hover {
  color: #fff;
  background-color: #0085bd;
  border-color: #007cb0;
}
.bootstrap-styles .btn-secondary:focus, .bootstrap-styles .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 174, 231, 0.5);
}
.bootstrap-styles .btn-secondary.disabled, .bootstrap-styles .btn-secondary:disabled {
  color: #fff;
  background-color: #00A0E3;
  border-color: #00A0E3;
}
.bootstrap-styles .btn-secondary:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-secondary:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #007cb0;
  border-color: #0073a3;
}
.bootstrap-styles .btn-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 174, 231, 0.5);
}
.bootstrap-styles .btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.bootstrap-styles .btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.bootstrap-styles .btn-success:focus, .bootstrap-styles .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.bootstrap-styles .btn-success.disabled, .bootstrap-styles .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.bootstrap-styles .btn-success:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-success:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.bootstrap-styles .btn-success:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-success:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.bootstrap-styles .btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.bootstrap-styles .btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.bootstrap-styles .btn-info:focus, .bootstrap-styles .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.bootstrap-styles .btn-info.disabled, .bootstrap-styles .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.bootstrap-styles .btn-info:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-info:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.bootstrap-styles .btn-info:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-info:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.bootstrap-styles .btn-warning {
  color: #212529;
  background-color: #FCF302;
  border-color: #FCF302;
}
.bootstrap-styles .btn-warning:hover {
  color: #212529;
  background-color: #d6ce02;
  border-color: #c9c202;
}
.bootstrap-styles .btn-warning:focus, .bootstrap-styles .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 212, 8, 0.5);
}
.bootstrap-styles .btn-warning.disabled, .bootstrap-styles .btn-warning:disabled {
  color: #212529;
  background-color: #FCF302;
  border-color: #FCF302;
}
.bootstrap-styles .btn-warning:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-warning:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #c9c202;
  border-color: #bdb601;
}
.bootstrap-styles .btn-warning:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(219, 212, 8, 0.5);
}
.bootstrap-styles .btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.bootstrap-styles .btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.bootstrap-styles .btn-danger:focus, .bootstrap-styles .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.bootstrap-styles .btn-danger.disabled, .bootstrap-styles .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.bootstrap-styles .btn-danger:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-danger:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.bootstrap-styles .btn-danger:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.bootstrap-styles .btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.bootstrap-styles .btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.bootstrap-styles .btn-light:focus, .bootstrap-styles .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.bootstrap-styles .btn-light.disabled, .bootstrap-styles .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.bootstrap-styles .btn-light:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-light:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.bootstrap-styles .btn-light:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-light:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.bootstrap-styles .btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.bootstrap-styles .btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.bootstrap-styles .btn-dark:focus, .bootstrap-styles .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.bootstrap-styles .btn-dark.disabled, .bootstrap-styles .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.bootstrap-styles .btn-dark:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-dark:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.bootstrap-styles .btn-dark:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.bootstrap-styles .btn-outline-primary {
  color: #274186;
  border-color: #274186;
}
.bootstrap-styles .btn-outline-primary:hover {
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .btn-outline-primary:focus, .bootstrap-styles .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .btn-outline-primary.disabled, .bootstrap-styles .btn-outline-primary:disabled {
  color: #274186;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-primary:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .btn-outline-secondary {
  color: #00A0E3;
  border-color: #00A0E3;
}
.bootstrap-styles .btn-outline-secondary:hover {
  color: #fff;
  background-color: #00A0E3;
  border-color: #00A0E3;
}
.bootstrap-styles .btn-outline-secondary:focus, .bootstrap-styles .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 160, 227, 0.5);
}
.bootstrap-styles .btn-outline-secondary.disabled, .bootstrap-styles .btn-outline-secondary:disabled {
  color: #00A0E3;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-secondary:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #00A0E3;
  border-color: #00A0E3;
}
.bootstrap-styles .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 160, 227, 0.5);
}
.bootstrap-styles .btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.bootstrap-styles .btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.bootstrap-styles .btn-outline-success:focus, .bootstrap-styles .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.bootstrap-styles .btn-outline-success.disabled, .bootstrap-styles .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-success:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-success:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.bootstrap-styles .btn-outline-success:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.bootstrap-styles .btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.bootstrap-styles .btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.bootstrap-styles .btn-outline-info:focus, .bootstrap-styles .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.bootstrap-styles .btn-outline-info.disabled, .bootstrap-styles .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-info:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-info:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.bootstrap-styles .btn-outline-info:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.bootstrap-styles .btn-outline-warning {
  color: #FCF302;
  border-color: #FCF302;
}
.bootstrap-styles .btn-outline-warning:hover {
  color: #212529;
  background-color: #FCF302;
  border-color: #FCF302;
}
.bootstrap-styles .btn-outline-warning:focus, .bootstrap-styles .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(252, 243, 2, 0.5);
}
.bootstrap-styles .btn-outline-warning.disabled, .bootstrap-styles .btn-outline-warning:disabled {
  color: #FCF302;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-warning:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #FCF302;
  border-color: #FCF302;
}
.bootstrap-styles .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(252, 243, 2, 0.5);
}
.bootstrap-styles .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.bootstrap-styles .btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.bootstrap-styles .btn-outline-danger:focus, .bootstrap-styles .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.bootstrap-styles .btn-outline-danger.disabled, .bootstrap-styles .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-danger:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.bootstrap-styles .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.bootstrap-styles .btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.bootstrap-styles .btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.bootstrap-styles .btn-outline-light:focus, .bootstrap-styles .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.bootstrap-styles .btn-outline-light.disabled, .bootstrap-styles .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-light:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-light:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.bootstrap-styles .btn-outline-light:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.bootstrap-styles .btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.bootstrap-styles .btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.bootstrap-styles .btn-outline-dark:focus, .bootstrap-styles .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.bootstrap-styles .btn-outline-dark.disabled, .bootstrap-styles .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.bootstrap-styles .btn-outline-dark:not(:disabled):not(.disabled):active, .bootstrap-styles .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .bootstrap-styles .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.bootstrap-styles .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .bootstrap-styles .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .bootstrap-styles .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.bootstrap-styles .btn-link {
  font-weight: 400;
  color: #274186;
  text-decoration: none;
}
.bootstrap-styles .btn-link:hover {
  color: #16244b;
  text-decoration: underline;
}
.bootstrap-styles .btn-link:focus, .bootstrap-styles .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.bootstrap-styles .btn-link:disabled, .bootstrap-styles .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}
.bootstrap-styles .btn-lg, .bootstrap-styles .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.bootstrap-styles .btn-sm, .bootstrap-styles .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.bootstrap-styles .btn-block {
  display: block;
  width: 100%;
}
.bootstrap-styles .btn-block + .btn-block {
  margin-top: 0.5rem;
}
.bootstrap-styles input[type=submit].btn-block,
.bootstrap-styles input[type=reset].btn-block,
.bootstrap-styles input[type=button].btn-block {
  width: 100%;
}
.bootstrap-styles .fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .fade {
    transition: none;
  }
}
.bootstrap-styles .fade:not(.show) {
  opacity: 0;
}
.bootstrap-styles .collapse:not(.show) {
  display: none;
}
.bootstrap-styles .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .collapsing {
    transition: none;
  }
}
.bootstrap-styles .dropup,
.bootstrap-styles .dropright,
.bootstrap-styles .dropdown,
.bootstrap-styles .dropleft {
  position: relative;
}
.bootstrap-styles .dropdown-toggle {
  white-space: nowrap;
}
.bootstrap-styles .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;
}
.bootstrap-styles .dropdown-toggle:empty::after {
  margin-left: 0;
}
.bootstrap-styles .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: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.bootstrap-styles .dropdown-menu-left {
  right: auto;
  left: 0;
}
.bootstrap-styles .dropdown-menu-right {
  right: 0;
  left: auto;
}
@media (min-width: 576px) {
  .bootstrap-styles .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .bootstrap-styles .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .bootstrap-styles .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .bootstrap-styles .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .bootstrap-styles .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.bootstrap-styles .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.bootstrap-styles .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;
}
.bootstrap-styles .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.bootstrap-styles .dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.bootstrap-styles .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;
}
.bootstrap-styles .dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.bootstrap-styles .dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.bootstrap-styles .dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.bootstrap-styles .dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.bootstrap-styles .dropleft .dropdown-toggle::after {
  display: none;
}
.bootstrap-styles .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;
}
.bootstrap-styles .dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.bootstrap-styles .dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.bootstrap-styles .dropdown-menu[x-placement^=top], .bootstrap-styles .dropdown-menu[x-placement^=right], .bootstrap-styles .dropdown-menu[x-placement^=bottom], .bootstrap-styles .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}
.bootstrap-styles .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.bootstrap-styles .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;
}
.bootstrap-styles .dropdown-item:hover, .bootstrap-styles .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.bootstrap-styles .dropdown-item.active, .bootstrap-styles .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #274186;
}
.bootstrap-styles .dropdown-item.disabled, .bootstrap-styles .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}
.bootstrap-styles .dropdown-menu.show {
  display: block;
}
.bootstrap-styles .dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.bootstrap-styles .dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}
.bootstrap-styles .btn-group,
.bootstrap-styles .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.bootstrap-styles .btn-group > .btn,
.bootstrap-styles .btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.bootstrap-styles .btn-group > .btn:hover,
.bootstrap-styles .btn-group-vertical > .btn:hover {
  z-index: 1;
}
.bootstrap-styles .btn-group > .btn:focus, .bootstrap-styles .btn-group > .btn:active, .bootstrap-styles .btn-group > .btn.active,
.bootstrap-styles .btn-group-vertical > .btn:focus,
.bootstrap-styles .btn-group-vertical > .btn:active,
.bootstrap-styles .btn-group-vertical > .btn.active {
  z-index: 1;
}
.bootstrap-styles .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.bootstrap-styles .btn-toolbar .input-group {
  width: auto;
}
.bootstrap-styles .btn-group > .btn:not(:first-child),
.bootstrap-styles .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.bootstrap-styles .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.bootstrap-styles .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-styles .btn-group > .btn:not(:first-child),
.bootstrap-styles .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.bootstrap-styles .dropdown-toggle-split::after, .dropup .bootstrap-styles .dropdown-toggle-split::after, .dropright .bootstrap-styles .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .bootstrap-styles .dropdown-toggle-split::before {
  margin-right: 0;
}
.bootstrap-styles .btn-sm + .dropdown-toggle-split, .bootstrap-styles .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.bootstrap-styles .btn-lg + .dropdown-toggle-split, .bootstrap-styles .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.bootstrap-styles .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bootstrap-styles .btn-group-vertical > .btn,
.bootstrap-styles .btn-group-vertical > .btn-group {
  width: 100%;
}
.bootstrap-styles .btn-group-vertical > .btn:not(:first-child),
.bootstrap-styles .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.bootstrap-styles .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.bootstrap-styles .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .btn-group-vertical > .btn:not(:first-child),
.bootstrap-styles .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.bootstrap-styles .btn-group-toggle > .btn,
.bootstrap-styles .btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.bootstrap-styles .btn-group-toggle > .btn input[type=radio],
.bootstrap-styles .btn-group-toggle > .btn input[type=checkbox],
.bootstrap-styles .btn-group-toggle > .btn-group > .btn input[type=radio],
.bootstrap-styles .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.bootstrap-styles .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.bootstrap-styles .input-group > .form-control,
.bootstrap-styles .input-group > .form-control-plaintext,
.bootstrap-styles .input-group > .custom-select,
.bootstrap-styles .input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.bootstrap-styles .input-group > .form-control + .form-control,
.bootstrap-styles .input-group > .form-control + .custom-select,
.bootstrap-styles .input-group > .form-control + .custom-file,
.bootstrap-styles .input-group > .form-control-plaintext + .form-control,
.bootstrap-styles .input-group > .form-control-plaintext + .custom-select,
.bootstrap-styles .input-group > .form-control-plaintext + .custom-file,
.bootstrap-styles .input-group > .custom-select + .form-control,
.bootstrap-styles .input-group > .custom-select + .custom-select,
.bootstrap-styles .input-group > .custom-select + .custom-file,
.bootstrap-styles .input-group > .custom-file + .form-control,
.bootstrap-styles .input-group > .custom-file + .custom-select,
.bootstrap-styles .input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.bootstrap-styles .input-group > .form-control:focus,
.bootstrap-styles .input-group > .custom-select:focus,
.bootstrap-styles .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.bootstrap-styles .input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.bootstrap-styles .input-group > .form-control:not(:last-child),
.bootstrap-styles .input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-styles .input-group > .form-control:not(:first-child),
.bootstrap-styles .input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .input-group > .custom-file {
  display: flex;
  align-items: center;
}
.bootstrap-styles .input-group > .custom-file:not(:last-child) .custom-file-label, .bootstrap-styles .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-styles .input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .input-group-prepend,
.bootstrap-styles .input-group-append {
  display: flex;
}
.bootstrap-styles .input-group-prepend .btn,
.bootstrap-styles .input-group-append .btn {
  position: relative;
  z-index: 2;
}
.bootstrap-styles .input-group-prepend .btn:focus,
.bootstrap-styles .input-group-append .btn:focus {
  z-index: 3;
}
.bootstrap-styles .input-group-prepend .btn + .btn,
.bootstrap-styles .input-group-prepend .btn + .input-group-text,
.bootstrap-styles .input-group-prepend .input-group-text + .input-group-text,
.bootstrap-styles .input-group-prepend .input-group-text + .btn,
.bootstrap-styles .input-group-append .btn + .btn,
.bootstrap-styles .input-group-append .btn + .input-group-text,
.bootstrap-styles .input-group-append .input-group-text + .input-group-text,
.bootstrap-styles .input-group-append .input-group-text + .btn {
  margin-left: -1px;
}
.bootstrap-styles .input-group-prepend {
  margin-right: -1px;
}
.bootstrap-styles .input-group-append {
  margin-left: -1px;
}
.bootstrap-styles .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  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.25rem;
}
.bootstrap-styles .input-group-text input[type=radio],
.bootstrap-styles .input-group-text input[type=checkbox] {
  margin-top: 0;
}
.bootstrap-styles .input-group-lg > .form-control:not(textarea),
.bootstrap-styles .input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}
.bootstrap-styles .input-group-lg > .form-control,
.bootstrap-styles .input-group-lg > .custom-select,
.bootstrap-styles .input-group-lg > .input-group-prepend > .input-group-text,
.bootstrap-styles .input-group-lg > .input-group-append > .input-group-text,
.bootstrap-styles .input-group-lg > .input-group-prepend > .btn,
.bootstrap-styles .input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.bootstrap-styles .input-group-sm > .form-control:not(textarea),
.bootstrap-styles .input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}
.bootstrap-styles .input-group-sm > .form-control,
.bootstrap-styles .input-group-sm > .custom-select,
.bootstrap-styles .input-group-sm > .input-group-prepend > .input-group-text,
.bootstrap-styles .input-group-sm > .input-group-append > .input-group-text,
.bootstrap-styles .input-group-sm > .input-group-prepend > .btn,
.bootstrap-styles .input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.bootstrap-styles .input-group-lg > .custom-select,
.bootstrap-styles .input-group-sm > .custom-select {
  padding-right: 1.75rem;
}
.bootstrap-styles .input-group > .input-group-prepend > .btn,
.bootstrap-styles .input-group > .input-group-prepend > .input-group-text,
.bootstrap-styles .input-group > .input-group-append:not(:last-child) > .btn,
.bootstrap-styles .input-group > .input-group-append:not(:last-child) > .input-group-text,
.bootstrap-styles .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.bootstrap-styles .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.bootstrap-styles .input-group > .input-group-append > .btn,
.bootstrap-styles .input-group > .input-group-append > .input-group-text,
.bootstrap-styles .input-group > .input-group-prepend:not(:first-child) > .btn,
.bootstrap-styles .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.bootstrap-styles .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.bootstrap-styles .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.bootstrap-styles .custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}
.bootstrap-styles .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.bootstrap-styles .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #274186;
  background-color: #274186;
}
.bootstrap-styles .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #5d7cd0;
}
.bootstrap-styles .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #849cdb;
  border-color: #849cdb;
}
.bootstrap-styles .custom-control-input[disabled] ~ .custom-control-label {
  color: #6c757d;
}
.bootstrap-styles .custom-control-input[disabled] ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.bootstrap-styles .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.bootstrap-styles .custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.bootstrap-styles .custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}
.bootstrap-styles .custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.bootstrap-styles .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' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.bootstrap-styles .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #274186;
  background-color: #274186;
}
.bootstrap-styles .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' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.bootstrap-styles .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.bootstrap-styles .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' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.bootstrap-styles .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .custom-switch {
  padding-left: 2.25rem;
}
.bootstrap-styles .custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.bootstrap-styles .custom-switch .custom-control-label::after {
  top: calc(0.25rem + 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) {
  .bootstrap-styles .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.bootstrap-styles .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.bootstrap-styles .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(39, 65, 134, 0.5);
}
.bootstrap-styles .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: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.bootstrap-styles .custom-select:focus {
  border-color: #5d7cd0;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.bootstrap-styles .custom-select[multiple], .bootstrap-styles .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.bootstrap-styles .custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.bootstrap-styles .custom-select::-ms-expand {
  display: none;
}
.bootstrap-styles .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.875rem;
}
.bootstrap-styles .custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.bootstrap-styles .custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}
.bootstrap-styles .custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.bootstrap-styles .custom-file-input:focus ~ .custom-file-label {
  border-color: #5d7cd0;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-file-input[disabled] ~ .custom-file-label {
  background-color: #e9ecef;
}
.bootstrap-styles .custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.bootstrap-styles .custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}
.bootstrap-styles .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: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.bootstrap-styles .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.25rem 0.25rem 0;
}
.bootstrap-styles .custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.bootstrap-styles .custom-range:focus {
  outline: none;
}
.bootstrap-styles .custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .custom-range::-moz-focus-outer {
  border: 0;
}
.bootstrap-styles .custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #274186;
  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) {
  .bootstrap-styles .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.bootstrap-styles .custom-range::-webkit-slider-thumb:active {
  background-color: #849cdb;
}
.bootstrap-styles .custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.bootstrap-styles .custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #274186;
  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) {
  .bootstrap-styles .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.bootstrap-styles .custom-range::-moz-range-thumb:active {
  background-color: #849cdb;
}
.bootstrap-styles .custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.bootstrap-styles .custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #274186;
  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) {
  .bootstrap-styles .custom-range::-ms-thumb {
    transition: none;
  }
}
.bootstrap-styles .custom-range::-ms-thumb:active {
  background-color: #849cdb;
}
.bootstrap-styles .custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.bootstrap-styles .custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.bootstrap-styles .custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.bootstrap-styles .custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.bootstrap-styles .custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.bootstrap-styles .custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.bootstrap-styles .custom-range:disabled::-moz-range-track {
  cursor: default;
}
.bootstrap-styles .custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}
.bootstrap-styles .custom-control-label::before,
.bootstrap-styles .custom-file-label,
.bootstrap-styles .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) {
  .bootstrap-styles .custom-control-label::before,
  .bootstrap-styles .custom-file-label,
  .bootstrap-styles .custom-select {
    transition: none;
  }
}
.bootstrap-styles .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.bootstrap-styles .nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.bootstrap-styles .nav-link:hover, .bootstrap-styles .nav-link:focus {
  text-decoration: none;
}
.bootstrap-styles .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.bootstrap-styles .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.bootstrap-styles .nav-tabs .nav-item {
  margin-bottom: -1px;
}
.bootstrap-styles .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.bootstrap-styles .nav-tabs .nav-link:hover, .bootstrap-styles .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.bootstrap-styles .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.bootstrap-styles .nav-tabs .nav-link.active,
.bootstrap-styles .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.bootstrap-styles .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.bootstrap-styles .nav-pills .nav-link {
  border-radius: 0.25rem;
}
.bootstrap-styles .nav-pills .nav-link.active,
.bootstrap-styles .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #274186;
}
.bootstrap-styles .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.bootstrap-styles .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.bootstrap-styles .tab-content > .tab-pane {
  display: none;
}
.bootstrap-styles .tab-content > .active {
  display: block;
}
.bootstrap-styles .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.bootstrap-styles .navbar > .container,
.bootstrap-styles .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.bootstrap-styles .navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.bootstrap-styles .navbar-brand:hover, .bootstrap-styles .navbar-brand:focus {
  text-decoration: none;
}
.bootstrap-styles .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.bootstrap-styles .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.bootstrap-styles .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.bootstrap-styles .navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.bootstrap-styles .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.bootstrap-styles .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.bootstrap-styles .navbar-toggler:hover, .bootstrap-styles .navbar-toggler:focus {
  text-decoration: none;
}
.bootstrap-styles .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) {
  .bootstrap-styles .navbar-expand-sm > .container,
  .bootstrap-styles .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .bootstrap-styles .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-styles .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-styles .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-styles .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .bootstrap-styles .navbar-expand-sm > .container,
  .bootstrap-styles .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-styles .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-styles .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .bootstrap-styles .navbar-expand-md > .container,
  .bootstrap-styles .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-styles .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-styles .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-styles .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .bootstrap-styles .navbar-expand-md > .container,
  .bootstrap-styles .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-styles .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-styles .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .bootstrap-styles .navbar-expand-lg > .container,
  .bootstrap-styles .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-styles .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-styles .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-styles .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .bootstrap-styles .navbar-expand-lg > .container,
  .bootstrap-styles .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-styles .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-styles .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .bootstrap-styles .navbar-expand-xl > .container,
  .bootstrap-styles .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-styles .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-styles .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-styles .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .bootstrap-styles .navbar-expand-xl > .container,
  .bootstrap-styles .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-styles .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-styles .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.bootstrap-styles .navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.bootstrap-styles .navbar-expand > .container,
.bootstrap-styles .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.bootstrap-styles .navbar-expand .navbar-nav {
  flex-direction: row;
}
.bootstrap-styles .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.bootstrap-styles .navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.bootstrap-styles .navbar-expand > .container,
.bootstrap-styles .navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}
.bootstrap-styles .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.bootstrap-styles .navbar-expand .navbar-toggler {
  display: none;
}
.bootstrap-styles .navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.bootstrap-styles .navbar-light .navbar-brand:hover, .bootstrap-styles .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.bootstrap-styles .navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.bootstrap-styles .navbar-light .navbar-nav .nav-link:hover, .bootstrap-styles .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.bootstrap-styles .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.bootstrap-styles .navbar-light .navbar-nav .show > .nav-link,
.bootstrap-styles .navbar-light .navbar-nav .active > .nav-link,
.bootstrap-styles .navbar-light .navbar-nav .nav-link.show,
.bootstrap-styles .navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.bootstrap-styles .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.bootstrap-styles .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.bootstrap-styles .navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.bootstrap-styles .navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.bootstrap-styles .navbar-light .navbar-text a:hover, .bootstrap-styles .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
.bootstrap-styles .navbar-dark .navbar-brand {
  color: #fff;
}
.bootstrap-styles .navbar-dark .navbar-brand:hover, .bootstrap-styles .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.bootstrap-styles .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.bootstrap-styles .navbar-dark .navbar-nav .nav-link:hover, .bootstrap-styles .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.bootstrap-styles .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.bootstrap-styles .navbar-dark .navbar-nav .show > .nav-link,
.bootstrap-styles .navbar-dark .navbar-nav .active > .nav-link,
.bootstrap-styles .navbar-dark .navbar-nav .nav-link.show,
.bootstrap-styles .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.bootstrap-styles .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.bootstrap-styles .navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.bootstrap-styles .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.bootstrap-styles .navbar-dark .navbar-text a {
  color: #fff;
}
.bootstrap-styles .navbar-dark .navbar-text a:hover, .bootstrap-styles .navbar-dark .navbar-text a:focus {
  color: #fff;
}
.bootstrap-styles .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.bootstrap-styles .card > hr {
  margin-right: 0;
  margin-left: 0;
}
.bootstrap-styles .card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.bootstrap-styles .card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.bootstrap-styles .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.bootstrap-styles .card-title {
  margin-bottom: 0.75rem;
}
.bootstrap-styles .card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.bootstrap-styles .card-text:last-child {
  margin-bottom: 0;
}
.bootstrap-styles .card-link:hover {
  text-decoration: none;
}
.bootstrap-styles .card-link + .card-link {
  margin-left: 1.25rem;
}
.bootstrap-styles .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);
}
.bootstrap-styles .card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.bootstrap-styles .card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.bootstrap-styles .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);
}
.bootstrap-styles .card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.bootstrap-styles .card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.bootstrap-styles .card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.bootstrap-styles .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.bootstrap-styles .card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.bootstrap-styles .card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.bootstrap-styles .card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.bootstrap-styles .card-deck {
  display: flex;
  flex-direction: column;
}
.bootstrap-styles .card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .bootstrap-styles .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .bootstrap-styles .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.bootstrap-styles .card-group {
  display: flex;
  flex-direction: column;
}
.bootstrap-styles .card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .bootstrap-styles .card-group {
    flex-flow: row wrap;
  }
  .bootstrap-styles .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .bootstrap-styles .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .bootstrap-styles .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bootstrap-styles .card-group > .card:not(:last-child) .card-img-top,
  .bootstrap-styles .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .bootstrap-styles .card-group > .card:not(:last-child) .card-img-bottom,
  .bootstrap-styles .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .bootstrap-styles .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .bootstrap-styles .card-group > .card:not(:first-child) .card-img-top,
  .bootstrap-styles .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .bootstrap-styles .card-group > .card:not(:first-child) .card-img-bottom,
  .bootstrap-styles .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.bootstrap-styles .card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .bootstrap-styles .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .bootstrap-styles .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.bootstrap-styles .accordion > .card {
  overflow: hidden;
}
.bootstrap-styles .accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.bootstrap-styles .accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.bootstrap-styles .accordion > .card:first-of-type:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.bootstrap-styles .accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.bootstrap-styles .accordion > .card .card-header {
  margin-bottom: -1px;
}
.bootstrap-styles .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.bootstrap-styles .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.bootstrap-styles .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.bootstrap-styles .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.bootstrap-styles .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.bootstrap-styles .breadcrumb-item.active {
  color: #6c757d;
}
.bootstrap-styles .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.bootstrap-styles .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #274186;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.bootstrap-styles .page-link:hover {
  z-index: 2;
  color: #16244b;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.bootstrap-styles .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 134, 0.25);
}
.bootstrap-styles .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.bootstrap-styles .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.bootstrap-styles .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.bootstrap-styles .pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.bootstrap-styles .pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.bootstrap-styles .pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.bootstrap-styles .pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.bootstrap-styles .pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.bootstrap-styles .pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.bootstrap-styles .badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.bootstrap-styles .badge:empty {
  display: none;
}
.bootstrap-styles .btn .badge {
  position: relative;
  top: -1px;
}
.bootstrap-styles .jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .bootstrap-styles .jumbotron {
    padding: 4rem 2rem;
  }
}
.bootstrap-styles .jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.bootstrap-styles .alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.bootstrap-styles .alert-heading {
  color: inherit;
}
.bootstrap-styles .alert-link {
  font-weight: 700;
}
.bootstrap-styles .alert-dismissible {
  padding-right: 4rem;
}
.bootstrap-styles .alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.bootstrap-styles .alert-primary {
  color: #142246;
  background-color: #d4d9e7;
  border-color: #c3cadd;
}
.bootstrap-styles .alert-primary .alert-link {
  color: #090f1e;
}
.bootstrap-styles .alert-secondary {
  color: #005376;
  background-color: #ccecf9;
  border-color: #b8e4f7;
}
.bootstrap-styles .alert-secondary .alert-link {
  color: #002f43;
}
.bootstrap-styles .alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.bootstrap-styles .alert-success .alert-link {
  color: #0b2e13;
}
.bootstrap-styles .alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.bootstrap-styles .alert-info .alert-link {
  color: #062c33;
}
.bootstrap-styles .alert-warning {
  color: #837e01;
  background-color: #fefdcc;
  border-color: #fefcb8;
}
.bootstrap-styles .alert-warning .alert-link {
  color: #504d01;
}
.bootstrap-styles .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.bootstrap-styles .alert-danger .alert-link {
  color: #491217;
}
.bootstrap-styles .alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.bootstrap-styles .alert-light .alert-link {
  color: #686868;
}
.bootstrap-styles .alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.bootstrap-styles .alert-dark .alert-link {
  color: #040505;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.bootstrap-styles .progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.bootstrap-styles .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #274186;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .progress-bar {
    transition: none;
  }
}
.bootstrap-styles .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;
}
.bootstrap-styles .progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .progress-bar-animated {
    animation: none;
  }
}
.bootstrap-styles .media {
  display: flex;
  align-items: flex-start;
}
.bootstrap-styles .media-body {
  flex: 1;
}
.bootstrap-styles .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.bootstrap-styles .list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.bootstrap-styles .list-group-item-action:hover, .bootstrap-styles .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.bootstrap-styles .list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.bootstrap-styles .list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.bootstrap-styles .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.bootstrap-styles .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.bootstrap-styles .list-group-item.disabled, .bootstrap-styles .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.bootstrap-styles .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #274186;
  border-color: #274186;
}
.bootstrap-styles .list-group-horizontal {
  flex-direction: row;
}
.bootstrap-styles .list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}
.bootstrap-styles .list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.bootstrap-styles .list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
@media (min-width: 576px) {
  .bootstrap-styles .list-group-horizontal-sm {
    flex-direction: row;
  }
  .bootstrap-styles .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-styles .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-styles .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .list-group-horizontal-md {
    flex-direction: row;
  }
  .bootstrap-styles .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-styles .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-styles .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .list-group-horizontal-lg {
    flex-direction: row;
  }
  .bootstrap-styles .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-styles .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-styles .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .list-group-horizontal-xl {
    flex-direction: row;
  }
  .bootstrap-styles .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-styles .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-styles .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}
.bootstrap-styles .list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.bootstrap-styles .list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}
.bootstrap-styles .list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.bootstrap-styles .list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.bootstrap-styles .list-group-item-primary {
  color: #142246;
  background-color: #c3cadd;
}
.bootstrap-styles .list-group-item-primary.list-group-item-action:hover, .bootstrap-styles .list-group-item-primary.list-group-item-action:focus {
  color: #142246;
  background-color: #b3bcd4;
}
.bootstrap-styles .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #142246;
  border-color: #142246;
}
.bootstrap-styles .list-group-item-secondary {
  color: #005376;
  background-color: #b8e4f7;
}
.bootstrap-styles .list-group-item-secondary.list-group-item-action:hover, .bootstrap-styles .list-group-item-secondary.list-group-item-action:focus {
  color: #005376;
  background-color: #a1dbf4;
}
.bootstrap-styles .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #005376;
  border-color: #005376;
}
.bootstrap-styles .list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.bootstrap-styles .list-group-item-success.list-group-item-action:hover, .bootstrap-styles .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.bootstrap-styles .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}
.bootstrap-styles .list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.bootstrap-styles .list-group-item-info.list-group-item-action:hover, .bootstrap-styles .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.bootstrap-styles .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.bootstrap-styles .list-group-item-warning {
  color: #837e01;
  background-color: #fefcb8;
}
.bootstrap-styles .list-group-item-warning.list-group-item-action:hover, .bootstrap-styles .list-group-item-warning.list-group-item-action:focus {
  color: #837e01;
  background-color: #fefb9f;
}
.bootstrap-styles .list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #837e01;
  border-color: #837e01;
}
.bootstrap-styles .list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.bootstrap-styles .list-group-item-danger.list-group-item-action:hover, .bootstrap-styles .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.bootstrap-styles .list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.bootstrap-styles .list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.bootstrap-styles .list-group-item-light.list-group-item-action:hover, .bootstrap-styles .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.bootstrap-styles .list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.bootstrap-styles .list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.bootstrap-styles .list-group-item-dark.list-group-item-action:hover, .bootstrap-styles .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.bootstrap-styles .list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.bootstrap-styles .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.bootstrap-styles .close:hover {
  color: #000;
  text-decoration: none;
}
.bootstrap-styles .close:not(:disabled):not(.disabled):hover, .bootstrap-styles .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}
.bootstrap-styles button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}
.bootstrap-styles a.close.disabled {
  pointer-events: none;
}
.bootstrap-styles .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;
}
.bootstrap-styles .toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.bootstrap-styles .toast.showing {
  opacity: 1;
}
.bootstrap-styles .toast.show {
  display: block;
  opacity: 1;
}
.bootstrap-styles .toast.hide {
  display: none;
}
.bootstrap-styles .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);
}
.bootstrap-styles .toast-body {
  padding: 0.75rem;
}
.bootstrap-styles .modal-open {
  overflow: hidden;
}
.bootstrap-styles .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.bootstrap-styles .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.bootstrap-styles .modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .bootstrap-styles .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .bootstrap-styles .modal-dialog {
    transition: none;
  }
}
.modal.show .bootstrap-styles .modal-dialog {
  transform: none;
}
.bootstrap-styles .modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.bootstrap-styles .modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.bootstrap-styles .modal-dialog-scrollable .modal-header,
.bootstrap-styles .modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.bootstrap-styles .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.bootstrap-styles .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.bootstrap-styles .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.bootstrap-styles .modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.bootstrap-styles .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.bootstrap-styles .modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}
.bootstrap-styles .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.bootstrap-styles .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.bootstrap-styles .modal-backdrop.fade {
  opacity: 0;
}
.bootstrap-styles .modal-backdrop.show {
  opacity: 0.5;
}
.bootstrap-styles .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.bootstrap-styles .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}
.bootstrap-styles .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.bootstrap-styles .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.bootstrap-styles .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.bootstrap-styles .modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.bootstrap-styles .modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.bootstrap-styles .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .bootstrap-styles .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .bootstrap-styles .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .bootstrap-styles .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .bootstrap-styles .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .bootstrap-styles .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .bootstrap-styles .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .modal-lg,
  .bootstrap-styles .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .modal-xl {
    max-width: 1140px;
  }
}
.bootstrap-styles .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.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.bootstrap-styles .tooltip.show {
  opacity: 0.9;
}
.bootstrap-styles .tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.bootstrap-styles .tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bootstrap-styles .bs-tooltip-top, .bootstrap-styles .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bootstrap-styles .bs-tooltip-top .tooltip-arrow, .bootstrap-styles .bs-tooltip-auto[x-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bootstrap-styles .bs-tooltip-top .tooltip-arrow::before, .bootstrap-styles .bs-tooltip-auto[x-placement^=top] .tooltip-arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
.bootstrap-styles .bs-tooltip-right, .bootstrap-styles .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bootstrap-styles .bs-tooltip-right .tooltip-arrow, .bootstrap-styles .bs-tooltip-auto[x-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bootstrap-styles .bs-tooltip-right .tooltip-arrow::before, .bootstrap-styles .bs-tooltip-auto[x-placement^=right] .tooltip-arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}
.bootstrap-styles .bs-tooltip-bottom, .bootstrap-styles .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bootstrap-styles .bs-tooltip-bottom .tooltip-arrow, .bootstrap-styles .bs-tooltip-auto[x-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bootstrap-styles .bs-tooltip-bottom .tooltip-arrow::before, .bootstrap-styles .bs-tooltip-auto[x-placement^=bottom] .tooltip-arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
.bootstrap-styles .bs-tooltip-left, .bootstrap-styles .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bootstrap-styles .bs-tooltip-left .tooltip-arrow, .bootstrap-styles .bs-tooltip-auto[x-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bootstrap-styles .bs-tooltip-left .tooltip-arrow::before, .bootstrap-styles .bs-tooltip-auto[x-placement^=left] .tooltip-arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.bootstrap-styles .tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
.bootstrap-styles .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.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.bootstrap-styles .popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.bootstrap-styles .popover .popover-arrow::before, .bootstrap-styles .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bootstrap-styles .bs-popover-top, .bootstrap-styles .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bootstrap-styles .bs-popover-top > .popover-arrow, .bootstrap-styles .bs-popover-auto[x-placement^=top] > .popover-arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bootstrap-styles .bs-popover-top > .popover-arrow::before, .bootstrap-styles .bs-popover-auto[x-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bootstrap-styles .bs-popover-top > .popover-arrow::after, .bootstrap-styles .bs-popover-auto[x-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}
.bootstrap-styles .bs-popover-right, .bootstrap-styles .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bootstrap-styles .bs-popover-right > .popover-arrow, .bootstrap-styles .bs-popover-auto[x-placement^=right] > .popover-arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bootstrap-styles .bs-popover-right > .popover-arrow::before, .bootstrap-styles .bs-popover-auto[x-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bootstrap-styles .bs-popover-right > .popover-arrow::after, .bootstrap-styles .bs-popover-auto[x-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}
.bootstrap-styles .bs-popover-bottom, .bootstrap-styles .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bootstrap-styles .bs-popover-bottom > .popover-arrow, .bootstrap-styles .bs-popover-auto[x-placement^=bottom] > .popover-arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bootstrap-styles .bs-popover-bottom > .popover-arrow::before, .bootstrap-styles .bs-popover-auto[x-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bootstrap-styles .bs-popover-bottom > .popover-arrow::after, .bootstrap-styles .bs-popover-auto[x-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bootstrap-styles .bs-popover-bottom .popover-header::before, .bootstrap-styles .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;
}
.bootstrap-styles .bs-popover-left, .bootstrap-styles .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bootstrap-styles .bs-popover-left > .popover-arrow, .bootstrap-styles .bs-popover-auto[x-placement^=left] > .popover-arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bootstrap-styles .bs-popover-left > .popover-arrow::before, .bootstrap-styles .bs-popover-auto[x-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bootstrap-styles .bs-popover-left > .popover-arrow::after, .bootstrap-styles .bs-popover-auto[x-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}
.bootstrap-styles .popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.bootstrap-styles .popover-header:empty {
  display: none;
}
.bootstrap-styles .popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}
.bootstrap-styles .carousel {
  position: relative;
}
.bootstrap-styles .carousel.pointer-event {
  touch-action: pan-y;
}
.bootstrap-styles .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bootstrap-styles .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.bootstrap-styles .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) {
  .bootstrap-styles .carousel-item {
    transition: none;
  }
}
.bootstrap-styles .carousel-item.active,
.bootstrap-styles .carousel-item-next,
.bootstrap-styles .carousel-item-prev {
  display: block;
}
.bootstrap-styles .carousel-item-next:not(.carousel-item-left),
.bootstrap-styles .active.carousel-item-right {
  transform: translateX(100%);
}
.bootstrap-styles .carousel-item-prev:not(.carousel-item-right),
.bootstrap-styles .active.carousel-item-left {
  transform: translateX(-100%);
}
.bootstrap-styles .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.bootstrap-styles .carousel-fade .carousel-item.active,
.bootstrap-styles .carousel-fade .carousel-item-next.carousel-item-left,
.bootstrap-styles .carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.bootstrap-styles .carousel-fade .active.carousel-item-left,
.bootstrap-styles .carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: 0s 0.6s opacity;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .carousel-fade .active.carousel-item-left,
  .bootstrap-styles .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}
.bootstrap-styles .carousel-control-prev,
.bootstrap-styles .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-styles .carousel-control-prev,
  .bootstrap-styles .carousel-control-next {
    transition: none;
  }
}
.bootstrap-styles .carousel-control-prev:hover, .bootstrap-styles .carousel-control-prev:focus,
.bootstrap-styles .carousel-control-next:hover,
.bootstrap-styles .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.bootstrap-styles .carousel-control-prev {
  left: 0;
}
.bootstrap-styles .carousel-control-next {
  right: 0;
}
.bootstrap-styles .carousel-control-prev-icon,
.bootstrap-styles .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}
.bootstrap-styles .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}
.bootstrap-styles .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}
.bootstrap-styles .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;
}
.bootstrap-styles .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: #fff;
  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) {
  .bootstrap-styles .carousel-indicators li {
    transition: none;
  }
}
.bootstrap-styles .carousel-indicators .active {
  opacity: 1;
}
.bootstrap-styles .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.bootstrap-styles .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;
}
.bootstrap-styles .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}
.bootstrap-styles .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;
}
.bootstrap-styles .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
.bootstrap-styles .align-baseline {
  vertical-align: baseline !important;
}
.bootstrap-styles .align-top {
  vertical-align: top !important;
}
.bootstrap-styles .align-middle {
  vertical-align: middle !important;
}
.bootstrap-styles .align-bottom {
  vertical-align: bottom !important;
}
.bootstrap-styles .align-text-bottom {
  vertical-align: text-bottom !important;
}
.bootstrap-styles .align-text-top {
  vertical-align: text-top !important;
}
.bootstrap-styles .bg-primary {
  background-color: #274186 !important;
}
.bootstrap-styles .bg-secondary {
  background-color: #00A0E3 !important;
}
.bootstrap-styles .bg-success {
  background-color: #28a745 !important;
}
.bootstrap-styles .bg-info {
  background-color: #17a2b8 !important;
}
.bootstrap-styles .bg-warning {
  background-color: #FCF302 !important;
}
.bootstrap-styles .bg-danger {
  background-color: #dc3545 !important;
}
.bootstrap-styles .bg-light {
  background-color: #f8f9fa !important;
}
.bootstrap-styles .bg-dark {
  background-color: #343a40 !important;
}
.bootstrap-styles .bg-white {
  background-color: #fff !important;
}
.bootstrap-styles .bg-transparent {
  background-color: transparent !important;
}
.bootstrap-styles .border {
  border: 1px solid #dee2e6 !important;
}
.bootstrap-styles .border-top {
  border-top: 1px solid #dee2e6 !important;
}
.bootstrap-styles .border-right {
  border-right: 1px solid #dee2e6 !important;
}
.bootstrap-styles .border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.bootstrap-styles .border-left {
  border-left: 1px solid #dee2e6 !important;
}
.bootstrap-styles .border-0 {
  border: 0 !important;
}
.bootstrap-styles .border-top-0 {
  border-top: 0 !important;
}
.bootstrap-styles .border-right-0 {
  border-right: 0 !important;
}
.bootstrap-styles .border-bottom-0 {
  border-bottom: 0 !important;
}
.bootstrap-styles .border-left-0 {
  border-left: 0 !important;
}
.bootstrap-styles .border-primary {
  border-color: #274186 !important;
}
.bootstrap-styles .border-secondary {
  border-color: #00A0E3 !important;
}
.bootstrap-styles .border-success {
  border-color: #28a745 !important;
}
.bootstrap-styles .border-info {
  border-color: #17a2b8 !important;
}
.bootstrap-styles .border-warning {
  border-color: #FCF302 !important;
}
.bootstrap-styles .border-danger {
  border-color: #dc3545 !important;
}
.bootstrap-styles .border-light {
  border-color: #f8f9fa !important;
}
.bootstrap-styles .border-dark {
  border-color: #343a40 !important;
}
.bootstrap-styles .border-white {
  border-color: #fff !important;
}
.bootstrap-styles .rounded-sm {
  border-radius: 0.2rem !important;
}
.bootstrap-styles .rounded {
  border-radius: 0.25rem !important;
}
.bootstrap-styles .rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.bootstrap-styles .rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.bootstrap-styles .rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.bootstrap-styles .rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.bootstrap-styles .rounded-lg {
  border-radius: 0.3rem !important;
}
.bootstrap-styles .rounded-circle {
  border-radius: 50% !important;
}
.bootstrap-styles .rounded-pill {
  border-radius: 50rem !important;
}
.bootstrap-styles .rounded-0 {
  border-radius: 0 !important;
}
.bootstrap-styles .clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.bootstrap-styles .d-none {
  display: none !important;
}
.bootstrap-styles .d-inline {
  display: inline !important;
}
.bootstrap-styles .d-inline-block {
  display: inline-block !important;
}
.bootstrap-styles .d-block {
  display: block !important;
}
.bootstrap-styles .d-table {
  display: table !important;
}
.bootstrap-styles .d-table-row {
  display: table-row !important;
}
.bootstrap-styles .d-table-cell {
  display: table-cell !important;
}
.bootstrap-styles .d-flex {
  display: flex !important;
}
.bootstrap-styles .d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .bootstrap-styles .d-sm-none {
    display: none !important;
  }
  .bootstrap-styles .d-sm-inline {
    display: inline !important;
  }
  .bootstrap-styles .d-sm-inline-block {
    display: inline-block !important;
  }
  .bootstrap-styles .d-sm-block {
    display: block !important;
  }
  .bootstrap-styles .d-sm-table {
    display: table !important;
  }
  .bootstrap-styles .d-sm-table-row {
    display: table-row !important;
  }
  .bootstrap-styles .d-sm-table-cell {
    display: table-cell !important;
  }
  .bootstrap-styles .d-sm-flex {
    display: flex !important;
  }
  .bootstrap-styles .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .d-md-none {
    display: none !important;
  }
  .bootstrap-styles .d-md-inline {
    display: inline !important;
  }
  .bootstrap-styles .d-md-inline-block {
    display: inline-block !important;
  }
  .bootstrap-styles .d-md-block {
    display: block !important;
  }
  .bootstrap-styles .d-md-table {
    display: table !important;
  }
  .bootstrap-styles .d-md-table-row {
    display: table-row !important;
  }
  .bootstrap-styles .d-md-table-cell {
    display: table-cell !important;
  }
  .bootstrap-styles .d-md-flex {
    display: flex !important;
  }
  .bootstrap-styles .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .d-lg-none {
    display: none !important;
  }
  .bootstrap-styles .d-lg-inline {
    display: inline !important;
  }
  .bootstrap-styles .d-lg-inline-block {
    display: inline-block !important;
  }
  .bootstrap-styles .d-lg-block {
    display: block !important;
  }
  .bootstrap-styles .d-lg-table {
    display: table !important;
  }
  .bootstrap-styles .d-lg-table-row {
    display: table-row !important;
  }
  .bootstrap-styles .d-lg-table-cell {
    display: table-cell !important;
  }
  .bootstrap-styles .d-lg-flex {
    display: flex !important;
  }
  .bootstrap-styles .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .d-xl-none {
    display: none !important;
  }
  .bootstrap-styles .d-xl-inline {
    display: inline !important;
  }
  .bootstrap-styles .d-xl-inline-block {
    display: inline-block !important;
  }
  .bootstrap-styles .d-xl-block {
    display: block !important;
  }
  .bootstrap-styles .d-xl-table {
    display: table !important;
  }
  .bootstrap-styles .d-xl-table-row {
    display: table-row !important;
  }
  .bootstrap-styles .d-xl-table-cell {
    display: table-cell !important;
  }
  .bootstrap-styles .d-xl-flex {
    display: flex !important;
  }
  .bootstrap-styles .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .bootstrap-styles .d-print-none {
    display: none !important;
  }
  .bootstrap-styles .d-print-inline {
    display: inline !important;
  }
  .bootstrap-styles .d-print-inline-block {
    display: inline-block !important;
  }
  .bootstrap-styles .d-print-block {
    display: block !important;
  }
  .bootstrap-styles .d-print-table {
    display: table !important;
  }
  .bootstrap-styles .d-print-table-row {
    display: table-row !important;
  }
  .bootstrap-styles .d-print-table-cell {
    display: table-cell !important;
  }
  .bootstrap-styles .d-print-flex {
    display: flex !important;
  }
  .bootstrap-styles .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.bootstrap-styles .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.bootstrap-styles .embed-responsive::before {
  display: block;
  content: "";
}
.bootstrap-styles .embed-responsive .embed-responsive-item,
.bootstrap-styles .embed-responsive iframe,
.bootstrap-styles .embed-responsive embed,
.bootstrap-styles .embed-responsive object,
.bootstrap-styles .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bootstrap-styles .embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
.bootstrap-styles .embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.bootstrap-styles .embed-responsive-4by3::before {
  padding-top: 75%;
}
.bootstrap-styles .embed-responsive-1by1::before {
  padding-top: 100%;
}
.bootstrap-styles .embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}
.bootstrap-styles .embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.bootstrap-styles .embed-responsive-4by3::before {
  padding-top: 75%;
}
.bootstrap-styles .embed-responsive-1by1::before {
  padding-top: 100%;
}
.bootstrap-styles .flex-row {
  flex-direction: row !important;
}
.bootstrap-styles .flex-column {
  flex-direction: column !important;
}
.bootstrap-styles .flex-row-reverse {
  flex-direction: row-reverse !important;
}
.bootstrap-styles .flex-column-reverse {
  flex-direction: column-reverse !important;
}
.bootstrap-styles .flex-wrap {
  flex-wrap: wrap !important;
}
.bootstrap-styles .flex-nowrap {
  flex-wrap: nowrap !important;
}
.bootstrap-styles .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.bootstrap-styles .flex-fill {
  flex: 1 1 auto !important;
}
.bootstrap-styles .flex-grow-0 {
  flex-grow: 0 !important;
}
.bootstrap-styles .flex-grow-1 {
  flex-grow: 1 !important;
}
.bootstrap-styles .flex-shrink-0 {
  flex-shrink: 0 !important;
}
.bootstrap-styles .flex-shrink-1 {
  flex-shrink: 1 !important;
}
.bootstrap-styles .justify-content-start {
  justify-content: flex-start !important;
}
.bootstrap-styles .justify-content-end {
  justify-content: flex-end !important;
}
.bootstrap-styles .justify-content-center {
  justify-content: center !important;
}
.bootstrap-styles .justify-content-between {
  justify-content: space-between !important;
}
.bootstrap-styles .justify-content-around {
  justify-content: space-around !important;
}
.bootstrap-styles .align-items-start {
  align-items: flex-start !important;
}
.bootstrap-styles .align-items-end {
  align-items: flex-end !important;
}
.bootstrap-styles .align-items-center {
  align-items: center !important;
}
.bootstrap-styles .align-items-baseline {
  align-items: baseline !important;
}
.bootstrap-styles .align-items-stretch {
  align-items: stretch !important;
}
.bootstrap-styles .align-content-start {
  align-content: flex-start !important;
}
.bootstrap-styles .align-content-end {
  align-content: flex-end !important;
}
.bootstrap-styles .align-content-center {
  align-content: center !important;
}
.bootstrap-styles .align-content-between {
  align-content: space-between !important;
}
.bootstrap-styles .align-content-around {
  align-content: space-around !important;
}
.bootstrap-styles .align-content-stretch {
  align-content: stretch !important;
}
.bootstrap-styles .align-self-auto {
  align-self: auto !important;
}
.bootstrap-styles .align-self-start {
  align-self: flex-start !important;
}
.bootstrap-styles .align-self-end {
  align-self: flex-end !important;
}
.bootstrap-styles .align-self-center {
  align-self: center !important;
}
.bootstrap-styles .align-self-baseline {
  align-self: baseline !important;
}
.bootstrap-styles .align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .bootstrap-styles .flex-sm-row {
    flex-direction: row !important;
  }
  .bootstrap-styles .flex-sm-column {
    flex-direction: column !important;
  }
  .bootstrap-styles .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-styles .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-styles .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-styles .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-styles .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-styles .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-styles .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-styles .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-styles .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-styles .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-styles .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .bootstrap-styles .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .bootstrap-styles .justify-content-sm-center {
    justify-content: center !important;
  }
  .bootstrap-styles .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .bootstrap-styles .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .bootstrap-styles .align-items-sm-start {
    align-items: flex-start !important;
  }
  .bootstrap-styles .align-items-sm-end {
    align-items: flex-end !important;
  }
  .bootstrap-styles .align-items-sm-center {
    align-items: center !important;
  }
  .bootstrap-styles .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .bootstrap-styles .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .bootstrap-styles .align-content-sm-start {
    align-content: flex-start !important;
  }
  .bootstrap-styles .align-content-sm-end {
    align-content: flex-end !important;
  }
  .bootstrap-styles .align-content-sm-center {
    align-content: center !important;
  }
  .bootstrap-styles .align-content-sm-between {
    align-content: space-between !important;
  }
  .bootstrap-styles .align-content-sm-around {
    align-content: space-around !important;
  }
  .bootstrap-styles .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .bootstrap-styles .align-self-sm-auto {
    align-self: auto !important;
  }
  .bootstrap-styles .align-self-sm-start {
    align-self: flex-start !important;
  }
  .bootstrap-styles .align-self-sm-end {
    align-self: flex-end !important;
  }
  .bootstrap-styles .align-self-sm-center {
    align-self: center !important;
  }
  .bootstrap-styles .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .bootstrap-styles .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .flex-md-row {
    flex-direction: row !important;
  }
  .bootstrap-styles .flex-md-column {
    flex-direction: column !important;
  }
  .bootstrap-styles .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-styles .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-styles .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-styles .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-styles .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-styles .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-styles .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-styles .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-styles .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-styles .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-styles .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .bootstrap-styles .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .bootstrap-styles .justify-content-md-center {
    justify-content: center !important;
  }
  .bootstrap-styles .justify-content-md-between {
    justify-content: space-between !important;
  }
  .bootstrap-styles .justify-content-md-around {
    justify-content: space-around !important;
  }
  .bootstrap-styles .align-items-md-start {
    align-items: flex-start !important;
  }
  .bootstrap-styles .align-items-md-end {
    align-items: flex-end !important;
  }
  .bootstrap-styles .align-items-md-center {
    align-items: center !important;
  }
  .bootstrap-styles .align-items-md-baseline {
    align-items: baseline !important;
  }
  .bootstrap-styles .align-items-md-stretch {
    align-items: stretch !important;
  }
  .bootstrap-styles .align-content-md-start {
    align-content: flex-start !important;
  }
  .bootstrap-styles .align-content-md-end {
    align-content: flex-end !important;
  }
  .bootstrap-styles .align-content-md-center {
    align-content: center !important;
  }
  .bootstrap-styles .align-content-md-between {
    align-content: space-between !important;
  }
  .bootstrap-styles .align-content-md-around {
    align-content: space-around !important;
  }
  .bootstrap-styles .align-content-md-stretch {
    align-content: stretch !important;
  }
  .bootstrap-styles .align-self-md-auto {
    align-self: auto !important;
  }
  .bootstrap-styles .align-self-md-start {
    align-self: flex-start !important;
  }
  .bootstrap-styles .align-self-md-end {
    align-self: flex-end !important;
  }
  .bootstrap-styles .align-self-md-center {
    align-self: center !important;
  }
  .bootstrap-styles .align-self-md-baseline {
    align-self: baseline !important;
  }
  .bootstrap-styles .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .flex-lg-row {
    flex-direction: row !important;
  }
  .bootstrap-styles .flex-lg-column {
    flex-direction: column !important;
  }
  .bootstrap-styles .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-styles .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-styles .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-styles .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-styles .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-styles .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-styles .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-styles .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-styles .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-styles .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-styles .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .bootstrap-styles .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .bootstrap-styles .justify-content-lg-center {
    justify-content: center !important;
  }
  .bootstrap-styles .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .bootstrap-styles .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .bootstrap-styles .align-items-lg-start {
    align-items: flex-start !important;
  }
  .bootstrap-styles .align-items-lg-end {
    align-items: flex-end !important;
  }
  .bootstrap-styles .align-items-lg-center {
    align-items: center !important;
  }
  .bootstrap-styles .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .bootstrap-styles .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .bootstrap-styles .align-content-lg-start {
    align-content: flex-start !important;
  }
  .bootstrap-styles .align-content-lg-end {
    align-content: flex-end !important;
  }
  .bootstrap-styles .align-content-lg-center {
    align-content: center !important;
  }
  .bootstrap-styles .align-content-lg-between {
    align-content: space-between !important;
  }
  .bootstrap-styles .align-content-lg-around {
    align-content: space-around !important;
  }
  .bootstrap-styles .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .bootstrap-styles .align-self-lg-auto {
    align-self: auto !important;
  }
  .bootstrap-styles .align-self-lg-start {
    align-self: flex-start !important;
  }
  .bootstrap-styles .align-self-lg-end {
    align-self: flex-end !important;
  }
  .bootstrap-styles .align-self-lg-center {
    align-self: center !important;
  }
  .bootstrap-styles .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .bootstrap-styles .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .flex-xl-row {
    flex-direction: row !important;
  }
  .bootstrap-styles .flex-xl-column {
    flex-direction: column !important;
  }
  .bootstrap-styles .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-styles .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-styles .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-styles .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-styles .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-styles .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-styles .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-styles .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-styles .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-styles .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-styles .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .bootstrap-styles .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .bootstrap-styles .justify-content-xl-center {
    justify-content: center !important;
  }
  .bootstrap-styles .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .bootstrap-styles .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .bootstrap-styles .align-items-xl-start {
    align-items: flex-start !important;
  }
  .bootstrap-styles .align-items-xl-end {
    align-items: flex-end !important;
  }
  .bootstrap-styles .align-items-xl-center {
    align-items: center !important;
  }
  .bootstrap-styles .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .bootstrap-styles .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .bootstrap-styles .align-content-xl-start {
    align-content: flex-start !important;
  }
  .bootstrap-styles .align-content-xl-end {
    align-content: flex-end !important;
  }
  .bootstrap-styles .align-content-xl-center {
    align-content: center !important;
  }
  .bootstrap-styles .align-content-xl-between {
    align-content: space-between !important;
  }
  .bootstrap-styles .align-content-xl-around {
    align-content: space-around !important;
  }
  .bootstrap-styles .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .bootstrap-styles .align-self-xl-auto {
    align-self: auto !important;
  }
  .bootstrap-styles .align-self-xl-start {
    align-self: flex-start !important;
  }
  .bootstrap-styles .align-self-xl-end {
    align-self: flex-end !important;
  }
  .bootstrap-styles .align-self-xl-center {
    align-self: center !important;
  }
  .bootstrap-styles .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .bootstrap-styles .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.bootstrap-styles .float-left {
  float: left !important;
}
.bootstrap-styles .float-right {
  float: right !important;
}
.bootstrap-styles .float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .bootstrap-styles .float-sm-left {
    float: left !important;
  }
  .bootstrap-styles .float-sm-right {
    float: right !important;
  }
  .bootstrap-styles .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .float-md-left {
    float: left !important;
  }
  .bootstrap-styles .float-md-right {
    float: right !important;
  }
  .bootstrap-styles .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .float-lg-left {
    float: left !important;
  }
  .bootstrap-styles .float-lg-right {
    float: right !important;
  }
  .bootstrap-styles .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .float-xl-left {
    float: left !important;
  }
  .bootstrap-styles .float-xl-right {
    float: right !important;
  }
  .bootstrap-styles .float-xl-none {
    float: none !important;
  }
}
.bootstrap-styles .overflow-auto {
  overflow: auto !important;
}
.bootstrap-styles .overflow-hidden {
  overflow: hidden !important;
}
.bootstrap-styles .position-static {
  position: static !important;
}
.bootstrap-styles .position-relative {
  position: relative !important;
}
.bootstrap-styles .position-absolute {
  position: absolute !important;
}
.bootstrap-styles .position-fixed {
  position: fixed !important;
}
.bootstrap-styles .position-sticky {
  position: sticky !important;
}
.bootstrap-styles .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.bootstrap-styles .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports (position: sticky) {
  .bootstrap-styles .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.bootstrap-styles .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.bootstrap-styles .sr-only-focusable:active, .bootstrap-styles .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.bootstrap-styles .shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.bootstrap-styles .shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.bootstrap-styles .shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.bootstrap-styles .shadow-none {
  box-shadow: none !important;
}
.bootstrap-styles .w-25 {
  width: 25% !important;
}
.bootstrap-styles .w-50 {
  width: 50% !important;
}
.bootstrap-styles .w-75 {
  width: 75% !important;
}
.bootstrap-styles .w-100 {
  width: 100% !important;
}
.bootstrap-styles .w-auto {
  width: auto !important;
}
.bootstrap-styles .h-25 {
  height: 25% !important;
}
.bootstrap-styles .h-50 {
  height: 50% !important;
}
.bootstrap-styles .h-75 {
  height: 75% !important;
}
.bootstrap-styles .h-100 {
  height: 100% !important;
}
.bootstrap-styles .h-auto {
  height: auto !important;
}
.bootstrap-styles .mw-100 {
  max-width: 100% !important;
}
.bootstrap-styles .mh-100 {
  max-height: 100% !important;
}
.bootstrap-styles .min-vw-100 {
  min-width: 100vw !important;
}
.bootstrap-styles .min-vh-100 {
  min-height: 100vh !important;
}
.bootstrap-styles .vw-100 {
  width: 100vw !important;
}
.bootstrap-styles .vh-100 {
  height: 100vh !important;
}
.bootstrap-styles .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);
}
.bootstrap-styles .m-0 {
  margin: 0 !important;
}
.bootstrap-styles .mt-0,
.bootstrap-styles .my-0 {
  margin-top: 0 !important;
}
.bootstrap-styles .mr-0,
.bootstrap-styles .mx-0 {
  margin-right: 0 !important;
}
.bootstrap-styles .mb-0,
.bootstrap-styles .my-0 {
  margin-bottom: 0 !important;
}
.bootstrap-styles .ml-0,
.bootstrap-styles .mx-0 {
  margin-left: 0 !important;
}
.bootstrap-styles .m-1 {
  margin: 0.25rem !important;
}
.bootstrap-styles .mt-1,
.bootstrap-styles .my-1 {
  margin-top: 0.25rem !important;
}
.bootstrap-styles .mr-1,
.bootstrap-styles .mx-1 {
  margin-right: 0.25rem !important;
}
.bootstrap-styles .mb-1,
.bootstrap-styles .my-1 {
  margin-bottom: 0.25rem !important;
}
.bootstrap-styles .ml-1,
.bootstrap-styles .mx-1 {
  margin-left: 0.25rem !important;
}
.bootstrap-styles .m-2 {
  margin: 0.5rem !important;
}
.bootstrap-styles .mt-2,
.bootstrap-styles .my-2 {
  margin-top: 0.5rem !important;
}
.bootstrap-styles .mr-2,
.bootstrap-styles .mx-2 {
  margin-right: 0.5rem !important;
}
.bootstrap-styles .mb-2,
.bootstrap-styles .my-2 {
  margin-bottom: 0.5rem !important;
}
.bootstrap-styles .ml-2,
.bootstrap-styles .mx-2 {
  margin-left: 0.5rem !important;
}
.bootstrap-styles .m-3 {
  margin: 1rem !important;
}
.bootstrap-styles .mt-3,
.bootstrap-styles .my-3 {
  margin-top: 1rem !important;
}
.bootstrap-styles .mr-3,
.bootstrap-styles .mx-3 {
  margin-right: 1rem !important;
}
.bootstrap-styles .mb-3,
.bootstrap-styles .my-3 {
  margin-bottom: 1rem !important;
}
.bootstrap-styles .ml-3,
.bootstrap-styles .mx-3 {
  margin-left: 1rem !important;
}
.bootstrap-styles .m-4 {
  margin: 1.5rem !important;
}
.bootstrap-styles .mt-4,
.bootstrap-styles .my-4 {
  margin-top: 1.5rem !important;
}
.bootstrap-styles .mr-4,
.bootstrap-styles .mx-4 {
  margin-right: 1.5rem !important;
}
.bootstrap-styles .mb-4,
.bootstrap-styles .my-4 {
  margin-bottom: 1.5rem !important;
}
.bootstrap-styles .ml-4,
.bootstrap-styles .mx-4 {
  margin-left: 1.5rem !important;
}
.bootstrap-styles .m-5 {
  margin: 3rem !important;
}
.bootstrap-styles .mt-5,
.bootstrap-styles .my-5 {
  margin-top: 3rem !important;
}
.bootstrap-styles .mr-5,
.bootstrap-styles .mx-5 {
  margin-right: 3rem !important;
}
.bootstrap-styles .mb-5,
.bootstrap-styles .my-5 {
  margin-bottom: 3rem !important;
}
.bootstrap-styles .ml-5,
.bootstrap-styles .mx-5 {
  margin-left: 3rem !important;
}
.bootstrap-styles .p-0 {
  padding: 0 !important;
}
.bootstrap-styles .pt-0,
.bootstrap-styles .py-0 {
  padding-top: 0 !important;
}
.bootstrap-styles .pr-0,
.bootstrap-styles .px-0 {
  padding-right: 0 !important;
}
.bootstrap-styles .pb-0,
.bootstrap-styles .py-0 {
  padding-bottom: 0 !important;
}
.bootstrap-styles .pl-0,
.bootstrap-styles .px-0 {
  padding-left: 0 !important;
}
.bootstrap-styles .p-1 {
  padding: 0.25rem !important;
}
.bootstrap-styles .pt-1,
.bootstrap-styles .py-1 {
  padding-top: 0.25rem !important;
}
.bootstrap-styles .pr-1,
.bootstrap-styles .px-1 {
  padding-right: 0.25rem !important;
}
.bootstrap-styles .pb-1,
.bootstrap-styles .py-1 {
  padding-bottom: 0.25rem !important;
}
.bootstrap-styles .pl-1,
.bootstrap-styles .px-1 {
  padding-left: 0.25rem !important;
}
.bootstrap-styles .p-2 {
  padding: 0.5rem !important;
}
.bootstrap-styles .pt-2,
.bootstrap-styles .py-2 {
  padding-top: 0.5rem !important;
}
.bootstrap-styles .pr-2,
.bootstrap-styles .px-2 {
  padding-right: 0.5rem !important;
}
.bootstrap-styles .pb-2,
.bootstrap-styles .py-2 {
  padding-bottom: 0.5rem !important;
}
.bootstrap-styles .pl-2,
.bootstrap-styles .px-2 {
  padding-left: 0.5rem !important;
}
.bootstrap-styles .p-3 {
  padding: 1rem !important;
}
.bootstrap-styles .pt-3,
.bootstrap-styles .py-3 {
  padding-top: 1rem !important;
}
.bootstrap-styles .pr-3,
.bootstrap-styles .px-3 {
  padding-right: 1rem !important;
}
.bootstrap-styles .pb-3,
.bootstrap-styles .py-3 {
  padding-bottom: 1rem !important;
}
.bootstrap-styles .pl-3,
.bootstrap-styles .px-3 {
  padding-left: 1rem !important;
}
.bootstrap-styles .p-4 {
  padding: 1.5rem !important;
}
.bootstrap-styles .pt-4,
.bootstrap-styles .py-4 {
  padding-top: 1.5rem !important;
}
.bootstrap-styles .pr-4,
.bootstrap-styles .px-4 {
  padding-right: 1.5rem !important;
}
.bootstrap-styles .pb-4,
.bootstrap-styles .py-4 {
  padding-bottom: 1.5rem !important;
}
.bootstrap-styles .pl-4,
.bootstrap-styles .px-4 {
  padding-left: 1.5rem !important;
}
.bootstrap-styles .p-5 {
  padding: 3rem !important;
}
.bootstrap-styles .pt-5,
.bootstrap-styles .py-5 {
  padding-top: 3rem !important;
}
.bootstrap-styles .pr-5,
.bootstrap-styles .px-5 {
  padding-right: 3rem !important;
}
.bootstrap-styles .pb-5,
.bootstrap-styles .py-5 {
  padding-bottom: 3rem !important;
}
.bootstrap-styles .pl-5,
.bootstrap-styles .px-5 {
  padding-left: 3rem !important;
}
.bootstrap-styles .m-n1 {
  margin: -0.25rem !important;
}
.bootstrap-styles .mt-n1,
.bootstrap-styles .my-n1 {
  margin-top: -0.25rem !important;
}
.bootstrap-styles .mr-n1,
.bootstrap-styles .mx-n1 {
  margin-right: -0.25rem !important;
}
.bootstrap-styles .mb-n1,
.bootstrap-styles .my-n1 {
  margin-bottom: -0.25rem !important;
}
.bootstrap-styles .ml-n1,
.bootstrap-styles .mx-n1 {
  margin-left: -0.25rem !important;
}
.bootstrap-styles .m-n2 {
  margin: -0.5rem !important;
}
.bootstrap-styles .mt-n2,
.bootstrap-styles .my-n2 {
  margin-top: -0.5rem !important;
}
.bootstrap-styles .mr-n2,
.bootstrap-styles .mx-n2 {
  margin-right: -0.5rem !important;
}
.bootstrap-styles .mb-n2,
.bootstrap-styles .my-n2 {
  margin-bottom: -0.5rem !important;
}
.bootstrap-styles .ml-n2,
.bootstrap-styles .mx-n2 {
  margin-left: -0.5rem !important;
}
.bootstrap-styles .m-n3 {
  margin: -1rem !important;
}
.bootstrap-styles .mt-n3,
.bootstrap-styles .my-n3 {
  margin-top: -1rem !important;
}
.bootstrap-styles .mr-n3,
.bootstrap-styles .mx-n3 {
  margin-right: -1rem !important;
}
.bootstrap-styles .mb-n3,
.bootstrap-styles .my-n3 {
  margin-bottom: -1rem !important;
}
.bootstrap-styles .ml-n3,
.bootstrap-styles .mx-n3 {
  margin-left: -1rem !important;
}
.bootstrap-styles .m-n4 {
  margin: -1.5rem !important;
}
.bootstrap-styles .mt-n4,
.bootstrap-styles .my-n4 {
  margin-top: -1.5rem !important;
}
.bootstrap-styles .mr-n4,
.bootstrap-styles .mx-n4 {
  margin-right: -1.5rem !important;
}
.bootstrap-styles .mb-n4,
.bootstrap-styles .my-n4 {
  margin-bottom: -1.5rem !important;
}
.bootstrap-styles .ml-n4,
.bootstrap-styles .mx-n4 {
  margin-left: -1.5rem !important;
}
.bootstrap-styles .m-n5 {
  margin: -3rem !important;
}
.bootstrap-styles .mt-n5,
.bootstrap-styles .my-n5 {
  margin-top: -3rem !important;
}
.bootstrap-styles .mr-n5,
.bootstrap-styles .mx-n5 {
  margin-right: -3rem !important;
}
.bootstrap-styles .mb-n5,
.bootstrap-styles .my-n5 {
  margin-bottom: -3rem !important;
}
.bootstrap-styles .ml-n5,
.bootstrap-styles .mx-n5 {
  margin-left: -3rem !important;
}
.bootstrap-styles .m-auto {
  margin: auto !important;
}
.bootstrap-styles .mt-auto,
.bootstrap-styles .my-auto {
  margin-top: auto !important;
}
.bootstrap-styles .mr-auto,
.bootstrap-styles .mx-auto {
  margin-right: auto !important;
}
.bootstrap-styles .mb-auto,
.bootstrap-styles .my-auto {
  margin-bottom: auto !important;
}
.bootstrap-styles .ml-auto,
.bootstrap-styles .mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .bootstrap-styles .m-sm-0 {
    margin: 0 !important;
  }
  .bootstrap-styles .mt-sm-0,
  .bootstrap-styles .my-sm-0 {
    margin-top: 0 !important;
  }
  .bootstrap-styles .mr-sm-0,
  .bootstrap-styles .mx-sm-0 {
    margin-right: 0 !important;
  }
  .bootstrap-styles .mb-sm-0,
  .bootstrap-styles .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-styles .ml-sm-0,
  .bootstrap-styles .mx-sm-0 {
    margin-left: 0 !important;
  }
  .bootstrap-styles .m-sm-1 {
    margin: 0.25rem !important;
  }
  .bootstrap-styles .mt-sm-1,
  .bootstrap-styles .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .bootstrap-styles .mr-sm-1,
  .bootstrap-styles .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .bootstrap-styles .mb-sm-1,
  .bootstrap-styles .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .bootstrap-styles .ml-sm-1,
  .bootstrap-styles .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .bootstrap-styles .m-sm-2 {
    margin: 0.5rem !important;
  }
  .bootstrap-styles .mt-sm-2,
  .bootstrap-styles .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .bootstrap-styles .mr-sm-2,
  .bootstrap-styles .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .bootstrap-styles .mb-sm-2,
  .bootstrap-styles .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .bootstrap-styles .ml-sm-2,
  .bootstrap-styles .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .bootstrap-styles .m-sm-3 {
    margin: 1rem !important;
  }
  .bootstrap-styles .mt-sm-3,
  .bootstrap-styles .my-sm-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-styles .mr-sm-3,
  .bootstrap-styles .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-styles .mb-sm-3,
  .bootstrap-styles .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-styles .ml-sm-3,
  .bootstrap-styles .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-styles .m-sm-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-styles .mt-sm-4,
  .bootstrap-styles .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-styles .mr-sm-4,
  .bootstrap-styles .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-styles .mb-sm-4,
  .bootstrap-styles .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-styles .ml-sm-4,
  .bootstrap-styles .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-styles .m-sm-5 {
    margin: 3rem !important;
  }
  .bootstrap-styles .mt-sm-5,
  .bootstrap-styles .my-sm-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-styles .mr-sm-5,
  .bootstrap-styles .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-styles .mb-sm-5,
  .bootstrap-styles .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-styles .ml-sm-5,
  .bootstrap-styles .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-styles .p-sm-0 {
    padding: 0 !important;
  }
  .bootstrap-styles .pt-sm-0,
  .bootstrap-styles .py-sm-0 {
    padding-top: 0 !important;
  }
  .bootstrap-styles .pr-sm-0,
  .bootstrap-styles .px-sm-0 {
    padding-right: 0 !important;
  }
  .bootstrap-styles .pb-sm-0,
  .bootstrap-styles .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-styles .pl-sm-0,
  .bootstrap-styles .px-sm-0 {
    padding-left: 0 !important;
  }
  .bootstrap-styles .p-sm-1 {
    padding: 0.25rem !important;
  }
  .bootstrap-styles .pt-sm-1,
  .bootstrap-styles .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .bootstrap-styles .pr-sm-1,
  .bootstrap-styles .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .bootstrap-styles .pb-sm-1,
  .bootstrap-styles .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .bootstrap-styles .pl-sm-1,
  .bootstrap-styles .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .bootstrap-styles .p-sm-2 {
    padding: 0.5rem !important;
  }
  .bootstrap-styles .pt-sm-2,
  .bootstrap-styles .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .bootstrap-styles .pr-sm-2,
  .bootstrap-styles .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .bootstrap-styles .pb-sm-2,
  .bootstrap-styles .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .bootstrap-styles .pl-sm-2,
  .bootstrap-styles .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .bootstrap-styles .p-sm-3 {
    padding: 1rem !important;
  }
  .bootstrap-styles .pt-sm-3,
  .bootstrap-styles .py-sm-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-styles .pr-sm-3,
  .bootstrap-styles .px-sm-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-styles .pb-sm-3,
  .bootstrap-styles .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-styles .pl-sm-3,
  .bootstrap-styles .px-sm-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-styles .p-sm-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-styles .pt-sm-4,
  .bootstrap-styles .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-styles .pr-sm-4,
  .bootstrap-styles .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-styles .pb-sm-4,
  .bootstrap-styles .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-styles .pl-sm-4,
  .bootstrap-styles .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-styles .p-sm-5 {
    padding: 3rem !important;
  }
  .bootstrap-styles .pt-sm-5,
  .bootstrap-styles .py-sm-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-styles .pr-sm-5,
  .bootstrap-styles .px-sm-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-styles .pb-sm-5,
  .bootstrap-styles .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-styles .pl-sm-5,
  .bootstrap-styles .px-sm-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-styles .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .bootstrap-styles .mt-sm-n1,
  .bootstrap-styles .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .bootstrap-styles .mr-sm-n1,
  .bootstrap-styles .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .bootstrap-styles .mb-sm-n1,
  .bootstrap-styles .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .bootstrap-styles .ml-sm-n1,
  .bootstrap-styles .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .bootstrap-styles .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .bootstrap-styles .mt-sm-n2,
  .bootstrap-styles .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .bootstrap-styles .mr-sm-n2,
  .bootstrap-styles .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .bootstrap-styles .mb-sm-n2,
  .bootstrap-styles .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .bootstrap-styles .ml-sm-n2,
  .bootstrap-styles .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .bootstrap-styles .m-sm-n3 {
    margin: -1rem !important;
  }
  .bootstrap-styles .mt-sm-n3,
  .bootstrap-styles .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-styles .mr-sm-n3,
  .bootstrap-styles .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-styles .mb-sm-n3,
  .bootstrap-styles .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-styles .ml-sm-n3,
  .bootstrap-styles .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-styles .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-styles .mt-sm-n4,
  .bootstrap-styles .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-styles .mr-sm-n4,
  .bootstrap-styles .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-styles .mb-sm-n4,
  .bootstrap-styles .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-styles .ml-sm-n4,
  .bootstrap-styles .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-styles .m-sm-n5 {
    margin: -3rem !important;
  }
  .bootstrap-styles .mt-sm-n5,
  .bootstrap-styles .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-styles .mr-sm-n5,
  .bootstrap-styles .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-styles .mb-sm-n5,
  .bootstrap-styles .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-styles .ml-sm-n5,
  .bootstrap-styles .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-styles .m-sm-auto {
    margin: auto !important;
  }
  .bootstrap-styles .mt-sm-auto,
  .bootstrap-styles .my-sm-auto {
    margin-top: auto !important;
  }
  .bootstrap-styles .mr-sm-auto,
  .bootstrap-styles .mx-sm-auto {
    margin-right: auto !important;
  }
  .bootstrap-styles .mb-sm-auto,
  .bootstrap-styles .my-sm-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-styles .ml-sm-auto,
  .bootstrap-styles .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .m-md-0 {
    margin: 0 !important;
  }
  .bootstrap-styles .mt-md-0,
  .bootstrap-styles .my-md-0 {
    margin-top: 0 !important;
  }
  .bootstrap-styles .mr-md-0,
  .bootstrap-styles .mx-md-0 {
    margin-right: 0 !important;
  }
  .bootstrap-styles .mb-md-0,
  .bootstrap-styles .my-md-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-styles .ml-md-0,
  .bootstrap-styles .mx-md-0 {
    margin-left: 0 !important;
  }
  .bootstrap-styles .m-md-1 {
    margin: 0.25rem !important;
  }
  .bootstrap-styles .mt-md-1,
  .bootstrap-styles .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .bootstrap-styles .mr-md-1,
  .bootstrap-styles .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .bootstrap-styles .mb-md-1,
  .bootstrap-styles .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .bootstrap-styles .ml-md-1,
  .bootstrap-styles .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .bootstrap-styles .m-md-2 {
    margin: 0.5rem !important;
  }
  .bootstrap-styles .mt-md-2,
  .bootstrap-styles .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .bootstrap-styles .mr-md-2,
  .bootstrap-styles .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .bootstrap-styles .mb-md-2,
  .bootstrap-styles .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .bootstrap-styles .ml-md-2,
  .bootstrap-styles .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .bootstrap-styles .m-md-3 {
    margin: 1rem !important;
  }
  .bootstrap-styles .mt-md-3,
  .bootstrap-styles .my-md-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-styles .mr-md-3,
  .bootstrap-styles .mx-md-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-styles .mb-md-3,
  .bootstrap-styles .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-styles .ml-md-3,
  .bootstrap-styles .mx-md-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-styles .m-md-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-styles .mt-md-4,
  .bootstrap-styles .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-styles .mr-md-4,
  .bootstrap-styles .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-styles .mb-md-4,
  .bootstrap-styles .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-styles .ml-md-4,
  .bootstrap-styles .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-styles .m-md-5 {
    margin: 3rem !important;
  }
  .bootstrap-styles .mt-md-5,
  .bootstrap-styles .my-md-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-styles .mr-md-5,
  .bootstrap-styles .mx-md-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-styles .mb-md-5,
  .bootstrap-styles .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-styles .ml-md-5,
  .bootstrap-styles .mx-md-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-styles .p-md-0 {
    padding: 0 !important;
  }
  .bootstrap-styles .pt-md-0,
  .bootstrap-styles .py-md-0 {
    padding-top: 0 !important;
  }
  .bootstrap-styles .pr-md-0,
  .bootstrap-styles .px-md-0 {
    padding-right: 0 !important;
  }
  .bootstrap-styles .pb-md-0,
  .bootstrap-styles .py-md-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-styles .pl-md-0,
  .bootstrap-styles .px-md-0 {
    padding-left: 0 !important;
  }
  .bootstrap-styles .p-md-1 {
    padding: 0.25rem !important;
  }
  .bootstrap-styles .pt-md-1,
  .bootstrap-styles .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .bootstrap-styles .pr-md-1,
  .bootstrap-styles .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .bootstrap-styles .pb-md-1,
  .bootstrap-styles .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .bootstrap-styles .pl-md-1,
  .bootstrap-styles .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .bootstrap-styles .p-md-2 {
    padding: 0.5rem !important;
  }
  .bootstrap-styles .pt-md-2,
  .bootstrap-styles .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .bootstrap-styles .pr-md-2,
  .bootstrap-styles .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .bootstrap-styles .pb-md-2,
  .bootstrap-styles .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .bootstrap-styles .pl-md-2,
  .bootstrap-styles .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .bootstrap-styles .p-md-3 {
    padding: 1rem !important;
  }
  .bootstrap-styles .pt-md-3,
  .bootstrap-styles .py-md-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-styles .pr-md-3,
  .bootstrap-styles .px-md-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-styles .pb-md-3,
  .bootstrap-styles .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-styles .pl-md-3,
  .bootstrap-styles .px-md-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-styles .p-md-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-styles .pt-md-4,
  .bootstrap-styles .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-styles .pr-md-4,
  .bootstrap-styles .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-styles .pb-md-4,
  .bootstrap-styles .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-styles .pl-md-4,
  .bootstrap-styles .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-styles .p-md-5 {
    padding: 3rem !important;
  }
  .bootstrap-styles .pt-md-5,
  .bootstrap-styles .py-md-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-styles .pr-md-5,
  .bootstrap-styles .px-md-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-styles .pb-md-5,
  .bootstrap-styles .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-styles .pl-md-5,
  .bootstrap-styles .px-md-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-styles .m-md-n1 {
    margin: -0.25rem !important;
  }
  .bootstrap-styles .mt-md-n1,
  .bootstrap-styles .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .bootstrap-styles .mr-md-n1,
  .bootstrap-styles .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .bootstrap-styles .mb-md-n1,
  .bootstrap-styles .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .bootstrap-styles .ml-md-n1,
  .bootstrap-styles .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .bootstrap-styles .m-md-n2 {
    margin: -0.5rem !important;
  }
  .bootstrap-styles .mt-md-n2,
  .bootstrap-styles .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .bootstrap-styles .mr-md-n2,
  .bootstrap-styles .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .bootstrap-styles .mb-md-n2,
  .bootstrap-styles .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .bootstrap-styles .ml-md-n2,
  .bootstrap-styles .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .bootstrap-styles .m-md-n3 {
    margin: -1rem !important;
  }
  .bootstrap-styles .mt-md-n3,
  .bootstrap-styles .my-md-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-styles .mr-md-n3,
  .bootstrap-styles .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-styles .mb-md-n3,
  .bootstrap-styles .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-styles .ml-md-n3,
  .bootstrap-styles .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-styles .m-md-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-styles .mt-md-n4,
  .bootstrap-styles .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-styles .mr-md-n4,
  .bootstrap-styles .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-styles .mb-md-n4,
  .bootstrap-styles .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-styles .ml-md-n4,
  .bootstrap-styles .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-styles .m-md-n5 {
    margin: -3rem !important;
  }
  .bootstrap-styles .mt-md-n5,
  .bootstrap-styles .my-md-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-styles .mr-md-n5,
  .bootstrap-styles .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-styles .mb-md-n5,
  .bootstrap-styles .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-styles .ml-md-n5,
  .bootstrap-styles .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-styles .m-md-auto {
    margin: auto !important;
  }
  .bootstrap-styles .mt-md-auto,
  .bootstrap-styles .my-md-auto {
    margin-top: auto !important;
  }
  .bootstrap-styles .mr-md-auto,
  .bootstrap-styles .mx-md-auto {
    margin-right: auto !important;
  }
  .bootstrap-styles .mb-md-auto,
  .bootstrap-styles .my-md-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-styles .ml-md-auto,
  .bootstrap-styles .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .m-lg-0 {
    margin: 0 !important;
  }
  .bootstrap-styles .mt-lg-0,
  .bootstrap-styles .my-lg-0 {
    margin-top: 0 !important;
  }
  .bootstrap-styles .mr-lg-0,
  .bootstrap-styles .mx-lg-0 {
    margin-right: 0 !important;
  }
  .bootstrap-styles .mb-lg-0,
  .bootstrap-styles .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-styles .ml-lg-0,
  .bootstrap-styles .mx-lg-0 {
    margin-left: 0 !important;
  }
  .bootstrap-styles .m-lg-1 {
    margin: 0.25rem !important;
  }
  .bootstrap-styles .mt-lg-1,
  .bootstrap-styles .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .bootstrap-styles .mr-lg-1,
  .bootstrap-styles .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .bootstrap-styles .mb-lg-1,
  .bootstrap-styles .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .bootstrap-styles .ml-lg-1,
  .bootstrap-styles .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .bootstrap-styles .m-lg-2 {
    margin: 0.5rem !important;
  }
  .bootstrap-styles .mt-lg-2,
  .bootstrap-styles .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .bootstrap-styles .mr-lg-2,
  .bootstrap-styles .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .bootstrap-styles .mb-lg-2,
  .bootstrap-styles .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .bootstrap-styles .ml-lg-2,
  .bootstrap-styles .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .bootstrap-styles .m-lg-3 {
    margin: 1rem !important;
  }
  .bootstrap-styles .mt-lg-3,
  .bootstrap-styles .my-lg-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-styles .mr-lg-3,
  .bootstrap-styles .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-styles .mb-lg-3,
  .bootstrap-styles .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-styles .ml-lg-3,
  .bootstrap-styles .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-styles .m-lg-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-styles .mt-lg-4,
  .bootstrap-styles .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-styles .mr-lg-4,
  .bootstrap-styles .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-styles .mb-lg-4,
  .bootstrap-styles .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-styles .ml-lg-4,
  .bootstrap-styles .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-styles .m-lg-5 {
    margin: 3rem !important;
  }
  .bootstrap-styles .mt-lg-5,
  .bootstrap-styles .my-lg-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-styles .mr-lg-5,
  .bootstrap-styles .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-styles .mb-lg-5,
  .bootstrap-styles .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-styles .ml-lg-5,
  .bootstrap-styles .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-styles .p-lg-0 {
    padding: 0 !important;
  }
  .bootstrap-styles .pt-lg-0,
  .bootstrap-styles .py-lg-0 {
    padding-top: 0 !important;
  }
  .bootstrap-styles .pr-lg-0,
  .bootstrap-styles .px-lg-0 {
    padding-right: 0 !important;
  }
  .bootstrap-styles .pb-lg-0,
  .bootstrap-styles .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-styles .pl-lg-0,
  .bootstrap-styles .px-lg-0 {
    padding-left: 0 !important;
  }
  .bootstrap-styles .p-lg-1 {
    padding: 0.25rem !important;
  }
  .bootstrap-styles .pt-lg-1,
  .bootstrap-styles .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .bootstrap-styles .pr-lg-1,
  .bootstrap-styles .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .bootstrap-styles .pb-lg-1,
  .bootstrap-styles .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .bootstrap-styles .pl-lg-1,
  .bootstrap-styles .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .bootstrap-styles .p-lg-2 {
    padding: 0.5rem !important;
  }
  .bootstrap-styles .pt-lg-2,
  .bootstrap-styles .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .bootstrap-styles .pr-lg-2,
  .bootstrap-styles .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .bootstrap-styles .pb-lg-2,
  .bootstrap-styles .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .bootstrap-styles .pl-lg-2,
  .bootstrap-styles .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .bootstrap-styles .p-lg-3 {
    padding: 1rem !important;
  }
  .bootstrap-styles .pt-lg-3,
  .bootstrap-styles .py-lg-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-styles .pr-lg-3,
  .bootstrap-styles .px-lg-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-styles .pb-lg-3,
  .bootstrap-styles .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-styles .pl-lg-3,
  .bootstrap-styles .px-lg-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-styles .p-lg-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-styles .pt-lg-4,
  .bootstrap-styles .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-styles .pr-lg-4,
  .bootstrap-styles .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-styles .pb-lg-4,
  .bootstrap-styles .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-styles .pl-lg-4,
  .bootstrap-styles .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-styles .p-lg-5 {
    padding: 3rem !important;
  }
  .bootstrap-styles .pt-lg-5,
  .bootstrap-styles .py-lg-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-styles .pr-lg-5,
  .bootstrap-styles .px-lg-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-styles .pb-lg-5,
  .bootstrap-styles .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-styles .pl-lg-5,
  .bootstrap-styles .px-lg-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-styles .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .bootstrap-styles .mt-lg-n1,
  .bootstrap-styles .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .bootstrap-styles .mr-lg-n1,
  .bootstrap-styles .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .bootstrap-styles .mb-lg-n1,
  .bootstrap-styles .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .bootstrap-styles .ml-lg-n1,
  .bootstrap-styles .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .bootstrap-styles .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .bootstrap-styles .mt-lg-n2,
  .bootstrap-styles .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .bootstrap-styles .mr-lg-n2,
  .bootstrap-styles .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .bootstrap-styles .mb-lg-n2,
  .bootstrap-styles .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .bootstrap-styles .ml-lg-n2,
  .bootstrap-styles .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .bootstrap-styles .m-lg-n3 {
    margin: -1rem !important;
  }
  .bootstrap-styles .mt-lg-n3,
  .bootstrap-styles .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-styles .mr-lg-n3,
  .bootstrap-styles .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-styles .mb-lg-n3,
  .bootstrap-styles .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-styles .ml-lg-n3,
  .bootstrap-styles .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-styles .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-styles .mt-lg-n4,
  .bootstrap-styles .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-styles .mr-lg-n4,
  .bootstrap-styles .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-styles .mb-lg-n4,
  .bootstrap-styles .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-styles .ml-lg-n4,
  .bootstrap-styles .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-styles .m-lg-n5 {
    margin: -3rem !important;
  }
  .bootstrap-styles .mt-lg-n5,
  .bootstrap-styles .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-styles .mr-lg-n5,
  .bootstrap-styles .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-styles .mb-lg-n5,
  .bootstrap-styles .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-styles .ml-lg-n5,
  .bootstrap-styles .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-styles .m-lg-auto {
    margin: auto !important;
  }
  .bootstrap-styles .mt-lg-auto,
  .bootstrap-styles .my-lg-auto {
    margin-top: auto !important;
  }
  .bootstrap-styles .mr-lg-auto,
  .bootstrap-styles .mx-lg-auto {
    margin-right: auto !important;
  }
  .bootstrap-styles .mb-lg-auto,
  .bootstrap-styles .my-lg-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-styles .ml-lg-auto,
  .bootstrap-styles .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .m-xl-0 {
    margin: 0 !important;
  }
  .bootstrap-styles .mt-xl-0,
  .bootstrap-styles .my-xl-0 {
    margin-top: 0 !important;
  }
  .bootstrap-styles .mr-xl-0,
  .bootstrap-styles .mx-xl-0 {
    margin-right: 0 !important;
  }
  .bootstrap-styles .mb-xl-0,
  .bootstrap-styles .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-styles .ml-xl-0,
  .bootstrap-styles .mx-xl-0 {
    margin-left: 0 !important;
  }
  .bootstrap-styles .m-xl-1 {
    margin: 0.25rem !important;
  }
  .bootstrap-styles .mt-xl-1,
  .bootstrap-styles .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .bootstrap-styles .mr-xl-1,
  .bootstrap-styles .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .bootstrap-styles .mb-xl-1,
  .bootstrap-styles .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .bootstrap-styles .ml-xl-1,
  .bootstrap-styles .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .bootstrap-styles .m-xl-2 {
    margin: 0.5rem !important;
  }
  .bootstrap-styles .mt-xl-2,
  .bootstrap-styles .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .bootstrap-styles .mr-xl-2,
  .bootstrap-styles .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .bootstrap-styles .mb-xl-2,
  .bootstrap-styles .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .bootstrap-styles .ml-xl-2,
  .bootstrap-styles .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .bootstrap-styles .m-xl-3 {
    margin: 1rem !important;
  }
  .bootstrap-styles .mt-xl-3,
  .bootstrap-styles .my-xl-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-styles .mr-xl-3,
  .bootstrap-styles .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-styles .mb-xl-3,
  .bootstrap-styles .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-styles .ml-xl-3,
  .bootstrap-styles .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-styles .m-xl-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-styles .mt-xl-4,
  .bootstrap-styles .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-styles .mr-xl-4,
  .bootstrap-styles .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-styles .mb-xl-4,
  .bootstrap-styles .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-styles .ml-xl-4,
  .bootstrap-styles .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-styles .m-xl-5 {
    margin: 3rem !important;
  }
  .bootstrap-styles .mt-xl-5,
  .bootstrap-styles .my-xl-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-styles .mr-xl-5,
  .bootstrap-styles .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-styles .mb-xl-5,
  .bootstrap-styles .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-styles .ml-xl-5,
  .bootstrap-styles .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-styles .p-xl-0 {
    padding: 0 !important;
  }
  .bootstrap-styles .pt-xl-0,
  .bootstrap-styles .py-xl-0 {
    padding-top: 0 !important;
  }
  .bootstrap-styles .pr-xl-0,
  .bootstrap-styles .px-xl-0 {
    padding-right: 0 !important;
  }
  .bootstrap-styles .pb-xl-0,
  .bootstrap-styles .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-styles .pl-xl-0,
  .bootstrap-styles .px-xl-0 {
    padding-left: 0 !important;
  }
  .bootstrap-styles .p-xl-1 {
    padding: 0.25rem !important;
  }
  .bootstrap-styles .pt-xl-1,
  .bootstrap-styles .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .bootstrap-styles .pr-xl-1,
  .bootstrap-styles .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .bootstrap-styles .pb-xl-1,
  .bootstrap-styles .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .bootstrap-styles .pl-xl-1,
  .bootstrap-styles .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .bootstrap-styles .p-xl-2 {
    padding: 0.5rem !important;
  }
  .bootstrap-styles .pt-xl-2,
  .bootstrap-styles .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .bootstrap-styles .pr-xl-2,
  .bootstrap-styles .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .bootstrap-styles .pb-xl-2,
  .bootstrap-styles .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .bootstrap-styles .pl-xl-2,
  .bootstrap-styles .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .bootstrap-styles .p-xl-3 {
    padding: 1rem !important;
  }
  .bootstrap-styles .pt-xl-3,
  .bootstrap-styles .py-xl-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-styles .pr-xl-3,
  .bootstrap-styles .px-xl-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-styles .pb-xl-3,
  .bootstrap-styles .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-styles .pl-xl-3,
  .bootstrap-styles .px-xl-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-styles .p-xl-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-styles .pt-xl-4,
  .bootstrap-styles .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-styles .pr-xl-4,
  .bootstrap-styles .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-styles .pb-xl-4,
  .bootstrap-styles .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-styles .pl-xl-4,
  .bootstrap-styles .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-styles .p-xl-5 {
    padding: 3rem !important;
  }
  .bootstrap-styles .pt-xl-5,
  .bootstrap-styles .py-xl-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-styles .pr-xl-5,
  .bootstrap-styles .px-xl-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-styles .pb-xl-5,
  .bootstrap-styles .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-styles .pl-xl-5,
  .bootstrap-styles .px-xl-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-styles .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .bootstrap-styles .mt-xl-n1,
  .bootstrap-styles .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .bootstrap-styles .mr-xl-n1,
  .bootstrap-styles .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .bootstrap-styles .mb-xl-n1,
  .bootstrap-styles .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .bootstrap-styles .ml-xl-n1,
  .bootstrap-styles .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .bootstrap-styles .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .bootstrap-styles .mt-xl-n2,
  .bootstrap-styles .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .bootstrap-styles .mr-xl-n2,
  .bootstrap-styles .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .bootstrap-styles .mb-xl-n2,
  .bootstrap-styles .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .bootstrap-styles .ml-xl-n2,
  .bootstrap-styles .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .bootstrap-styles .m-xl-n3 {
    margin: -1rem !important;
  }
  .bootstrap-styles .mt-xl-n3,
  .bootstrap-styles .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-styles .mr-xl-n3,
  .bootstrap-styles .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-styles .mb-xl-n3,
  .bootstrap-styles .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-styles .ml-xl-n3,
  .bootstrap-styles .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-styles .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-styles .mt-xl-n4,
  .bootstrap-styles .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-styles .mr-xl-n4,
  .bootstrap-styles .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-styles .mb-xl-n4,
  .bootstrap-styles .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-styles .ml-xl-n4,
  .bootstrap-styles .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-styles .m-xl-n5 {
    margin: -3rem !important;
  }
  .bootstrap-styles .mt-xl-n5,
  .bootstrap-styles .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-styles .mr-xl-n5,
  .bootstrap-styles .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-styles .mb-xl-n5,
  .bootstrap-styles .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-styles .ml-xl-n5,
  .bootstrap-styles .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-styles .m-xl-auto {
    margin: auto !important;
  }
  .bootstrap-styles .mt-xl-auto,
  .bootstrap-styles .my-xl-auto {
    margin-top: auto !important;
  }
  .bootstrap-styles .mr-xl-auto,
  .bootstrap-styles .mx-xl-auto {
    margin-right: auto !important;
  }
  .bootstrap-styles .mb-xl-auto,
  .bootstrap-styles .my-xl-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-styles .ml-xl-auto,
  .bootstrap-styles .mx-xl-auto {
    margin-left: auto !important;
  }
}
.bootstrap-styles .text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}
.bootstrap-styles .text-justify {
  text-align: justify !important;
}
.bootstrap-styles .text-wrap {
  white-space: normal !important;
}
.bootstrap-styles .text-nowrap {
  white-space: nowrap !important;
}
.bootstrap-styles .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bootstrap-styles .text-left {
  text-align: left !important;
}
.bootstrap-styles .text-right {
  text-align: right !important;
}
.bootstrap-styles .text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .bootstrap-styles .text-sm-left {
    text-align: left !important;
  }
  .bootstrap-styles .text-sm-right {
    text-align: right !important;
  }
  .bootstrap-styles .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .bootstrap-styles .text-md-left {
    text-align: left !important;
  }
  .bootstrap-styles .text-md-right {
    text-align: right !important;
  }
  .bootstrap-styles .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .bootstrap-styles .text-lg-left {
    text-align: left !important;
  }
  .bootstrap-styles .text-lg-right {
    text-align: right !important;
  }
  .bootstrap-styles .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .bootstrap-styles .text-xl-left {
    text-align: left !important;
  }
  .bootstrap-styles .text-xl-right {
    text-align: right !important;
  }
  .bootstrap-styles .text-xl-center {
    text-align: center !important;
  }
}
.bootstrap-styles .text-lowercase {
  text-transform: lowercase !important;
}
.bootstrap-styles .text-uppercase {
  text-transform: uppercase !important;
}
.bootstrap-styles .text-capitalize {
  text-transform: capitalize !important;
}
.bootstrap-styles .font-weight-light {
  font-weight: 300 !important;
}
.bootstrap-styles .font-weight-lighter {
  font-weight: lighter !important;
}
.bootstrap-styles .font-weight-normal {
  font-weight: 400 !important;
}
.bootstrap-styles .font-weight-bold {
  font-weight: 700 !important;
}
.bootstrap-styles .font-weight-bolder {
  font-weight: bolder !important;
}
.bootstrap-styles .font-italic {
  font-style: italic !important;
}
.bootstrap-styles .text-white {
  color: #fff !important;
}
.bootstrap-styles .text-primary {
  color: #274186 !important;
}
.bootstrap-styles a.text-primary:hover, .bootstrap-styles a.text-primary:focus {
  color: #16244b !important;
}
.bootstrap-styles .text-secondary {
  color: #00A0E3 !important;
}
.bootstrap-styles a.text-secondary:hover, .bootstrap-styles a.text-secondary:focus {
  color: #006a97 !important;
}
.bootstrap-styles .text-success {
  color: #28a745 !important;
}
.bootstrap-styles a.text-success:hover, .bootstrap-styles a.text-success:focus {
  color: #19692c !important;
}
.bootstrap-styles .text-info {
  color: #17a2b8 !important;
}
.bootstrap-styles a.text-info:hover, .bootstrap-styles a.text-info:focus {
  color: #0f6674 !important;
}
.bootstrap-styles .text-warning {
  color: #FCF302 !important;
}
.bootstrap-styles a.text-warning:hover, .bootstrap-styles a.text-warning:focus {
  color: #b0aa01 !important;
}
.bootstrap-styles .text-danger {
  color: #dc3545 !important;
}
.bootstrap-styles a.text-danger:hover, .bootstrap-styles a.text-danger:focus {
  color: #a71d2a !important;
}
.bootstrap-styles .text-light {
  color: #f8f9fa !important;
}
.bootstrap-styles a.text-light:hover, .bootstrap-styles a.text-light:focus {
  color: #cbd3da !important;
}
.bootstrap-styles .text-dark {
  color: #343a40 !important;
}
.bootstrap-styles a.text-dark:hover, .bootstrap-styles a.text-dark:focus {
  color: #121416 !important;
}
.bootstrap-styles .text-body {
  color: #212529 !important;
}
.bootstrap-styles .text-muted {
  color: #6c757d !important;
}
.bootstrap-styles .text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.bootstrap-styles .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.bootstrap-styles .text-decoration-none {
  text-decoration: none !important;
}
.bootstrap-styles .text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}
.bootstrap-styles .text-reset {
  color: inherit !important;
}
.bootstrap-styles .visible {
  visibility: visible !important;
}
.bootstrap-styles .invisible {
  visibility: hidden !important;
}
@media print {
  .bootstrap-styles *,
  .bootstrap-styles *::before,
  .bootstrap-styles *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .bootstrap-styles a:not(.btn) {
    text-decoration: underline;
  }
  .bootstrap-styles abbr[title]::after {
    content: " (" attr(title) ")";
  }
  .bootstrap-styles pre {
    white-space: pre-wrap !important;
  }
  .bootstrap-styles pre,
  .bootstrap-styles blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  .bootstrap-styles thead {
    display: table-header-group;
  }
  .bootstrap-styles tr,
  .bootstrap-styles img {
    page-break-inside: avoid;
  }
  .bootstrap-styles p,
  .bootstrap-styles h2,
  .bootstrap-styles h3 {
    orphans: 3;
    widows: 3;
  }
  .bootstrap-styles h2,
  .bootstrap-styles h3 {
    page-break-after: avoid;
  }
  @page {
    .bootstrap-styles {
      size: a3;
    }
  }
  .bootstrap-styles body {
    min-width: 992px !important;
  }
  .bootstrap-styles .container {
    min-width: 992px !important;
  }
  .bootstrap-styles .navbar {
    display: none;
  }
  .bootstrap-styles .badge {
    border: 1px solid #000;
  }
  .bootstrap-styles .table {
    border-collapse: collapse !important;
  }
  .bootstrap-styles .table td,
  .bootstrap-styles .table th {
    background-color: #fff !important;
  }
  .bootstrap-styles .table-bordered th,
  .bootstrap-styles .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .bootstrap-styles .table-dark {
    color: inherit;
  }
  .bootstrap-styles .table-dark th,
  .bootstrap-styles .table-dark td,
  .bootstrap-styles .table-dark thead th,
  .bootstrap-styles .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .bootstrap-styles .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*--------------------------------------------------------------
FLUID FONT SIZES
--------------------------------------------------------------*/
[class*=col-], .row-full, .row-custom, .row, .container {
  *zoom: 1;
}
[class*=col-]:before, .row-full:before, .row-custom:before, .row:before, .container:before, [class*=col-]:after, .row-full:after, .row-custom:after, .row:after, .container:after {
  content: " ";
  display: table;
}
[class*=col-]:after, .row-full:after, .row-custom:after, .row:after, .container:after {
  clear: both;
}

/*--------------------------------------------------------------
FLUID FONT SIZES
--------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

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

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin-left: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

hr {
  display: block;
  height: 0;
  border: 0;
}

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

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

input, select {
  vertical-align: middle;
}

/* clearfix */
/* For modern browsers */
.clearfix:before,
.clearfix:after,
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.clearfix:after,
.cf:after {
  clear: both;
}

.clear {
  clear: both;
}

/*==== DEFAULT STYLES ====*/
html,
body {
  height: 100%;
}

html {
  background: #fff;
}

ol,
ul {
  margin-left: 20px;
}

hr {
  border-bottom: 1px solid #f00;
}

/* When using font-face, remove style below and use bold font instead */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

p {
  margin-bottom: 12px;
}

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

td {
  vertical-align: top;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
  max-width: 100%; /* Gives the image a property to stay in the container */
  height: auto; /* Gives the image the right height on a scale */
}

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

/* Forms */
input,
textarea {
  border: 1px solid #f00;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

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

button,
input {
  line-height: normal;
}

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

label {
  cursor: pointer;
}

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

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

b,
strong {
  font-weight: bold;
}

input[type=text],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

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

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

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

.hide {
  display: none;
}

/*==== BROWSER SPECIFIC STYLES ====*/
/* IE7 */
html.ie6 .clearfix,
html.ie7 .clearfix,
html.ie6 .cf,
html.ie7 .cf {
  zoom: 1;
}

html.ie7 input[type=checkbox],
html.ie7 input[type=radio] {
  width: 13px;
  height: 13px;
}

html.ie7 button,
html.ie7 input[type=button],
html.ie7 input[type=reset],
html.ie7 input[type=submit] {
  overflow: visible;
}

html.ie7 button,
html.ie7 input,
html.ie7 select,
html.ie7 textarea {
  vertical-align: middle;
}

html.ie7 legend {
  margin-left: -7px;
}

html,
body {
  height: 100%;
}

html {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body {
  height: 100%;
  color: #222;
  font-family: "Muli", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #28367b;
  text-decoration: none;
}
a:hover {
  color: #009FE3;
  text-decoration: none;
}

ol,
ul {
  margin: 0 0 0 30px;
}

p {
  margin: 0 0 12px 0;
}

hr {
  border-bottom: 1px solid #828282;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  color: #28367b;
  font-weight: normal;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 22px;
  }
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #28367b;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 18px;
  }
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  color: #009FE3;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 18px;
  }
}

table.withForm tr td {
  padding-bottom: 5px;
  vertical-align: top;
}
table.withForm tr td.withLabel {
  padding-top: 6px;
  padding-right: 10px;
}

.alignCheckbox {
  position: relative;
  top: 2px;
}

.alignRadio {
  position: relative;
  top: 1px;
}

.pagination {
  float: left;
}
.pagination span, .pagination a {
  background: none repeat scroll 0 0 #CCC;
  color: #FFF;
  margin-right: 5px;
  padding: 2px 5px;
  display: inline-block;
  text-decoration: none;
}
.pagination.currPage {
  background: #97bf0d;
}

.perPage {
  float: left;
}

#wysiwyg h1, #wysiwyg h2, #wysiwyg h3, #wysiwyg h4, #wysiwyg h5 {
  font-weight: 500 !important;
  line-height: 30px;
}
#wysiwyg h1 {
  font-size: 2.5rem;
  line-height: 100%;
}
#wysiwyg h2 {
  font-size: 1.625rem;
}
#wysiwyg h3 {
  font-size: 1.25rem;
}
#wysiwyg h4 {
  font-size: 1.125rem;
}
#wysiwyg h5 {
  font-size: 1rem;
}
#wysiwyg p {
  font-size: 1.063rem;
}

.btn-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  color: #28367b;
  padding: 10px 45px 10px 0;
  font-size: 17px;
  font-weight: bold;
  margin: 10px 0 10px 0;
}
.btn-simple:hover {
  color: #009FE3;
}
.btn-simple.chev-right:before {
  color: #28367b;
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' class='bi bi-chevron-right' fill='28367B' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.btn-fancy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: #009FE3;
  color: white;
  border: 1px solid #C1C1C1;
  padding: 10px 45px 10px 25px;
  font-size: 15px;
  margin: 10px 0 10px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.btn-fancy:hover {
  color: white;
  box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.1607843137);
}

.chev-right {
  position: relative;
}

.chev-right:hover:before {
  right: 10px;
}

.chev-right:before {
  position: absolute;
  content: "";
  right: 15px;
  top: 9px;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='1em' height='1em' viewBox='0 0 16 16' class='bi bi-chevron-right' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  color: #FFF;
}

.seperator {
  height: 5px;
  background-color: #FCF302;
  width: 70px;
  margin: 20px 0 20px 0;
}
.website-10 .seperator {
  background-color: #C0D93F;
}
.website-13 .seperator {
  background-color: #FFBF00;
}

.d-flex {
  display: flex;
}

.m-0 {
  margin: 0 !important;
}

.py-mx-3 {
  padding: 15px 0 15px 0;
  margin: 0px 15px 0px 15px;
}

.content-column {
  margin-top: 25px;
  margin-bottom: 25px;
}
.content-column .content .seperator {
  height: 5px;
  background-color: #FFBF00;
  width: 70px;
  margin: 15px 0 15px 0;
}
.content-column .content p, .content-column .content ul li {
  color: #444444;
  font-size: 17px;
  line-height: 24px;
}
.content-column .content h2 {
  font-size: 26px;
  color: #009FE3;
}
.content-column .content h3 {
  font-size: 20px;
  color: #009FE3;
}
.content-column .content .subtitle {
  font-weight: bold;
  font-size: 17px;
}
.content-column .content .undertitle {
  font-weight: 600;
  font-size: 17px;
  font-style: italic;
}

.calender-overview {
  margin-top: 25px;
  margin-bottom: 25px;
}
.calender-overview h3 {
  font-size: 16px;
  line-height: 28px;
}
@media only screen and (min-width: 992px) {
  .calender-overview h3 {
    font-size: 20px;
  }
}
.calender-overview .calendar-item {
  position: relative;
  background-color: white;
  border-left: 5px solid #FFBF00;
  border-top: 1px solid #C1C1C1;
  border-right: 1px solid #C1C1C1;
  border-bottom: 1px solid #C1C1C1;
  min-height: 80px;
  height: auto;
  padding: 14px 25px 14px 25px;
  margin-bottom: 12px;
}
.calender-overview .calendar-item:hover {
  cursor: pointer;
}
.calender-overview .calendar-item:hover .arrow-right-vc {
  background-position-x: 5px;
  transition: all 0.3s ease;
}
.calender-overview .calendar-item .d-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .calender-overview .calendar-item .d-flex {
    flex-direction: row;
    align-items: center;
  }
}
.calender-overview .calendar-item .arrow-right-vc {
  position: absolute;
  right: 5px;
  top: 50%;
  background-image: url(./images/arrow-right-white-vc.svg);
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .calender-overview .calendar-item .arrow-right-vc {
    position: relative;
  }
}
.calender-overview .content-left {
  color: #828282;
  font-weight: bold;
  font-size: 17px;
}
.calender-overview .content-right p {
  line-height: 24px;
}
.calender-overview .content-right p.title {
  color: #1B2555;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}
.calender-overview .content-right p.content {
  color: #444444;
  margin: 0;
  font-size: 17px;
}

.board-evaluation {
  margin-bottom: 25px;
}
.board-evaluation h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}
@media only screen and (min-width: 992px) {
  .board-evaluation h3 {
    font-size: 20px;
  }
}
.board-evaluation .step {
  background-color: white;
  border-left: 5px solid #FFBF00;
  border-top: 1px solid #C1C1C1;
  border-right: 1px solid #C1C1C1;
  border-bottom: 1px solid #C1C1C1;
  padding: 20px;
  margin-bottom: 20px;
}
.board-evaluation .content-left {
  color: #009FE3;
  font-weight: bold;
  font-size: 17px;
}
.board-evaluation .content-right p.title {
  color: #1B2555;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: bold;
}
.board-evaluation .content-right p.content {
  color: #444444;
  margin: 0;
  line-height: 24px;
  font-size: 17px;
}

.quote-image {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5%;
}
.quote-image .content {
  color: white;
  font-size: 26px;
  line-height: 34px;
  font-style: italic;
  text-align: left;
  margin: 0;
}
.quote-image.big {
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  padding: 0;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 768px) {
  .quote-image.big {
    min-height: 490px;
    background-size: cover;
  }
}
.quote-image.big .quote-wrap {
  background-color: #1758A2;
  padding: 5%;
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .quote-image.big .quote-wrap {
    width: 85%;
  }
}
.quote-image.big .quote-wrap p.content {
  line-height: 34px;
  font-size: 26px;
}

.text-image, .contact-image {
  margin-top: 50px;
  margin-bottom: 50px;
}
.text-image .content-left, .contact-image .content-left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.text-image .content-left .seperator, .contact-image .content-left .seperator {
  height: 5px;
  background-color: #FFBF00;
  width: 70px;
  margin: 15px 0 15px 0;
}
.text-image .content-left p, .contact-image .content-left p {
  font-size: 1.125em;
  line-height: 24px;
  color: #444444;
}
.text-image .content-left h2, .contact-image .content-left h2 {
  font-size: 1.625em;
  font-weight: 500;
  color: #009FE3;
  line-height: 34px;
}
.text-image .content-left h3, .contact-image .content-left h3 {
  font-size: 1.25em;
  font-weight: 500;
  color: #009FE3;
}
.text-image .content-left .subtitle, .contact-image .content-left .subtitle {
  font-weight: 600;
  font-size: 18px;
}
.text-image .content-right .img-wrap, .contact-image .content-right .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-image .content-right .img-fluid, .contact-image .content-right .img-fluid {
  max-width: 100%;
  height: auto;
}
.text-image .flip-column, .contact-image .flip-column {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .text-image .flip-column, .contact-image .flip-column {
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width: 768px) {
  .contact-image .inner-columns .flex-direction-reverse {
    flex-direction: column-reverse;
  }
}
.contact-image .inner-columns.bg-active {
  background-color: white;
  border: 1px solid #C1C1C1;
}

.header-slider {
  height: auto !important;
}
.header-slider .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .header-slider .img-wrap img {
    padding-bottom: 20px;
  }
}
.header-slider .content .btn {
  padding: 5px 10px !important;
  background-color: #009FE3;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 1.25rem;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background-image: none;
}
.header-slider .content .btn:hover {
  background-color: #28367b;
}
.header-slider .visual .content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  margin: 1rem 0;
  padding: 4rem 0;
}
.header-slider .visual .content h1, .header-slider .visual .content h2, .header-slider .visual .content h3 {
  color: white;
  text-transform: unset !important;
}
.header-slider .visual .content h1 {
  font-size: 2.5rem;
}
.header-slider .visual .content p {
  color: white;
  font-size: 1.5rem;
}
.header-slider .visual .content .d-flex {
  display: flex;
}
.header-slider .visual .flip-column {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .header-slider .visual .flip-column {
    flex-direction: row-reverse;
  }
}

*, *:after, *:before {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#template-container {
  min-height: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 97.6%;
  max-width: 1050px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.row {
  width: 102.4%;
  margin-left: -1.2%;
  margin-right: -1.2%;
  margin-top: 0;
  margin-bottom: 0;
}
.row-custom {
  width: 101%;
  margin-left: -0.5%;
  margin-right: -0.5%;
}
.row-full {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}

[class*=col-] {
  float: left;
  width: 100%;
}

.col-10 {
  width: 7.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-10-full {
  width: 10%;
  margin: 0 0 2.4% 0;
}

.col-12 {
  width: 10.1%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-12-full {
  width: 12.5%;
  margin: 0 0 2.4% 0;
}

.col-15 {
  width: 12.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-15-full {
  width: 15%;
  margin: 0 0 2.4% 0;
}

.col-16 {
  width: 14.26666667%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-16-full {
  width: 16.66666667%;
  margin: 0 0 2.4% 0;
}

.col-20 {
  width: 17.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-20-full {
  width: 20%;
  margin: 0 0 2.4% 0;
}

.col-25 {
  width: 22.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-25-full {
  width: 25%;
  margin: 0 0 2.4% 0;
}

.col-30 {
  width: 27.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-30-full {
  width: 30%;
  margin: 0 0 2.4% 0;
}

.col-33 {
  width: 30.933333%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-33-full {
  width: 33.333333%;
  margin: 0 0 2.4% 0;
}

.col-40 {
  width: 37.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-40-full {
  width: 40%;
  margin: 0 0 2.4% 0;
}

.col-50 {
  width: 47.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-50-full {
  width: 50%;
  margin: 0 0 2.4% 0;
}

.col-60 {
  width: 57.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-60-full {
  width: 60%;
  margin: 0 0 2.4% 0;
}

.col-65 {
  width: 62.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-65-full {
  width: 65%;
  margin: 0 0 2.4% 0;
}

.col-66 {
  width: 64.266667%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-66-full {
  width: 66.666667%;
  margin: 0 0 2.4% 0;
}

.col-70 {
  width: 67.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-70-full {
  width: 70%;
  margin: 0 0 2.4% 0;
}

.col-75 {
  width: 72.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-75-full {
  width: 75%;
  margin: 0 0 2.4% 0;
}

.col-80 {
  width: 77.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-80-full {
  width: 80%;
  margin: 0 0 2.4% 0;
}

.col-85 {
  width: 82.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-85-full {
  width: 85%;
  margin: 0 0 2.4% 0;
}

.col-90 {
  width: 87.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-90-full {
  width: 90%;
  margin: 0 0 2.4% 0;
}

.col-100 {
  width: 97.6%;
  padding: 0 1.2% 2.4% 1.2%;
}
.col-100-full {
  width: 100%;
  margin: 0 0 2.4% 0;
}

.col-custom-40 {
  width: 39%;
  margin: 0 0.5% 1% 0.5%;
}

.col-custom-50 {
  width: 49%;
  margin: 0 0.5% 1% 0.5%;
}

.col-custom-60 {
  width: 59%;
  margin: 0 0.5% 1% 0.5%;
}

.col-custom-100 {
  width: 99%;
  margin: 0 0.5% 1% 0.5%;
}

@media screen and (min-width: 1440px) {
  .xl-hide {
    display: none;
    visibility: hidden;
  }
  .xl-show {
    display: block;
    visibility: visible;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .l-hide {
    display: none;
    visibility: hidden;
  }
  .l-show {
    display: block;
    visibility: visible;
  }
  .l-col-10 {
    width: 7.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-10-full {
    width: 10%;
    margin: 0 0 2.4% 0;
  }
  .l-col-12 {
    width: 10.1%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-12-full {
    width: 12.5%;
    margin: 0 0 2.4% 0;
  }
  .l-col-15 {
    width: 12.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-15-full {
    width: 15%;
    margin: 0 0 2.4% 0;
  }
  .l-col-16 {
    width: 14.26666667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-16-full {
    width: 16.66666667%;
    margin: 0 0 2.4% 0;
  }
  .l-col-20 {
    width: 17.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-20-full {
    width: 20%;
    margin: 0 0 2.4% 0;
  }
  .l-col-25 {
    width: 22.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-25-full {
    width: 25%;
    margin: 0 0 2.4% 0;
  }
  .l-col-30 {
    width: 27.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-30-full {
    width: 30%;
    margin: 0 0 2.4% 0;
  }
  .l-col-33 {
    width: 30.933333%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-33-full {
    width: 33.333333%;
    margin: 0 0 2.4% 0;
  }
  .l-col-40 {
    width: 37.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-40-full {
    width: 40%;
    margin: 0 0 2.4% 0;
  }
  .l-col-50 {
    width: 47.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-50-full {
    width: 50%;
    margin: 0 0 2.4% 0;
  }
  .l-col-60 {
    width: 57.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-60-full {
    width: 60%;
    margin: 0 0 2.4% 0;
  }
  .l-col-65 {
    width: 62.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-65-full {
    width: 65%;
    margin: 0 0 2.4% 0;
  }
  .l-col-66 {
    width: 64.266667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-66-full {
    width: 66.666667%;
    margin: 0 0 2.4% 0;
  }
  .l-col-70 {
    width: 67.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-70-full {
    width: 70%;
    margin: 0 0 2.4% 0;
  }
  .l-col-75 {
    width: 72.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-75-full {
    width: 75%;
    margin: 0 0 2.4% 0;
  }
  .l-col-80 {
    width: 77.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-80-full {
    width: 80%;
    margin: 0 0 2.4% 0;
  }
  .l-col-85 {
    width: 82.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-85-full {
    width: 85%;
    margin: 0 0 2.4% 0;
  }
  .l-col-90 {
    width: 87.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-90-full {
    width: 90%;
    margin: 0 0 2.4% 0;
  }
  .l-col-100 {
    width: 97.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .l-col-100-full {
    width: 100%;
    margin: 0 0 2.4% 0;
  }
  .l-col-custom-40 {
    width: 39%;
    margin: 0 0.5% 1% 0.5%;
  }
  .l-col-custom-50 {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .l-col-custom-60 {
    width: 59%;
    margin: 0 0.5% 1% 0.5%;
  }
  .l-col-custom-100 {
    width: 99%;
    margin: 0 0.5% 1% 0.5%;
  }
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .m-hide {
    display: none;
    visibility: hidden;
  }
  .m-show {
    display: block;
    visibility: visible;
  }
  .m-col-10 {
    width: 7.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-10-full {
    width: 10%;
    margin: 0 0 2.4% 0;
  }
  .m-col-12 {
    width: 10.1%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-12-full {
    width: 12.5%;
    margin: 0 0 2.4% 0;
  }
  .m-col-15 {
    width: 12.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-15-full {
    width: 15%;
    margin: 0 0 2.4% 0;
  }
  .m-col-16 {
    width: 14.26666667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-16-full {
    width: 16.66666667%;
    margin: 0 0 2.4% 0;
  }
  .m-col-20 {
    width: 17.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-20-full {
    width: 20%;
    margin: 0 0 2.4% 0;
  }
  .m-col-25 {
    width: 22.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-25-full {
    width: 25%;
    margin: 0 0 2.4% 0;
  }
  .m-col-30 {
    width: 27.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-30-full {
    width: 30%;
    margin: 0 0 2.4% 0;
  }
  .m-col-33 {
    width: 30.933333%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-33-full {
    width: 33.333333%;
    margin: 0 0 2.4% 0;
  }
  .m-col-40 {
    width: 37.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-40-full {
    width: 40%;
    margin: 0 0 2.4% 0;
  }
  .m-col-50 {
    width: 47.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-50-full {
    width: 50%;
    margin: 0 0 2.4% 0;
  }
  .m-col-60 {
    width: 57.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-60-full {
    width: 60%;
    margin: 0 0 2.4% 0;
  }
  .m-col-65 {
    width: 62.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-65-full {
    width: 65%;
    margin: 0 0 2.4% 0;
  }
  .m-col-66 {
    width: 64.266667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-66-full {
    width: 66.666667%;
    margin: 0 0 2.4% 0;
  }
  .m-col-70 {
    width: 67.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-70-full {
    width: 70%;
    margin: 0 0 2.4% 0;
  }
  .m-col-75 {
    width: 72.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-75-full {
    width: 75%;
    margin: 0 0 2.4% 0;
  }
  .m-col-80 {
    width: 77.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-80-full {
    width: 80%;
    margin: 0 0 2.4% 0;
  }
  .m-col-85 {
    width: 82.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-85-full {
    width: 85%;
    margin: 0 0 2.4% 0;
  }
  .m-col-90 {
    width: 87.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-90-full {
    width: 90%;
    margin: 0 0 2.4% 0;
  }
  .m-col-100 {
    width: 97.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .m-col-100-full {
    width: 100%;
    margin: 0 0 2.4% 0;
  }
  .m-col-custom-40 {
    width: 39%;
    margin: 0 0.5% 1% 0.5%;
  }
  .m-col-custom-50 {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .m-col-custom-60 {
    width: 59%;
    margin: 0 0.5% 1% 0.5%;
  }
  .m-col-custom-100 {
    width: 99%;
    margin: 0 0.5% 1% 0.5%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 94.6%;
  }
  .s-hide {
    display: none;
    visibility: hidden;
  }
  .s-show {
    display: block;
    visibility: visible;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .col-10 {
    width: 97.6%;
  }
  .col-10-full {
    width: 100%;
  }
  .col-12 {
    width: 97.6%;
  }
  .col-12-full {
    width: 100%;
  }
  .col-15 {
    width: 97.6%;
  }
  .col-15-full {
    width: 100%;
  }
  .col-16 {
    width: 97.6%;
  }
  .col-16-full {
    width: 100%;
  }
  .col-20 {
    width: 97.6%;
  }
  .col-20-full {
    width: 100%;
  }
  .col-25 {
    width: 97.6%;
  }
  .col-25-full {
    width: 100%;
  }
  .col-30 {
    width: 97.6%;
  }
  .col-30-full {
    width: 100%;
  }
  .col-33 {
    width: 97.6%;
  }
  .col-33-full {
    width: 100%;
  }
  .col-40 {
    width: 97.6%;
  }
  .col-40-full {
    width: 100%;
  }
  .col-50 {
    width: 97.6%;
  }
  .col-50-full {
    width: 100%;
  }
  .col-60 {
    width: 97.6%;
  }
  .col-60-full {
    width: 100%;
  }
  .col-65 {
    width: 97.6%;
  }
  .col-65-full {
    width: 100%;
  }
  .col-66 {
    width: 97.6%;
  }
  .col-66-full {
    width: 100%;
  }
  .col-70 {
    width: 97.6%;
  }
  .col-70-full {
    width: 100%;
  }
  .col-75 {
    width: 97.6%;
  }
  .col-75-full {
    width: 100%;
  }
  .col-80 {
    width: 97.6%;
  }
  .col-80-full {
    width: 100%;
  }
  .col-85 {
    width: 97.6%;
  }
  .col-85-full {
    width: 100%;
  }
  .col-90 {
    width: 97.6%;
  }
  .col-90-full {
    width: 100%;
  }
  .col-100 {
    width: 97.6%;
  }
  .col-100-full {
    width: 100%;
  }
  .col-custom-40 {
    width: 99%;
  }
  .col-custom-50 {
    width: 99%;
  }
  .col-custom-60 {
    width: 99%;
  }
  .col-custom-100 {
    width: 99%;
  }
}
@media screen and (max-width: 767px) {
  .s-col-10 {
    width: 7.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-10-full {
    width: 10%;
    margin: 0 0 2.4% 0;
  }
  .s-col-12 {
    width: 10.1%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-12-full {
    width: 12.5%;
    margin: 0 0 2.4% 0;
  }
  .s-col-15 {
    width: 12.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-15-full {
    width: 15%;
    margin: 0 0 2.4% 0;
  }
  .s-col-16 {
    width: 14.26666667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-16-full {
    width: 16.66666667%;
    margin: 0 0 2.4% 0;
  }
  .s-col-20 {
    width: 17.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-20-full {
    width: 20%;
    margin: 0 0 2.4% 0;
  }
  .s-col-25 {
    width: 22.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-25-full {
    width: 25%;
    margin: 0 0 2.4% 0;
  }
  .s-col-30 {
    width: 27.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-30-full {
    width: 30%;
    margin: 0 0 2.4% 0;
  }
  .s-col-33 {
    width: 30.933333%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-33-full {
    width: 33.333333%;
    margin: 0 0 2.4% 0;
  }
  .s-col-40 {
    width: 37.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-40-full {
    width: 40%;
    margin: 0 0 2.4% 0;
  }
  .s-col-50 {
    width: 47.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-50-full {
    width: 50%;
    margin: 0 0 2.4% 0;
  }
  .s-col-60 {
    width: 57.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-60-full {
    width: 60%;
    margin: 0 0 2.4% 0;
  }
  .s-col-65 {
    width: 62.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-65-full {
    width: 65%;
    margin: 0 0 2.4% 0;
  }
  .s-col-66 {
    width: 64.266667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-66-full {
    width: 66.666667%;
    margin: 0 0 2.4% 0;
  }
  .s-col-70 {
    width: 67.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-70-full {
    width: 70%;
    margin: 0 0 2.4% 0;
  }
  .s-col-75 {
    width: 72.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-75-full {
    width: 75%;
    margin: 0 0 2.4% 0;
  }
  .s-col-80 {
    width: 77.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-80-full {
    width: 80%;
    margin: 0 0 2.4% 0;
  }
  .s-col-85 {
    width: 82.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-85-full {
    width: 85%;
    margin: 0 0 2.4% 0;
  }
  .s-col-90 {
    width: 87.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-90-full {
    width: 90%;
    margin: 0 0 2.4% 0;
  }
  .s-col-100 {
    width: 97.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .s-col-100-full {
    width: 100%;
    margin: 0 0 2.4% 0;
  }
  .s-col-custom-40 {
    width: 39%;
    margin: 0 0.5% 1% 0.5%;
  }
  .s-col-custom-50 {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .s-col-custom-60 {
    width: 59%;
    margin: 0 0.5% 1% 0.5%;
  }
  .s-col-custom-100 {
    width: 99%;
    margin: 0 0.5% 1% 0.5%;
  }
}
@media screen and (max-width: 480px) {
  .container {
    width: 94.6%;
  }
  .xs-hide {
    display: none;
    visibility: hidden;
  }
  .xs-show {
    display: block;
    visibility: visible;
  }
  .xs-col-10 {
    width: 7.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-10-full {
    width: 10%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-12 {
    width: 10.1%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-12-full {
    width: 12.5%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-15 {
    width: 12.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-15-full {
    width: 15%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-16 {
    width: 14.26666667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-16-full {
    width: 16.66666667%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-20 {
    width: 17.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-20-full {
    width: 20%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-25 {
    width: 22.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-25-full {
    width: 25%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-30 {
    width: 27.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-30-full {
    width: 30%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-33 {
    width: 30.933333%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-33-full {
    width: 33.333333%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-40 {
    width: 37.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-40-full {
    width: 40%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-50 {
    width: 47.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-50-full {
    width: 50%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-60 {
    width: 57.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-60-full {
    width: 60%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-65 {
    width: 62.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-65-full {
    width: 65%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-66 {
    width: 64.266667%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-66-full {
    width: 66.666667%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-70 {
    width: 67.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-70-full {
    width: 70%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-75 {
    width: 72.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-75-full {
    width: 75%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-80 {
    width: 77.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-80-full {
    width: 80%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-85 {
    width: 82.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-85-full {
    width: 85%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-90 {
    width: 87.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-90-full {
    width: 90%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-100 {
    width: 97.6%;
    margin: 0 1.2% 2.4% 1.2%;
  }
  .xs-col-100-full {
    width: 100%;
    margin: 0 0 2.4% 0;
  }
  .xs-col-custom-40 {
    width: 39%;
    margin: 0 0.5% 1% 0.5%;
  }
  .xs-col-custom-50 {
    width: 49%;
    margin: 0 0.5% 1% 0.5%;
  }
  .xs-col-custom-60 {
    width: 59%;
    margin: 0 0.5% 1% 0.5%;
  }
  .xs-col-custom-100 {
    width: 99%;
    margin: 0 0.5% 1% 0.5%;
  }
}
#header {
  position: relative;
  z-index: 1002;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
#header.is-sticky {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 999;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
#header.is-sticky .bottom-menu {
  background-color: white;
}
#header .header-logo {
  display: block;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#header .header-logo img {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: 270px;
  width: 300px;
}
#header .top-menu {
  background: #28367b;
  min-height: 60px;
}
#header .bottom-menu {
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  #header .bottom-menu {
    height: 20px;
  }
}
#header .bottom-menu #navigation {
  margin-top: 5px;
  margin-bottom: 0px;
}
#header .bottom-menu #navigation ul li.is-active a {
  color: #009FE3;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#header .bottom-menu #navigation ul li a {
  font-family: "Montserrat";
  font-weight: 600;
  color: #929292;
}
#header .bottom-menu #navigation ul li a:hover {
  color: #009FE3;
}
#header .quick-menu {
  background-color: #009FE3;
  padding: 0.25rem 1rem;
}
#header .quick-menu .bootstrap-styles .container.cf .row.cf {
  width: 100%;
  margin: 0;
}
#header .quick-menu ul {
  float: right;
  margin-bottom: 0;
  list-style: none;
}
#header .quick-menu ul li {
  display: inline-block;
}
#header .quick-menu ul li a {
  font-weight: bold;
}
#header .quick-menu ul li a:hover {
  color: #fff;
}
#header .quick-menu ul li a:after {
  display: inline-block;
  content: "|";
  padding: 0 0.75em 0 0.75em;
  color: black;
}
#header .quick-menu ul li a span {
  color: white;
}
@media only screen and (min-width: 992px) {
  #header .quick-menu ul li:last-child {
    margin-right: 1em;
  }
}
#header .quick-menu ul li:last-child a:after {
  content: "";
  padding: 0;
}

.header-pusher {
  height: 92px;
  display: none;
  -webkit-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

body.single article p, body.single article h4 {
  font-size: 1rem;
  color: #222;
}
body.single article h4 {
  font-weight: bold;
}

.bootstrap-styles nav.navbar {
  background-color: #28367b;
}
.bootstrap-styles nav.navbar .navbar-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .bootstrap-styles nav.navbar .navbar-wrapper {
    width: auto;
  }
}
.bootstrap-styles nav.navbar .brand-container .navbar-brand {
  max-width: 250px;
}
.bootstrap-styles #menu-header-menu {
  margin: 0;
  padding: 0;
}
@media only screen and (orientation: landscape) and (max-width: 992px) {
  .bootstrap-styles #menu-header-menu {
    padding-top: 20px;
    height: calc(100vh - 80px);
    overflow-y: scroll;
  }
}
.bootstrap-styles #menu-header-menu li {
  position: relative;
  list-style: none;
  line-height: 44px;
}
.bootstrap-styles #menu-header-menu li.current-menu-item.current_page_item a[aria-current=page] {
  color: #009FE3;
}
.bootstrap-styles #menu-header-menu li a {
  text-decoration: none;
  font-size: 16px;
  color: white;
  transition: all 0.3s ease-in-out;
}
.bootstrap-styles #menu-header-menu li a:hover {
  color: #009FE3;
}
.bootstrap-styles #menu-header-menu > li {
  display: inline;
  margin: 0 1em 0 1em;
}
@media only screen and (max-width: 768px) {
  .bootstrap-styles #menu-header-menu .menu-item.menu-item-has-children.expanded::after {
    transform: rotate(-45deg);
    top: 18px;
  }
  .bootstrap-styles #menu-header-menu .menu-item.menu-item-has-children::after {
    border-style: solid;
    border-width: 0.25em 0.25em 0 0;
    content: "";
    display: inline-block;
    height: 1.25em;
    width: 1.25em;
    position: absolute;
    right: 8px;
    top: 9px;
    transform: rotate(135deg);
    vertical-align: middle;
    color: white;
    transition: all 0.3s ease-in-out;
  }
}
.bootstrap-styles #menu-header-menu .sub-menu {
  display: none;
  position: relative;
  background-color: #28367b;
  padding: 0.5em 1.5em 0.75em 1.5em;
  width: max-content;
  width: -moz-max-content;
  transition: all 0.3s ease-in-out;
}
.bootstrap-styles #menu-header-menu .sub-menu.show {
  display: block;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .bootstrap-styles #menu-header-menu .sub-menu.show {
    border-left: 2px solid rgba(255, 255, 255, 0.3098039216);
  }
}
@media only screen and (min-width: 992px) {
  .bootstrap-styles #menu-header-menu .sub-menu {
    position: absolute;
    left: -15px;
    padding: 1.5em 1.5em 0.75em 1.5em;
  }
}
@media only screen and (min-width: 992px) {
  .bootstrap-styles #menu-header-menu li:hover > .sub-menu {
    display: block;
    width: max-content;
    width: -moz-max-content;
    height: auto;
    z-index: 1;
  }
}
.bootstrap-styles button.navbar-toggler {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  margin-left: auto;
  outline: none;
  max-width: 35vw;
}
.bootstrap-styles .line {
  fill: none;
  stroke: white;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bootstrap-styles .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.bootstrap-styles .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.bootstrap-styles .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.bootstrap-styles .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.bootstrap-styles .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.bootstrap-styles .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.mobile-off-canvas-menu {
  background: #28367b;
  bottom: 0;
  box-sizing: content-box;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  width: 100%;
  z-index: 1003;
  right: 0;
  top: 65px;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  transition: transform 250ms ease 0s;
}
.mobile-off-canvas-menu.left {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mobile-off-canvas-menu.left .mobile-submenu {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
  top: 0;
  bottom: 0;
}
.mobile-off-canvas-menu.right {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mobile-off-canvas-menu.right .mobile-submenu {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  right: 0;
  top: 0;
  bottom: 0;
}
.mobile-off-canvas-menu.top {
  -webkit-transform: translate3d(0, calc(-100% - 65px), 0);
  -ms-transform: translate3d(0, calc(-100% - 65px), 0);
  transform: translate3d(0, calc(-100% - 65px), 0);
}
.mobile-off-canvas-menu.top .mobile-submenu {
  -webkit-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  right: 0;
  top: 0;
}
.mobile-off-canvas-menu.bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.mobile-off-canvas-menu.bottom .mobile-submenu {
  -webkit-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  right: 0;
  bottom: 0;
}
.mobile-off-canvas-menu .search-wrap-mobile {
  width: 100%;
  height: 45px;
  z-index: 1;
  background-color: #fff;
}
.mobile-off-canvas-menu .search-wrap-mobile .icon-search {
  background-image: url(./images/layout/search-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -99999px;
  background-size: 25px;
}
.mobile-off-canvas-menu .search-wrap-mobile .search-input {
  width: calc(100% - 45px);
  float: left;
  padding: 0 10px;
  margin: 0;
  border: 0;
  background-color: #828282;
  height: 45px;
  color: #ffffff;
  font-size: rem-calc(20);
}
.mobile-off-canvas-menu .search-wrap-mobile .search-input::-webkit-input-placeholder {
  color: #ffffff;
}
.mobile-off-canvas-menu .search-wrap-mobile .search-input:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}
.mobile-off-canvas-menu .search-wrap-mobile .search-input::-moz-placeholder { /* Firefox 19+ */
  color: #ffffff;
}
.mobile-off-canvas-menu .search-wrap-mobile .search-input-ms-input-placeholder {
  color: #ffffff;
}
.mobile-off-canvas-menu .search-wrap-mobile span.search {
  z-index: 2;
  position: relative;
  top: 0;
  display: inline-block;
  cursor: pointer;
}
.mobile-off-canvas-menu .search-wrap-mobile input.search {
  position: absolute;
  right: 0;
  z-index: 0;
  top: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.mobile-off-canvas-menu .search-wrap-mobile .search {
  line-height: 45px;
  background-position: center center;
  width: 45px;
  height: 45px;
}
.mobile-off-canvas-menu #localeSelect {
  text-align: center;
  margin: 20px 0 0 0;
}
.mobile-off-canvas-menu #localeSelect a {
  margin: 0;
  font-size: 18px;
  text-decoration: none;
  border-right: 1px solid #ccc;
  padding: 0 10px;
}
.mobile-off-canvas-menu #localeSelect a:last-child {
  border-right: 0;
}

ul.off-canvas-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.off-canvas-list li.has-submenu:hover .mobile-submenu, ul.off-canvas-list li.is-active:hover .mobile-submenu {
  display: block;
  width: 100%;
}
ul.off-canvas-list li.has-submenu > a:after, ul.off-canvas-list li.is-active > a:after {
  content: "»";
  margin-left: 0.5rem;
  display: inline;
}
ul.off-canvas-list li a {
  color: #fff;
  display: block;
  padding: 20px 0;
  transition: background 300ms ease;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
}
ul.off-canvas-list li.is-active a {
  color: #009FE3;
}

.mobile-submenu {
  display: none;
  background: #28367b;
  box-sizing: content-box;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1002;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: transform 250ms ease;
  -moz-transition: transform 250ms ease;
  -ms-transition: transform 250ms ease;
  -o-transition: transform 250ms ease;
  transition: transform 250ms ease;
}
.mobile-submenu .back {
  background-color: #1b2555;
}
.mobile-submenu .back > a {
  color: #fff;
  height: 45px;
  padding: 6px 0 0 10px;
}
.mobile-submenu .back > a:before {
  content: "&larr" !important;
  margin-right: 0.5rem !important;
  display: inline;
}

.is-opened .mobile-off-canvas-menu {
  transform: none;
}

.offcanvas-overlap {
  transform: none !important;
}

select,
textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
input[type=button] {
  padding: 3px 4px;
  border: 1px solid #CCC;
}

input[type=submit] {
  padding: 3px 4px;
  border: 1px solid #CCC;
}

select {
  padding: 2px 4px;
}

select.error,
textarea.error,
input[type=text].error,
input[type=password].error,
input[type=datetime].error,
input[type=datetime-local].error,
input[type=date].error,
input[type=month].error,
input[type=time].error,
input[type=week].error,
input[type=number].error,
input[type=email].error,
input[type=url].error,
input[type=search].error,
input[type=tel].error,
input[type=color].error {
  background-color: #FEDFDF;
}

.form-errors {
  display: none;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: #fedfdf;
  border: 1px solid #f93a3a;
  color: #222;
}
.form-errors .title {
  color: #f93a3a;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.2em;
}
.form-errors label {
  float: none;
  width: 100%;
  height: auto;
}
.form-errors ul {
  margin-left: 15px;
}
.form-errors ul li {
  background: none !important;
  list-style: square;
  padding: 0;
}

.statusUpdate {
  background: #fedfdf;
  padding: 5px;
  margin: 5px 0;
  display: none;
}

.form-input, .form-select, .form-text {
  padding: 5px 10px !important;
  color: #222;
  font-family: "Muli", sans-serif !important;
  font-weight: normal !important;
  line-height: 1.6 !important;
  font-size: 16px;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .form-input, .form-select, .form-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .form-input, .form-select, .form-text {
    font-size: 16px;
  }
}
.form-input.error, .form-select.error, .form-text.error {
  border: 1px solid #f93a3a !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-input.valid, .form-select.valid, .form-text.valid {
  border: 1px solid #97bf0d !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-input:focus, .form-select:focus, .form-text:focus {
  border: 1px solid #828282 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-input.no-border, .form-select.no-border, .form-text.no-border {
  border: 0px !important;
}

.form-submit {
  background: #97bf0d;
  padding: 10px !important;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-submit:hover {
  color: #fff;
  background: #828282;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.form-submit.no-border {
  border: 0px !important;
}

.form-label {
  display: block;
  padding-top: 5px;
}

.btn {
  background: #97bf0d;
  padding: 5px 10px !important;
  color: #828282;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  text-decoration: none;
  color: #fff;
  background: #828282;
}

.wg_vacancy_reaction_holder {
  background-color: #f6fcfe;
}
.wg_vacancy_reaction_holder .gfield {
  padding-left: 16px;
}
.wg_vacancy_reaction_holder .gform_wrapper .gform_footer .gform_button {
  margin-left: 16px;
}

#footer {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
#footer .images-bar img {
  width: 100%;
}
#footer .companies-bar {
  overflow: hidden;
}
#footer .companies-bar .blue-top {
  background-color: #28367b;
}
#footer .companies-bar .companies {
  margin-top: -40px;
}
#footer .companies-bar .companies img {
  margin-bottom: 20px;
}
#footer .companies-bar .companies a {
  background-image: url(./images/arrow-right-blue.svg);
  background-repeat: no-repeat;
  background-position: left top 0px;
  background-size: 10px;
  color: #28367b;
  padding: 0px 20px;
}
#footer .companies-bar .companies .blue-bg {
  display: none;
  position: relative;
  height: 60px;
  background: #28367b;
  width: calc(100% + 40px);
  margin-bottom: -50px;
  z-index: -1;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 767px) {
  #footer .companies-bar .companies .blue-bg {
    display: inline-block;
  }
}
#footer .footer-container {
  padding: 20px 0px;
  color: #fff;
  border-top: 10px solid #009FE3;
  background-image: url(./images/footer-bg.jpg);
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  #footer .footer-container {
    background-position: center right;
  }
}
#footer .footer-container h2 {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0px;
}
#footer .footer-container p {
  margin-top: 50px;
  font-size: 0.75rem;
}
@media (min-width: 480px) {
  #footer .footer-container p {
    font-size: calc( 12px + (14 - 12) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  #footer .footer-container p {
    font-size: 0.875rem;
  }
}
#footer .footer-container .button {
  padding: 5px 10px !important;
  background-color: #009FE3;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background-image: none;
}
@media (min-width: 480px) {
  #footer .footer-container .button {
    font-size: calc( 12px + (16 - 12) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  #footer .footer-container .button {
    font-size: 1rem;
  }
}
#footer .footer-container .button:hover {
  background-color: #28367b;
}
#footer .footer-container .button i {
  margin-right: 10px;
}
#footer .footer-container .cta, #footer .footer-container .is-style-cta > a {
  color: #fff;
  background-image: url(./images/arrow-right-white.svg);
  font-size: 0.75rem;
}
@media (min-width: 480px) {
  #footer .footer-container .cta, #footer .footer-container .is-style-cta > a {
    font-size: calc( 12px + (16 - 12) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  #footer .footer-container .cta, #footer .footer-container .is-style-cta > a {
    font-size: 1rem;
  }
}
#footer .footer-container .cta:hover, #footer .footer-container .is-style-cta > a:hover {
  color: #d67d4e;
}
#footer .footer-container .news-items {
  list-style: none;
  margin: 0;
}
#footer .footer-container .news-items li {
  background-image: url(./images/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: left top 5px;
  padding-left: 20px;
  margin-bottom: 0px;
  background-size: 10px;
}
#footer .footer-container .news-items li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
#footer .footer-container .social {
  list-style: none;
  margin: 0px;
  margin-bottom: 20px;
}
#footer .footer-container .social li {
  display: inline-block;
}
#footer .footer-container .social li a {
  border: 1px solid #fff;
  border-radius: 1000px;
  display: inline-block;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
}
#footer .footer-container .social li a:hover {
  background-color: #009FE3;
}
#footer .footer-container .social li a i {
  color: #fff;
  font-size: 15px;
}
@media (min-width: 768px) {
  #footer .footer-container .align-md-right {
    text-align: right;
  }
}
#footer .footer-copyright {
  background-color: #28367b;
  color: #fff;
  padding: 20px 0;
}
#footer .footer-copyright a {
  color: #fff;
  margin: 0 15px 0 15px;
  transition: all 0.3s ease-in-out;
}
#footer .footer-copyright a:first-child {
  margin-left: 30px;
}
#footer .footer-copyright a:hover {
  color: #009FE3;
}

.footer-pusher {
  height: 850px;
  -webkit-transition: height 0.3s ease-in-out;
  -moz-transition: height 0.3s ease-in-out;
  -ms-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.no-float {
  float: none;
}

.margin-auto {
  float: none !important;
  margin: 0 auto;
}

.full {
  width: 100%;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.pointer {
  cursor: pointer;
}

.unselectable {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}

.margin-top-5px {
  margin-top: 5px;
}

.margin-top-10px {
  margin-top: 10px;
}

.margin-top-20px {
  margin-top: 20px;
}

.margin-bottom-5px {
  margin-bottom: 5px;
}

.margin-bottom-10px {
  margin-bottom: 10px;
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

.box-sizing {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.full-width {
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

.align-left {
  text-align: left;
}

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.center-items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .center-items {
    display: block;
  }
}

.h-100 {
  height: 100%;
}

.v-align {
  position: relative;
  top: 20%;
  transform: perspective(1px) translateY(-50%);
}

/*--------------------------------------------------------------
Default gaps
--------------------------------------------------------------*/
.gap-1 {
  gap: 1em;
}

.gap-2 {
  gap: 2em;
}

.gap-3 {
  gap: 3em;
}

.gap-4 {
  gap: 4em;
}

.gap-5 {
  gap: 5em;
}

/*--------------------------------------------------------------
Column gaps
--------------------------------------------------------------*/
.col-gap-1 {
  column-gap: 1rem;
}

.col-gap-2 {
  column-gap: 2rem;
}

.col-gap-3 {
  column-gap: 3rem;
}

.col-gap-4 {
  column-gap: 4rem;
}

.col-gap-5 {
  column-gap: 5rem;
}

/*--------------------------------------------------------------
Row gaps
--------------------------------------------------------------*/
.row-gap-1 {
  row-gap: 1rem;
}

.row-gap-2 {
  row-gap: 2rem;
}

.row-gap-3 {
  row-gap: 3rem;
}

.row-gap-4 {
  row-gap: 4rem;
}

.row-gap-5 {
  row-gap: 5rem;
}

/*--------------------------------------------------------------
Image fit for img elements
--------------------------------------------------------------*/
.img-fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}

@font-face {
  font-family: "Muli";
  src: url("./fonts/hinted-Muli-Light.woff2") format("woff2"), url("./fonts/hinted-Muli-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Muli";
  src: url("./fonts/hinted-Muli-Regular.woff2") format("woff2"), url("./fonts/hinted-Muli-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Muli";
  src: url("./fonts/hinted-Muli-SemiBold.woff2") format("woff2"), url("./fonts/hinted-Muli-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Muli";
  src: url("./fonts/hinted-Muli-Bold.woff2") format("woff2"), url("./fonts/hinted-Muli-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/hinted-Montserrat-Regular.woff2") format("woff2"), url("./fonts/hinted-Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/hinted-Montserrat-Medium.woff2") format("woff2"), url("./fonts/hinted-Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/hinted-Montserrat-SemiBold.woff2") format("woff2"), url("./fonts/hinted-Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("./fonts/hinted-Montserrat-Bold.woff2") format("woff2"), url("./fonts/hinted-Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
.visual.slick-slide {
  height: auto;
  background-size: cover;
  background-position: center center;
}
@media only screen and (min-width: 992px) {
  .visual.slick-slide {
    min-height: 400px;
    height: 40vh;
  }
}
.visual.slick-slide h1 {
  color: #fff;
  font-weight: 600;
  font-size: 54px;
  text-transform: uppercase;
}

#template-content {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #template-content {
    padding: 0;
  }
}

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

.bg-top {
  position: absolute;
  background-image: url(./images/home-bg-top.png);
  width: 45vw;
  height: 65vw;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -132px;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .bg-top {
    display: none;
  }
}

.visual + .bg-top {
  margin-top: -170px;
}

.bg-bottom {
  position: absolute;
  background-image: url(./images/bg-bottom.png);
  width: 35vw;
  height: 71vw;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -42px;
  opacity: 0.35;
  z-index: -1;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .bg-bottom {
    display: none;
  }
}

.cta, .is-style-cta > a {
  font-family: "Montserrat";
  font-weight: bold;
  text-transform: uppercase;
  color: #d67d4e;
  text-decoration: none !important;
  background-image: url(./images/arrow-right-orange.svg);
  background-repeat: no-repeat;
  background-position: right top 2px;
  padding-right: 20px;
  background-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta:hover, .is-style-cta > a:hover {
  color: #c4612d;
}

.button {
  font-family: "Montserrat";
  font-weight: bold;
  text-transform: uppercase;
  background-color: #d67d4e;
  color: #fff;
  text-decoration: none;
  background-image: url(./images/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding: 10px 40px 10px 10px !important;
  background-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background-color: #c4612d;
  color: #fff;
}

.intro {
  padding: 25px 0;
}
.intro h1 {
  color: #28367b;
  text-transform: none;
}
.intro h2 {
  color: #28367b;
}
.intro .company-links {
  margin-top: 30px;
}
.intro .company-links .company-link {
  background-color: #28367b;
  padding: 5px 10px;
  min-width: 170px;
  display: inline-block;
  margin: 0 5px;
}

.entrances {
  padding: 25px 0;
}
.entrances h3 {
  color: #009FE3;
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 18px;
}
.entrances img {
  max-width: 300px;
  margin-bottom: 20px;
}

.people {
  padding: 25px 0;
}
.people h2 {
  color: #009FE3;
}
.people img {
  width: 100%;
}

.people-bar {
  padding: 50px 0;
}
.people-bar h2 {
  color: #009FE3;
}
.people-bar img {
  width: 100%;
}

.person {
  margin-bottom: 10px;
}
.person img {
  margin-bottom: 10px;
}
.person h2 {
  color: #28367b;
  font-size: 16px;
  margin-bottom: 0px;
}
.person a {
  color: #828282;
}
.person a:hover {
  color: #28367b;
}
.person a i {
  margin-right: 5px;
}

.labels {
  padding: 50px 0;
}
.labels h2 {
  color: #009FE3;
}

.vacatures {
  padding: 25px 0;
}

.slider-bar {
  padding: 50px 0;
}

.title-bar {
  background-color: rgba(0, 159, 227, 0.8);
  background-image: url(./images/title-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 20px 0;
  text-align: center;
}
.title-bar h1 {
  color: #fff;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
}

.select-style {
  border: 1px solid #b9c8cd;
  overflow: hidden;
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
.select-style:after {
  content: "";
  width: 30px;
  height: 100%;
  background-image: url(./images/arrow-down-orange.svg);
  position: absolute;
  right: 0px;
  top: 0px;
  border-left: 1px solid #b9c8cd;
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
}

.select-style select {
  padding: 5px 8px;
  width: 130%;
  border: none;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  color: #28367b;
}

.widget_recent_entries ul {
  list-style: none;
  margin: 0px;
}
.widget_recent_entries ul li {
  margin-bottom: 10px;
}
.widget_recent_entries ul li a {
  color: #28367b;
  font-size: 14px;
  font-weight: bold;
}
.widget_recent_entries ul li a[aria-current=page] {
  text-decoration: underline;
}
.widget_recent_entries ul li a:hover {
  color: #009FE3;
}

#breadcrumbs {
  margin-top: 20px;
}
#breadcrumbs a {
  color: #828282;
}
#breadcrumbs a:hover {
  color: #009FE3;
}

nav {
  display: block;
}
nav .pagination {
  list-style: none;
  margin: 0 0 20px 0;
  display: inline-block;
  float: none;
}
nav .pagination li {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #b9c8cd;
  line-height: 30px;
}
nav .pagination li.current {
  background-color: #009FE3;
  color: #fff;
}
nav .pagination li.pagination-previous img, nav .pagination li.pagination-next img {
  width: 9px;
  margin-top: -5px;
  position: relative;
}
nav .pagination li a {
  color: #28367b;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: transparent;
  margin: 0;
  padding: 0;
  width: 30px;
  height: 30px;
}
nav .pagination li a:hover {
  background-color: #009FE3;
  color: #fff;
}
nav .pagination .ellipsis:after {
  content: "…";
  color: #0a0a0a;
}

.widget_categories ul {
  list-style: none;
  margin: 0;
}
.widget_categories ul .cat-item {
  margin-bottom: 5px;
}
.widget_categories ul .cat-item a {
  font-family: "Montserrat";
  font-weight: bold;
  text-transform: uppercase;
  color: #d67d4e;
  text-decoration: none;
  background-image: url(./images/arrow-right-orange.svg);
  background-repeat: no-repeat;
  background-position: right top 2px;
  padding-right: 20px;
  background-size: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget_categories ul .cat-item a:hover {
  color: #c4612d;
}

.image {
  margin-bottom: 10px;
}

.text {
  margin-bottom: 20px;
}

.links .cta, .links .is-style-cta > a {
  margin-bottom: 5px;
  display: inline-block;
}

.blog-text {
  margin-top: 48px;
}

#single-vacancy {
  margin-top: 35px;
}

.vacancy_heading {
  background-color: rgb(35, 177, 236);
  padding: 10px;
  text-align: center;
  margin: 10px 0;
}
.vacancy_heading span.title {
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  margin: 0 0 10px;
}
.vacancy_heading span.subtitle {
  color: #fff;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  margin: 0 0 10px;
}

.vacancy_introduction {
  font-size: 17px;
}
.vacancy_introduction .vacancy_logo {
  float: right;
  margin: 0 0 40px 40px;
}

.vacancy_body {
  margin-bottom: 20px;
}
.vacancy_body h3.profile,
.vacancy_body h3.proposition {
  margin: 15px 0;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .vacancy-wrapper {
    flex-wrap: wrap;
  }
}

ul.list-unstyled {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.list-unstyled li a {
  color: white;
  text-decoration: underline;
}

details.lp-accordion {
  display: block;
  padding: 14px 20px;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  border: none;
  box-shadow: none;
  background-color: #5aa1e3;
  border-radius: 5px;
  color: white;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  margin: 10px;
  width: 100%;
}

details[open] {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: black;
}

#template-container .block-wrapper a {
  text-decoration: underline;
}
#template-container .block-wrapper a:not(.wp-block-button__link):not(.wp-element-button):not(.vacancy-wrapper a) {
  text-decoration: underline;
}

.slider-wrap {
  position: relative;
}
.slider-wrap .slick-track {
  display: flex !important;
}
.slider-wrap .slider {
  margin: 0 40px;
}
.slider-wrap .slick-slide {
  margin: 0 10px;
  display: flex !important;
  height: auto !important;
  align-items: center !important;
  justify-content: center !important;
}
.slider-wrap .prev, .slider-wrap .next {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}
.slider-wrap .prev {
  background-image: url(./images/arrow-left-grey.svg);
  background-repeat: no-repeat;
  background-position: left 5px center;
}
.slider-wrap .next {
  background-image: url(./images/arrow-right-grey.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  right: 0;
}

.vacancy-overview .row {
  width: inherit;
}

.vacancy-header {
  background-color: rgba(0, 160, 227, 0.75);
  padding: 1rem 0;
}
.vacancy-header .title-wrapper {
  text-align: center;
}
.vacancy-header .title-wrapper h1 {
  font-weight: bold;
  color: white;
  margin-bottom: 0;
  text-transform: uppercase;
}

.vacature_archive_wrapper .vacature_wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 992px) {
  .vacature_archive_wrapper .vacature_wrapper {
    flex-direction: row;
  }
}
.vacature_archive_wrapper .vacature_wrapper .vacancy-content {
  padding: 1.75rem 3.5rem 1.75rem 1.75rem;
}
.vacature_archive_wrapper a,
.vacature_archive_wrapper a:hover {
  text-decoration: none;
}
.vacature_archive_wrapper .panel {
  background-color: #fff;
  border: 2px solid #E6E6E6;
  box-shadow: 10px 12px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.2s ease-in-out;
}
.vacature_archive_wrapper .panel:hover {
  transform: translateY(-2px);
}
.vacature_archive_wrapper .panel .logo-head {
  margin: -30px;
  background-color: #28367b;
  margin-bottom: 10px;
  left: 0px;
  padding: 20px 30px 5px;
}
.vacature_archive_wrapper .panel img {
  border-right: 2px solid #E6E6E6;
  padding: 1rem;
}
.vacature_archive_wrapper .panel h2 {
  color: #009FE3;
  font-weight: bold;
  font-size: 1rem;
}
@media (min-width: 480px) {
  .vacature_archive_wrapper .panel h2 {
    font-size: calc( 16px + (20 - 16) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  .vacature_archive_wrapper .panel h2 {
    font-size: 1.25rem;
  }
}
.vacature_archive_wrapper .panel .content {
  font-size: 16px;
  color: #28367b;
  line-height: 1.5;
}
.vacature_archive_wrapper .panel .grey-box {
  margin: -30px;
  background-color: #9dadb2;
  margin-top: 10px;
  left: 0px;
  padding: 20px;
  color: #fff;
  font-size: 18px;
}
.vacature_archive_wrapper .panel .vacature {
  margin-bottom: 10px;
}
.vacature_archive_wrapper .panel .vacature img {
  max-width: 120px;
  width: 100%;
}
.vacature_archive_wrapper .panel .vacature h3 {
  font-family: "Montserrat";
  font-weight: bold;
  color: #28367b;
  font-size: 18px;
}
.vacature_archive_wrapper .panel.vacature {
  background-image: url(./images/arrow-right-blue.svg);
  background-repeat: no-repeat;
  background-position: right 25px center;
}
.vacature_archive_wrapper .panel.vacature_closed {
  background-color: #E6E6E6;
}
.vacature_archive_wrapper .panel.vacature_open {
  background-color: #E9F9FF;
}

.vacancy-sidebar-filter {
  background-color: #00A0E3;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.vacancy-sidebar-filter .vacancy-count {
  color: #274186;
  font-weight: bold;
  margin-bottom: 20px;
}
.vacancy-sidebar-filter .form-group {
  margin-bottom: 2rem;
}
.vacancy-sidebar-filter .form-group .input-group input#vacancy_search {
  height: 50px;
  width: 100%;
  border: 0;
  border-radius: 0;
}
.vacancy-sidebar-filter .form-group .input-group .fa-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00A0E3;
  font-weight: normal;
  font-size: 22px;
}
.vacancy-sidebar-filter .form-group h5 {
  color: #274186;
  font-weight: normal;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #274186;
  margin-bottom: 0;
}
.vacancy-sidebar-filter .form-group h5 i {
  color: #00A0E3;
  font-size: 20px;
}
.vacancy-sidebar-filter .form-group h5 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #274186;
  padding: 10px;
}
.vacancy-sidebar-filter .form-group h5 a:hover {
  text-decoration: none;
}
.vacancy-sidebar-filter .form-group .form-check {
  margin-bottom: 10px;
  padding-left: 0;
}
.vacancy-sidebar-filter .form-group .form-check .form-check-label {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #274186;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
.vacancy-sidebar-filter .form-group .form-check:hover input ~ .checkmark {
  background-color: #ccc;
  -webkit-box-shadow: inset 0px 0px 0px 10px white;
  -moz-box-shadow: inset 0px 0px 0px 10px white;
  box-shadow: inset 0px 0px 0px 1px white;
}
.vacancy-sidebar-filter .form-group .form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.vacancy-sidebar-filter .form-group .form-check input:checked ~ .checkmark {
  background-color: #274186;
  -webkit-box-shadow: inset 0px 0px 0px 10px white;
  -moz-box-shadow: inset 0px 0px 0px 10px white;
  box-shadow: inset 0px 0px 0px 1px white;
}
.vacancy-sidebar-filter .form-group .form-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: white;
  border: 1px solid #274186;
}
.vacancy-sidebar-filter .form-group .form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 4px;
  width: 7px;
  height: 13px;
  border: solid #274186;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.vacancy-sidebar-filter .form-group.filter {
  background-color: white;
  padding: 0;
}
.vacancy-sidebar-filter .form-group.filter #statusCollapse,
.vacancy-sidebar-filter .form-group.filter #categoryCollapse,
.vacancy-sidebar-filter .form-group.filter #locationCollapse {
  padding: 1rem;
}
.vacancy-sidebar-filter .form-group.filter #statusCollapse .option-wrapper,
.vacancy-sidebar-filter .form-group.filter #categoryCollapse .option-wrapper,
.vacancy-sidebar-filter .form-group.filter #locationCollapse .option-wrapper {
  max-height: 50vh;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #274186 #f1f1f1;
}
.vacancy-sidebar-filter .input-group-text {
  background-color: transparent;
  border: none;
}
.vacancy-sidebar-filter .input-group-text i {
  color: #00A0E3;
}
.vacancy-sidebar-filter button[type=submit] {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #274186;
  border: none;
  border-radius: 0;
  color: white;
  font-weight: bold;
}

/*!
 * Font Awesome Pro 5.0.1 by @fontawesome - http://fontawesome.com
 * License - http://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-aws:before {
  content: "\f375";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comments:before {
  content: "\f086";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-eject:before {
  content: "\f052";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frown:before {
  content: "\f119";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-key:before {
  content: "\f084";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-male:before {
  content: "\f183";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-moon:before {
  content: "\f186";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-percent:before {
  content: "\f295";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-print:before {
  content: "\f02f";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-question-square:before {
  content: "\f2fd";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-random:before {
  content: "\f074";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-rendact:before {
  content: "\f3e4";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-road:before {
  content: "\f018";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-strava:before {
  content: "\f428";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-train:before {
  content: "\f238";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f2e2";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

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

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

/*!
 * Font Awesome Pro 5.0.1 by @fontawesome - http://fontawesome.com
 * License - http://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 900;
  src: url("./fonts/fa-solid-900.eot");
  src: url("./fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-solid-900.woff2") format("woff2"), url("./fonts/fa-solid-900.woff") format("woff"), url("./fonts/fa-solid-900.ttf") format("truetype"), url("./fonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
  font-family: "FontAwesome";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.0.1 by @fontawesome - http://fontawesome.com
 * License - http://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/fa-regular-400.eot");
  src: url("./fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-regular-400.woff2") format("woff2"), url("./fonts/fa-regular-400.woff") format("woff"), url("./fonts/fa-regular-400.ttf") format("truetype"), url("./fonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "FontAwesome";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.0.1 by @fontawesome - http://fontawesome.com
 * License - http://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/fa-light-300.eot");
  src: url("./fonts/fa-light-300.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-light-300.woff2") format("woff2"), url("./fonts/fa-light-300.woff") format("woff"), url("./fonts/fa-light-300.ttf") format("truetype"), url("./fonts/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
  font-family: "FontAwesome";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.0.1 by @fontawesome - http://fontawesome.com
 * License - http://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/fa-brands-400.eot");
  src: url("./fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("./fonts/fa-brands-400.woff2") format("woff2"), url("./fonts/fa-brands-400.woff") format("woff"), url("./fonts/fa-brands-400.ttf") format("truetype"), url("./fonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "FontAwesome";
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 25px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 25px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 50px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 50px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 50px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 50px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5px, -6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5px, 6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.15s ease, transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5px, -6.25px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5px, 6.25px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.15s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.1s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.15s 0.4s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 16px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  transition-delay: 0.1s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(270deg);
  transition-delay: 0.1s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -50px;
  top: -50px;
  transform: translate3d(50px, 50px, 0) rotate(45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -50px;
  top: -50px;
  transform: translate3d(-50px, 50px, 0) rotate(-45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, left 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 8px;
  right: 0;
  transition: transform 0.2s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.2s linear, right 0.2s 0.25s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -50px;
  top: 50px;
  transform: translate3d(50px, -50px, 0) rotate(-45deg);
  transition: left 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -50px;
  top: 50px;
  transform: translate3d(-50px, -50px, 0) rotate(45deg);
  transition: right 0.2s ease-out, top 0.05s 0.2s linear, transform 0.2s 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.5714285714px, -4px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.2s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 16px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.5714285714px, -4px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(90deg);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.15s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 8px;
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.32s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 8px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -16px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.32s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.32s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.1s 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.1s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease-in, transform 0.1s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.1s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.22s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.1s 0.12s ease-out, transform 0.1s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.bootstrap-styles [class*=col-] {
  float: none !important;
  margin: 0px;
}
.bootstrap-styles [class*=col-]:before {
  display: none;
}
.bootstrap-styles .container:before, .bootstrap-styles .row:before {
  display: none;
}
.bootstrap-styles a {
  color: #28367b;
}

.wp-block-button__link,
.wp-block-file__button {
  all: unset; /* This will reset most inherited and non-inherited properties */
  display: block; /* You might need to reset some properties to maintain the layout */
  margin: 0; /* Reset or adjust margin */
  padding: 0; /* Reset or adjust padding */
  color: inherit; /* Ensures the text color matches the parent element */
  font-size: inherit; /* Maintains font consistency with surrounding text */
}

.is-style-btn-primary > a {
  cursor: pointer;
  padding: 5px 10px !important;
  background-color: #009FE3;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  font-family: "Montserrat";
  font-weight: bold;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background-image: none;
  text-decoration: none !important;
}
@media (min-width: 480px) {
  .is-style-btn-primary > a {
    font-size: calc( 12px + (16 - 12) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  .is-style-btn-primary > a {
    font-size: 1rem;
  }
}
.is-style-btn-primary > a:hover {
  background-color: #28367b;
}
.is-style-btn-primary > a i {
  margin-right: 10px;
}

.is-style-cta > a {
  cursor: pointer;
}

.is-style-btn-animated {
  background: rgb(0, 159, 227);
  cursor: pointer;
  display: inline-block;
  font-size: 0.75rem;
  text-decoration: none;
  font-family: "Montserrat";
  font-weight: bold;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  padding: 5px 10px !important;
}
@media (min-width: 480px) {
  .is-style-btn-animated {
    font-size: calc( 12px + (16 - 12) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  .is-style-btn-animated {
    font-size: 1rem;
  }
}
.is-style-btn-animated:hover {
  background-color: #FCF302;
}
body.website-13 .is-style-btn-animated:hover {
  background-color: #ffc000 !important;
}
.is-style-btn-animated a {
  color: white;
}
.is-style-btn-animated:hover {
  background-color: #28367b;
}

.block-wrapper {
  /* background */
  /* marges */
  /* elements */
}
.block-wrapper.has-bg-image {
  background-size: cover;
}
.block-wrapper.marge-small {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.block-wrapper.marge-medium {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.block-wrapper.marge-large {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.block-wrapper h1, .block-wrapper h2, .block-wrapper h3, .block-wrapper h4, .block-wrapper h5 {
  font-weight: 500 !important;
  line-height: 30px;
}
.block-wrapper h1 {
  font-size: 1.9rem;
  line-height: 100%;
}
.block-wrapper h2 {
  font-size: 1.625rem;
}
.block-wrapper h3 {
  font-size: 1.25rem;
}
.block-wrapper h4 {
  font-size: 1.125rem;
}
.block-wrapper h5 {
  font-size: 1rem;
}
.block-wrapper p {
  font-size: 1.063rem;
}
.block-wrapper p, .block-wrapper ul li {
  color: #444444;
  font-size: 17px;
  line-height: 24px;
}
.block-wrapper h2 {
  font-size: 26px;
  color: #009FE3;
}
.block-wrapper h3 {
  font-size: 20px;
  color: #009FE3;
}
.block-wrapper .wp-block-quote {
  padding: 5%;
}
.block-wrapper .wp-block-quote p {
  color: white;
  font-size: 26px;
  line-height: 34px;
  font-style: italic;
  text-align: left;
  margin: 0;
}

.block-testimonial .slider-testimonial {
  margin: 0 20px;
}
.block-testimonial .slider-testimonial .item {
  padding: 0 20px;
  margin: 0 0 20px 0;
  display: block !important;
}
.block-testimonial .slider-testimonial .item img {
  margin-bottom: 20px;
}

.block-hero .hero {
  padding: 3rem 0;
}
.block-hero .hero.hero-bg {
  background-image: url("./images/blocks/hero.jpg");
  background-size: cover;
  background-position: center;
}
.block-hero .hero.hero-bg .title {
  color: white;
  font-weight: bold;
}
.block-hero .hero .title {
  color: #009FE3;
  font-weight: normal;
  margin: 0;
  padding: 0 10px;
}

.person-box .front .person-overlay h2,
.person-box .backflip .description-container h2 {
  font-size: 18px;
}

#gform_wrapper_31 form {
  padding: 0;
}
#gform_wrapper_31 form .gfield_required,
#gform_wrapper_31 form br {
  display: none;
}
#gform_wrapper_31 form li {
  margin: 40px 0;
}
#gform_wrapper_31 form .gform-field-label {
  color: #000;
  line-height: 20px !important;
  margin: 0;
  padding: 0 !important;
  display: initial !important;
}
#gform_wrapper_31 form .ginput_container_radio {
  margin-top: 5px !important;
  margin-bottom: 15px !important;
}
#gform_wrapper_31 form .gfield_radio {
  margin-top: 15px;
}
#gform_wrapper_31 form .gfield_radio .gchoice {
  display: inline;
  position: relative;
}
#gform_wrapper_31 form .gfield_radio .gchoice input {
  display: none;
}
#gform_wrapper_31 form .gfield_radio .gchoice input[type=radio]:checked + label:before {
  content: "1";
  color: #fff;
  background-color: #29367B;
  font-size: 14px;
  font-weight: normal;
  z-index: 9;
  line-height: 25px;
  height: 25px;
  width: 25px;
  border-radius: 100%;
  top: 2px;
  left: 0;
  text-align: center;
  margin: auto;
  position: absolute;
  cursor: pointer;
  display: inline-block;
}
#gform_wrapper_31 form .gfield_radio .gchoice label {
  margin: 0 15px 0 4px;
}
#gform_wrapper_31 form .gfield_radio .gchoice label::after {
  border: solid 1px #29367B;
  content: "1";
  height: 25px;
  width: 25px;
  color: #29367B;
  top: 2px;
  font-weight: normal;
  font-size: 14px;
  line-height: 25px;
  text-align: center;
  background-color: white;
  border-radius: 50%;
  left: 0;
  position: absolute;
  display: inline-block;
  margin: auto;
  cursor: pointer;
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(2) input[type=radio]:checked + label:before {
  content: "2";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(2) label::after {
  content: "2";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(3) input[type=radio]:checked + label:before {
  content: "3";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(3) label::after {
  content: "3";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(4) input[type=radio]:checked + label:before {
  content: "4";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(4) label::after {
  content: "4";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(5) input[type=radio]:checked + label:before {
  content: "5";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(5) label::after {
  content: "5";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(6) input[type=radio]:checked + label:before {
  content: "6";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(6) label::after {
  content: "6";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(7) input[type=radio]:checked + label:before {
  content: "7";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(7) label::after {
  content: "7";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(8) input[type=radio]:checked + label:before {
  content: "8";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(8) label::after {
  content: "8";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(9) input[type=radio]:checked + label:before {
  content: "9";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(9) label::after {
  content: "9";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(10) input[type=radio]:checked + label:before {
  content: "10";
}
#gform_wrapper_31 form .gfield_radio .gchoice:nth-child(10) label::after {
  content: "10";
}
#gform_wrapper_31 form h2 {
  font-size: 36px;
  font-weight: bold;
}

.vacancy-btn {
  background: #28367b;
  font-size: 14px !important;
  background-image: none !important;
  padding: 10px !important;
}

/*# sourceMappingURL=style.css.map */
