/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  position: relative; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    width: 120px;
    margin: 0.5em; }
    .dropzone .dz-preview .dz-progress {
      display: block;
      height: 15px;
      border: 1px solid #aaa; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        display: block;
        height: 100%;
        width: 0;
        background: green; }
    .dropzone .dz-preview .dz-error-message {
      color: red;
      display: none; }
    .dropzone .dz-preview.dz-error .dz-error-message, .dropzone .dz-preview.dz-error .dz-error-mark {
      display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      display: block; }
    .dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
      position: absolute;
      display: none;
      left: 30px;
      top: 30px;
      width: 54px;
      height: 58px;
      left: 50%;
      margin-left: -27px; }
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@keyframes passing-through {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30%, 70% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-40px); } }
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  30% {
    opacity: 1;
    transform: translateY(0px); } }
@keyframes pulse {
  0% {
    transform: scale(1); }
  10% {
    transform: scale(1.1); }
  20% {
    transform: scale(1); } }
.dropzone, .dropzone * {
  box-sizing: border-box; }

.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px; }
  .dropzone.dz-clickable {
    cursor: pointer; }
    .dropzone.dz-clickable * {
      cursor: default; }
    .dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
      cursor: pointer; }
  .dropzone.dz-started .dz-message {
    display: none; }
  .dropzone.dz-drag-hover {
    border-style: solid; }
    .dropzone.dz-drag-hover .dz-message {
      opacity: 0.5; }
  .dropzone .dz-message {
    text-align: center;
    margin: 2em 0; }
    .dropzone .dz-message .dz-button {
      background: none;
      color: inherit;
      border: none;
      padding: 0;
      font: inherit;
      cursor: pointer;
      outline: inherit; }
  .dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px; }
    .dropzone .dz-preview:hover {
      z-index: 1000; }
      .dropzone .dz-preview:hover .dz-details {
        opacity: 1; }
    .dropzone .dz-preview.dz-file-preview .dz-image {
      border-radius: 20px;
      background: #999;
      background: linear-gradient(to bottom, #eee, #ddd); }
    .dropzone .dz-preview.dz-file-preview .dz-details {
      opacity: 1; }
    .dropzone .dz-preview.dz-image-preview {
      background: white; }
      .dropzone .dz-preview.dz-image-preview .dz-details {
        transition: opacity 0.2s linear; }
    .dropzone .dz-preview .dz-remove {
      font-size: 14px;
      text-align: center;
      display: block;
      cursor: pointer;
      border: none; }
      .dropzone .dz-preview .dz-remove:hover {
        text-decoration: underline; }
    .dropzone .dz-preview:hover .dz-details {
      opacity: 1; }
    .dropzone .dz-preview .dz-details {
      z-index: 20;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      font-size: 13px;
      min-width: 100%;
      max-width: 100%;
      padding: 2em 1em;
      text-align: center;
      color: rgba(0, 0, 0, 0.9);
      line-height: 150%; }
      .dropzone .dz-preview .dz-details .dz-size {
        margin-bottom: 1em;
        font-size: 16px; }
      .dropzone .dz-preview .dz-details .dz-filename {
        white-space: nowrap; }
        .dropzone .dz-preview .dz-details .dz-filename:hover span {
          border: 1px solid rgba(200, 200, 200, 0.8);
          background-color: rgba(255, 255, 255, 0.8); }
        .dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
          overflow: hidden;
          text-overflow: ellipsis; }
          .dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
            border: 1px solid transparent; }
      .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
        background-color: rgba(255, 255, 255, 0.4);
        padding: 0 0.4em;
        border-radius: 3px; }
    .dropzone .dz-preview:hover .dz-image img {
      transform: scale(1.05, 1.05);
      filter: blur(8px); }
    .dropzone .dz-preview .dz-image {
      border-radius: 20px;
      overflow: hidden;
      width: 120px;
      height: 120px;
      position: relative;
      display: block;
      z-index: 10; }
      .dropzone .dz-preview .dz-image img {
        display: block; }
    .dropzone .dz-preview.dz-success .dz-success-mark {
      animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview.dz-error .dz-error-mark {
      opacity: 1;
      animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1); }
    .dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
      pointer-events: none;
      opacity: 0;
      z-index: 500;
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      margin-left: -27px;
      margin-top: -27px; }
      .dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
        display: block;
        width: 54px;
        height: 54px; }
    .dropzone .dz-preview.dz-processing .dz-progress {
      opacity: 1;
      transition: all 0.2s linear; }
    .dropzone .dz-preview.dz-complete .dz-progress {
      opacity: 0;
      transition: opacity 0.4s ease-in; }
    .dropzone .dz-preview:not(.dz-processing) .dz-progress {
      animation: pulse 6s ease infinite; }
    .dropzone .dz-preview .dz-progress {
      opacity: 1;
      z-index: 1000;
      pointer-events: none;
      position: absolute;
      height: 16px;
      left: 50%;
      top: 50%;
      margin-top: -8px;
      width: 80px;
      margin-left: -40px;
      background: rgba(255, 255, 255, 0.9);
      -webkit-transform: scale(1);
      border-radius: 8px;
      overflow: hidden; }
      .dropzone .dz-preview .dz-progress .dz-upload {
        background: #333;
        background: linear-gradient(to bottom, #666, #444);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        transition: width 300ms ease-in-out; }
    .dropzone .dz-preview.dz-error .dz-error-message {
      display: block; }
    .dropzone .dz-preview.dz-error:hover .dz-error-message {
      opacity: 1;
      pointer-events: auto; }
    .dropzone .dz-preview .dz-error-message {
      pointer-events: none;
      z-index: 1000;
      position: absolute;
      display: block;
      display: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      border-radius: 8px;
      font-size: 13px;
      top: 130px;
      left: -10px;
      width: 140px;
      background: #be2626;
      background: linear-gradient(to bottom, #be2626, #a92222);
      padding: 0.5em 1.2em;
      color: white; }
      .dropzone .dz-preview .dz-error-message:after {
        content: '';
        position: absolute;
        top: -6px;
        left: 64px;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #be2626; }
@charset "UTF-8";

/* Webfont: FolioBT-Book */

@font-face {
  font-family: "Folio";
  src: url(/fonts/Folio-Book.eot?8c8bc0578c8487be875a09d982f96d8e);
  /* IE9 Compat Modes */
  src: url(/fonts/Folio-Book.eot?8c8bc0578c8487be875a09d982f96d8e) format("embedded-opentype"), url(/fonts/Folio-Book.woff?38db2fda2a54649d12d5d48621f8b11e) format("woff"), url(/fonts/Folio-Book.ttf?ca0090b4c9663d49f878dd91cc6dbdf2) format("truetype"), url(/fonts/Folio-Book.svg?018ad4248c685f7580617d392fba6e57) format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

/* Webfont: Folio-Medium */

@font-face {
  font-family: "Folio";
  src: url(/fonts/Folio-Medium.eot?b0a223cee3c079b341e7ed7f33307c71);
  /* IE9 Compat Modes */
  src: url(/fonts/Folio-Medium.eot?b0a223cee3c079b341e7ed7f33307c71) format("embedded-opentype"), url(/fonts/Folio-Medium.woff?880378bf2195ed1adeed6f7b9ad0dbb0) format("woff"), url(/fonts/Folio-Medium.ttf?d7c5cd7093a882b9d0d680da9067312b) format("truetype"), url(/fonts/Folio-Medium.svg?039510f658358e589259c5117947c889) format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}

/* Webfont: National-Black */

@font-face {
  font-family: "National";
  src: url(/fonts/National-Black.eot?9e07f139fff7585c8bf1adb1719be822);
  /* IE9 Compat Modes */
  src: url(/fonts/National-Black.eot?9e07f139fff7585c8bf1adb1719be822) format("embedded-opentype"), url(/fonts/National-Black.woff?dd01633e758139b3d7b5c1d2f0dd9c3e) format("woff"), url(/fonts/National-Black.ttf?2d8f6245e7ec9f24d4c05adfbdd9d970) format("truetype"), url(/fonts/National-Black.svg?ae7df38286f2d07c3e4edf8a847b4bd3) format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 800;
  text-rendering: optimizeLegibility;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

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

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

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

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

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

body {
  margin: 0;
  font-family: "Folio", "Arial", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: #1b1b1b;
  text-align: left;
  background-color: #f3ece9;
}

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

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

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

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

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

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

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

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

dt {
  font-weight: 800;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #1b1b1b;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #1b1b1b;
  text-decoration: underline;
}

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

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

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

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

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

small,
.small {
  font-size: 0.875em;
  font-weight: 300;
}

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

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

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

.list-inline-item {
  display: inline-block;
}

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

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

.blockquote {
  margin-bottom: 20px;
  font-size: 1.40625rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #9a9a9a;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

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

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

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 10px;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #9a9a9a;
}

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

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 20px;
  color: #1b1b1b;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e3e3e3;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e3e3e3;
}

.table tbody + tbody {
  border-top: 2px solid #e3e3e3;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #e3e3e3;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #e3e3e3;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(27, 27, 27, 0.05);
}

.table-hover tbody tr:hover {
  color: #1b1b1b;
  background-color: rgba(27, 27, 27, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #bfbfbf;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #888888;
}

.table-hover .table-primary:hover {
  background-color: #b2b2b2;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #b2b2b2;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: white;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: white;
}

.table-hover .table-secondary:hover {
  background-color: #f2f2f2;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #f2f2f2;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dfe7d2;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #c3d3ac;
}

.table-hover .table-success:hover {
  background-color: #d3dec1;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d3dec1;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d3e3ef;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #aecbe1;
}

.table-hover .table-info:hover {
  background-color: #c0d7e8;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c0d7e8;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #ebcbcc;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #da9ea1;
}

.table-hover .table-danger:hover {
  background-color: #e4b9ba;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #e4b9ba;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfd;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fcfcfc;
}

.table-hover .table-light:hover {
  background-color: #f0f0f0;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #f0f0f0;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(27, 27, 27, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(14, 14, 14, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(14, 14, 14, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #989898;
  border-color: #e3e3e3;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.75em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #639bc6;
  outline: 1px solid #639bc6;
  box-shadow: none;
}

.form-control::-moz-placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.form-control::placeholder {
  color: #9a9a9a;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fff;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.75;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.1875rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1b1b1b;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.1875rem;
  line-height: 1.5;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #9a9a9a;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #8bab5f;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #212529;
  background-color: rgba(139, 171, 95, 0.9);
}

.form-row > .col > .valid-tooltip,
.form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #8bab5f;
  padding-right: calc(1.75em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%238bab5f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4375em + 0.1875rem) center;
  background-size: calc(0.875em + 0.375rem) calc(0.875em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #8bab5f;
  box-shadow: 0 0 0 0.2rem rgba(139, 171, 95, 0.25);
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.75em + 0.75rem);
  background-position: top calc(0.4375em + 0.1875rem) right calc(0.4375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #8bab5f;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%238bab5f' 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") center right 1.75rem/calc(0.875em + 0.375rem) calc(0.875em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #8bab5f;
  box-shadow: 0 0 0 0.2rem rgba(139, 171, 95, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #8bab5f;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #8bab5f;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #8bab5f;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #a3bd80;
  background-color: #a3bd80;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(139, 171, 95, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #8bab5f;
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #8bab5f;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #8bab5f;
  box-shadow: 0 0 0 0.2rem rgba(139, 171, 95, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #b8454a;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #fff;
  background-color: rgba(184, 69, 74, 0.9);
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #b8454a;
  padding-right: calc(1.75em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23b8454a' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23b8454a' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4375em + 0.1875rem) center;
  background-size: calc(0.875em + 0.375rem) calc(0.875em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #b8454a;
  box-shadow: 0 0 0 0.2rem rgba(184, 69, 74, 0.25);
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.75em + 0.75rem);
  background-position: top calc(0.4375em + 0.1875rem) right calc(0.4375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #b8454a;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23b8454a' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23b8454a' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.875em + 0.375rem) calc(0.875em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #b8454a;
  box-shadow: 0 0 0 0.2rem rgba(184, 69, 74, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #b8454a;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #b8454a;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #b8454a;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #c7696d;
  background-color: #c7696d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(184, 69, 74, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #b8454a;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #b8454a;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #b8454a;
  box-shadow: 0 0 0 0.2rem rgba(184, 69, 74, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 300;
  color: #1b1b1b;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #1b1b1b;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.btn-primary:hover {
  color: #fff;
  background-color: #080808;
  border-color: #020202;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #080808;
  border-color: #020202;
  box-shadow: 0 0 0 0 rgba(61, 61, 61, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #020202;
  border-color: black;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(61, 61, 61, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #212529;
  background-color: #ececec;
  border-color: #e6e6e6;
  box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #dfdfdf;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #8bab5f;
  border-color: #8bab5f;
}

.btn-success:hover {
  color: #fff;
  background-color: #77954e;
  border-color: #718d4a;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #77954e;
  border-color: #718d4a;
  box-shadow: 0 0 0 0 rgba(123, 151, 87, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #212529;
  background-color: #8bab5f;
  border-color: #8bab5f;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #718d4a;
  border-color: #6a8546;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(123, 151, 87, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #639bc6;
  border-color: #639bc6;
}

.btn-info:hover {
  color: #fff;
  background-color: #4789bc;
  border-color: #4283b4;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #4789bc;
  border-color: #4283b4;
  box-shadow: 0 0 0 0 rgba(122, 170, 207, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #639bc6;
  border-color: #639bc6;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #4283b4;
  border-color: #3e7cab;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(122, 170, 207, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #b8454a;
  border-color: #b8454a;
}

.btn-danger:hover {
  color: #fff;
  background-color: #9c3b3f;
  border-color: #93373b;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #9c3b3f;
  border-color: #93373b;
  box-shadow: 0 0 0 0 rgba(195, 97, 101, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #b8454a;
  border-color: #b8454a;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #93373b;
  border-color: #8a3437;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(195, 97, 101, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-light:hover {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #e0e0e0;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e6e6e6;
  border-color: #e0e0e0;
  box-shadow: 0 0 0 0 rgba(217, 217, 218, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #e0e0e0;
  border-color: #d9d9d9;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(217, 217, 218, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #1b1b1b;
  border-color: #1b1b1b;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(27, 27, 27, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #1b1b1b;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(27, 27, 27, 0.5);
}

.btn-outline-secondary {
  color: #fff;
  border-color: #fff;
}

.btn-outline-secondary:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #fff;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.btn-outline-success {
  color: #8bab5f;
  border-color: #8bab5f;
}

.btn-outline-success:hover {
  color: #212529;
  background-color: #8bab5f;
  border-color: #8bab5f;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(139, 171, 95, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #8bab5f;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #8bab5f;
  border-color: #8bab5f;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(139, 171, 95, 0.5);
}

.btn-outline-info {
  color: #639bc6;
  border-color: #639bc6;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #639bc6;
  border-color: #639bc6;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(99, 155, 198, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #639bc6;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #639bc6;
  border-color: #639bc6;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(99, 155, 198, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #b8454a;
  border-color: #b8454a;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #b8454a;
  border-color: #b8454a;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(184, 69, 74, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #b8454a;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #b8454a;
  border-color: #b8454a;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(184, 69, 74, 0.5);
}

.btn-outline-light {
  color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(249, 249, 249, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f9f9f9;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f9f9f9;
  border-color: #f9f9f9;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(249, 249, 249, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 300;
  color: #1b1b1b;
  text-decoration: none;
}

.btn-link:hover {
  color: #1b1b1b;
  text-decoration: underline;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #9a9a9a;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.1875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: 0;
  line-height: 1.25;
  color: #1b1b1b;
  background-color: #fff;
  border: 0 solid #e3e3e3;
}

.page-link:hover {
  z-index: 2;
  color: #fff;
  text-decoration: none;
  background-color: #8bab5f;
  border-color: #e3e3e3;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

.page-item.disabled .page-link {
  color: #9a9a9a;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #e3e3e3;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.1875rem;
  line-height: 1.5;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

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

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
}

.badge-primary {
  color: #fff;
  background-color: #1b1b1b;
}

a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #020202;
}

a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(27, 27, 27, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #fff;
}

a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #212529;
  background-color: #e6e6e6;
}

a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.badge-success {
  color: #212529;
  background-color: #8bab5f;
}

a.badge-success:hover,
a.badge-success:focus {
  color: #212529;
  background-color: #718d4a;
}

a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(139, 171, 95, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #639bc6;
}

a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #4283b4;
}

a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(99, 155, 198, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #b8454a;
}

a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #93373b;
}

a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(184, 69, 74, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f9f9f9;
}

a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #e0e0e0;
}

a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(249, 249, 249, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.modal-open {
  overflow: hidden;
}

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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(27, 27, 27, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #1b1b1b;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 0 solid transparent;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 0 solid transparent;
}

.modal-footer > * {
  margin: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #1b1b1b !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #020202 !important;
}

.bg-secondary {
  background-color: #fff !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #e6e6e6 !important;
}

.bg-success {
  background-color: #8bab5f !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #718d4a !important;
}

.bg-info {
  background-color: #639bc6 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #4283b4 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #b8454a !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #93373b !important;
}

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

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #e0e0e0 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #e3e3e3 !important;
}

.border-top {
  border-top: 1px solid #e3e3e3 !important;
}

.border-right {
  border-right: 1px solid #e3e3e3 !important;
}

.border-bottom {
  border-bottom: 1px solid #e3e3e3 !important;
}

.border-left {
  border-left: 1px solid #e3e3e3 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #1b1b1b !important;
}

.border-secondary {
  border-color: #fff !important;
}

.border-success {
  border-color: #8bab5f !important;
}

.border-info {
  border-color: #639bc6 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #b8454a !important;
}

.border-light {
  border-color: #f9f9f9 !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

.d-inline-block {
  display: inline-block !important;
}

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

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

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

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

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

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

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

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

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

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

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

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

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

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

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

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

  .float-xl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(27, 27, 27, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(27, 27, 27, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(27, 27, 27, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 10px !important;
}

.mt-1,
.my-1 {
  margin-top: 10px !important;
}

.mr-1,
.mx-1 {
  margin-right: 10px !important;
}

.mb-1,
.my-1 {
  margin-bottom: 10px !important;
}

.ml-1,
.mx-1 {
  margin-left: 10px !important;
}

.m-2 {
  margin: 20px !important;
}

.mt-2,
.my-2 {
  margin-top: 20px !important;
}

.mr-2,
.mx-2 {
  margin-right: 20px !important;
}

.mb-2,
.my-2 {
  margin-bottom: 20px !important;
}

.ml-2,
.mx-2 {
  margin-left: 20px !important;
}

.m-3 {
  margin: 30px !important;
}

.mt-3,
.my-3 {
  margin-top: 30px !important;
}

.mr-3,
.mx-3 {
  margin-right: 30px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 30px !important;
}

.ml-3,
.mx-3 {
  margin-left: 30px !important;
}

.m-4 {
  margin: 40px !important;
}

.mt-4,
.my-4 {
  margin-top: 40px !important;
}

.mr-4,
.mx-4 {
  margin-right: 40px !important;
}

.mb-4,
.my-4 {
  margin-bottom: 40px !important;
}

.ml-4,
.mx-4 {
  margin-left: 40px !important;
}

.m-5 {
  margin: 50px !important;
}

.mt-5,
.my-5 {
  margin-top: 50px !important;
}

.mr-5,
.mx-5 {
  margin-right: 50px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 50px !important;
}

.ml-5,
.mx-5 {
  margin-left: 50px !important;
}

.m-6 {
  margin: 60px !important;
}

.mt-6,
.my-6 {
  margin-top: 60px !important;
}

.mr-6,
.mx-6 {
  margin-right: 60px !important;
}

.mb-6,
.my-6 {
  margin-bottom: 60px !important;
}

.ml-6,
.mx-6 {
  margin-left: 60px !important;
}

.m-7 {
  margin: 70px !important;
}

.mt-7,
.my-7 {
  margin-top: 70px !important;
}

.mr-7,
.mx-7 {
  margin-right: 70px !important;
}

.mb-7,
.my-7 {
  margin-bottom: 70px !important;
}

.ml-7,
.mx-7 {
  margin-left: 70px !important;
}

.m-8 {
  margin: 80px !important;
}

.mt-8,
.my-8 {
  margin-top: 80px !important;
}

.mr-8,
.mx-8 {
  margin-right: 80px !important;
}

.mb-8,
.my-8 {
  margin-bottom: 80px !important;
}

.ml-8,
.mx-8 {
  margin-left: 80px !important;
}

.m-9 {
  margin: 90px !important;
}

.mt-9,
.my-9 {
  margin-top: 90px !important;
}

.mr-9,
.mx-9 {
  margin-right: 90px !important;
}

.mb-9,
.my-9 {
  margin-bottom: 90px !important;
}

.ml-9,
.mx-9 {
  margin-left: 90px !important;
}

.m-10 {
  margin: 100px !important;
}

.mt-10,
.my-10 {
  margin-top: 100px !important;
}

.mr-10,
.mx-10 {
  margin-right: 100px !important;
}

.mb-10,
.my-10 {
  margin-bottom: 100px !important;
}

.ml-10,
.mx-10 {
  margin-left: 100px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 10px !important;
}

.pt-1,
.py-1 {
  padding-top: 10px !important;
}

.pr-1,
.px-1 {
  padding-right: 10px !important;
}

.pb-1,
.py-1 {
  padding-bottom: 10px !important;
}

.pl-1,
.px-1 {
  padding-left: 10px !important;
}

.p-2 {
  padding: 20px !important;
}

.pt-2,
.py-2 {
  padding-top: 20px !important;
}

.pr-2,
.px-2 {
  padding-right: 20px !important;
}

.pb-2,
.py-2 {
  padding-bottom: 20px !important;
}

.pl-2,
.px-2 {
  padding-left: 20px !important;
}

.p-3 {
  padding: 30px !important;
}

.pt-3,
.py-3 {
  padding-top: 30px !important;
}

.pr-3,
.px-3 {
  padding-right: 30px !important;
}

.pb-3,
.py-3 {
  padding-bottom: 30px !important;
}

.pl-3,
.px-3 {
  padding-left: 30px !important;
}

.p-4 {
  padding: 40px !important;
}

.pt-4,
.py-4 {
  padding-top: 40px !important;
}

.pr-4,
.px-4 {
  padding-right: 40px !important;
}

.pb-4,
.py-4 {
  padding-bottom: 40px !important;
}

.pl-4,
.px-4 {
  padding-left: 40px !important;
}

.p-5 {
  padding: 50px !important;
}

.pt-5,
.py-5 {
  padding-top: 50px !important;
}

.pr-5,
.px-5 {
  padding-right: 50px !important;
}

.pb-5,
.welcome:not(.logged-in) .teaser-it,
.py-5 {
  padding-bottom: 50px !important;
}

.pl-5,
.px-5 {
  padding-left: 50px !important;
}

.p-6 {
  padding: 60px !important;
}

.pt-6,
.py-6 {
  padding-top: 60px !important;
}

.pr-6,
.px-6 {
  padding-right: 60px !important;
}

.pb-6,
.py-6 {
  padding-bottom: 60px !important;
}

.pl-6,
.px-6 {
  padding-left: 60px !important;
}

.p-7 {
  padding: 70px !important;
}

.pt-7,
.py-7 {
  padding-top: 70px !important;
}

.pr-7,
.px-7 {
  padding-right: 70px !important;
}

.pb-7,
.py-7 {
  padding-bottom: 70px !important;
}

.pl-7,
.px-7 {
  padding-left: 70px !important;
}

.p-8 {
  padding: 80px !important;
}

.pt-8,
.py-8 {
  padding-top: 80px !important;
}

.pr-8,
.px-8 {
  padding-right: 80px !important;
}

.pb-8,
.py-8 {
  padding-bottom: 80px !important;
}

.pl-8,
.px-8 {
  padding-left: 80px !important;
}

.p-9 {
  padding: 90px !important;
}

.pt-9,
.py-9 {
  padding-top: 90px !important;
}

.pr-9,
.px-9 {
  padding-right: 90px !important;
}

.pb-9,
.py-9 {
  padding-bottom: 90px !important;
}

.pl-9,
.px-9 {
  padding-left: 90px !important;
}

.p-10 {
  padding: 100px !important;
}

.pt-10,
.py-10 {
  padding-top: 100px !important;
}

.pr-10,
.px-10 {
  padding-right: 100px !important;
}

.pb-10,
.py-10 {
  padding-bottom: 100px !important;
}

.pl-10,
.px-10 {
  padding-left: 100px !important;
}

.m-n1 {
  margin: -10px !important;
}

.mt-n1,
.my-n1 {
  margin-top: -10px !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -10px !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -10px !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -10px !important;
}

.m-n2 {
  margin: -20px !important;
}

.mt-n2,
.my-n2 {
  margin-top: -20px !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -20px !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -20px !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -20px !important;
}

.m-n3 {
  margin: -30px !important;
}

.mt-n3,
.my-n3 {
  margin-top: -30px !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -30px !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -30px !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -30px !important;
}

.m-n4 {
  margin: -40px !important;
}

.mt-n4,
.my-n4 {
  margin-top: -40px !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -40px !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -40px !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -40px !important;
}

.m-n5 {
  margin: -50px !important;
}

.mt-n5,
.my-n5 {
  margin-top: -50px !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -50px !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -50px !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -50px !important;
}

.m-n6 {
  margin: -60px !important;
}

.mt-n6,
.my-n6 {
  margin-top: -60px !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -60px !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -60px !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -60px !important;
}

.m-n7 {
  margin: -70px !important;
}

.mt-n7,
.my-n7 {
  margin-top: -70px !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -70px !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -70px !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -70px !important;
}

.m-n8 {
  margin: -80px !important;
}

.mt-n8,
.my-n8 {
  margin-top: -80px !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -80px !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -80px !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -80px !important;
}

.m-n9 {
  margin: -90px !important;
}

.mt-n9,
.my-n9 {
  margin-top: -90px !important;
}

.mr-n9,
.mx-n9 {
  margin-right: -90px !important;
}

.mb-n9,
.my-n9 {
  margin-bottom: -90px !important;
}

.ml-n9,
.mx-n9 {
  margin-left: -90px !important;
}

.m-n10 {
  margin: -100px !important;
}

.mt-n10,
.my-n10 {
  margin-top: -100px !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -100px !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -100px !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -100px !important;
}

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

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 10px !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 10px !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 10px !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 10px !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 10px !important;
  }

  .m-sm-2 {
    margin: 20px !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 20px !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 20px !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 20px !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 20px !important;
  }

  .m-sm-3 {
    margin: 30px !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 30px !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 30px !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 30px !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 30px !important;
  }

  .m-sm-4 {
    margin: 40px !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 40px !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 40px !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 40px !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 40px !important;
  }

  .m-sm-5 {
    margin: 50px !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 50px !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 50px !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 50px !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 50px !important;
  }

  .m-sm-6 {
    margin: 60px !important;
  }

  .mt-sm-6,
  .my-sm-6 {
    margin-top: 60px !important;
  }

  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 60px !important;
  }

  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 60px !important;
  }

  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 60px !important;
  }

  .m-sm-7 {
    margin: 70px !important;
  }

  .mt-sm-7,
  .my-sm-7 {
    margin-top: 70px !important;
  }

  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 70px !important;
  }

  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 70px !important;
  }

  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 70px !important;
  }

  .m-sm-8 {
    margin: 80px !important;
  }

  .mt-sm-8,
  .my-sm-8 {
    margin-top: 80px !important;
  }

  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 80px !important;
  }

  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 80px !important;
  }

  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 80px !important;
  }

  .m-sm-9 {
    margin: 90px !important;
  }

  .mt-sm-9,
  .my-sm-9 {
    margin-top: 90px !important;
  }

  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 90px !important;
  }

  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 90px !important;
  }

  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 90px !important;
  }

  .m-sm-10 {
    margin: 100px !important;
  }

  .mt-sm-10,
  .my-sm-10 {
    margin-top: 100px !important;
  }

  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 100px !important;
  }

  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 100px !important;
  }

  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 100px !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 10px !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 10px !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 10px !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 10px !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 10px !important;
  }

  .p-sm-2 {
    padding: 20px !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 20px !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 20px !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 20px !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 20px !important;
  }

  .p-sm-3 {
    padding: 30px !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 30px !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 30px !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 30px !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 30px !important;
  }

  .p-sm-4 {
    padding: 40px !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 40px !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 40px !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 40px !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 40px !important;
  }

  .p-sm-5 {
    padding: 50px !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 50px !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 50px !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 50px !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 50px !important;
  }

  .p-sm-6 {
    padding: 60px !important;
  }

  .pt-sm-6,
  .py-sm-6 {
    padding-top: 60px !important;
  }

  .pr-sm-6,
  .px-sm-6 {
    padding-right: 60px !important;
  }

  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 60px !important;
  }

  .pl-sm-6,
  .px-sm-6 {
    padding-left: 60px !important;
  }

  .p-sm-7 {
    padding: 70px !important;
  }

  .pt-sm-7,
  .py-sm-7 {
    padding-top: 70px !important;
  }

  .pr-sm-7,
  .px-sm-7 {
    padding-right: 70px !important;
  }

  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 70px !important;
  }

  .pl-sm-7,
  .px-sm-7 {
    padding-left: 70px !important;
  }

  .p-sm-8 {
    padding: 80px !important;
  }

  .pt-sm-8,
  .py-sm-8 {
    padding-top: 80px !important;
  }

  .pr-sm-8,
  .px-sm-8 {
    padding-right: 80px !important;
  }

  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 80px !important;
  }

  .pl-sm-8,
  .px-sm-8 {
    padding-left: 80px !important;
  }

  .p-sm-9 {
    padding: 90px !important;
  }

  .pt-sm-9,
  .py-sm-9 {
    padding-top: 90px !important;
  }

  .pr-sm-9,
  .px-sm-9 {
    padding-right: 90px !important;
  }

  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 90px !important;
  }

  .pl-sm-9,
  .px-sm-9 {
    padding-left: 90px !important;
  }

  .p-sm-10 {
    padding: 100px !important;
  }

  .pt-sm-10,
  .py-sm-10 {
    padding-top: 100px !important;
  }

  .pr-sm-10,
  .px-sm-10 {
    padding-right: 100px !important;
  }

  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 100px !important;
  }

  .pl-sm-10,
  .px-sm-10 {
    padding-left: 100px !important;
  }

  .m-sm-n1 {
    margin: -10px !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -10px !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -10px !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -10px !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -10px !important;
  }

  .m-sm-n2 {
    margin: -20px !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -20px !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -20px !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -20px !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -20px !important;
  }

  .m-sm-n3 {
    margin: -30px !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -30px !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -30px !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -30px !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -30px !important;
  }

  .m-sm-n4 {
    margin: -40px !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -40px !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -40px !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -40px !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -40px !important;
  }

  .m-sm-n5 {
    margin: -50px !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -50px !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -50px !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -50px !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -50px !important;
  }

  .m-sm-n6 {
    margin: -60px !important;
  }

  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -60px !important;
  }

  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -60px !important;
  }

  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -60px !important;
  }

  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -60px !important;
  }

  .m-sm-n7 {
    margin: -70px !important;
  }

  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -70px !important;
  }

  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -70px !important;
  }

  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -70px !important;
  }

  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -70px !important;
  }

  .m-sm-n8 {
    margin: -80px !important;
  }

  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -80px !important;
  }

  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -80px !important;
  }

  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -80px !important;
  }

  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -80px !important;
  }

  .m-sm-n9 {
    margin: -90px !important;
  }

  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -90px !important;
  }

  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -90px !important;
  }

  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -90px !important;
  }

  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -90px !important;
  }

  .m-sm-n10 {
    margin: -100px !important;
  }

  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -100px !important;
  }

  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -100px !important;
  }

  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -100px !important;
  }

  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -100px !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 10px !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 10px !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 10px !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 10px !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 10px !important;
  }

  .m-md-2 {
    margin: 20px !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 20px !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 20px !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 20px !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 20px !important;
  }

  .m-md-3 {
    margin: 30px !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 30px !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 30px !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 30px !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 30px !important;
  }

  .m-md-4 {
    margin: 40px !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 40px !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 40px !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 40px !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 40px !important;
  }

  .m-md-5 {
    margin: 50px !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 50px !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 50px !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 50px !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 50px !important;
  }

  .m-md-6 {
    margin: 60px !important;
  }

  .mt-md-6,
  .my-md-6 {
    margin-top: 60px !important;
  }

  .mr-md-6,
  .mx-md-6 {
    margin-right: 60px !important;
  }

  .mb-md-6,
  .my-md-6 {
    margin-bottom: 60px !important;
  }

  .ml-md-6,
  .mx-md-6 {
    margin-left: 60px !important;
  }

  .m-md-7 {
    margin: 70px !important;
  }

  .mt-md-7,
  .my-md-7 {
    margin-top: 70px !important;
  }

  .mr-md-7,
  .mx-md-7 {
    margin-right: 70px !important;
  }

  .mb-md-7,
  .my-md-7 {
    margin-bottom: 70px !important;
  }

  .ml-md-7,
  .mx-md-7 {
    margin-left: 70px !important;
  }

  .m-md-8 {
    margin: 80px !important;
  }

  .mt-md-8,
  .my-md-8 {
    margin-top: 80px !important;
  }

  .mr-md-8,
  .mx-md-8 {
    margin-right: 80px !important;
  }

  .mb-md-8,
  .my-md-8 {
    margin-bottom: 80px !important;
  }

  .ml-md-8,
  .mx-md-8 {
    margin-left: 80px !important;
  }

  .m-md-9 {
    margin: 90px !important;
  }

  .mt-md-9,
  .my-md-9 {
    margin-top: 90px !important;
  }

  .mr-md-9,
  .mx-md-9 {
    margin-right: 90px !important;
  }

  .mb-md-9,
  .my-md-9 {
    margin-bottom: 90px !important;
  }

  .ml-md-9,
  .mx-md-9 {
    margin-left: 90px !important;
  }

  .m-md-10 {
    margin: 100px !important;
  }

  .mt-md-10,
  .my-md-10 {
    margin-top: 100px !important;
  }

  .mr-md-10,
  .mx-md-10 {
    margin-right: 100px !important;
  }

  .mb-md-10,
  .my-md-10 {
    margin-bottom: 100px !important;
  }

  .ml-md-10,
  .mx-md-10 {
    margin-left: 100px !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 10px !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 10px !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 10px !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 10px !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 10px !important;
  }

  .p-md-2 {
    padding: 20px !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 20px !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 20px !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 20px !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 20px !important;
  }

  .p-md-3 {
    padding: 30px !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 30px !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 30px !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 30px !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 30px !important;
  }

  .p-md-4 {
    padding: 40px !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 40px !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 40px !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 40px !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 40px !important;
  }

  .p-md-5 {
    padding: 50px !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 50px !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 50px !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 50px !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 50px !important;
  }

  .p-md-6 {
    padding: 60px !important;
  }

  .pt-md-6,
  .py-md-6 {
    padding-top: 60px !important;
  }

  .pr-md-6,
  .px-md-6 {
    padding-right: 60px !important;
  }

  .pb-md-6,
  .py-md-6 {
    padding-bottom: 60px !important;
  }

  .pl-md-6,
  .px-md-6 {
    padding-left: 60px !important;
  }

  .p-md-7 {
    padding: 70px !important;
  }

  .pt-md-7,
  .py-md-7 {
    padding-top: 70px !important;
  }

  .pr-md-7,
  .px-md-7 {
    padding-right: 70px !important;
  }

  .pb-md-7,
  .py-md-7 {
    padding-bottom: 70px !important;
  }

  .pl-md-7,
  .px-md-7 {
    padding-left: 70px !important;
  }

  .p-md-8 {
    padding: 80px !important;
  }

  .pt-md-8,
  .py-md-8 {
    padding-top: 80px !important;
  }

  .pr-md-8,
  .px-md-8 {
    padding-right: 80px !important;
  }

  .pb-md-8,
  .py-md-8 {
    padding-bottom: 80px !important;
  }

  .pl-md-8,
  .px-md-8 {
    padding-left: 80px !important;
  }

  .p-md-9 {
    padding: 90px !important;
  }

  .pt-md-9,
  .py-md-9 {
    padding-top: 90px !important;
  }

  .pr-md-9,
  .px-md-9 {
    padding-right: 90px !important;
  }

  .pb-md-9,
  .py-md-9 {
    padding-bottom: 90px !important;
  }

  .pl-md-9,
  .px-md-9 {
    padding-left: 90px !important;
  }

  .p-md-10 {
    padding: 100px !important;
  }

  .pt-md-10,
  .py-md-10 {
    padding-top: 100px !important;
  }

  .pr-md-10,
  .px-md-10 {
    padding-right: 100px !important;
  }

  .pb-md-10,
  .py-md-10 {
    padding-bottom: 100px !important;
  }

  .pl-md-10,
  .px-md-10 {
    padding-left: 100px !important;
  }

  .m-md-n1 {
    margin: -10px !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -10px !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -10px !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -10px !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -10px !important;
  }

  .m-md-n2 {
    margin: -20px !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -20px !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -20px !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -20px !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -20px !important;
  }

  .m-md-n3 {
    margin: -30px !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -30px !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -30px !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -30px !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -30px !important;
  }

  .m-md-n4 {
    margin: -40px !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -40px !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -40px !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -40px !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -40px !important;
  }

  .m-md-n5 {
    margin: -50px !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -50px !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -50px !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -50px !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -50px !important;
  }

  .m-md-n6 {
    margin: -60px !important;
  }

  .mt-md-n6,
  .my-md-n6 {
    margin-top: -60px !important;
  }

  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -60px !important;
  }

  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -60px !important;
  }

  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -60px !important;
  }

  .m-md-n7 {
    margin: -70px !important;
  }

  .mt-md-n7,
  .my-md-n7 {
    margin-top: -70px !important;
  }

  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -70px !important;
  }

  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -70px !important;
  }

  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -70px !important;
  }

  .m-md-n8 {
    margin: -80px !important;
  }

  .mt-md-n8,
  .my-md-n8 {
    margin-top: -80px !important;
  }

  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -80px !important;
  }

  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -80px !important;
  }

  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -80px !important;
  }

  .m-md-n9 {
    margin: -90px !important;
  }

  .mt-md-n9,
  .my-md-n9 {
    margin-top: -90px !important;
  }

  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -90px !important;
  }

  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -90px !important;
  }

  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -90px !important;
  }

  .m-md-n10 {
    margin: -100px !important;
  }

  .mt-md-n10,
  .my-md-n10 {
    margin-top: -100px !important;
  }

  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -100px !important;
  }

  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -100px !important;
  }

  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -100px !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 10px !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 10px !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 10px !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 10px !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 10px !important;
  }

  .m-lg-2 {
    margin: 20px !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 20px !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 20px !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 20px !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 20px !important;
  }

  .m-lg-3 {
    margin: 30px !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 30px !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 30px !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 30px !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 30px !important;
  }

  .m-lg-4 {
    margin: 40px !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 40px !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 40px !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 40px !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 40px !important;
  }

  .m-lg-5 {
    margin: 50px !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 50px !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 50px !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 50px !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 50px !important;
  }

  .m-lg-6 {
    margin: 60px !important;
  }

  .mt-lg-6,
  .my-lg-6 {
    margin-top: 60px !important;
  }

  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 60px !important;
  }

  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 60px !important;
  }

  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 60px !important;
  }

  .m-lg-7 {
    margin: 70px !important;
  }

  .mt-lg-7,
  .my-lg-7 {
    margin-top: 70px !important;
  }

  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 70px !important;
  }

  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 70px !important;
  }

  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 70px !important;
  }

  .m-lg-8 {
    margin: 80px !important;
  }

  .mt-lg-8,
  .my-lg-8 {
    margin-top: 80px !important;
  }

  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 80px !important;
  }

  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 80px !important;
  }

  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 80px !important;
  }

  .m-lg-9 {
    margin: 90px !important;
  }

  .mt-lg-9,
  .my-lg-9 {
    margin-top: 90px !important;
  }

  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 90px !important;
  }

  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 90px !important;
  }

  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 90px !important;
  }

  .m-lg-10 {
    margin: 100px !important;
  }

  .mt-lg-10,
  .my-lg-10 {
    margin-top: 100px !important;
  }

  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 100px !important;
  }

  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 100px !important;
  }

  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 100px !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 10px !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 10px !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 10px !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 10px !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 10px !important;
  }

  .p-lg-2 {
    padding: 20px !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 20px !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 20px !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 20px !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 20px !important;
  }

  .p-lg-3 {
    padding: 30px !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 30px !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 30px !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 30px !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 30px !important;
  }

  .p-lg-4 {
    padding: 40px !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 40px !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 40px !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 40px !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 40px !important;
  }

  .p-lg-5 {
    padding: 50px !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 50px !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 50px !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 50px !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 50px !important;
  }

  .p-lg-6 {
    padding: 60px !important;
  }

  .pt-lg-6,
  .py-lg-6 {
    padding-top: 60px !important;
  }

  .pr-lg-6,
  .px-lg-6 {
    padding-right: 60px !important;
  }

  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 60px !important;
  }

  .pl-lg-6,
  .px-lg-6 {
    padding-left: 60px !important;
  }

  .p-lg-7 {
    padding: 70px !important;
  }

  .pt-lg-7,
  .py-lg-7 {
    padding-top: 70px !important;
  }

  .pr-lg-7,
  .px-lg-7 {
    padding-right: 70px !important;
  }

  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 70px !important;
  }

  .pl-lg-7,
  .px-lg-7 {
    padding-left: 70px !important;
  }

  .p-lg-8 {
    padding: 80px !important;
  }

  .pt-lg-8,
  .py-lg-8 {
    padding-top: 80px !important;
  }

  .pr-lg-8,
  .px-lg-8 {
    padding-right: 80px !important;
  }

  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 80px !important;
  }

  .pl-lg-8,
  .px-lg-8 {
    padding-left: 80px !important;
  }

  .p-lg-9 {
    padding: 90px !important;
  }

  .pt-lg-9,
  .py-lg-9 {
    padding-top: 90px !important;
  }

  .pr-lg-9,
  .px-lg-9 {
    padding-right: 90px !important;
  }

  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 90px !important;
  }

  .pl-lg-9,
  .px-lg-9 {
    padding-left: 90px !important;
  }

  .p-lg-10 {
    padding: 100px !important;
  }

  .pt-lg-10,
  .py-lg-10 {
    padding-top: 100px !important;
  }

  .pr-lg-10,
  .px-lg-10 {
    padding-right: 100px !important;
  }

  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 100px !important;
  }

  .pl-lg-10,
  .px-lg-10 {
    padding-left: 100px !important;
  }

  .m-lg-n1 {
    margin: -10px !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -10px !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -10px !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -10px !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -10px !important;
  }

  .m-lg-n2 {
    margin: -20px !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -20px !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -20px !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -20px !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -20px !important;
  }

  .m-lg-n3 {
    margin: -30px !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -30px !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -30px !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -30px !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -30px !important;
  }

  .m-lg-n4 {
    margin: -40px !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -40px !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -40px !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -40px !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -40px !important;
  }

  .m-lg-n5 {
    margin: -50px !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -50px !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -50px !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -50px !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -50px !important;
  }

  .m-lg-n6 {
    margin: -60px !important;
  }

  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -60px !important;
  }

  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -60px !important;
  }

  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -60px !important;
  }

  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -60px !important;
  }

  .m-lg-n7 {
    margin: -70px !important;
  }

  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -70px !important;
  }

  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -70px !important;
  }

  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -70px !important;
  }

  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -70px !important;
  }

  .m-lg-n8 {
    margin: -80px !important;
  }

  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -80px !important;
  }

  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -80px !important;
  }

  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -80px !important;
  }

  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -80px !important;
  }

  .m-lg-n9 {
    margin: -90px !important;
  }

  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -90px !important;
  }

  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -90px !important;
  }

  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -90px !important;
  }

  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -90px !important;
  }

  .m-lg-n10 {
    margin: -100px !important;
  }

  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -100px !important;
  }

  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -100px !important;
  }

  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -100px !important;
  }

  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -100px !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 10px !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 10px !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 10px !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 10px !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 10px !important;
  }

  .m-xl-2 {
    margin: 20px !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 20px !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 20px !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 20px !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 20px !important;
  }

  .m-xl-3 {
    margin: 30px !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 30px !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 30px !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 30px !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 30px !important;
  }

  .m-xl-4 {
    margin: 40px !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 40px !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 40px !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 40px !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 40px !important;
  }

  .m-xl-5 {
    margin: 50px !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 50px !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 50px !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 50px !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 50px !important;
  }

  .m-xl-6 {
    margin: 60px !important;
  }

  .mt-xl-6,
  .my-xl-6 {
    margin-top: 60px !important;
  }

  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 60px !important;
  }

  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 60px !important;
  }

  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 60px !important;
  }

  .m-xl-7 {
    margin: 70px !important;
  }

  .mt-xl-7,
  .my-xl-7 {
    margin-top: 70px !important;
  }

  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 70px !important;
  }

  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 70px !important;
  }

  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 70px !important;
  }

  .m-xl-8 {
    margin: 80px !important;
  }

  .mt-xl-8,
  .my-xl-8 {
    margin-top: 80px !important;
  }

  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 80px !important;
  }

  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 80px !important;
  }

  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 80px !important;
  }

  .m-xl-9 {
    margin: 90px !important;
  }

  .mt-xl-9,
  .my-xl-9 {
    margin-top: 90px !important;
  }

  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 90px !important;
  }

  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 90px !important;
  }

  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 90px !important;
  }

  .m-xl-10 {
    margin: 100px !important;
  }

  .mt-xl-10,
  .my-xl-10 {
    margin-top: 100px !important;
  }

  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 100px !important;
  }

  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 100px !important;
  }

  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 100px !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 10px !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 10px !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 10px !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 10px !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 10px !important;
  }

  .p-xl-2 {
    padding: 20px !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 20px !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 20px !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 20px !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 20px !important;
  }

  .p-xl-3 {
    padding: 30px !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 30px !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 30px !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 30px !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 30px !important;
  }

  .p-xl-4 {
    padding: 40px !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 40px !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 40px !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 40px !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 40px !important;
  }

  .p-xl-5 {
    padding: 50px !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 50px !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 50px !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 50px !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 50px !important;
  }

  .p-xl-6 {
    padding: 60px !important;
  }

  .pt-xl-6,
  .py-xl-6 {
    padding-top: 60px !important;
  }

  .pr-xl-6,
  .px-xl-6 {
    padding-right: 60px !important;
  }

  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 60px !important;
  }

  .pl-xl-6,
  .px-xl-6 {
    padding-left: 60px !important;
  }

  .p-xl-7 {
    padding: 70px !important;
  }

  .pt-xl-7,
  .py-xl-7 {
    padding-top: 70px !important;
  }

  .pr-xl-7,
  .px-xl-7 {
    padding-right: 70px !important;
  }

  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 70px !important;
  }

  .pl-xl-7,
  .px-xl-7 {
    padding-left: 70px !important;
  }

  .p-xl-8 {
    padding: 80px !important;
  }

  .pt-xl-8,
  .py-xl-8 {
    padding-top: 80px !important;
  }

  .pr-xl-8,
  .px-xl-8 {
    padding-right: 80px !important;
  }

  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 80px !important;
  }

  .pl-xl-8,
  .px-xl-8 {
    padding-left: 80px !important;
  }

  .p-xl-9 {
    padding: 90px !important;
  }

  .pt-xl-9,
  .py-xl-9 {
    padding-top: 90px !important;
  }

  .pr-xl-9,
  .px-xl-9 {
    padding-right: 90px !important;
  }

  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 90px !important;
  }

  .pl-xl-9,
  .px-xl-9 {
    padding-left: 90px !important;
  }

  .p-xl-10 {
    padding: 100px !important;
  }

  .pt-xl-10,
  .py-xl-10 {
    padding-top: 100px !important;
  }

  .pr-xl-10,
  .px-xl-10 {
    padding-right: 100px !important;
  }

  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 100px !important;
  }

  .pl-xl-10,
  .px-xl-10 {
    padding-left: 100px !important;
  }

  .m-xl-n1 {
    margin: -10px !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -10px !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -10px !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -10px !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -10px !important;
  }

  .m-xl-n2 {
    margin: -20px !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -20px !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -20px !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -20px !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -20px !important;
  }

  .m-xl-n3 {
    margin: -30px !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -30px !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -30px !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -30px !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -30px !important;
  }

  .m-xl-n4 {
    margin: -40px !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -40px !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -40px !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -40px !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -40px !important;
  }

  .m-xl-n5 {
    margin: -50px !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -50px !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -50px !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -50px !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -50px !important;
  }

  .m-xl-n6 {
    margin: -60px !important;
  }

  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -60px !important;
  }

  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -60px !important;
  }

  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -60px !important;
  }

  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -60px !important;
  }

  .m-xl-n7 {
    margin: -70px !important;
  }

  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -70px !important;
  }

  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -70px !important;
  }

  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -70px !important;
  }

  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -70px !important;
  }

  .m-xl-n8 {
    margin: -80px !important;
  }

  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -80px !important;
  }

  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -80px !important;
  }

  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -80px !important;
  }

  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -80px !important;
  }

  .m-xl-n9 {
    margin: -90px !important;
  }

  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -90px !important;
  }

  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -90px !important;
  }

  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -90px !important;
  }

  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -90px !important;
  }

  .m-xl-n10 {
    margin: -100px !important;
  }

  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -100px !important;
  }

  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -100px !important;
  }

  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -100px !important;
  }

  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -100px !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 300 !important;
}

.font-weight-bold {
  font-weight: 800 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #1b1b1b !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: black !important;
}

.text-secondary {
  color: #fff !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #d9d9d9 !important;
}

.text-success {
  color: #8bab5f !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #637c41 !important;
}

.text-info {
  color: #639bc6 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #3b75a1 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #b8454a !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #803034 !important;
}

.text-light {
  color: #f9f9f9 !important;
}

a.text-light:hover,
a.text-light:focus {
  color: lightgray !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #1b1b1b !important;
}

.text-muted {
  color: #9a9a9a !important;
}

.text-black-50 {
  color: rgba(27, 27, 27, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #b5b5b5;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #1b1b1b;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #e3e3e3 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #e3e3e3;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #e3e3e3;
  }
}

.alert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  color: #fff;
  text-align: center;
}

.alert p {
  margin: 0;
}

.add-to-cart-success-message {
  background-color: #4CAF50;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.75;
}

body {
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "National", "Arial", sans-serif;
}

h1,
.h1 {
  font-size: 38px;
  letter-spacing: 0.1px;
  line-height: 34px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 60px;
    letter-spacing: 0.2px;
    line-height: 54px;
  }
}

@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 80px;
    letter-spacing: 0.2px;
    line-height: 68px;
  }
}

h2,
.h2 {
  font-size: 30px;
  letter-spacing: 0.1px;
  line-height: 28px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 39px;
    letter-spacing: 0.2px;
    line-height: 37px;
  }
}

@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 48px;
    letter-spacing: 0.2px;
    line-height: 44px;
  }
}

h3,
.h3 {
  font-size: 30px;
  letter-spacing: 0.1px;
  line-height: 28px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 36px;
    letter-spacing: 0.5px;
    line-height: 32px;
  }
}

h4,
.h4 {
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h4,
  .h4 {
    font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 30px;
  }
}

h5,
.h5 {
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 24px;
    letter-spacing: 0.5px;
    line-height: 25px;
  }
}

.small {
  font-size: 12px;
  font-weight: 300px;
  color: #9a9a9a;
}

.smaller {
  font-size: 15px !important;
  line-height: 150% !important;
  font-weight: 300px !important;
}

p,
.p {
  font-size: 16px;
  line-height: 140%;
  text-transform: none;
}

@media (min-width: 768px) {
  p,
  .p {
    font-size: 18px;
    line-height: 140%;
  }
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: underline;
}

input {
  border: none;
  background: inherit;
}

input:focus {
  outline: none;
}

button {
  border: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: inherit;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.bold {
  font-family: "Folio", "Arial", sans-serif;
  font-weight: 500;
}

hr {
  border: 2px dotted #1b1b1b;
  border-style: none none dotted;
  color: transparent;
  background-color: transparent;
  margin: 0;
  padding: 0;
}

hr.solid {
  border: 1px solid rgba(27, 27, 27, 0.3);
  border-bottom: none;
}

hr.massive {
  border: 3px solid rgba(27, 27, 27, 0.3);
  border-bottom: none;
}

hr.bright {
  border-color: rgba(255, 255, 255, 0.5);
}

.blue-link {
  color: #639bc6;
  font-size: 15px;
  line-height: 23px;
  font-weight: 300;
}

@media (min-width: 576px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
  }
}

.container-full {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.invalid-feedback {
  display: block;
}

.bb-btn-primary {
  background: #1b1b1b;
  color: #fff;
}

.bb-btn-primary:hover {
  background-color: #8bab5f;
  color: #fff;
}

.bb-btn-default {
  background: lightgray;
  color: #1b1b1b;
}

.bb-btn-default:hover {
  background-color: #8bab5f;
  color: #fff;
}

.bb-btn {
  border-radius: 4px;
  font-family: "National", "Arial", sans-serif;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  padding: 17px 37px;
  text-transform: uppercase;
  border: none;
}

.bb-btn:not([href]):not([tabindex]) {
  color: #fff;
}

.bb-btn:hover {
  background-color: #8bab5f;
  color: #fff;
}

.bb-btn-smaller {
  font-size: 16px;
  border-radius: 3px;
  padding: 17px 23px;
  letter-spacing: 0.4px;
}

.bb-btn-small {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 23px;
  text-transform: none;
  font-weight: 300;
  padding: 5px 17px;
  font-family: "Folio", "Arial", sans-serif;
}

.bb-btn-add {
  display: inline-block;
  padding-left: 42px;
  color: #639bc6;
  background: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='%23639BC6' d='M10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.4771525 4.4771525,0 10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 Z M10.9974558,8.9974558 L10.9974558,4.34419959 C10.9974558,3.79191484 10.5497405,3.34419959 9.9974558,3.34419959 C9.44517105,3.34419959 8.9974558,3.79191484 8.9974558,4.34419959 L8.9974558,8.9974558 L4.34419959,8.9974558 C3.79191484,8.9974558 3.34419959,9.44517105 3.34419959,9.9974558 C3.34419959,10.5497405 3.79191484,10.9974558 4.34419959,10.9974558 L8.9974558,10.9974558 L8.9974558,15.650712 C8.9974558,16.2029968 9.44517105,16.650712 9.9974558,16.650712 C10.5497405,16.650712 10.9974558,16.2029968 10.9974558,15.650712 L10.9974558,10.9974558 L15.650712,10.9974558 C16.2029968,10.9974558 16.650712,10.5497405 16.650712,9.9974558 C16.650712,9.44517105 16.2029968,8.9974558 15.650712,8.9974558 L10.9974558,8.9974558 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat left center;
  background-size: 35px 35px;
  line-height: 35px;
}

.bb-btn-add:hover {
  color: #639bc6;
}

.bb-btn-trash {
  background: url("data:image/svg+xml,%3Csvg width='17' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23989898' fill-rule='nonzero'%3E%3Cpath d='M16.5184482 1.7901934h-5.2688514V.888955C11.2495968.3987773 10.8387252 0 10.333741 0H6.6662973c-.5050225 0-.9158559.3987773-.9158559.888955v.9012012H.4815518c-.2548086 0-.4613356.200168-.4613356.447131 0 .2469628.206527.4471308.4613356.4471308h.855054L1.91966 17.3944258C1.9553446 18.2947363 2.7115 19 3.641178 19h9.7177207c.929678 0 1.6858334-.7053008 1.7214415-1.6056113l.583054-14.7100078h.8550541c.254732 0 .4613356-.200168.4613356-.4471309 0-.2468887-.206527-.4470566-.4613356-.4470566zM6.6730743.8942246h3.6538514v.8959316H6.6730743V.8942246zm7.4853221 16.465875c-.0165788.4181484-.367759.7456758-.799536.7456758H3.6411779c-.4317387 0-.7829189-.3275645-.799536-.7457129L2.2599662 2.684418h12.4801442l-.581714 14.6756816z'/%3E%3Cpath d='M5.6907883 6.7379863c-.0048626-.2439941-.2103559-.4385215-.4610676-.4385215h-.009036c-.2546937.0048243-.457277.2088516-.4523761.4557032l.144768 7.2969648c.0048243.2439942.2103941.4385215.4610675.4385215h.009036c.254732-.0048242.4572771-.2087773.4523762-.4557031l-.144768-7.2969649zM8.4999234 6.2994277c-.2547702 0-.4613356.200168-.4613356.4471309v7.2969648c0 .2469258.206527.4471309.4613356.4471309.2548086 0 .4613356-.200168.4613356-.4471309V6.7465586c0-.2469258-.206527-.4471309-.4613356-.4471309zM11.7792005 6.299539c-.2537748-.005455-.465241.1915587-.4701037.4384473l-.144768 7.2969649c-.0049392.2468886.1976442.4508789.4523762.4557031h.009036c.2506351 0 .4562432-.1946016.4610676-.4385215l.144768-7.2969648c.0049009-.2469258-.1976059-.450916-.4523761-.455629z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  width: 17px;
  height: 19px;
  display: inline-block;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn {
  border-radius: 4px;
  font-family: "National", "Arial", sans-serif;
  font-size: 20px;
  line-height: 22px;
  color: #fff;
  background: #1b1b1b;
  letter-spacing: 0;
  text-align: center;
  padding: 17px 37px;
  text-transform: uppercase;
  border: none;
}

.btn:not([href]):not([tabindex]) {
  color: #fff;
}

.btn:hover {
  background-color: #8bab5f;
  color: #fff;
}

.btn-smaller {
  font-size: 16px;
  border-radius: 3px;
  padding: 17px 23px;
  letter-spacing: 0.4px;
}

.btn-small {
  font-size: 15px;
  letter-spacing: 0;
  line-height: 23px;
  text-transform: none;
  font-weight: 300;
  padding: 5px 17px;
  font-family: "Folio", "Arial", sans-serif;
}

.btn-add {
  display: inline-block;
  padding-left: 42px;
  color: #639bc6;
  background: url("data:image/svg+xml,%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='%23639BC6' d='M10,20 C4.4771525,20 0,15.5228475 0,10 C0,4.4771525 4.4771525,0 10,0 C15.5228475,0 20,4.4771525 20,10 C20,15.5228475 15.5228475,20 10,20 Z M10.9974558,8.9974558 L10.9974558,4.34419959 C10.9974558,3.79191484 10.5497405,3.34419959 9.9974558,3.34419959 C9.44517105,3.34419959 8.9974558,3.79191484 8.9974558,4.34419959 L8.9974558,8.9974558 L4.34419959,8.9974558 C3.79191484,8.9974558 3.34419959,9.44517105 3.34419959,9.9974558 C3.34419959,10.5497405 3.79191484,10.9974558 4.34419959,10.9974558 L8.9974558,10.9974558 L8.9974558,15.650712 C8.9974558,16.2029968 9.44517105,16.650712 9.9974558,16.650712 C10.5497405,16.650712 10.9974558,16.2029968 10.9974558,15.650712 L10.9974558,10.9974558 L15.650712,10.9974558 C16.2029968,10.9974558 16.650712,10.5497405 16.650712,9.9974558 C16.650712,9.44517105 16.2029968,8.9974558 15.650712,8.9974558 L10.9974558,8.9974558 Z'%3E%3C/path%3E%3C/svg%3E") no-repeat left center;
  background-size: 35px 35px;
  line-height: 35px;
}

.btn-add:hover {
  color: #639bc6;
}

.btn-trash {
  background: url("data:image/svg+xml,%3Csvg width='17' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23989898' fill-rule='nonzero'%3E%3Cpath d='M16.5184482 1.7901934h-5.2688514V.888955C11.2495968.3987773 10.8387252 0 10.333741 0H6.6662973c-.5050225 0-.9158559.3987773-.9158559.888955v.9012012H.4815518c-.2548086 0-.4613356.200168-.4613356.447131 0 .2469628.206527.4471308.4613356.4471308h.855054L1.91966 17.3944258C1.9553446 18.2947363 2.7115 19 3.641178 19h9.7177207c.929678 0 1.6858334-.7053008 1.7214415-1.6056113l.583054-14.7100078h.8550541c.254732 0 .4613356-.200168.4613356-.4471309 0-.2468887-.206527-.4470566-.4613356-.4470566zM6.6730743.8942246h3.6538514v.8959316H6.6730743V.8942246zm7.4853221 16.465875c-.0165788.4181484-.367759.7456758-.799536.7456758H3.6411779c-.4317387 0-.7829189-.3275645-.799536-.7457129L2.2599662 2.684418h12.4801442l-.581714 14.6756816z'/%3E%3Cpath d='M5.6907883 6.7379863c-.0048626-.2439941-.2103559-.4385215-.4610676-.4385215h-.009036c-.2546937.0048243-.457277.2088516-.4523761.4557032l.144768 7.2969648c.0048243.2439942.2103941.4385215.4610675.4385215h.009036c.254732-.0048242.4572771-.2087773.4523762-.4557031l-.144768-7.2969649zM8.4999234 6.2994277c-.2547702 0-.4613356.200168-.4613356.4471309v7.2969648c0 .2469258.206527.4471309.4613356.4471309.2548086 0 .4613356-.200168.4613356-.4471309V6.7465586c0-.2469258-.206527-.4471309-.4613356-.4471309zM11.7792005 6.299539c-.2537748-.005455-.465241.1915587-.4701037.4384473l-.144768 7.2969649c-.0049392.2468886.1976442.4508789.4523762.4557031h.009036c.2506351 0 .4562432-.1946016.4610676-.4385215l.144768-7.2969648c.0049009-.2469258-.1976059-.450916-.4523761-.455629z'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  width: 17px;
  height: 19px;
  display: inline-block;
  margin-top: 2px;
  flex-shrink: 0;
}

.card {
  background: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  padding: 26px;
}

.card.bg-transparent {
  box-shadow: none;
}

.cart-summary p,
.cart-summary hr {
  margin-bottom: 12px;
}

.cart-delivery-total .btn {
  margin-top: 7px;
}

.price-fixed-width {
  min-width: 85px;
  display: inline-block;
}

.category-filter {
  position: fixed;
  z-index: 256;
  top: 0;
  right: 0;
  width: 330px;
  height: 100%;
  background-color: #fff;
  padding: 30px 5px 28px 20px;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.category-filter.active {
  transform: translateX(0);
}

.category-filter-close {
  position: absolute;
  top: 36px;
  right: 20px;
  cursor: pointer;
}

.category-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-filter-list li {
  border-top: 1px solid #f7f4f2;
  padding: 0;
  margin: 0;
  position: relative;
  margin-right: 12px;
}

.category-filter-list li:last-child {
  border-bottom: 1px solid #f7f4f2;
}

.category-filter-list li:hover {
  background-color: #f7f4f2;
}

.category-filter label {
  padding: 13px 16px 13px 50px;
  margin: 0;
}

.category-filter .checkbox + label:before {
  left: 16px;
  top: 11px;
}

@media (min-width: 992px) {
  .category-producer-teaser {
    position: sticky;
    top: 2rem;
  }
}

.category-producer-logo {
  width: 100px;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
  border: solid 2px #fff;
}

.category-producer-guetesiegel {
  width: 52px;
  height: auto;
}

.category-producer-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.category-producer-facts-col-icon {
  flex: 0 1 25px;
}

.category-producer-facts-col-label {
  margin: 1px 0 10px 10px;
  font-size: 15px;
  line-height: 18px;
}

.filter-select {
  background: #1b1b1b;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 3px;
  padding: 0 16px;
  outline: none;
}

.filter-button {
  background: #1b1b1b;
  color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  height: 56px;
  border-radius: 3px;
  padding: 0 16px;
  outline: none;
  text-align: left;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

.filter-button:hover {
  color: #fff;
  text-decoration: none;
}

.filter-button-count {
  font-weight: 500;
  display: inline-block;
  background: #fff;
  color: #1b1b1b;
  border-radius: 50%;
  font-size: 12px;
  line-height: 24px;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  text-align: center;
}

.filter-icon {
  background-position: right 16px center;
  background-repeat: no-repeat;
  padding-right: 50px;
  text-overflow: ellipsis;
}

.filter-icon-sort {
  background-image: url(/images/icon-sort.svg?c80a819a4f3fb5bf467a0a23f86a9927);
  background-size: 24px 23px;
}

.filter-icon-filter {
  background-image: url(/images/icon-filter.svg?919db2525bace866146f8c8e0fe09f21);
  background-size: 24px 24px;
}

.collapse:not(.collapse-no-border) {
  border-bottom: 1px solid #1b1b1b;
}

.collapse:not(.collapse-no-border):first-of-type {
  border-top: 1px solid #1b1b1b;
}

.collapse.is-collapsed .collapse-content {
  height: 0;
}

.collapse-content {
  overflow: hidden;
}

.collapse-content-inner {
  padding: 0 0 1.3rem 0;
}

.collapse-trigger {
  padding: 1.3rem 2.4rem 1.3rem 0;
  margin: 0;
  cursor: pointer;
  background: url(/images/icon-arr-up.svg?4b6132439da37bbc73d5dd768f441436) center right 3px no-repeat;
  background-size: 22px 12px;
}

.collapse-trigger:hover {
  background: url(/images/icon-arr-up.svg?4b6132439da37bbc73d5dd768f441436) center right 3px no-repeat;
  background-size: 22px 12px;
}

.collapse-trigger-small {
  background-position: center center;
  padding: 0;
  width: 11px;
  height: 6px;
  flex: 0 0 11px;
  background-size: 11px 6px;
  margin-bottom: 1rem;
}

.collapse-trigger-small:hover {
  background-position: center center;
  background-size: 11px 6px;
}

.collapse.is-collapsed .collapse-trigger {
  background-image: url(/images/icon-arr-down.svg?828f8d606e34f68639bcb13724afe229);
}

.col-trash {
  flex: 0 0 17px;
}

.col-product-img {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .col-product-img {
    flex: 0 0 204px;
  }
}

.col-order-quantity {
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .col-order-quantity {
    flex: 0 0 154px;
  }
}

@media (min-width: 992px) {
  .col-order-quantity {
    flex: 0 0 154px;
  }
}

@media (min-width: 1200px) {
  .col-order-quantity {
    flex: 0 0 120px;
  }
}

.col-order-vat {
  flex: 0 0 50%;
}

@media (min-width: 576px) {
  .col-order-vat {
    flex: 0 0 45px;
  }
}

.col-order-brutto {
  flex: 0 0 50%;
}

@media (min-width: 576px) {
  .col-order-brutto {
    flex: 0 0 120px;
  }
}

.col-order-total {
  flex: 0 0 100%;
}

.col-order-total p {
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .col-order-total {
    flex: 0 0 405px;
  }
}

.col-order-pfand {
  width: auto;
}

@media (min-width: 576px) {
  .col-order-pfand {
    flex: 0 0 199px;
  }
}

@media (min-width: 992px) {
  .col-order-pfand {
    flex: 0 0 199px;
  }
}

@media (min-width: 1200px) {
  .col-order-pfand {
    flex: 0 0 165px;
  }
}

.col-order-icon {
  flex: 0 0 55px;
}

.col-order-total,
.col-order-quantity,
.col-order-pfand,
.col-order-brutto,
.col-order-icon,
.col-order-vat {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}

.col-summary-quantity {
  flex: 1 0 80px;
}

@media (min-width: 576px) {
  .col-summary-quantity {
    flex: 0 0 100px;
  }
}

@media (min-width: 992px) {
  .col-summary-quantity {
    flex: 0 0 120px;
  }
}

@media (min-width: 1200px) {
  .col-summary-quantity {
    flex: 0 0 120px;
  }
}

.col-summary-brutto {
  flex: 0 0 100px;
}

@media (min-width: 576px) {
  .col-summary-brutto {
    flex: 0 0 120px;
  }
}

.col-summary-quantity,
.col-summary-total,
.col-summary-brutto,
.col-payments-week {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
}

.col-summary-total {
  flex: 0 0 100%;
}

.col-summary-total p {
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .col-summary-total {
    flex: 0 0 360px;
  }
}

.col-payments-week {
  flex: 0 0 250px;
}

.dashboard-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "National", "Arial", sans-serif;
  font-size: 18px;
  list-style: none;
}

.dashboard-nav > li {
  border-top-style: dotted;
  border-image-source: url(/images/dot.svg?b5bff897b99ae48320430cac561195db);
  border-image-slice: 33% 33%;
  border-image-repeat: round;
}

.dashboard-nav > li > .dashboard-nav-anchor {
  padding: 12px 0 12px 0;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
  text-transform: uppercase;
}

.dashboard-nav > li > .dashboard-nav-anchor:hover {
  color: #639bc6;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
  text-decoration: none;
  color: #639bc6;
}

.dashboard-nav-sub {
  list-style: none;
  padding-left: 45px;
  font-family: "Folio", "Arial", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 10px;
}

.dashboard-nav-sub li {
  padding-bottom: 8px;
}

.dashboard-nav-count {
  position: absolute;
  bottom: 4px;
  left: 16px;
  color: #fff;
  background-color: #b8454a;
  border-radius: 50%;
  font-size: 10px;
  font-family: "Folio", "Arial", sans-serif;
  font-weight: 500;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border: solid 2px #fff;
}

.dashboard-nav-icon {
  margin-right: 12px;
}

.dashboard-nav-anchor {
  background-size: 30px 30px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dashboard-tab {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "National", "Arial", sans-serif;
  font-size: 18px;
  list-style: none;
}

.dashboard-tab > li {
  border-top-style: dotted;
  border-image-source: url(/images/dot.svg?b5bff897b99ae48320430cac561195db);
  border-image-slice: 33% 33%;
  border-image-repeat: round;
}

.dashboard-tab > li > .dashboard-tab-anchor {
  padding: 12px 0 12px 0;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left center;
  text-transform: uppercase;
}

.dashboard-tab > li > .dashboard-tab-anchor:hover {
  color: #639bc6;
}

.dashboard-tab a:hover,
.dashboard-tab a.active {
  text-decoration: none;
  color: #639bc6;
}

.dashboard-tab-sub {
  list-style: none;
  padding-left: 45px;
  font-family: "Folio", "Arial", sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  margin-bottom: 10px;
}

.dashboard-tab-sub li {
  padding-bottom: 8px;
}

.dashboard-tab-count {
  position: absolute;
  bottom: 4px;
  left: 16px;
  color: #fff;
  background-color: #b8454a;
  border-radius: 50%;
  font-size: 10px;
  font-family: "Folio", "Arial", sans-serif;
  font-weight: 500;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border: solid 2px #fff;
}

.dashboard-tab-icon {
  margin-right: 12px;
}

.dashboard-tab-anchor {
  background-size: 30px 30px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dashboard-registration-overview-item {
  display: block;
  background: #fff;
  font-family: "National", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  line-height: 23px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 25px 100px 25px 25px;
  margin-bottom: 15px;
  background: url(/images/icon-task-incomplete.svg?0a0a649bed287069b6aa517f2a911e2f) right 25px center no-repeat #fff;
}

.dashboard-registration-overview-item:hover {
  text-decoration: none;
}

.dashboard-registration-overview-item.complete {
  background-image: url(/images/icon-task-complete.svg?91c862b86af4423ebc2e1ceccb06a233);
}

.dropzone {
  border: 1px solid #ced4da;
}

.dz-details {
  display: none;
}

.dz-default.dz-message {
  margin: 7px 0 4px 0;
}

.dropzone .dz-preview:hover .dz-image img {
  filter: none;
  transform: none;
}

.dropzone .dz-preview .dz-image img {
  max-width: 100%;
}

.footer {
  position: relative;
  background: #1b1b1b;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
}

@media print {
  .footer {
    display: none;
  }
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 20px;
}

.footer .top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-control {
  font-size: 16px;
}

@media (min-width: 768px) {
  .form-control {
    font-size: 18px;
  }
}

.form-control:disabled,
.form-control[readonly] {
  color: #b1b1b1;
  background: url("data:image/svg+xml,%3Csvg width='16' height='21' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill-rule='nonzero' fill='none'%3E%3Cpath d='M2.5 6a5.5 5.5 0 0 1 11 0h.5a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h.5zm3 0h5c0-1.657-1.12-3-2.5-3S5.5 4.343 5.5 6zm0 6a2.5 2.5 0 1 1 4.347 1.685l.643 3.217a.5.5 0 0 1-.49.598H6a.5.5 0 0 1-.49-.598l.643-3.217A2.493 2.493 0 0 1 5.5 12z' fill='%23A6A6A6'/%3E%3Cpath d='M8.813 13.615a.5.5 0 0 1 .164-.477 1.5 1.5 0 1 0-1.955 0 .5.5 0 0 1 .165.477L6.61 16.5h2.78l-.577-2.885z' fill='%23FFF'/%3E%3C/g%3E%3C/svg%3E") right 20px center no-repeat;
  padding-right: 50px;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  background-image: none;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  box-shadow: none;
}

.is-invalid + label {
  color: #b8454a;
}

input:-webkit-autofill {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
}

.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 14px;
  left: 0px;
  margin-bottom: 0;
  padding: 0 0.75rem;
  transition: all 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9;
}

.floating-label label.floating {
  font-size: 12px;
  top: 4px;
  padding: 0 0.9rem;
}

.floating-label label.no-transition {
  transition: all 0ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.floating-label input,
.floating-label textarea {
  height: auto;
  padding-top: 20px;
  padding-bottom: 14px;
  line-height: 24px;
  font-size: 18px;
}

.floating-label-search label,
.floating-label-search input {
  padding-left: 45px;
}

.floating-label-search label.floating {
  padding-left: 45px;
}

label,
.label {
  font-size: 18px;
  font-weight: 300;
  color: #989898;
}

label-small,
.label-small {
  font-size: 12px;
  line-height: 16px;
  margin: 0;
}

.checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox + label {
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-left: 34px;
  width: 100%;
}

.checkbox.category-filter-checkbox + label {
  font-size: 14px;
  line-height: 20px;
  font-family: "Folio", "Arial", sans-serif;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 13px 16px 13px 50px;
}

.checkbox + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #ced4da;
}

.checkbox:checked + label:before {
  background: url(/images/icon-checkbox-checked.svg?91934f4fdd9ad2202fe14a904af4770a) center center no-repeat #fff;
  background-size: 13px 10px;
}

.checkbox.category-filter-checkbox + label:before {
  background: #ede6e2;
  border: none;
}

.checkbox.category-filter-checkbox:checked + label:before {
  background: url(/images/icon-checkbox-checked.svg?91934f4fdd9ad2202fe14a904af4770a) center center no-repeat #ede6e2;
}

a.radiobutton,
p.radiobutton {
  border: 1px solid #ced4da;
  border-right: 1px solid transparent;
  padding: 16px 37px 16px 60px;
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
}

a.radiobutton:hover,
p.radiobutton:hover {
  text-decoration: none;
}

a.radiobutton:before,
p.radiobutton:before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ced4da;
}

a.radiobutton.active,
p.radiobutton.active {
  background-color: #1b1b1b;
  color: #fff;
  border-color: #1b1b1b;
}

a.radiobutton.active:before,
p.radiobutton.active:before {
  background: url(/images/icon-checkbox-checked.svg?91934f4fdd9ad2202fe14a904af4770a) center center no-repeat #fff;
  background-size: 18.2px 14px;
  border: none;
}

a.radiobutton.set,
p.radiobutton.set {
  background-color: transparent;
  color: #8bab5f;
  border-color: #8bab5f;
}

a.radiobutton.set:before,
p.radiobutton.set:before {
  background: url(/images/icon-checkbox-checked-white.svg?a13ad149b6a6984dc57a67945bfaeb73) center center no-repeat #8bab5f;
}

a.radiobutton:first-of-type,
p.radiobutton:first-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

a.radiobutton:last-of-type,
p.radiobutton:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #ced4da;
}

input.radiobutton {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input.radiobutton + label {
  border: 1px solid #ced4da;
  border-right: 1px solid transparent;
  padding: 16px 37px 16px 60px;
  color: #1b1b1b;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
}

input.radiobutton:first-of-type + label {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

input.radiobutton:last-of-type + label {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #ced4da;
}

input.radiobutton + label:before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ced4da;
}

input.radiobutton:checked + label:before {
  background: url(/images/icon-checkbox-checked.svg?91934f4fdd9ad2202fe14a904af4770a) center center no-repeat #fff;
  background-size: 18.2px 14px;
  border: none;
}

input.radiobutton.set:checked + label:before {
  background: url(/images/icon-checkbox-checked-white.svg?a13ad149b6a6984dc57a67945bfaeb73) center center no-repeat #8bab5f;
}

.radiobutton:checked + label {
  background-color: #1b1b1b;
  color: #fff;
  border-color: #1b1b1b;
}

.radiobutton.set:checked + label {
  background-color: transparent;
  color: #8bab5f;
  border-color: #8bab5f;
}

.search {
  background: url(/images/icon-search-grey.svg?7d83c2e5df35451d608e4391563ff548) left 0.75rem center no-repeat #fff;
}

.appleSwitch {
  position: relative;
  -webkit-appearance: none;
  outline: none;
  width: 52px;
  height: 30px;
  background-color: #fff;
  border: 2px solid #d9dadc;
  border-radius: 50px;
  box-shadow: inset -22px 0 0 0 #d9dadc;
  align-self: center;
  cursor: pointer;
}

.appleSwitch:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  background: transparent;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.appleSwitch:checked {
  box-shadow: inset 22px 0 0 0 #8bab5f;
  border-color: #8bab5f;
}

.appleSwitch:checked:after {
  left: 26px;
}

button:focus {
  outline: none;
}

.form-control.quantity {
  width: 70px;
}

@media (min-width: 768px) {
  .form-control.quantity {
    width: 120px;
  }
}

.form-control.order {
  padding: 0.2rem 0.4rem;
  text-align: right;
  width: 80px;
  height: 36px;
  margin-top: -5px;
}

@media (min-width: 992px) {
  .form-control.order {
    width: 100%;
  }
}

.form-control.order + p {
  margin-top: -5px;
  margin-left: 5px;
  line-height: 36px;
}

.pfand-label,
.order-label {
  color: #989898;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
}

@media (min-width: 1200px) {
  .pfand-label,
  .order-label {
    display: none;
  }
}

@media (min-width: 1200px) {
  .pfand-label {
    display: block;
  }
}

input[type=radio] {
  display: none;
}

input[type=radio] + label {
  color: #1b1b1b;
  font-size: 24px;
  line-height: 30px;
  font-family: "National", "Arial", sans-serif;
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-left: 35px;
  width: 100%;
  text-transform: uppercase;
}

input[type=radio] + label::before {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #1b1b1b;
  background-color: #fff;
  display: block;
  content: "";
  float: left;
  margin-right: 5px;
}

input[type=radio]:checked + label::before {
  box-shadow: inset 0px 0px 0px 3px #fff;
  background-color: #1b1b1b;
}

@keyframes onAutoFillStart {
  from {
    /**/
  }

  to {
    /**/
  }
}

@keyframes onAutoFillCancel {
  from {
    /**/
  }

  to {
    /**/
  }
}

.fullscreen-search {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.95);
  overflow: auto;
  z-index: 2048;
}

.fullscreen-search-top {
  position: fixed;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1.5rem 0;
  background-color: #1b1b1b;
  z-index: 24;
}

.fullscreen-search #fullscreen-search-input {
  flex: 1;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.1px;
  line-height: 28px;
  text-transform: none;
  font-family: "National", "Arial", sans-serif;
  font-weight: 800;
}

@media (min-width: 768px) {
  .fullscreen-search #fullscreen-search-input {
    font-size: 39px;
    letter-spacing: 0.2px;
    line-height: 37px;
  }
}

@media (min-width: 1200px) {
  .fullscreen-search #fullscreen-search-input {
    font-size: 48px;
    letter-spacing: 0.2px;
    line-height: 44px;
  }
}

.fullscreen-search-results {
  padding-top: 95px;
}

.gs {
  width: 72px;
  height: 72px;
  background: url(/images/guetesiegel-sprite@2x.png?19e6e247172527c93d8d4f5a3c7a6f3a) no-repeat;
  background-size: 936px 72px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0 3px 5px 0;
  display: inline-block;
  line-height: 0;
}

.gs:last-child {
  margin-right: 0;
}

.gs-biokreis {
  background-position: 0px 0;
}

.gs-bioland {
  background-position: -72px 0;
}

.gs-biopark {
  background-position: -144px 0;
}

.gs-demeter {
  background-position: -216px 0;
}

.gs-ecoland {
  background-position: -288px 0;
}

.gs-ecovin {
  background-position: -360px 0;
}

.gs-eu-oko-vo {
  background-position: -432px 0;
}

.gs-fair-regional-berlin-brandenburg {
  background-position: -504px 0;
}

.gs-gaa {
  background-position: -576px 0;
}

.gs-naturland {
  background-position: -648px 0;
}

.gs-neuland {
  background-position: -720px 0;
}

.gs-okologische-tierzucht {
  background-position: -792px 0;
}

.gs-verbund-okohofe {
  background-position: -864px 0;
}

.header {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  background-color: #f3ece9;
}

@media print {
  .header {
    display: none;
  }
}

.header a:hover,
.header.active {
  color: #d18470;
  text-decoration: none;
}

.header-top {
  height: 72px;
  align-items: center;
}

@media (min-width: 768px) {
  .header-top {
    height: auto;
  }
}

.header-top-item {
  display: flex;
  align-items: center;
}

.header-top-label {
  margin: 4px 0 0 8px;
  display: none;
}

@media (min-width: 768px) {
  .header-top-label {
    display: inline;
  }
}

.header-bottom {
  font-weight: 500;
  background-color: #1b1b1b;
}

.header-bottom-item {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-right: 30px;
  overflow: hidden;
}

.header-bottom-item:last-child {
  margin-right: 0;
}

.header-bottom-item svg {
  fill: white;
  margin-bottom: 1px;
  width: 30px;
  height: 30px;
}

@media (min-width: 992px) {
  .header-bottom-item svg {
    margin-bottom: 5px;
    width: 40px;
    height: 40px;
  }
}

.header-bottom-item.active,
.header-bottom-item:hover {
  color: #d18470;
}

.header-bottom-item.active svg,
.header-bottom-item:hover svg {
  fill: #d18470;
}

@media (min-width: 768px) {
  .header-bottom-item {
    margin-right: 30px;
  }
}

@media (min-width: 992px) {
  .header-bottom-item {
    margin-right: 40px;
  }
}

.header-bottom-label {
  margin: 4px 0 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.header-bottom-search {
  background: url(/images/icon-search-white.svg?0dd74452b7e52bcd58bf3dc3b3618108) 0 center no-repeat transparent;
  background-size: 21px 22px;
  width: 100%;
  padding: 5px 0 5px 30px;
  font-family: "Folio", "Arial", sans-serif;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.3px;
  color: #fff;
}

.header-bottom-search::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.header-bottom-search::placeholder {
  color: #fff;
  opacity: 1;
}

.burger {
  position: relative;
  width: 24px;
  height: 20px;
  align-self: center;
  margin-top: 2px;
  cursor: pointer;
  background: transparent;
  padding-top: 8px;
}

.burger:hover .burger-dash {
  background: #d18470;
}

.burger-dash {
  margin: 0;
  left: 0px;
  background: #1b1b1b;
  display: block;
  width: 24px;
  height: 2px;
  position: absolute;
  transform-origin: 50% 50%;
  display: block;
}

.burger-dash:nth-child(1) {
  transform: translate(0, -8px);
}

.burger-dash:nth-child(2) {
  transform: translate(0, 0px);
}

.burger-dash:nth-child(3) {
  transform: translate(0, 8px);
}

.icon-numeral {
  position: relative;
}

.icon-numeral-label {
  font-size: 10px;
  padding: 0px 4px;
  position: absolute;
  right: -8px;
  bottom: -8px;
  color: #fff;
  background-color: #b8454a;
  border: 2px solid #f3ece9;
  border-radius: 50%;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
}

.hint {
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}

.icon {
  padding-left: 29px;
  display: inline-flex;
  align-items: center;
}

.icon-link {
  font-size: 16px;
  font-weight: 500;
}

.icon svg {
  margin-right: 10px;
}

.icon-right {
  margin-left: 10px;
}

.icon-success-white {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm-1.817-6a.846.846 0 0 0 .616-.249L15.1 7.45a.849.849 0 1 0-1.2-1.2l-5.737 5.737-2.741-2.742a.833.833 0 1 0-1.179 1.179l3.333 3.333a.83.83 0 0 0 .606.244z' id='a'/%3E%3C/defs%3E%3Cuse fill='%23FFFFFF' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E") left center no-repeat;
}

.icon-success {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath d='M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm-1.817-6a.846.846 0 0 0 .616-.249L15.1 7.45a.849.849 0 1 0-1.2-1.2l-5.737 5.737-2.741-2.742a.833.833 0 1 0-1.179 1.179l3.333 3.333a.83.83 0 0 0 .606.244z' id='a'/%3E%3C/defs%3E%3Cuse fill='%238BAB5F' xlink:href='%23a' fill-rule='evenodd'/%3E%3C/svg%3E") left center no-repeat;
}

.icon-success.icon-right {
  padding-right: 29px;
}

.icon-error-white {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%23FFF' cx='10' cy='10' r='10'/%3E%3Cpath d='M9 5.006a1 1 0 1 1 2 0v6.008a1 1 0 0 1-2 0V5.006zM10 15a1 1 0 1 1 0-2 1 1 0 0 1 0 2z' fill='%23B8454A'/%3E%3C/svg%3E") left center no-repeat;
}

.icon-acrobat {
  padding-left: 23px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.429 5.556h-5.143v-5H.57v18.888H15.43V5.556zM10.857 0L16 5v15H0V0h10.857zm0 .786V5h4.335L10.857.786zm1.714 12.477c0 .548-.429.795-1.065.795-.77 0-1.528-.388-2.239-1.08a16.384 16.384 0 0 0-3.067.627c-.746 1.232-1.458 1.95-2.107 1.95-.369 0-.664-.257-.664-.578 0-.726.897-1.336 2.385-1.832a18.016 18.016 0 0 0 1.468-3.286c-.3-.758-.475-1.477-.49-2.026-.018-.699.234-1.166.793-1.166.529 0 .742.451.72 1.143-.017.522-.164 1.225-.417 2.028.404.966.974 1.89 1.6 2.56 1.864-.162 3.083.064 3.083.865zM7.63 10.64l-.013.041-.01-.026a19.06 19.06 0 0 1-1 2.232l.027-.009-.015.026c.689-.184 1.433-.331 2.156-.427l-.01-.01.031-.003A9.422 9.422 0 0 1 7.63 10.64zM4 14.977s.027.023.093.023c.287 0 .727-.386 1.216-1.07C4.475 14.288 4 14.67 4 14.978zm3.734-7.184c.013-.42-.058-.57-.149-.57-.142 0-.232.167-.221.596.008.302.075.676.193 1.088.106-.435.167-.815.177-1.114zm3.772 5.71c.362 0 .494-.077.494-.24 0-.233-.756-.395-1.948-.344.49.382.981.583 1.454.583z' fill='%23639BC6' fill-rule='nonzero'/%3E%3C/svg%3E") left center no-repeat;
}

.icon-arr-down {
  padding-left: 27px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 0a10 10 0 1 0 10 10A10 10 0 0 0 10 0zm4.71 9.71l-4 4a1 1 0 0 1-1.42 0l-4-4a1 1 0 0 1 1.42-1.42l3.29 3.3 3.29-3.3a1 1 0 0 1 1.42 1.42z'/%3E%3C/svg%3E%0A") left top 4px no-repeat;
  background-size: 20px 20px;
}

.icon-arr-right {
  padding-left: 27px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M0 10c0 5.5 4.5 10 10 10s10-4.5 10-10S15.5 0 10 0 0 4.5 0 10zm9.7-4.7l4 4c.4.4.4 1 0 1.4l-4 4c-.4.4-1 .4-1.4 0s-.4-1 0-1.4l3.3-3.3-3.3-3.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0z'/%3E%3C/svg%3E") left top 4px no-repeat;
  background-size: 20px 20px;
}

.icon-arr-left {
  padding-left: 27px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M20 10c0-5.5-4.5-10-10-10S0 4.5 0 10s4.5 10 10 10 10-4.5 10-10zm-9.7 4.7l-4-4c-.4-.4-.4-1 0-1.4l4-4c.4-.4 1-.4 1.4 0s.4 1 0 1.4L8.4 10l3.3 3.3c.4.4.4 1 0 1.4s-1 .4-1.4 0z'/%3E%3C/svg%3E") left top no-repeat;
  background-size: 20px 20px;
}

.icon-pdf {
  padding-left: 27px;
  background: url("data:image/svg+xml,%3Csvg width='17' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M13.908 12.538c-.04-.575-.99-.944-1-.947a3.551 3.551 0 0 0-1.222-.197c-.486 0-1.01.072-1.683.231a5.914 5.914 0 0 1-1.503-1.57 9.646 9.646 0 0 1-.458-.786c.326-.794.62-1.647.567-2.603-.043-.767-.383-1.281-.845-1.281-.317 0-.59.238-.813.71-.396.84-.292 1.916.31 3.2a44.959 44.959 0 0 0-.613 1.571c-.242.646-.492 1.312-.773 1.945-.79.317-1.438.702-1.978 1.175-.354.31-.78.782-.805 1.275a.823.823 0 0 0 .226.616c.169.181.381.277.615.277.772 0 1.514-1.078 1.655-1.294.284-.435.55-.92.81-1.479.654-.24 1.353-.42 2.029-.594l.242-.062c.183-.047.372-.1.566-.153.206-.057.417-.115.632-.171.694.45 1.442.742 2.17.85.614.09 1.16.038 1.528-.158.332-.176.35-.447.343-.555M5.37 13.839c-.122.22-.245.427-.372.622-.307.47-.807.972-1.065.972-.025 0-.056-.004-.1-.052-.03-.031-.034-.053-.033-.083.009-.172.234-.48.56-.765.295-.258.63-.488 1.01-.694M7.9 6.707c.032.563-.088 1.105-.263 1.625-.216-.643-.317-1.352-.047-1.925.07-.147.126-.226.163-.266.057.089.132.288.147.566m1.234 5.146l-.086.023c-.19.053-.376.104-.555.15l-.24.062c-.486.125-.981.253-1.471.404.186-.456.359-.917.528-1.368.125-.334.254-.675.386-1.012.067.113.137.226.21.339.332.514.75.99 1.228 1.402m3.953.66c-.235.07-.579.079-.948.024a4.468 4.468 0 0 1-1.198-.363c.708-.105 1.258-.072 1.728.097.112.04.295.147.418.242' fill='%23639BC6'/%3E%3Cpath d='M.375.375v19.25h16.25V5.575l-5.169-5.2H.375z' stroke='%23639BC6' stroke-width='.75'/%3E%3Cpath d='M11.205.385v5.384M11.28 5.77h5.334' stroke='%23639BC6' stroke-width='.75' stroke-linecap='square'/%3E%3C/g%3E%3C/svg%3E") left top no-repeat;
  background-size: 17px 20px;
}

.icon-right {
  background-position: right center;
  padding-right: 23px;
  padding-left: 0 !important;
}

.modal {
  display: block;
  background-color: rgba(27, 27, 27, 0.7);
}

.modal .icon-close {
  width: 20px;
  height: 20px;
}

.sort {
  text-align: center;
  font-weight: 300;
  white-space: nowrap;
  padding-right: 19px;
  color: #989898;
}

.sort:hover {
  text-decoration: none;
}

.sort.ascending {
  background: url(/images/icon-ascending.svg?33b0c75c4383ca82decb3d835d966055) right center no-repeat;
  color: #1b1b1b;
}

.sort.descending {
  background: url(/images/icon-descending.svg?1e10fbba1af6edb78c05e8d1fe9204ed) right center no-repeat;
  color: #1b1b1b;
}

.products-list-dashboard {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  min-height: 140px;
}

.products-list-dashboard .col-img {
  flex: 0 0 204px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.products-list-dashboard .product-img {
  padding-left: 4px;
  width: 100%;
}

.products-list-dashboard .col-buttons {
  flex: 0 0 auto;
}

.nav-overlay {
  position: fixed;
  z-index: 128;
  top: 72px;
  left: 0;
  background-color: #f3ece9;
  width: 100%;
  height: 0;
  overflow-y: scroll;
  transition: height 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  line-height: 150%;
}

.nav-overlay.open {
  height: calc(100% - 72px);
}

.nav-overlay-tile {
  height: 100%;
  background-color: #1b1b1b;
  border-radius: 5px;
  padding: 20px 20px;
  text-align: center;
  align-items: center;
  color: #fff;
}

.nav-overlay-tile-svg {
  display: block;
  width: 40%;
  height: auto;
  margin: 0 auto 10px;
  fill: white;
}

.active .nav-overlay-tile-svg {
  fill: #d18470;
}

.nav-overlay-tile.active {
  color: #d18470;
}

.nav-overlay-tile-label {
  font-size: 1rem;
}

.nav-overlay-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-overlay-list-item {
  border-bottom: 1px solid rgba(27, 27, 27, 0.1);
  padding: 12px 0;
}

.nav-overlay-list-anchor {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-overlay-list-anchor:hover {
  text-decoration: none;
}

.order-listing-item {
  padding: 10px;
}

.order-listing-item > div {
  padding: 10px;
}

.order-listing-item p {
  margin: 0;
}

.col-date {
  flex: 0 0 120px;
}

.pagination .page-item {
  position: relative;
}

.pagination .page-item:not(:first-child):not(.active):after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(27, 27, 27, 0.15);
}

.pagination .page-item.active + .page-item:after {
  content: none;
}

.pagination .page-item:first-child .page-link {
  text-indent: -9999px;
  background: no-repeat center center #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath fill='%231B1B1B' fill-rule='evenodd' d='M5.8.4c-.4-.5-1-.5-1.4-.2l-.1.1-4 4c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4L2.4 5l3.3-3.3c.4-.4.4-.9.1-1.3z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 6px 10px;
}

.pagination .page-item:first-child .page-link:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M5.8.4c-.4-.5-1-.5-1.4-.2l-.1.1-4 4c-.4.4-.4 1 0 1.4l4 4c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4L2.4 5l3.3-3.3c.4-.4.4-.9.1-1.3z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #8bab5f;
}

.pagination .page-item:last-child .page-link {
  text-indent: -9999px;
  background: no-repeat center center #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath fill='%231B1B1B' fill-rule='evenodd' d='M.2 9.6c.4.5 1 .5 1.4.2l.1-.1 4-4c.4-.4.4-1 0-1.4l-4-4C1.3-.1.7-.1.3.3c-.4.4-.4 1 0 1.4L3.6 5 .3 8.3c-.4.3-.4.9-.1 1.3z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 6px 10px;
}

.pagination .page-item:last-child .page-link:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 10'%3E%3Cpath fill='%23FFF' fill-rule='evenodd' d='M.2 9.6c.4.5 1 .5 1.4.2l.1-.1 4-4c.4-.4.4-1 0-1.4l-4-4C1.3-.1.7-.1.3.3c-.4.4-.4 1 0 1.4L3.6 5 .3 8.3c-.4.3-.4.9-.1 1.3z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-color: #8bab5f;
}

.persona {
  position: relative;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.persona > img {
  width: 45%;
}

.persona-wrapper {
  margin-top: -76px;
}

.producer-teaser {
  padding: 0;
  position: relative;
}

.producer-teaser-lower {
  padding: 0 26px 26px 26px;
}

.producer-teaser-img {
  width: 100%;
  height: auto;
}

.producer-teaser-seals {
  position: absolute;
  top: 15px;
  right: 15px;
}

.producer-profile-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  border: solid 2px #fff;
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 12;
  flex: none;
}

.producer-profile-image.small {
  width: 80px;
  height: 80px;
  margin-top: -40px;
}

.producer-profile-image.mini {
  width: 50px;
  height: 50px;
}

.producer-mini-link {
  transition: border 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  border: 2px solid #fff;
}

.producer-mini-link:hover {
  text-decoration: none;
  border: 2px solid #8bab5f;
}

.product-teaser {
  position: relative;
  border-radius: 4px;
  background-color: #fff;
}

.product-teaser-img {
  width: 100%;
  height: auto;
}

.product-teaser-bookmark {
  flex: 0 1 24px;
  height: 24px;
  background: url(/images/icon-bookmark-toggle.svg?d3fd10ffc94e5f2c1a0c801b6ec94286);
  background-size: 24px 48px;
  cursor: pointer;
}

.product-teaser-bookmark.active {
  background-position: 0 24px;
}

.product-teaser-info {
  padding: 14px 10px;
  border-bottom: 1px solid #efe8e6;
}

.product-teaser-title {
  margin: 0;
}

.product-teaser-price {
  margin: 0;
}

.product-teaser-unit {
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.2px;
}

.product-teaser-base-price {
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: 0.15px;
  line-height: 22px;
  margin: -3px 0 0 0;
}

.product-teaser-lead-time {
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: 0.15px;
  line-height: 22px;
  margin: -3px 0 0 0;
}

.product-teaser-deposit {
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: 0.15px;
  line-height: 22px;
  margin: -3px 0 0 0;
}

.product-teaser-quantity {
  text-align: right;
  font-size: 15px;
  color: #639bc6;
  display: block;
  text-overflow: ellipsis;
  width: 100%;
}

.product-teaser-quantity-unit {
  font-size: 15px;
  line-height: 15px;
  color: #6d6d6d;
  margin: 0;
  align-self: center;
  padding: 0 15px 0 9px;
  flex: 0 0 auto;
}

.product-teaser-add {
  flex: 0 0 52px;
  height: 48px;
  background: url(/images/icon-cart-white.svg?e818501cc321be32bb35b417f5ca1ab2) center center no-repeat #639bc6;
  background-size: 20px 25px;
  display: block;
}

.select2 {
  width: 100% !important;
}

.select2-selection__choice {
  z-index: 24;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding-top: 20px;
  padding-left: 14px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 47px;
}

.select2-container .select2-selection--single .select2-selection__rendered:after {
  content: "";
  position: absolute;
  height: 50%;
  width: 1px;
  background-color: #ced4da;
  right: 45px;
  top: 25%;
}

.select2-container .select2-selection--single {
  height: 60px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #1b1b1b transparent transparent transparent;
  border-width: 5px 5px 0 5px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #1b1b1b transparent;
  border-width: 0 5px 5px 5px;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border: 1px solid #ced4da;
}

.select2.is-invalid + .select2-container--default .select2-selection--single,
.select2.is-invalid + .select2-container--default .select2-selection--multiple {
  border-radius: 0;
  border: 1px solid #b8454a;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-radius: 0;
  border: 2px solid #639bc6;
}

.select2-container--default .select2-selection--single .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  font-size: 15px;
  background-color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  float: right;
  margin-left: 8px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: #639bc6;
  background-color: rgba(99, 155, 198, 0.2);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #639bc6;
  color: #fff;
}

.select2-container *:focus {
  outline: none;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  display: none;
}

/*
.select2-container--default.select2-container--open .select2-selection--single, 
.select2-container--default.select2-container--open .select2-selection--multiple {
	//border-color: $blue; // $input-focus-border-color;
    //outline: 1px solid $blue;
}
*/

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1 1 auto;
}

.tab-nav {
  list-style: none;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.tab-nav li {
  display: inline-block;
  font-family: "National", "Arial", sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-right: 20px;
  text-transform: uppercase;
}

.tab-nav li.active {
  color: #639bc6;
  border-bottom: solid #639bc6 4px;
}

.tab-nav li a:hover {
  text-decoration: none;
  color: #639bc6;
}

.teaser-it {
  position: relative;
  background-color: #f9f9f9;
}

.teaser-it-img {
  position: absolute;
  min-height: 180px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.teaser-it-img.fixed-height-25vw {
  position: relative;
  height: 25vw;
  min-height: 200px;
}

.teaser-it-img.fixed-height-30vw {
  position: relative;
  height: 30vw;
  min-height: 240px;
}

.teaser-it-text {
  position: relative;
  z-index: 2;
}

.page-padding {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .page-padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.font-weight-medium {
  font-weight: 500 !important;
}

.dashboard-nav-anchor:hover .hover-stroke,
.dashboard-nav-anchor.active .hover-stroke,
a:hover .hover-stroke,
a.active .hover-stroke {
  stroke: #d18470;
}

.dashboard-nav-anchor:hover .hover-fill,
.dashboard-nav-anchor.active .hover-fill,
a:hover .hover-fill,
a.active .hover-fill {
  fill: #d18470;
}

.dashboard-nav-anchor:hover .hover-stroke-blue,
.dashboard-nav-anchor.active .hover-stroke-blue,
a:hover .hover-stroke-blue,
a.active .hover-stroke-blue {
  stroke: #639bc6;
}

.dashboard-nav-anchor:hover .hover-fill-blue,
.dashboard-nav-anchor.active .hover-fill-blue,
a:hover .hover-fill-blue,
a.active .hover-fill-blue {
  fill: #639bc6;
}

.fill-blue {
  fill: #639bc6;
}

.fill-black {
  fill: #1b1b1b;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.center-xy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-shrink {
  flex: 1 0 auto;
}

.bg-grey-100 {
  background-color: #f9f9f9;
}

.no-pointer-events {
  pointer-events: none;
}

.text-transform-none {
  text-transform: none !important;
}

.flex-even {
  flex: 1;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-35 {
  opacity: 0.35;
}

.border-t {
  border-top: 1px solid #e3e3e3;
}

.border-b {
  border-bottom: 1px solid #e3e3e3;
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-b {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.text-grey {
  color: #989898;
}

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

.flex-expand {
  flex: 1;
}

.flex-contract-half {
  flex: 0.5;
}

.flex-contract-third {
  flex: 0.33;
}

.flex-contract-quarter {
  flex: 0.25;
}

.font-family-sans-serif {
  font-family: "Folio", "Arial", sans-serif;
}

.bg-transparent {
  background-color: transparent !important;
}

