/*! =======================================================
                      VERSION  9.8.0              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #0480be;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #0480be;
  border-right-color: #0480be;
  margin-left: 0;
  margin-right: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: linear-gradient(to bottom, #149bdf 0%, #0480be 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  filter: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: linear-gradient(to bottom, #89cdef 0%, #81bfde 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
  opacity: 1;
}
/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.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;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.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;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline {
  float: left;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.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;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results {
  display: block;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__option[aria-selected] {
  cursor: pointer;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown {
  left: 0;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown {
  display: block;
  padding: 4px;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* line 70, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown.select2-search--hide {
  display: none;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.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);
}

/* line 36, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.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;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

/* line 77, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.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;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.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;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/* line 81, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

/* line 88, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

/* line 75, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 90, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

/* line 98, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 106, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

/* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.select2-container--bootstrap4 .select2-selection--single{height:calc(2.25rem + 2px)!important}.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder{color:#757575;line-height:2.25rem}.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow{position:absolute;top:50%;right:3px;width:20px}.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b{top:60%;border-color:#343a40 transparent transparent;border-style:solid;border-width:5px 4px 0;width:0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute}.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered{line-height:2.25rem}.select2-search--dropdown .select2-search__field{border:1px solid #ced4da;border-radius:.25rem}.select2-results__message{color:#6c757d}.select2-container--bootstrap4 .select2-selection--multiple{min-height:calc(2.25rem + 2px)!important}.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice{color:#343a40;border:1px solid #bdc6d0;border-radius:.2rem;padding:0 5px 0 0;cursor:pointer;float:left;margin-top:.3em;margin-right:5px}.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove{color:#bdc6d0;font-weight:700;margin-left:3px;margin-right:1px;padding-right:3px;padding-left:3px;float:left}.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover{color:#343a40}.select2-container{display:block}.select2-container :focus{outline:0}.input-group .select2-container--bootstrap4{flex-grow:1}.input-group-prepend~.select2-container--bootstrap4 .select2-selection{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container--bootstrap4:not(:last-child) .select2-selection{border-top-right-radius:0;border-bottom-right-radius:0}.select2-container--bootstrap4 .select2-selection{background-color:#fff;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;width:100%}@media screen and (prefers-reduced-motion:reduce){.select2-container--bootstrap4 .select2-selection{transition:none}}.select2-container--bootstrap4.select2-container--focus .select2-selection{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection,.select2-container--bootstrap4.select2-container--disabled .select2-selection{background-color:#e9ecef;cursor:not-allowed;border-color:#ced4da;box-shadow:none}.select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field,.select2-container--bootstrap4.select2-container--disabled .select2-search__field{background-color:transparent}form.was-validated select:invalid~.select2-container--bootstrap4 .select2-selection,select.is-invalid~.select2-container--bootstrap4 .select2-selection{border-color:#dc3545}form.was-validated select:valid~.select2-container--bootstrap4 .select2-selection,select.is-valid~.select2-container--bootstrap4 .select2-selection{border-color:#28a745}.select2-container--bootstrap4 .select2-dropdown{border-color:#ced4da;border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above{border-top:1px solid #ced4da;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected=true]{background-color:#e9ecef}.select2-container--bootstrap4 .select2-results__option--highlighted,.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected=true]{background-color:#007bff;color:#f8f9fa}.select2-container--bootstrap4 .select2-results__option[role=group]{padding:0}.select2-container--bootstrap4 .select2-results>.select2-results__options{max-height:15em;overflow-y:auto}.select2-container--bootstrap4 .select2-results__group{padding:6px;display:list-item;color:#6c757d}.select2-container--bootstrap4 .select2-selection__clear{width:1.2em;height:1.2em;line-height:1.15em;padding-left:.3em;margin-top:.5em;border-radius:100%;background-color:#6c757d;color:#f8f9fa;float:right;margin-right:.3em}.select2-container--bootstrap4 .select2-selection__clear:hover{background-color:#343a40}
@charset "UTF-8";
/*!
 * Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_core.scss */
.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_core.scss */
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_core.scss */
.fas::before,
.far::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
.fa::before {
  content: var(--fa);
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_core.scss */
.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular {
  font-family: 'Font Awesome 6 Free';
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_core.scss */
.fa-brands,
.fab {
  font-family: 'Font Awesome 6 Brands';
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-1x {
  font-size: 1em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-2x {
  font-size: 2em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-3x {
  font-size: 3em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-4x {
  font-size: 4em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-5x {
  font-size: 5em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-6x {
  font-size: 6em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-7x {
  font-size: 7em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-8x {
  font-size: 8em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-9x {
  font-size: 9em;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-10x {
  font-size: 10em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_sizing.scss */
.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_fixed-width.scss */
.fa-fw {
  text-align: center;
  width: 1.25em;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_list.scss */
.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_list.scss */
.fa-ul > li {
  position: relative;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_list.scss */
.fa-li {
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_bordered-pulled.scss */
.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-spin-reverse {
  --fa-animation-direction: reverse;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}

@media (prefers-reduced-motion: reduce) {
  /* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_animated.scss */
  .fa-beat,
.fa-bounce,
.fa-fade,
.fa-beat-fade,
.fa-flip,
.fa-pulse,
.fa-shake,
.fa-spin,
.fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}

@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}

@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}

@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}

@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}

@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-90 {
  transform: rotate(90deg);
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-180 {
  transform: rotate(180deg);
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-270 {
  transform: rotate(270deg);
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-horizontal {
  transform: scale(-1, 1);
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-vertical {
  transform: scale(1, -1);
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_rotated-flipped.scss */
.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, 0));
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-1x {
  line-height: inherit;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-stack-2x {
  font-size: 2em;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_stacked.scss */
.fa-inverse {
  color: var(--fa-inverse, #fff);
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-0 {
  --fa: "\30";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-1 {
  --fa: "\31";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-2 {
  --fa: "\32";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-3 {
  --fa: "\33";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-4 {
  --fa: "\34";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-5 {
  --fa: "\35";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-6 {
  --fa: "\36";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-7 {
  --fa: "\37";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-8 {
  --fa: "\38";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-9 {
  --fa: "\39";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fill-drip {
  --fa: "\f576";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-to-circle {
  --fa: "\e4bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-chevron-right {
  --fa: "\f138";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-right {
  --fa: "\f138";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-at {
  --fa: "\40";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-can {
  --fa: "\f2ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-alt {
  --fa: "\f2ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-height {
  --fa: "\f034";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-xmark {
  --fa: "\f235";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-times {
  --fa: "\f235";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stethoscope {
  --fa: "\f0f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-message {
  --fa: "\f27a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-alt {
  --fa: "\f27a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-info {
  --fa: "\f129";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-down-left-and-up-right-to-center {
  --fa: "\f422";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress-alt {
  --fa: "\f422";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-explosion {
  --fa: "\e4e9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-lines {
  --fa: "\f15c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-alt {
  --fa: "\f15c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-text {
  --fa: "\f15c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wave-square {
  --fa: "\f83e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ring {
  --fa: "\f70b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-un {
  --fa: "\e4d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-three {
  --fa: "\f527";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-days {
  --fa: "\f073";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-alt {
  --fa: "\f073";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor-circle-check {
  --fa: "\e4aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-circle-arrow-right {
  --fa: "\e4d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volleyball {
  --fa: "\f45f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volleyball-ball {
  --fa: "\f45f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-up-to-line {
  --fa: "\e4c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-down {
  --fa: "\f0dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-desc {
  --fa: "\f0dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-minus {
  --fa: "\f056";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-circle {
  --fa: "\f056";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-door-open {
  --fa: "\f52b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-right-from-bracket {
  --fa: "\f2f5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-out-alt {
  --fa: "\f2f5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-atom {
  --fa: "\f5d2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-soap {
  --fa: "\e06e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-icons {
  --fa: "\f86d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-music-camera-bolt {
  --fa: "\f86d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-lines-slash {
  --fa: "\f539";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-alt-slash {
  --fa: "\f539";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge-circle-check {
  --fa: "\e4c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pump-medical {
  --fa: "\e06a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fingerprint {
  --fa: "\f577";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-right {
  --fa: "\f0a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-location {
  --fa: "\f689";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-location {
  --fa: "\f689";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-forward-step {
  --fa: "\f051";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-forward {
  --fa: "\f051";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-smile-beam {
  --fa: "\f5b8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile-beam {
  --fa: "\f5b8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-checkered {
  --fa: "\f11e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-football {
  --fa: "\f44e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-football-ball {
  --fa: "\f44e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school-circle-exclamation {
  --fa: "\e56c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop {
  --fa: "\f125";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angles-down {
  --fa: "\f103";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-down {
  --fa: "\f103";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-rectangle {
  --fa: "\e594";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-roof {
  --fa: "\e537";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-line {
  --fa: "\e534";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-beer-mug-empty {
  --fa: "\f0fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-beer {
  --fa: "\f0fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagram-predecessor {
  --fa: "\e477";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-long {
  --fa: "\f176";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-up {
  --fa: "\f176";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-flame-simple {
  --fa: "\f46a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-burn {
  --fa: "\f46a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person {
  --fa: "\f183";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-male {
  --fa: "\f183";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop {
  --fa: "\f109";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-csv {
  --fa: "\f6dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-menorah {
  --fa: "\f676";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-plane {
  --fa: "\e58f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-record-vinyl {
  --fa: "\f8d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-stars {
  --fa: "\f587";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-stars {
  --fa: "\f587";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bong {
  --fa: "\f55c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spaghetti-monster-flying {
  --fa: "\f67b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pastafarianism {
  --fa: "\f67b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-up-across-line {
  --fa: "\e4af";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spoon {
  --fa: "\f2e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-utensil-spoon {
  --fa: "\f2e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jar-wheat {
  --fa: "\e517";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelopes-bulk {
  --fa: "\f674";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-bulk {
  --fa: "\f674";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-exclamation {
  --fa: "\e4eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-h {
  --fa: "\f47e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-symbol {
  --fa: "\f47e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pager {
  --fa: "\f815";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-address-book {
  --fa: "\f2b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-contact-book {
  --fa: "\f2b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-strikethrough {
  --fa: "\f0cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-k {
  --fa: "\4b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-landmark-flag {
  --fa: "\e51c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil {
  --fa: "\f303";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-alt {
  --fa: "\f303";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backward {
  --fa: "\f04a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-right {
  --fa: "\f0da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments {
  --fa: "\f086";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paste {
  --fa: "\f0ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-clipboard {
  --fa: "\f0ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-pull-request {
  --fa: "\e13c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-list {
  --fa: "\f46d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-ramp-box {
  --fa: "\f4de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-loading {
  --fa: "\f4de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-check {
  --fa: "\f4fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vial-virus {
  --fa: "\e597";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sheet-plastic {
  --fa: "\e571";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blog {
  --fa: "\f781";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-ninja {
  --fa: "\f504";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-arrow-up-from-line {
  --fa: "\e539";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scroll-torah {
  --fa: "\f6a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-torah {
  --fa: "\f6a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-broom-ball {
  --fa: "\f458";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quidditch {
  --fa: "\f458";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quidditch-broom-ball {
  --fa: "\f458";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-off {
  --fa: "\f204";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box-archive {
  --fa: "\f187";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-archive {
  --fa: "\f187";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-drowning {
  --fa: "\e545";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-9-1 {
  --fa: "\f886";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-desc {
  --fa: "\f886";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-down-alt {
  --fa: "\f886";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-tongue-squint {
  --fa: "\f58a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue-squint {
  --fa: "\f58a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spray-can {
  --fa: "\f5bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-monster {
  --fa: "\f63b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-w {
  --fa: "\57";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-africa {
  --fa: "\f57c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-africa {
  --fa: "\f57c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rainbow {
  --fa: "\f75b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-notch {
  --fa: "\f1ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet-screen-button {
  --fa: "\f3fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet-alt {
  --fa: "\f3fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paw {
  --fa: "\f1b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud {
  --fa: "\f0c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trowel-bricks {
  --fa: "\e58a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-flushed {
  --fa: "\f579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flushed {
  --fa: "\f579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-user {
  --fa: "\f80d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tent-arrow-left-right {
  --fa: "\e57f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gavel {
  --fa: "\f0e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-legal {
  --fa: "\f0e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-binoculars {
  --fa: "\f1e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-slash {
  --fa: "\f131";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box-tissue {
  --fa: "\e05b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-motorcycle {
  --fa: "\f21c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-concierge {
  --fa: "\f562";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-concierge-bell {
  --fa: "\f562";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-ruler {
  --fa: "\f5ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-ruler {
  --fa: "\f5ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-arrows {
  --fa: "\e068";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-arrows-left-right {
  --fa: "\e068";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-and-venus-burst {
  --fa: "\e523";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-caret-right {
  --fa: "\f152";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-right {
  --fa: "\f152";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scissors {
  --fa: "\f0c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cut {
  --fa: "\f0c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sun-plant-wilt {
  --fa: "\e57a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilets-portable {
  --fa: "\e584";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hockey-puck {
  --fa: "\f453";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table {
  --fa: "\f0ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-arrow-right {
  --fa: "\e521";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachograph-digital {
  --fa: "\f566";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-digital-tachograph {
  --fa: "\f566";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-slash {
  --fa: "\e073";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clover {
  --fa: "\e139";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reply {
  --fa: "\f3e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply {
  --fa: "\f3e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-and-crescent {
  --fa: "\f699";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-fire {
  --fa: "\e50c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-minus {
  --fa: "\f146";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus-square {
  --fa: "\f146";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-helicopter {
  --fa: "\f533";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compass {
  --fa: "\f14e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-caret-down {
  --fa: "\f150";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-down {
  --fa: "\f150";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-question {
  --fa: "\e4ef";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-code {
  --fa: "\f5fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swatchbook {
  --fa: "\f5c3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription-bottle {
  --fa: "\f485";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bars {
  --fa: "\f0c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-navicon {
  --fa: "\f0c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-group {
  --fa: "\e533";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-end {
  --fa: "\f253";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-3 {
  --fa: "\f253";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-crack {
  --fa: "\f7a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-broken {
  --fa: "\f7a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-up-right {
  --fa: "\f360";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-square-alt {
  --fa: "\f360";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-kiss-beam {
  --fa: "\f597";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss-beam {
  --fa: "\f597";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-film {
  --fa: "\f008";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-horizontal {
  --fa: "\f547";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-robbery {
  --fa: "\e536";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lightbulb {
  --fa: "\f0eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-left {
  --fa: "\f0d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-exclamation {
  --fa: "\f06a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-circle {
  --fa: "\f06a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school-circle-xmark {
  --fa: "\e56d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-from-bracket {
  --fa: "\f08b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-out {
  --fa: "\f08b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-chevron-down {
  --fa: "\f13a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-down {
  --fa: "\f13a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock-keyhole {
  --fa: "\f13e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock-alt {
  --fa: "\f13e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-showers-heavy {
  --fa: "\f740";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones-simple {
  --fa: "\f58f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones-alt {
  --fa: "\f58f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sitemap {
  --fa: "\f0e8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-dollar-to-slot {
  --fa: "\f4b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-donate {
  --fa: "\f4b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-memory {
  --fa: "\f538";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-spikes {
  --fa: "\e568";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-burner {
  --fa: "\e4f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag {
  --fa: "\f024";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hanukiah {
  --fa: "\f6e6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feather {
  --fa: "\f52d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-low {
  --fa: "\f027";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-down {
  --fa: "\f027";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-slash {
  --fa: "\f4b3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-sun-rain {
  --fa: "\f743";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress {
  --fa: "\f066";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheat-awn {
  --fa: "\e2cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheat-alt {
  --fa: "\e2cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ankh {
  --fa: "\f644";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-holding-child {
  --fa: "\e4fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-asterisk {
  --fa: "\2a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-check {
  --fa: "\f14a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-square {
  --fa: "\f14a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-peseta-sign {
  --fa: "\e221";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heading {
  --fa: "\f1dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-header {
  --fa: "\f1dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ghost {
  --fa: "\f6e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list {
  --fa: "\f03a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-squares {
  --fa: "\f03a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-phone-flip {
  --fa: "\f87b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-square-alt {
  --fa: "\f87b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-plus {
  --fa: "\f217";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gamepad {
  --fa: "\f11b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-dot {
  --fa: "\f192";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dot-circle {
  --fa: "\f192";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-dizzy {
  --fa: "\f567";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dizzy {
  --fa: "\f567";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-egg {
  --fa: "\f7fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-medical-circle-xmark {
  --fa: "\e513";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-campground {
  --fa: "\f6bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-plus {
  --fa: "\f65e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-futbol {
  --fa: "\f1e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-futbol-ball {
  --fa: "\f1e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-soccer-ball {
  --fa: "\f1e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paintbrush {
  --fa: "\f1fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paint-brush {
  --fa: "\f1fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lock {
  --fa: "\f023";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gas-pump {
  --fa: "\f52f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hot-tub-person {
  --fa: "\f593";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hot-tub {
  --fa: "\f593";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-location {
  --fa: "\f59f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marked {
  --fa: "\f59f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-flood-water {
  --fa: "\e50e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tree {
  --fa: "\f1bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge-lock {
  --fa: "\e4cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sack-dollar {
  --fa: "\f81d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-to-square {
  --fa: "\f044";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-edit {
  --fa: "\f044";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-side {
  --fa: "\f5e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-nodes {
  --fa: "\f1e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt {
  --fa: "\f1e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-minus {
  --fa: "\e4ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-half {
  --fa: "\f252";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-2 {
  --fa: "\f252";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microscope {
  --fa: "\f610";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sink {
  --fa: "\e06d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bag-shopping {
  --fa: "\f290";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-bag {
  --fa: "\f290";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-z-a {
  --fa: "\f881";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-desc {
  --fa: "\f881";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-down-alt {
  --fa: "\f881";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mitten {
  --fa: "\f7b5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-rays {
  --fa: "\e54d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users {
  --fa: "\f0c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-slash {
  --fa: "\f070";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flask-vial {
  --fa: "\e4f3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand {
  --fa: "\f256";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-paper {
  --fa: "\f256";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-om {
  --fa: "\f679";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-worm {
  --fa: "\e599";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-circle-xmark {
  --fa: "\e50b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug {
  --fa: "\f1e6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-up {
  --fa: "\f077";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-spock {
  --fa: "\f259";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stopwatch {
  --fa: "\f2f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-kiss {
  --fa: "\f596";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss {
  --fa: "\f596";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge-circle-xmark {
  --fa: "\e4cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-tongue {
  --fa: "\f589";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue {
  --fa: "\f589";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-bishop {
  --fa: "\f43a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-wink {
  --fa: "\f58c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-wink {
  --fa: "\f58c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ear-deaf {
  --fa: "\f2a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deaf {
  --fa: "\f2a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-deafness {
  --fa: "\f2a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hard-of-hearing {
  --fa: "\f2a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-circle-check {
  --fa: "\e564";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-five {
  --fa: "\f523";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-rss {
  --fa: "\f143";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rss-square {
  --fa: "\f143";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-land-mine-on {
  --fa: "\e51b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-i-cursor {
  --fa: "\f246";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stamp {
  --fa: "\f5bf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stairs {
  --fa: "\e289";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-i {
  --fa: "\49";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hryvnia-sign {
  --fa: "\f6f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hryvnia {
  --fa: "\f6f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pills {
  --fa: "\f484";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-wide {
  --fa: "\f581";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-alt {
  --fa: "\f581";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tooth {
  --fa: "\f5c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-v {
  --fa: "\56";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bangladeshi-taka-sign {
  --fa: "\e2e6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bicycle {
  --fa: "\f206";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-staff-snake {
  --fa: "\e579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rod-asclepius {
  --fa: "\e579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rod-snake {
  --fa: "\e579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-staff-aesculapius {
  --fa: "\e579";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-head-side-cough-slash {
  --fa: "\e062";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-medical {
  --fa: "\f0f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ambulance {
  --fa: "\f0f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheat-awn-circle-exclamation {
  --fa: "\e598";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowman {
  --fa: "\f7d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mortar-pestle {
  --fa: "\f5a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-barrier {
  --fa: "\e562";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school {
  --fa: "\f549";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-igloo {
  --fa: "\f7ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-joint {
  --fa: "\f595";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-right {
  --fa: "\f105";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-horse {
  --fa: "\f6f0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-q {
  --fa: "\51";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-g {
  --fa: "\47";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-notes-medical {
  --fa: "\f481";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-half {
  --fa: "\f2c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-2 {
  --fa: "\f2c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-2 {
  --fa: "\f2c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-half {
  --fa: "\f2c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dong-sign {
  --fa: "\e169";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-capsules {
  --fa: "\f46b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poo-storm {
  --fa: "\f75a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poo-bolt {
  --fa: "\f75a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-frown-open {
  --fa: "\f57a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frown-open {
  --fa: "\f57a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-up {
  --fa: "\f0a6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill {
  --fa: "\f0d6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bookmark {
  --fa: "\f02e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-justify {
  --fa: "\f039";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbrella-beach {
  --fa: "\f5ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-helmet-un {
  --fa: "\e503";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullseye {
  --fa: "\f140";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bacon {
  --fa: "\f7e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-down {
  --fa: "\f0a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-from-bracket {
  --fa: "\e09a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder {
  --fa: "\f07b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-blank {
  --fa: "\f07b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-waveform {
  --fa: "\f478";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-medical-alt {
  --fa: "\f478";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-radiation {
  --fa: "\f7b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-simple {
  --fa: "\e473";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke {
  --fa: "\f229";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vial {
  --fa: "\f492";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge {
  --fa: "\f624";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dashboard {
  --fa: "\f624";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge-med {
  --fa: "\f624";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-alt-average {
  --fa: "\f624";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wand-magic-sparkles {
  --fa: "\e2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magic-wand-sparkles {
  --fa: "\e2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-e {
  --fa: "\45";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-clip {
  --fa: "\f305";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-alt {
  --fa: "\f305";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge-circle-exclamation {
  --fa: "\e4ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user {
  --fa: "\f007";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school-circle-check {
  --fa: "\e56b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumpster {
  --fa: "\f793";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-van-shuttle {
  --fa: "\f5b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shuttle-van {
  --fa: "\f5b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-user {
  --fa: "\e4da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-caret-left {
  --fa: "\f191";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-left {
  --fa: "\f191";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-highlighter {
  --fa: "\f591";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-key {
  --fa: "\f084";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bullhorn {
  --fa: "\f0a1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe {
  --fa: "\f0ac";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-synagogue {
  --fa: "\f69b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-half-dress {
  --fa: "\e548";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-bridge {
  --fa: "\e563";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-arrow {
  --fa: "\f124";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-c {
  --fa: "\43";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet-button {
  --fa: "\f10a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-lock {
  --fa: "\e4d6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pizza-slice {
  --fa: "\f818";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-wave {
  --fa: "\f53a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-area {
  --fa: "\f1fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-area-chart {
  --fa: "\f1fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-flag {
  --fa: "\e50d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-minus {
  --fa: "\e540";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ban {
  --fa: "\f05e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cancel {
  --fa: "\f05e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera-rotate {
  --fa: "\e0d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spray-can-sparkles {
  --fa: "\f5d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-air-freshener {
  --fa: "\f5d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star {
  --fa: "\f005";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-repeat {
  --fa: "\f363";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cross {
  --fa: "\f654";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box {
  --fa: "\f466";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-mars {
  --fa: "\f228";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-pointer {
  --fa: "\f245";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mouse-pointer {
  --fa: "\f245";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-maximize {
  --fa: "\f31e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand-arrows-alt {
  --fa: "\f31e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-charging-station {
  --fa: "\f5e7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shapes {
  --fa: "\f61f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-triangle-circle-square {
  --fa: "\f61f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shuffle {
  --fa: "\f074";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-random {
  --fa: "\f074";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-running {
  --fa: "\f70c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-running {
  --fa: "\f70c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-retro {
  --fa: "\e527";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-lines-vertical {
  --fa: "\f7a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spider {
  --fa: "\f717";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-bound {
  --fa: "\e4f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-invoice-dollar {
  --fa: "\f571";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-circle-exclamation {
  --fa: "\e556";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-x-ray {
  --fa: "\f497";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spell-check {
  --fa: "\f891";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-slash {
  --fa: "\f715";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-computer-mouse {
  --fa: "\f8cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mouse {
  --fa: "\f8cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-to-bracket {
  --fa: "\f090";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-in {
  --fa: "\f090";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shop-slash {
  --fa: "\e070";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store-alt-slash {
  --fa: "\e070";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-server {
  --fa: "\f233";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-virus-covid-slash {
  --fa: "\e4a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shop-lock {
  --fa: "\e4a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-start {
  --fa: "\f251";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-1 {
  --fa: "\f251";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blender-phone {
  --fa: "\f6b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-wheat {
  --fa: "\e4db";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-breastfeeding {
  --fa: "\e53a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-right-to-bracket {
  --fa: "\f2f6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-in-alt {
  --fa: "\f2f6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus {
  --fa: "\f221";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-passport {
  --fa: "\f5ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbtack-slash {
  --fa: "\e68f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumb-tack-slash {
  --fa: "\e68f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-pulse {
  --fa: "\f21e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heartbeat {
  --fa: "\f21e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-carry-box {
  --fa: "\f4ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-carry {
  --fa: "\f4ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-high {
  --fa: "\f769";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microchip {
  --fa: "\f2db";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crown {
  --fa: "\f521";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weight-hanging {
  --fa: "\f5cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xmarks-lines {
  --fa: "\e59a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-prescription {
  --fa: "\f572";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weight-scale {
  --fa: "\f496";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-weight {
  --fa: "\f496";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-group {
  --fa: "\f500";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-friends {
  --fa: "\f500";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-a-z {
  --fa: "\f15e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-up {
  --fa: "\f15e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-knight {
  --fa: "\f441";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-laugh-squint {
  --fa: "\f59b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-squint {
  --fa: "\f59b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair {
  --fa: "\f193";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-arrow-up {
  --fa: "\f0aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-up {
  --fa: "\f0aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toggle-on {
  --fa: "\f205";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking {
  --fa: "\f554";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-walking {
  --fa: "\f554";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-l {
  --fa: "\4c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire {
  --fa: "\f06d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bed-pulse {
  --fa: "\f487";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-procedures {
  --fa: "\f487";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shuttle-space {
  --fa: "\f197";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-space-shuttle {
  --fa: "\f197";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-laugh {
  --fa: "\f599";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh {
  --fa: "\f599";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-open {
  --fa: "\f07c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-plus {
  --fa: "\e500";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-fork {
  --fa: "\e13b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-city {
  --fa: "\f64f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-lines {
  --fa: "\f3c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone-alt {
  --fa: "\f3c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pepper-hot {
  --fa: "\f816";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlock {
  --fa: "\f09c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-colon-sign {
  --fa: "\e140";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headset {
  --fa: "\f590";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store-slash {
  --fa: "\e071";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-circle-xmark {
  --fa: "\e566";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-minus {
  --fa: "\f503";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-up {
  --fa: "\f22a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-v {
  --fa: "\f22a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-champagne-glasses {
  --fa: "\f79f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-cheers {
  --fa: "\f79f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard {
  --fa: "\f328";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-circle-exclamation {
  --fa: "\e50a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-arrow-up {
  --fa: "\f574";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-upload {
  --fa: "\f574";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wifi {
  --fa: "\f1eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wifi-3 {
  --fa: "\f1eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wifi-strong {
  --fa: "\f1eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bath {
  --fa: "\f2cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bathtub {
  --fa: "\f2cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-underline {
  --fa: "\f0cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-pen {
  --fa: "\f4ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-edit {
  --fa: "\f4ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signature {
  --fa: "\f5b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stroopwafel {
  --fa: "\f551";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bold {
  --fa: "\f032";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor-lock {
  --fa: "\e4ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-ngo {
  --fa: "\e4d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-manat-sign {
  --fa: "\e1d5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-not-equal {
  --fa: "\f53e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-top-left {
  --fa: "\f853";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-style {
  --fa: "\f853";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-location-dot {
  --fa: "\f5a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marked-alt {
  --fa: "\f5a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jedi {
  --fa: "\f669";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-poll-vertical {
  --fa: "\f681";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poll {
  --fa: "\f681";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mug-hot {
  --fa: "\f7b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-battery {
  --fa: "\f5df";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-car {
  --fa: "\f5df";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gift {
  --fa: "\f06b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-two {
  --fa: "\f528";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-queen {
  --fa: "\f445";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glasses {
  --fa: "\f530";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-board {
  --fa: "\f43c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-circle-check {
  --fa: "\e4d2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-chalkboard {
  --fa: "\e53d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-right {
  --fa: "\f22b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-stroke-h {
  --fa: "\f22b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-back-fist {
  --fa: "\f255";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-rock {
  --fa: "\f255";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-caret-up {
  --fa: "\f151";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-square-up {
  --fa: "\f151";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-showers-water {
  --fa: "\e4e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-bar {
  --fa: "\f080";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bar-chart {
  --fa: "\f080";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-bubbles {
  --fa: "\e05e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-wash {
  --fa: "\e05e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-less-than-equal {
  --fa: "\f537";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-train {
  --fa: "\f238";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-low-vision {
  --fa: "\f2a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-low-vision {
  --fa: "\f2a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crow {
  --fa: "\f520";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sailboat {
  --fa: "\e445";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-restore {
  --fa: "\f2d2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-plus {
  --fa: "\f0fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-square {
  --fa: "\f0fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-torii-gate {
  --fa: "\f6a1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frog {
  --fa: "\f52e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bucket {
  --fa: "\e4cf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-image {
  --fa: "\f03e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-microphone {
  --fa: "\f130";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cow {
  --fa: "\f6c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-up {
  --fa: "\f0d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-screwdriver {
  --fa: "\f54a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-closed {
  --fa: "\e185";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-tsunami {
  --fa: "\e515";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-nfi {
  --fa: "\e576";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-from-ground-water {
  --fa: "\e4b5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-martini-glass {
  --fa: "\f57b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-martini-alt {
  --fa: "\f57b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-binary {
  --fa: "\e69b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-left {
  --fa: "\f2ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-back {
  --fa: "\f2ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-backward {
  --fa: "\f2ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-undo-alt {
  --fa: "\f2ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-columns {
  --fa: "\f0db";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-columns {
  --fa: "\f0db";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lemon {
  --fa: "\f094";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-head-side-mask {
  --fa: "\e063";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake {
  --fa: "\f2b5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gem {
  --fa: "\f3a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dolly {
  --fa: "\f472";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dolly-box {
  --fa: "\f472";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smoking {
  --fa: "\f48d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minimize {
  --fa: "\f78c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compress-arrows-alt {
  --fa: "\f78c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-monument {
  --fa: "\f5a6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowplow {
  --fa: "\f7d2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angles-right {
  --fa: "\f101";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-right {
  --fa: "\f101";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cannabis {
  --fa: "\f55f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-play {
  --fa: "\f144";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-play-circle {
  --fa: "\f144";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablets {
  --fa: "\f490";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ethernet {
  --fa: "\f796";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-euro-sign {
  --fa: "\f153";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eur {
  --fa: "\f153";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-euro {
  --fa: "\f153";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chair {
  --fa: "\f6c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-check {
  --fa: "\f058";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-circle {
  --fa: "\f058";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-stop {
  --fa: "\f28d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stop-circle {
  --fa: "\f28d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compass-drafting {
  --fa: "\f568";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drafting-compass {
  --fa: "\f568";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plate-wheat {
  --fa: "\e55a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-icicles {
  --fa: "\f7ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-shelter {
  --fa: "\e54f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-neuter {
  --fa: "\f22c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-badge {
  --fa: "\f2c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-marker {
  --fa: "\f5a1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-laugh-beam {
  --fa: "\f59a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-beam {
  --fa: "\f59a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-helicopter-symbol {
  --fa: "\e502";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-universal-access {
  --fa: "\f29a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-chevron-up {
  --fa: "\f139";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-up {
  --fa: "\f139";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lari-sign {
  --fa: "\e1c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volcano {
  --fa: "\f770";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking-dashed-line-arrow-right {
  --fa: "\e553";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sterling-sign {
  --fa: "\f154";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gbp {
  --fa: "\f154";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pound-sign {
  --fa: "\f154";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-viruses {
  --fa: "\e076";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-person-confined {
  --fa: "\e577";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-tie {
  --fa: "\f508";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-long {
  --fa: "\f175";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-down {
  --fa: "\f175";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tent-arrow-down-to-line {
  --fa: "\e57e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-certificate {
  --fa: "\f0a3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reply-all {
  --fa: "\f122";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-reply-all {
  --fa: "\f122";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase {
  --fa: "\f0f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-skating {
  --fa: "\f7c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skating {
  --fa: "\f7c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-filter-circle-dollar {
  --fa: "\f662";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-funnel-dollar {
  --fa: "\f662";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera-retro {
  --fa: "\f083";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-arrow-down {
  --fa: "\f0ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-down {
  --fa: "\f0ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-import {
  --fa: "\f56f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-to-file {
  --fa: "\f56f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-arrow-up-right {
  --fa: "\f14c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-square {
  --fa: "\f14c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-box-open {
  --fa: "\f49e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scroll {
  --fa: "\f70e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spa {
  --fa: "\f5bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-pin-lock {
  --fa: "\e51f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pause {
  --fa: "\f04c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hill-avalanche {
  --fa: "\e507";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-empty {
  --fa: "\f2cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-0 {
  --fa: "\f2cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-0 {
  --fa: "\f2cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-empty {
  --fa: "\f2cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bomb {
  --fa: "\f1e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-registered {
  --fa: "\f25d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-address-card {
  --fa: "\f2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-contact-card {
  --fa: "\f2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vcard {
  --fa: "\f2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scale-unbalanced-flip {
  --fa: "\f516";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale-right {
  --fa: "\f516";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-subscript {
  --fa: "\f12c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diamond-turn-right {
  --fa: "\f5eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-directions {
  --fa: "\f5eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-burst {
  --fa: "\e4dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-laptop {
  --fa: "\e066";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-house {
  --fa: "\e066";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-tired {
  --fa: "\f5c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tired {
  --fa: "\f5c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bills {
  --fa: "\e1f3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smog {
  --fa: "\f75f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crutch {
  --fa: "\f7f7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-arrow-up {
  --fa: "\f0ee";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-upload {
  --fa: "\f0ee";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-upload-alt {
  --fa: "\f0ee";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-palette {
  --fa: "\f53f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-turn-right {
  --fa: "\e4c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vest {
  --fa: "\e085";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ferry {
  --fa: "\e4ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-down-to-people {
  --fa: "\e4b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-seedling {
  --fa: "\f4d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sprout {
  --fa: "\f4d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-left-right {
  --fa: "\f337";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt-h {
  --fa: "\f337";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-boxes-packing {
  --fa: "\e4c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-arrow-left {
  --fa: "\f0a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-left {
  --fa: "\f0a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-group-arrows-rotate {
  --fa: "\e4f6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bowl-food {
  --fa: "\e4c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-candy-cane {
  --fa: "\f786";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-wide-short {
  --fa: "\f160";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-asc {
  --fa: "\f160";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-down {
  --fa: "\f160";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-bolt {
  --fa: "\f76c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thunderstorm {
  --fa: "\f76c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-slash {
  --fa: "\f87d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-remove-format {
  --fa: "\f87d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-smile-wink {
  --fa: "\f4da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile-wink {
  --fa: "\f4da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-word {
  --fa: "\f1c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-powerpoint {
  --fa: "\f1c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-left-right {
  --fa: "\f07e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-h {
  --fa: "\f07e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-lock {
  --fa: "\e510";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-arrow-down {
  --fa: "\f0ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-download {
  --fa: "\f0ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-download-alt {
  --fa: "\f0ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-children {
  --fa: "\e4e1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chalkboard {
  --fa: "\f51b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blackboard {
  --fa: "\f51b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-large-slash {
  --fa: "\f4fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-alt-slash {
  --fa: "\f4fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-open {
  --fa: "\f2b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-simple-slash {
  --fa: "\e05f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-alt-slash {
  --fa: "\e05f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mattress-pillow {
  --fa: "\e525";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-guarani-sign {
  --fa: "\e19a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-rotate {
  --fa: "\f021";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-refresh {
  --fa: "\f021";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sync {
  --fa: "\f021";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-extinguisher {
  --fa: "\f134";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cruzeiro-sign {
  --fa: "\e152";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-greater-than-equal {
  --fa: "\f532";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-halved {
  --fa: "\f3ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-alt {
  --fa: "\f3ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-atlas {
  --fa: "\f558";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-atlas {
  --fa: "\f558";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-virus {
  --fa: "\e074";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-circle-check {
  --fa: "\e4e8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-layer-group {
  --fa: "\f5fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-to-dot {
  --fa: "\e4be";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-archway {
  --fa: "\f557";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-check {
  --fa: "\e4fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-chimney-crack {
  --fa: "\f6f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-damage {
  --fa: "\f6f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-zipper {
  --fa: "\f1c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-archive {
  --fa: "\f1c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square {
  --fa: "\f0c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-martini-glass-empty {
  --fa: "\f000";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-martini {
  --fa: "\f000";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-couch {
  --fa: "\f4b8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cedi-sign {
  --fa: "\e0df";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-italic {
  --fa: "\f033";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-cells-column-lock {
  --fa: "\e678";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-church {
  --fa: "\f51d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comments-dollar {
  --fa: "\f653";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-democrat {
  --fa: "\f747";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-z {
  --fa: "\5a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-skiing {
  --fa: "\f7c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skiing {
  --fa: "\f7c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-lock {
  --fa: "\e567";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-a {
  --fa: "\41";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-arrow-down {
  --fa: "\e03f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-down {
  --fa: "\e03f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feather-pointed {
  --fa: "\f56b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feather-alt {
  --fa: "\f56b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-p {
  --fa: "\50";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowflake {
  --fa: "\f2dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-newspaper {
  --fa: "\f1ea";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rectangle-ad {
  --fa: "\f641";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ad {
  --fa: "\f641";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-arrow-right {
  --fa: "\f0a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-circle-right {
  --fa: "\f0a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-filter-circle-xmark {
  --fa: "\e17b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-locust {
  --fa: "\e520";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort {
  --fa: "\f0dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unsorted {
  --fa: "\f0dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ol {
  --fa: "\f0cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-1-2 {
  --fa: "\f0cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-numeric {
  --fa: "\f0cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-dress-burst {
  --fa: "\e544";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-check-dollar {
  --fa: "\f53d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-check-alt {
  --fa: "\f53d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vector-square {
  --fa: "\f5cb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bread-slice {
  --fa: "\f7ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-language {
  --fa: "\f1ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-kiss-wink-heart {
  --fa: "\f598";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiss-wink-heart {
  --fa: "\f598";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-filter {
  --fa: "\f0b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-question {
  --fa: "\3f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-signature {
  --fa: "\f573";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-up-down-left-right {
  --fa: "\f0b2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt {
  --fa: "\f0b2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-chimney-user {
  --fa: "\e065";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-heart {
  --fa: "\f4be";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-puzzle-piece {
  --fa: "\f12e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-check {
  --fa: "\f53c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half-stroke {
  --fa: "\f5c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half-alt {
  --fa: "\f5c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code {
  --fa: "\f121";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-whiskey-glass {
  --fa: "\f7a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-whiskey {
  --fa: "\f7a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-circle-exclamation {
  --fa: "\e4d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-chart {
  --fa: "\e522";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-right-from-square {
  --fa: "\f08e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link {
  --fa: "\f08e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cubes-stacked {
  --fa: "\e4e6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-won-sign {
  --fa: "\f159";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-krw {
  --fa: "\f159";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-won {
  --fa: "\f159";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-virus-covid {
  --fa: "\e4a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-austral-sign {
  --fa: "\e0a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-f {
  --fa: "\46";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-leaf {
  --fa: "\f06c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road {
  --fa: "\f018";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-taxi {
  --fa: "\f1ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cab {
  --fa: "\f1ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-plus {
  --fa: "\e541";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-pie {
  --fa: "\f200";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pie-chart {
  --fa: "\f200";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bolt-lightning {
  --fa: "\e0b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sack-xmark {
  --fa: "\e56a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-excel {
  --fa: "\f1c3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-contract {
  --fa: "\f56c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fish-fins {
  --fa: "\e4f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-flag {
  --fa: "\e4d5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-beam {
  --fa: "\f582";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-beam {
  --fa: "\f582";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-ungroup {
  --fa: "\f248";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poop {
  --fa: "\f619";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-pin {
  --fa: "\f041";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marker {
  --fa: "\f041";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kaaba {
  --fa: "\f66b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet-paper {
  --fa: "\f71e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-helmet-safety {
  --fa: "\f807";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hard-hat {
  --fa: "\f807";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-hard {
  --fa: "\f807";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eject {
  --fa: "\f052";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-right {
  --fa: "\f35a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-right {
  --fa: "\f35a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-circle-check {
  --fa: "\e555";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-rolling-eyes {
  --fa: "\f5a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh-rolling-eyes {
  --fa: "\f5a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-object-group {
  --fa: "\f247";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-line {
  --fa: "\f201";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-line-chart {
  --fa: "\f201";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mask-ventilator {
  --fa: "\e524";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right {
  --fa: "\f061";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signs-post {
  --fa: "\f277";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-signs {
  --fa: "\f277";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cash-register {
  --fa: "\f788";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-question {
  --fa: "\e542";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-h {
  --fa: "\48";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tarp {
  --fa: "\e57b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-screwdriver-wrench {
  --fa: "\f7d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tools {
  --fa: "\f7d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-to-eye {
  --fa: "\e4bf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-bolt {
  --fa: "\e55b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart {
  --fa: "\f004";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-and-venus {
  --fa: "\f224";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-user {
  --fa: "\e1b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home-user {
  --fa: "\e1b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumpster-fire {
  --fa: "\f794";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-crack {
  --fa: "\e3b1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-martini-glass-citrus {
  --fa: "\f561";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cocktail {
  --fa: "\f561";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-surprise {
  --fa: "\f5c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-surprise {
  --fa: "\f5c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bottle-water {
  --fa: "\e4c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-pause {
  --fa: "\f28b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pause-circle {
  --fa: "\f28b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet-paper-slash {
  --fa: "\e072";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple-whole {
  --fa: "\f5d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-apple-alt {
  --fa: "\f5d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kitchen-set {
  --fa: "\e51a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-r {
  --fa: "\52";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-quarter {
  --fa: "\f2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-1 {
  --fa: "\f2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-1 {
  --fa: "\f2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-quarter {
  --fa: "\f2ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cube {
  --fa: "\f1b2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bitcoin-sign {
  --fa: "\e0b4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-dog {
  --fa: "\e573";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-solar-panel {
  --fa: "\f5ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lock-open {
  --fa: "\f3c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-elevator {
  --fa: "\e16d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-transfer {
  --fa: "\e528";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-trend-up {
  --fa: "\e529";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-flood-water-circle-arrow-right {
  --fa: "\e50f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-poll-horizontal {
  --fa: "\f682";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poll-h {
  --fa: "\f682";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle {
  --fa: "\f111";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backward-fast {
  --fa: "\f049";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-backward {
  --fa: "\f049";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-recycle {
  --fa: "\f1b8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-astronaut {
  --fa: "\f4fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-slash {
  --fa: "\e069";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trademark {
  --fa: "\f25c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-basketball {
  --fa: "\f434";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-basketball-ball {
  --fa: "\f434";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-satellite-dish {
  --fa: "\f7c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-up {
  --fa: "\f35b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-up {
  --fa: "\f35b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-screen-button {
  --fa: "\f3cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-alt {
  --fa: "\f3cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-high {
  --fa: "\f028";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-up {
  --fa: "\f028";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-rays {
  --fa: "\e593";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wallet {
  --fa: "\f555";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-check {
  --fa: "\f46c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-audio {
  --fa: "\f1c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-burger {
  --fa: "\f805";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hamburger {
  --fa: "\f805";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wrench {
  --fa: "\f0ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bugs {
  --fa: "\e4d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rupee-sign {
  --fa: "\f156";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rupee {
  --fa: "\f156";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-image {
  --fa: "\f1c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-question {
  --fa: "\f059";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-question-circle {
  --fa: "\f059";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-departure {
  --fa: "\f5b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-slash {
  --fa: "\e060";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-bookmark {
  --fa: "\e0bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-branch {
  --fa: "\f126";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-cowboy {
  --fa: "\f8c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge {
  --fa: "\e4c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-flip {
  --fa: "\f879";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-alt {
  --fa: "\f879";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-front {
  --fa: "\e2b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cat {
  --fa: "\f6be";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor-circle-exclamation {
  --fa: "\e4ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-field {
  --fa: "\e58d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-route {
  --fa: "\f4d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-question {
  --fa: "\e4e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-panorama {
  --fa: "\e209";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-medical {
  --fa: "\f7f5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teeth-open {
  --fa: "\f62f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-minus {
  --fa: "\e4ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tags {
  --fa: "\f02c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-glass {
  --fa: "\f4e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-forward-fast {
  --fa: "\f050";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fast-forward {
  --fa: "\f050";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-meh-blank {
  --fa: "\f5a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh-blank {
  --fa: "\f5a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-parking {
  --fa: "\f540";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-parking {
  --fa: "\f540";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-signal {
  --fa: "\e012";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bars-progress {
  --fa: "\f828";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tasks-alt {
  --fa: "\f828";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-faucet-drip {
  --fa: "\e006";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-flatbed {
  --fa: "\f474";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dolly-flatbed {
  --fa: "\f474";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ban-smoking {
  --fa: "\f54d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smoking-ban {
  --fa: "\f54d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-terminal {
  --fa: "\f120";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-button {
  --fa: "\f10b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-medical-flag {
  --fa: "\e514";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-basket-shopping {
  --fa: "\f291";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-basket {
  --fa: "\f291";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tape {
  --fa: "\f4db";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus-simple {
  --fa: "\f55e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus-alt {
  --fa: "\f55e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye {
  --fa: "\f06e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-sad-cry {
  --fa: "\f5b3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sad-cry {
  --fa: "\f5b3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-audio-description {
  --fa: "\f29e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-military-to-person {
  --fa: "\e54c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-shield {
  --fa: "\e4f0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-slash {
  --fa: "\f506";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen {
  --fa: "\f304";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tower-observation {
  --fa: "\e586";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-code {
  --fa: "\f1c9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signal {
  --fa: "\f012";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signal-5 {
  --fa: "\f012";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signal-perfect {
  --fa: "\f012";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bus {
  --fa: "\f207";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-xmark {
  --fa: "\e501";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-chimney {
  --fa: "\e3af";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home-lg {
  --fa: "\e3af";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-maximize {
  --fa: "\f2d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-frown {
  --fa: "\f119";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-frown {
  --fa: "\f119";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription {
  --fa: "\f5b1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shop {
  --fa: "\f54f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store-alt {
  --fa: "\f54f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-floppy-disk {
  --fa: "\f0c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-save {
  --fa: "\f0c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vihara {
  --fa: "\f6a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scale-unbalanced {
  --fa: "\f515";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale-left {
  --fa: "\f515";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-up {
  --fa: "\f0de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-asc {
  --fa: "\f0de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-dots {
  --fa: "\f4ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-commenting {
  --fa: "\f4ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plant-wilt {
  --fa: "\e5aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diamond {
  --fa: "\f219";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-squint {
  --fa: "\f585";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-squint {
  --fa: "\f585";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-dollar {
  --fa: "\f4c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-usd {
  --fa: "\f4c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-diagram {
  --fa: "\e695";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bacterium {
  --fa: "\e05a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-pointer {
  --fa: "\f25a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drum-steelpan {
  --fa: "\f56a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-scissors {
  --fa: "\f257";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-praying {
  --fa: "\f684";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-praying-hands {
  --fa: "\f684";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-rotate-right {
  --fa: "\f01e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-rotate {
  --fa: "\f01e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-rotate-forward {
  --fa: "\f01e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-redo {
  --fa: "\f01e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-biohazard {
  --fa: "\f780";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-crosshairs {
  --fa: "\f601";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location {
  --fa: "\f601";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars-double {
  --fa: "\f227";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child-dress {
  --fa: "\e59c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-between-lines {
  --fa: "\e591";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lungs-virus {
  --fa: "\e067";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-tears {
  --fa: "\f588";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tears {
  --fa: "\f588";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone {
  --fa: "\f095";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-xmark {
  --fa: "\f273";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-times {
  --fa: "\f273";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child-reaching {
  --fa: "\e59d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-head-side-virus {
  --fa: "\e064";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-gear {
  --fa: "\f4fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-cog {
  --fa: "\f4fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-1-9 {
  --fa: "\f163";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-up {
  --fa: "\f163";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-door-closed {
  --fa: "\f52a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-virus {
  --fa: "\e06c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-six {
  --fa: "\f526";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mosquito-net {
  --fa: "\e52c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-fragment {
  --fa: "\e697";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bridge-water {
  --fa: "\e4ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-booth {
  --fa: "\f756";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-text-width {
  --fa: "\f035";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-wizard {
  --fa: "\f6e8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-fancy {
  --fa: "\f5ac";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-digging {
  --fa: "\f85e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-digging {
  --fa: "\f85e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash {
  --fa: "\f1f8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge-simple {
  --fa: "\f629";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge-simple-med {
  --fa: "\f629";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-average {
  --fa: "\f629";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-medical {
  --fa: "\f7e6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-poo {
  --fa: "\f2fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-right {
  --fa: "\f10e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-right-alt {
  --fa: "\f10e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shirt {
  --fa: "\f553";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-t-shirt {
  --fa: "\f553";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tshirt {
  --fa: "\f553";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cubes {
  --fa: "\f1b3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-divide {
  --fa: "\f529";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tenge-sign {
  --fa: "\f7d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tenge {
  --fa: "\f7d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-headphones {
  --fa: "\f025";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-holding {
  --fa: "\f4c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-clapping {
  --fa: "\e1a8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-republican {
  --fa: "\f75e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left {
  --fa: "\f060";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-xmark {
  --fa: "\e543";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler {
  --fa: "\f545";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-left {
  --fa: "\f036";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-d6 {
  --fa: "\f6d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-restroom {
  --fa: "\f7bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-j {
  --fa: "\4a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-viewfinder {
  --fa: "\e595";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-video {
  --fa: "\f1c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-up-right-from-square {
  --fa: "\f35d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-external-link-alt {
  --fa: "\f35d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-cells {
  --fa: "\f00a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th {
  --fa: "\f00a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-pdf {
  --fa: "\f1c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-bible {
  --fa: "\f647";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bible {
  --fa: "\f647";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-o {
  --fa: "\4f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase-medical {
  --fa: "\f0fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medkit {
  --fa: "\f0fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-secret {
  --fa: "\f21b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-otter {
  --fa: "\f700";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-dress {
  --fa: "\f182";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-female {
  --fa: "\f182";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-dollar {
  --fa: "\f651";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-business-time {
  --fa: "\f64a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase-clock {
  --fa: "\f64a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-cells-large {
  --fa: "\f009";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-large {
  --fa: "\f009";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-tanakh {
  --fa: "\f827";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tanakh {
  --fa: "\f827";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-volume {
  --fa: "\f2a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-control-phone {
  --fa: "\f2a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hat-cowboy-side {
  --fa: "\f8c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clipboard-user {
  --fa: "\f7f3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child {
  --fa: "\f1ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lira-sign {
  --fa: "\f195";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-satellite {
  --fa: "\f7bf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-lock {
  --fa: "\e558";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tag {
  --fa: "\f02b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment {
  --fa: "\f075";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cake-candles {
  --fa: "\f1fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-birthday-cake {
  --fa: "\f1fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cake {
  --fa: "\f1fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope {
  --fa: "\f0e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angles-up {
  --fa: "\f102";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-up {
  --fa: "\f102";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paperclip {
  --fa: "\f0c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-to-city {
  --fa: "\e4b3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ribbon {
  --fa: "\f4d6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lungs {
  --fa: "\f604";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-9-1 {
  --fa: "\f887";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-up-alt {
  --fa: "\f887";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-litecoin-sign {
  --fa: "\e1d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-none {
  --fa: "\f850";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-nodes {
  --fa: "\e4e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-parachute-box {
  --fa: "\f4cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-indent {
  --fa: "\f03c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-field-un {
  --fa: "\e58e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass {
  --fa: "\f254";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hourglass-empty {
  --fa: "\f254";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mountain {
  --fa: "\f6fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-doctor {
  --fa: "\f0f0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-md {
  --fa: "\f0f0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-info {
  --fa: "\f05a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-info-circle {
  --fa: "\f05a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-meatball {
  --fa: "\f73b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera {
  --fa: "\f030";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-camera-alt {
  --fa: "\f030";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-virus {
  --fa: "\e578";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meteor {
  --fa: "\f753";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-on {
  --fa: "\e4dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sleigh {
  --fa: "\f7cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-1-9 {
  --fa: "\f162";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-asc {
  --fa: "\f162";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-numeric-down {
  --fa: "\f162";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-droplet {
  --fa: "\f4c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-water {
  --fa: "\f4c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-water {
  --fa: "\f773";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-check {
  --fa: "\f274";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-braille {
  --fa: "\f2a1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription-bottle-medical {
  --fa: "\f486";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-prescription-bottle-alt {
  --fa: "\f486";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-landmark {
  --fa: "\f66f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck {
  --fa: "\f0d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crosshairs {
  --fa: "\f05b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-cane {
  --fa: "\e53c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tent {
  --fa: "\e57d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vest-patches {
  --fa: "\e086";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-double {
  --fa: "\f560";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-a-z {
  --fa: "\f15d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-asc {
  --fa: "\f15d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-down {
  --fa: "\f15d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-wheat {
  --fa: "\e52a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cookie {
  --fa: "\f563";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-rotate-left {
  --fa: "\f0e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left-rotate {
  --fa: "\f0e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-rotate-back {
  --fa: "\f0e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-rotate-backward {
  --fa: "\f0e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-undo {
  --fa: "\f0e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hard-drive {
  --fa: "\f0a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hdd {
  --fa: "\f0a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-squint-tears {
  --fa: "\f586";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-squint-tears {
  --fa: "\f586";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dumbbell {
  --fa: "\f44b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rectangle-list {
  --fa: "\f022";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-alt {
  --fa: "\f022";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tarp-droplet {
  --fa: "\e57c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-medical-circle-check {
  --fa: "\e511";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-skiing-nordic {
  --fa: "\f7ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skiing-nordic {
  --fa: "\f7ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-plus {
  --fa: "\f271";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-arrival {
  --fa: "\f5af";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-left {
  --fa: "\f359";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-left {
  --fa: "\f359";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-train-subway {
  --fa: "\f239";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-subway {
  --fa: "\f239";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-gantt {
  --fa: "\e0e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-indian-rupee-sign {
  --fa: "\e1bc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-indian-rupee {
  --fa: "\e1bc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-inr {
  --fa: "\e1bc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop-simple {
  --fa: "\f565";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-crop-alt {
  --fa: "\f565";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-1 {
  --fa: "\f3d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-alt {
  --fa: "\f3d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-left-long {
  --fa: "\f30a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-left {
  --fa: "\f30a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dna {
  --fa: "\f471";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-virus-slash {
  --fa: "\e075";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-minus {
  --fa: "\f068";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-subtract {
  --fa: "\f068";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess {
  --fa: "\f439";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-left-long {
  --fa: "\f177";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-left {
  --fa: "\f177";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-check {
  --fa: "\e55c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-street-view {
  --fa: "\f21d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-franc-sign {
  --fa: "\e18f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-off {
  --fa: "\f026";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-asl-interpreting {
  --fa: "\f2a3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-american-sign-language-interpreting {
  --fa: "\f2a3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-asl-interpreting {
  --fa: "\f2a3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-american-sign-language-interpreting {
  --fa: "\f2a3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gear {
  --fa: "\f013";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cog {
  --fa: "\f013";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-droplet-slash {
  --fa: "\f5c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tint-slash {
  --fa: "\f5c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mosque {
  --fa: "\f678";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mosquito {
  --fa: "\e52b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-of-david {
  --fa: "\f69a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-military-rifle {
  --fa: "\e54b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-shopping {
  --fa: "\f07a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shopping-cart {
  --fa: "\f07a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vials {
  --fa: "\f493";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-plus {
  --fa: "\e55f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-place-of-worship {
  --fa: "\f67f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-vertical {
  --fa: "\f58e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hexagon-nodes {
  --fa: "\e699";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-turn-up {
  --fa: "\f148";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-up {
  --fa: "\f148";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-u {
  --fa: "\55";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-root-variable {
  --fa: "\f698";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-root-alt {
  --fa: "\f698";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clock {
  --fa: "\f017";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clock-four {
  --fa: "\f017";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backward-step {
  --fa: "\f048";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-step-backward {
  --fa: "\f048";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pallet {
  --fa: "\f482";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-faucet {
  --fa: "\e005";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baseball-bat-ball {
  --fa: "\f432";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-s {
  --fa: "\53";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-timeline {
  --fa: "\e29c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-keyboard {
  --fa: "\f11c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caret-down {
  --fa: "\f0d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-chimney-medical {
  --fa: "\f7f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clinic-medical {
  --fa: "\f7f2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-three-quarters {
  --fa: "\f2c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-3 {
  --fa: "\f2c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-3 {
  --fa: "\f2c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-three-quarters {
  --fa: "\f2c8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-screen {
  --fa: "\f3cf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-android-alt {
  --fa: "\f3cf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-up {
  --fa: "\e22d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-piggy-bank {
  --fa: "\f4d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-half {
  --fa: "\f242";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-3 {
  --fa: "\f242";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mountain-city {
  --fa: "\e52e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-coins {
  --fa: "\f51e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-khanda {
  --fa: "\f66d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sliders {
  --fa: "\f1de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sliders-h {
  --fa: "\f1de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-tree {
  --fa: "\f802";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-network-wired {
  --fa: "\f6ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-pin {
  --fa: "\f276";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hamsa {
  --fa: "\f665";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cent-sign {
  --fa: "\e3f5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flask {
  --fa: "\f0c3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-pregnant {
  --fa: "\e31e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wand-sparkles {
  --fa: "\f72b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-vertical {
  --fa: "\f142";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-v {
  --fa: "\f142";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ticket {
  --fa: "\f145";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-power-off {
  --fa: "\f011";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-right-long {
  --fa: "\f30b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-right {
  --fa: "\f30b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-flag-usa {
  --fa: "\f74d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-file {
  --fa: "\e51d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tty {
  --fa: "\f1e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teletype {
  --fa: "\f1e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagram-next {
  --fa: "\e476";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-rifle {
  --fa: "\e54e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-medical-circle-exclamation {
  --fa: "\e512";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-closed-captioning {
  --fa: "\f20a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-hiking {
  --fa: "\f6ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hiking {
  --fa: "\f6ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-venus-double {
  --fa: "\f226";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-images {
  --fa: "\f302";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calculator {
  --fa: "\f1ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-people-pulling {
  --fa: "\e535";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-n {
  --fa: "\4e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cable-car {
  --fa: "\f7da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tram {
  --fa: "\f7da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-rain {
  --fa: "\f73d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-circle-xmark {
  --fa: "\e4d4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ship {
  --fa: "\f21a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-down-to-line {
  --fa: "\e4b8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-download {
  --fa: "\f019";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin {
  --fa: "\f580";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin {
  --fa: "\f580";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-delete-left {
  --fa: "\f55a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-backspace {
  --fa: "\f55a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-dropper {
  --fa: "\f1fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eye-dropper-empty {
  --fa: "\f1fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eyedropper {
  --fa: "\f1fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-check {
  --fa: "\e5a0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-forward {
  --fa: "\f04e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile {
  --fa: "\f3ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-android {
  --fa: "\f3ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mobile-phone {
  --fa: "\f3ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-meh {
  --fa: "\f11a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-meh {
  --fa: "\f11a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-center {
  --fa: "\f037";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-skull {
  --fa: "\f6b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-dead {
  --fa: "\f6b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-card {
  --fa: "\f2c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drivers-license {
  --fa: "\f2c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-outdent {
  --fa: "\f03b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dedent {
  --fa: "\f03b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-exclamation {
  --fa: "\e4fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house {
  --fa: "\f015";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home {
  --fa: "\f015";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home-alt {
  --fa: "\f015";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-home-lg-alt {
  --fa: "\f015";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-week {
  --fa: "\f784";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laptop-medical {
  --fa: "\f812";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-b {
  --fa: "\42";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-medical {
  --fa: "\f477";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-one {
  --fa: "\f525";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kiwi-bird {
  --fa: "\f535";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-arrow-left {
  --fa: "\f0ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exchange {
  --fa: "\f0ec";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-right {
  --fa: "\f2f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-redo-alt {
  --fa: "\f2f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate-forward {
  --fa: "\f2f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-utensils {
  --fa: "\f2e7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cutlery {
  --fa: "\f2e7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-wide-short {
  --fa: "\f161";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-up {
  --fa: "\f161";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mill-sign {
  --fa: "\e1ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bowl-rice {
  --fa: "\e2eb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skull {
  --fa: "\f54c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tower-broadcast {
  --fa: "\f519";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-broadcast-tower {
  --fa: "\f519";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-pickup {
  --fa: "\f63c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-up-long {
  --fa: "\f30c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-up {
  --fa: "\f30c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stop {
  --fa: "\f04d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-merge {
  --fa: "\f387";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-upload {
  --fa: "\f093";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hurricane {
  --fa: "\f751";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mound {
  --fa: "\e52d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet-portable {
  --fa: "\e583";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-compact-disc {
  --fa: "\f51f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-arrow-down {
  --fa: "\f56d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-download {
  --fa: "\f56d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-caravan {
  --fa: "\f8ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-cat {
  --fa: "\e572";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bolt {
  --fa: "\f0e7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-zap {
  --fa: "\f0e7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-water {
  --fa: "\e4f4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-oil-well {
  --fa: "\e532";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vault {
  --fa: "\e2c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mars {
  --fa: "\f222";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toilet {
  --fa: "\f7d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane-circle-xmark {
  --fa: "\e557";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yen-sign {
  --fa: "\f157";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cny {
  --fa: "\f157";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jpy {
  --fa: "\f157";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rmb {
  --fa: "\f157";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yen {
  --fa: "\f157";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruble-sign {
  --fa: "\f158";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rouble {
  --fa: "\f158";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rub {
  --fa: "\f158";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruble {
  --fa: "\f158";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sun {
  --fa: "\f185";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-guitar {
  --fa: "\f7a6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-laugh-wink {
  --fa: "\f59c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-laugh-wink {
  --fa: "\f59c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-horse-head {
  --fa: "\f7ab";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bore-hole {
  --fa: "\e4c3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-industry {
  --fa: "\f275";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-down {
  --fa: "\f358";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-alt-circle-down {
  --fa: "\f358";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-turn-to-dots {
  --fa: "\e4c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-florin-sign {
  --fa: "\e184";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-short-wide {
  --fa: "\f884";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-desc {
  --fa: "\f884";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-down-alt {
  --fa: "\f884";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-less-than {
  --fa: "\3c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-down {
  --fa: "\f107";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-tunnel {
  --fa: "\e4de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-head-side-cough {
  --fa: "\e061";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-lines {
  --fa: "\f7a4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-down {
  --fa: "\f165";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-lock {
  --fa: "\f502";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-long {
  --fa: "\f178";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-right {
  --fa: "\f178";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor-circle-xmark {
  --fa: "\e4ac";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis {
  --fa: "\f141";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ellipsis-h {
  --fa: "\f141";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-pawn {
  --fa: "\f443";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kit-medical {
  --fa: "\f479";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-first-aid {
  --fa: "\f479";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-through-window {
  --fa: "\e5a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-toolbox {
  --fa: "\f552";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-holding-circle {
  --fa: "\e4fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bug {
  --fa: "\f188";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-credit-card {
  --fa: "\f09d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-credit-card-alt {
  --fa: "\f09d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car {
  --fa: "\f1b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-automobile {
  --fa: "\f1b9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-hand {
  --fa: "\e4f7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-open-reader {
  --fa: "\f5da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-reader {
  --fa: "\f5da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mountain-sun {
  --fa: "\e52f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-left-right-to-line {
  --fa: "\e4ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-d20 {
  --fa: "\f6cf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-droplet {
  --fa: "\e58c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-xmark {
  --fa: "\e5a1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-arrow-up {
  --fa: "\e040";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-up {
  --fa: "\e040";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-medal {
  --fa: "\f5a2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bed {
  --fa: "\f236";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-h {
  --fa: "\f0fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-h-square {
  --fa: "\f0fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-podcast {
  --fa: "\f2ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-full {
  --fa: "\f2c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-4 {
  --fa: "\f2c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-4 {
  --fa: "\f2c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer-full {
  --fa: "\f2c7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell {
  --fa: "\f0f3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-superscript {
  --fa: "\f12b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-xmark {
  --fa: "\e560";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-of-life {
  --fa: "\f621";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-slash {
  --fa: "\f3dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paint-roller {
  --fa: "\f5aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-angle {
  --fa: "\f4c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands-helping {
  --fa: "\f4c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-location-dot {
  --fa: "\f3c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map-marker-alt {
  --fa: "\f3c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file {
  --fa: "\f15b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-greater-than {
  --fa: "\3e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-swimming {
  --fa: "\f5c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swimmer {
  --fa: "\f5c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down {
  --fa: "\f063";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-droplet {
  --fa: "\f043";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tint {
  --fa: "\f043";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-eraser {
  --fa: "\f12d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-americas {
  --fa: "\f57d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth {
  --fa: "\f57d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-america {
  --fa: "\f57d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-americas {
  --fa: "\f57d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-burst {
  --fa: "\e53b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dove {
  --fa: "\f4ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-empty {
  --fa: "\f244";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-0 {
  --fa: "\f244";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-socks {
  --fa: "\f696";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-inbox {
  --fa: "\f01c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-section {
  --fa: "\e447";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge-high {
  --fa: "\f625";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-alt {
  --fa: "\f625";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-alt-fast {
  --fa: "\f625";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-open-text {
  --fa: "\f658";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital {
  --fa: "\f0f8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-alt {
  --fa: "\f0f8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hospital-wide {
  --fa: "\f0f8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-bottle {
  --fa: "\f72f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-rook {
  --fa: "\f447";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bars-staggered {
  --fa: "\f550";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-reorder {
  --fa: "\f550";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stream {
  --fa: "\f550";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dharmachakra {
  --fa: "\f655";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotdog {
  --fa: "\f80f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking-with-cane {
  --fa: "\f29d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blind {
  --fa: "\f29d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drum {
  --fa: "\f569";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ice-cream {
  --fa: "\f810";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-heart-circle-bolt {
  --fa: "\e4fc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fax {
  --fa: "\f1ac";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paragraph {
  --fa: "\f1dd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check-to-slot {
  --fa: "\f772";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vote-yea {
  --fa: "\f772";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-star-half {
  --fa: "\f089";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-boxes-stacked {
  --fa: "\f468";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-boxes {
  --fa: "\f468";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-boxes-alt {
  --fa: "\f468";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-link {
  --fa: "\f0c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chain {
  --fa: "\f0c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ear-listen {
  --fa: "\f2a2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-assistive-listening-systems {
  --fa: "\f2a2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tree-city {
  --fa: "\e587";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-play {
  --fa: "\f04b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-font {
  --fa: "\f031";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-cells-row-lock {
  --fa: "\e67a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rupiah-sign {
  --fa: "\e23d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass {
  --fa: "\f002";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search {
  --fa: "\f002";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-tennis-paddle-ball {
  --fa: "\f45d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ping-pong-paddle-ball {
  --fa: "\f45d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-tennis {
  --fa: "\f45d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-dots-from-line {
  --fa: "\f470";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagnoses {
  --fa: "\f470";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-can-arrow-up {
  --fa: "\f82a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-restore-alt {
  --fa: "\f82a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-naira-sign {
  --fa: "\e1f6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-arrow-down {
  --fa: "\f218";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-walkie-talkie {
  --fa: "\f8ef";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-pen {
  --fa: "\f31c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-edit {
  --fa: "\f31c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-receipt {
  --fa: "\f543";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-pen {
  --fa: "\f14b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-square {
  --fa: "\f14b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pencil-square {
  --fa: "\f14b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-suitcase-rolling {
  --fa: "\f5c1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-exclamation {
  --fa: "\e53f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-down {
  --fa: "\f078";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-full {
  --fa: "\f240";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery {
  --fa: "\f240";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-5 {
  --fa: "\f240";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-skull-crossbones {
  --fa: "\f714";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-compare {
  --fa: "\e13a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-ul {
  --fa: "\f0ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-dots {
  --fa: "\f0ca";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school-lock {
  --fa: "\e56f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tower-cell {
  --fa: "\e585";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-down-long {
  --fa: "\f309";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-long-arrow-alt-down {
  --fa: "\f309";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ranking-star {
  --fa: "\e561";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chess-king {
  --fa: "\f43f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-harassing {
  --fa: "\e549";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-brazilian-real-sign {
  --fa: "\e46c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-landmark-dome {
  --fa: "\f752";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-landmark-alt {
  --fa: "\f752";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up {
  --fa: "\f062";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tv {
  --fa: "\f26c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-television {
  --fa: "\f26c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tv-alt {
  --fa: "\f26c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shrimp {
  --fa: "\e448";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-list-check {
  --fa: "\f0ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tasks {
  --fa: "\f0ae";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jug-detergent {
  --fa: "\e519";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-user {
  --fa: "\f2bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-circle {
  --fa: "\f2bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-shield {
  --fa: "\f505";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wind {
  --fa: "\f72e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-burst {
  --fa: "\f5e1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-crash {
  --fa: "\f5e1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-y {
  --fa: "\59";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-snowboarding {
  --fa: "\f7ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-snowboarding {
  --fa: "\f7ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-fast {
  --fa: "\f48b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shipping-fast {
  --fa: "\f48b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fish {
  --fa: "\f578";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-graduate {
  --fa: "\f501";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-half-stroke {
  --fa: "\f042";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-adjust {
  --fa: "\f042";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clapperboard {
  --fa: "\e131";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-radiation {
  --fa: "\f7ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-radiation-alt {
  --fa: "\f7ba";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baseball {
  --fa: "\f433";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baseball-ball {
  --fa: "\f433";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jet-fighter-up {
  --fa: "\e518";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagram-project {
  --fa: "\f542";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-project-diagram {
  --fa: "\f542";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-copy {
  --fa: "\f0c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-xmark {
  --fa: "\f6a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-mute {
  --fa: "\f6a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-volume-times {
  --fa: "\f6a9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-sparkles {
  --fa: "\e05d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip {
  --fa: "\f58d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grip-horizontal {
  --fa: "\f58d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-from-square {
  --fa: "\f14d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-square {
  --fa: "\f14d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child-combatant {
  --fa: "\e4e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-child-rifle {
  --fa: "\e4e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gun {
  --fa: "\e19b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-phone {
  --fa: "\f098";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-phone-square {
  --fa: "\f098";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus {
  --fa: "\2b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-add {
  --fa: "\2b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand {
  --fa: "\f065";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-computer {
  --fa: "\e4e5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xmark {
  --fa: "\f00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-close {
  --fa: "\f00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-multiply {
  --fa: "\f00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-remove {
  --fa: "\f00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times {
  --fa: "\f00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-up-down-left-right {
  --fa: "\f047";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows {
  --fa: "\f047";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chalkboard-user {
  --fa: "\f51c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chalkboard-teacher {
  --fa: "\f51c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-peso-sign {
  --fa: "\e222";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-shield {
  --fa: "\e4d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baby {
  --fa: "\f77c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-line {
  --fa: "\e592";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-left {
  --fa: "\f10d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quote-left-alt {
  --fa: "\f10d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tractor {
  --fa: "\f722";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-arrow-up {
  --fa: "\f829";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trash-restore {
  --fa: "\f829";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-down-up-lock {
  --fa: "\e4b0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-lines-leaning {
  --fa: "\e51e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-combined {
  --fa: "\f546";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-copyright {
  --fa: "\f1f9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-equals {
  --fa: "\3d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-blender {
  --fa: "\f517";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-teeth {
  --fa: "\f62e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shekel-sign {
  --fa: "\f20b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ils {
  --fa: "\f20b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shekel {
  --fa: "\f20b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sheqel {
  --fa: "\f20b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sheqel-sign {
  --fa: "\f20b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-map {
  --fa: "\f279";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rocket {
  --fa: "\f135";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-photo-film {
  --fa: "\f87c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-photo-video {
  --fa: "\f87c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-folder-minus {
  --fa: "\f65d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hexagon-nodes-bolt {
  --fa: "\e69a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-store {
  --fa: "\f54e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-trend-up {
  --fa: "\e098";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-minus {
  --fa: "\e55e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-hanging {
  --fa: "\f4d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign {
  --fa: "\f4d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bezier-curve {
  --fa: "\f55b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bell-slash {
  --fa: "\f1f6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet {
  --fa: "\f3fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tablet-android {
  --fa: "\f3fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-school-flag {
  --fa: "\e56e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fill {
  --fa: "\f575";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-up {
  --fa: "\f106";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-drumstick-bite {
  --fa: "\f6d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-holly-berry {
  --fa: "\f7aa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-left {
  --fa: "\f053";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bacteria {
  --fa: "\e059";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-lizard {
  --fa: "\f258";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-notdef {
  --fa: "\e1fe";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-disease {
  --fa: "\f7fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase-medical {
  --fa: "\f469";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-genderless {
  --fa: "\f22d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-right {
  --fa: "\f054";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-retweet {
  --fa: "\f079";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-rear {
  --fa: "\f5de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-car-alt {
  --fa: "\f5de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pump-soap {
  --fa: "\e06b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-video-slash {
  --fa: "\f4e2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-quarter {
  --fa: "\f243";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-2 {
  --fa: "\f243";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-radio {
  --fa: "\f8d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baby-carriage {
  --fa: "\f77d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-carriage-baby {
  --fa: "\f77d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-traffic-light {
  --fa: "\f637";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thermometer {
  --fa: "\f491";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vr-cardboard {
  --fa: "\f729";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-middle-finger {
  --fa: "\f806";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-percent {
  --fa: "\25";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-percentage {
  --fa: "\25";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-moving {
  --fa: "\f4df";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-glass-water-droplet {
  --fa: "\e4f5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-display {
  --fa: "\e163";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-smile {
  --fa: "\f118";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-smile {
  --fa: "\f118";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbtack {
  --fa: "\f08d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumb-tack {
  --fa: "\f08d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trophy {
  --fa: "\f091";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-praying {
  --fa: "\f683";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pray {
  --fa: "\f683";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hammer {
  --fa: "\f6e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-peace {
  --fa: "\f25b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rotate {
  --fa: "\f2f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sync-alt {
  --fa: "\f2f1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-spinner {
  --fa: "\f110";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-robot {
  --fa: "\f544";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-peace {
  --fa: "\f67c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gears {
  --fa: "\f085";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cogs {
  --fa: "\f085";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-warehouse {
  --fa: "\f494";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-right-dots {
  --fa: "\e4b7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-splotch {
  --fa: "\f5bc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-hearts {
  --fa: "\f584";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-hearts {
  --fa: "\f584";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice-four {
  --fa: "\f524";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sim-card {
  --fa: "\f7c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-transgender {
  --fa: "\f225";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-transgender-alt {
  --fa: "\f225";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mercury {
  --fa: "\f223";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-turn-down {
  --fa: "\f149";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-down {
  --fa: "\f149";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-falling-burst {
  --fa: "\e547";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-award {
  --fa: "\f559";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ticket-simple {
  --fa: "\f3ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ticket-alt {
  --fa: "\f3ff";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building {
  --fa: "\f1ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angles-left {
  --fa: "\f100";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-double-left {
  --fa: "\f100";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-qrcode {
  --fa: "\f029";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clock-rotate-left {
  --fa: "\f1da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-history {
  --fa: "\f1da";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-beam-sweat {
  --fa: "\f583";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-beam-sweat {
  --fa: "\f583";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-export {
  --fa: "\f56e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-right-from-file {
  --fa: "\f56e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield {
  --fa: "\f132";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-blank {
  --fa: "\f132";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-short-wide {
  --fa: "\f885";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-amount-up-alt {
  --fa: "\f885";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-nodes {
  --fa: "\e696";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-medical {
  --fa: "\e3b2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-golf-ball-tee {
  --fa: "\f450";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-golf-ball {
  --fa: "\f450";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-chevron-left {
  --fa: "\f137";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chevron-circle-left {
  --fa: "\f137";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-chimney-window {
  --fa: "\e00d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-pen-nib {
  --fa: "\f5ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tent-arrow-turn-left {
  --fa: "\e580";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tents {
  --fa: "\e582";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wand-magic {
  --fa: "\f0d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magic {
  --fa: "\f0d0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dog {
  --fa: "\f6d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-carrot {
  --fa: "\f787";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-moon {
  --fa: "\f186";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-glass-empty {
  --fa: "\f5ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wine-glass-alt {
  --fa: "\f5ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cheese {
  --fa: "\f7ef";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-yin-yang {
  --fa: "\f6ad";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-music {
  --fa: "\f001";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-code-commit {
  --fa: "\f386";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-temperature-low {
  --fa: "\f76b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-biking {
  --fa: "\f84a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-biking {
  --fa: "\f84a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-broom {
  --fa: "\f51a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shield-heart {
  --fa: "\e574";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gopuram {
  --fa: "\f664";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-oceania {
  --fa: "\e47b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-oceania {
  --fa: "\e47b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-xmark {
  --fa: "\f2d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-square {
  --fa: "\f2d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xmark-square {
  --fa: "\f2d3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hashtag {
  --fa: "\23";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-up-right-and-down-left-from-center {
  --fa: "\f424";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-expand-alt {
  --fa: "\f424";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-oil-can {
  --fa: "\f613";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-t {
  --fa: "\54";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hippo {
  --fa: "\f6ed";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chart-column {
  --fa: "\e0e3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-infinity {
  --fa: "\f534";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-vial-circle-check {
  --fa: "\e596";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-arrow-down-to-line {
  --fa: "\e538";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-voicemail {
  --fa: "\f897";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fan {
  --fa: "\f863";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking-luggage {
  --fa: "\e554";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-up-down {
  --fa: "\f338";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-alt-v {
  --fa: "\f338";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-moon-rain {
  --fa: "\f73c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar {
  --fa: "\f133";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trailer {
  --fa: "\e041";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bahai {
  --fa: "\f666";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-haykal {
  --fa: "\f666";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sd-card {
  --fa: "\f7c2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dragon {
  --fa: "\f6d5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shoe-prints {
  --fa: "\f54b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-plus {
  --fa: "\f055";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-circle {
  --fa: "\f055";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grin-tongue-wink {
  --fa: "\f58b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grin-tongue-wink {
  --fa: "\f58b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding {
  --fa: "\f4bd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plug-circle-exclamation {
  --fa: "\e55d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-link-slash {
  --fa: "\f127";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chain-broken {
  --fa: "\f127";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-chain-slash {
  --fa: "\f127";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-unlink {
  --fa: "\f127";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-clone {
  --fa: "\f24d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking-arrow-loop-left {
  --fa: "\e551";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-z-a {
  --fa: "\f882";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sort-alpha-up-alt {
  --fa: "\f882";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-flame-curved {
  --fa: "\f7e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fire-alt {
  --fa: "\f7e4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tornado {
  --fa: "\f76f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-circle-plus {
  --fa: "\e494";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-quran {
  --fa: "\f687";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-quran {
  --fa: "\f687";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-anchor {
  --fa: "\f13d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-border-all {
  --fa: "\f84c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-angry {
  --fa: "\f556";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angry {
  --fa: "\f556";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cookie-bite {
  --fa: "\f564";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-trend-down {
  --fa: "\e097";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rss {
  --fa: "\f09e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-feed {
  --fa: "\f09e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-draw-polygon {
  --fa: "\f5ee";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-scale-balanced {
  --fa: "\f24e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-balance-scale {
  --fa: "\f24e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gauge-simple-high {
  --fa: "\f62a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer {
  --fa: "\f62a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tachometer-fast {
  --fa: "\f62a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-shower {
  --fa: "\f2cc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-desktop {
  --fa: "\f390";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-desktop-alt {
  --fa: "\f390";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-m {
  --fa: "\4d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-list {
  --fa: "\f00b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-th-list {
  --fa: "\f00b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-comment-sms {
  --fa: "\f7cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sms {
  --fa: "\f7cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book {
  --fa: "\f02d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-plus {
  --fa: "\f234";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-check {
  --fa: "\f00c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-three-quarters {
  --fa: "\f241";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-battery-4 {
  --fa: "\f241";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-house-circle-check {
  --fa: "\e509";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-angle-left {
  --fa: "\f104";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-diagram-successor {
  --fa: "\e47a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-truck-arrow-right {
  --fa: "\e58b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-split-up-and-left {
  --fa: "\e4bc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-fist {
  --fa: "\f6de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fist-raised {
  --fa: "\f6de";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-moon {
  --fa: "\f6c3";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-briefcase {
  --fa: "\f0b1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-falling {
  --fa: "\e546";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-image-portrait {
  --fa: "\f3e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-portrait {
  --fa: "\f3e0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-tag {
  --fa: "\f507";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rug {
  --fa: "\e569";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-europe {
  --fa: "\f7a2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-europe {
  --fa: "\f7a2";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cart-flatbed-suitcase {
  --fa: "\f59d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-luggage-cart {
  --fa: "\f59d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rectangle-xmark {
  --fa: "\f410";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-rectangle-times {
  --fa: "\f410";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-rectangle {
  --fa: "\f410";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-close {
  --fa: "\f410";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-baht-sign {
  --fa: "\e0ac";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-open {
  --fa: "\f518";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-book-journal-whills {
  --fa: "\f66a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-journal-whills {
  --fa: "\f66a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handcuffs {
  --fa: "\e4f8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-triangle-exclamation {
  --fa: "\f071";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation-triangle {
  --fa: "\f071";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-warning {
  --fa: "\f071";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-database {
  --fa: "\f1c0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share {
  --fa: "\f064";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mail-forward {
  --fa: "\f064";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bottle-droplet {
  --fa: "\e4c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mask-face {
  --fa: "\e1d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hill-rockslide {
  --fa: "\e508";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-right-left {
  --fa: "\f362";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exchange-alt {
  --fa: "\f362";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-paper-plane {
  --fa: "\f1d8";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-road-circle-exclamation {
  --fa: "\e565";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dungeon {
  --fa: "\f6d9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-align-right {
  --fa: "\f038";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-1-wave {
  --fa: "\f53b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-money-bill-wave-alt {
  --fa: "\f53b";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-life-ring {
  --fa: "\f1cd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hands {
  --fa: "\f2a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sign-language {
  --fa: "\f2a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-signing {
  --fa: "\f2a7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-day {
  --fa: "\f783";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-water-ladder {
  --fa: "\f5c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ladder-water {
  --fa: "\f5c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-swimming-pool {
  --fa: "\f5c5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-up-down {
  --fa: "\f07d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-v {
  --fa: "\f07d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-grimace {
  --fa: "\f57f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-grimace {
  --fa: "\f57f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair-move {
  --fa: "\e2ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-wheelchair-alt {
  --fa: "\e2ce";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-turn-down {
  --fa: "\f3be";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-down-alt {
  --fa: "\f3be";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-walking-arrow-right {
  --fa: "\e552";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-envelope {
  --fa: "\f199";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-envelope-square {
  --fa: "\f199";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dice {
  --fa: "\f522";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bowling-ball {
  --fa: "\f436";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-brain {
  --fa: "\f5dc";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bandage {
  --fa: "\f462";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-band-aid {
  --fa: "\f462";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-calendar-minus {
  --fa: "\f272";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-circle-xmark {
  --fa: "\f057";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-times-circle {
  --fa: "\f057";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-xmark-circle {
  --fa: "\f057";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-gifts {
  --fa: "\f79c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hotel {
  --fa: "\f594";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-earth-asia {
  --fa: "\f57e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-globe-asia {
  --fa: "\f57e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-card-clip {
  --fa: "\f47f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-id-card-alt {
  --fa: "\f47f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-plus {
  --fa: "\f00e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-plus {
  --fa: "\f00e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-thumbs-up {
  --fa: "\f164";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-clock {
  --fa: "\f4fd";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-dots {
  --fa: "\f461";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-allergies {
  --fa: "\f461";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-invoice {
  --fa: "\f570";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-window-minimize {
  --fa: "\f2d1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mug-saucer {
  --fa: "\f0f4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-coffee {
  --fa: "\f0f4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-brush {
  --fa: "\f55d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-file-half-dashed {
  --fa: "\e698";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mask {
  --fa: "\f6fa";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-minus {
  --fa: "\f010";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-minus {
  --fa: "\f010";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-ruler-vertical {
  --fa: "\f548";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-large {
  --fa: "\f406";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-alt {
  --fa: "\f406";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-train-tram {
  --fa: "\e5b4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-nurse {
  --fa: "\f82f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-syringe {
  --fa: "\f48e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-cloud-sun {
  --fa: "\f6c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stopwatch-20 {
  --fa: "\e06f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-full {
  --fa: "\f45c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnet {
  --fa: "\f076";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jar {
  --fa: "\e516";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-note-sticky {
  --fa: "\f249";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sticky-note {
  --fa: "\f249";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bug-slash {
  --fa: "\e490";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrow-up-from-water-pump {
  --fa: "\e4b6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bone {
  --fa: "\f5d7";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-table-cells-row-unlock {
  --fa: "\e691";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-user-injured {
  --fa: "\f728";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-face-sad-tear {
  --fa: "\f5b4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-sad-tear {
  --fa: "\f5b4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plane {
  --fa: "\f072";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-tent-arrows-down {
  --fa: "\e581";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-exclamation {
  --fa: "\21";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-arrows-spin {
  --fa: "\e4bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-print {
  --fa: "\f02f";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-turkish-lira-sign {
  --fa: "\e2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-try {
  --fa: "\e2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-turkish-lira {
  --fa: "\e2bb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dollar-sign {
  --fa: "\24";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-dollar {
  --fa: "\24";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-usd {
  --fa: "\24";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-x {
  --fa: "\58";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-magnifying-glass-dollar {
  --fa: "\f688";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-search-dollar {
  --fa: "\f688";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-gear {
  --fa: "\f509";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-users-cog {
  --fa: "\f509";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-military-pointing {
  --fa: "\e54a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-building-columns {
  --fa: "\f19c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-bank {
  --fa: "\f19c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-institution {
  --fa: "\f19c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-museum {
  --fa: "\f19c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-university {
  --fa: "\f19c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-umbrella {
  --fa: "\f0e9";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-trowel {
  --fa: "\e589";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-d {
  --fa: "\44";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-stapler {
  --fa: "\e5af";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-masks-theater {
  --fa: "\f630";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-theater-masks {
  --fa: "\f630";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-kip-sign {
  --fa: "\e1c4";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-point-left {
  --fa: "\f0a5";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-simple {
  --fa: "\f4c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-handshake-alt {
  --fa: "\f4c6";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-jet-fighter {
  --fa: "\f0fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-fighter-jet {
  --fa: "\f0fb";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-square-share-nodes {
  --fa: "\f1e1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-share-alt-square {
  --fa: "\f1e1";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-barcode {
  --fa: "\f02a";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-plus-minus {
  --fa: "\e43c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-video {
  --fa: "\f03d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-video-camera {
  --fa: "\f03d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-graduation-cap {
  --fa: "\f19d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-mortar-board {
  --fa: "\f19d";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-hand-holding-medical {
  --fa: "\e05c";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-person-circle-check {
  --fa: "\e53e";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-turn-up {
  --fa: "\f3bf";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_icons.scss */
.fa-level-up-alt {
  --fa: "\f3bf";
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_screen-reader.scss */
.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_mixins.scss */
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_solid.scss */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/font-awesome/fa-solid-900-4f02b0b13461a3982e90858f1314b457e47a3f730548666ec436b8ccd8a6da98.woff2) format("woff2"), url(/assets/font-awesome/fa-solid-900-55a817548b1ce5fff3a2d42413ea92fbc3a4b749532179b8105e272fefa729e3.ttf) format("truetype");
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_solid.scss */
.fas,
.fa-solid {
  font-weight: 900;
}

/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_regular.scss */
:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free';
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/font-awesome/fa-regular-400-9950fdd1091055724f7ac897285097bffbb089ceea16cc24497b18dac1f49fc0.woff2) format("woff2"), url(/assets/font-awesome/fa-regular-400-8b8641f0eee7a04cdc54abd5240b3262bc45a10b64b2fbf5cb1407509233e789.ttf) format("truetype");
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_regular.scss */
.far,
.fa-regular {
  font-weight: 400;
}

/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
:root, :host {
  --fa-style-family-brands: 'Font Awesome 6 Brands';
  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands';
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/font-awesome/fa-brands-400-3b557cf714431ca7104163e5f7e8f46ae0b7c7e88c48d02e32e09fce9c1ce23c.woff2) format("woff2"), url(/assets/font-awesome/fa-brands-400-12e5cb5aabbf34fb95468cc01b1c7b93bd617c68bba6e8e0881c993d2aa4f8b0.ttf) format("truetype");
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fab,
.fa-brands {
  font-weight: 400;
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-monero {
  --fa: "\f3d0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hooli {
  --fa: "\f427";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yelp {
  --fa: "\f1e9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-visa {
  --fa: "\f1f0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-lastfm {
  --fa: "\f202";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-shopware {
  --fa: "\f5b5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-nc {
  --fa: "\f4e8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-aws {
  --fa: "\f375";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-redhat {
  --fa: "\f7bc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yoast {
  --fa: "\f2b1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cloudflare {
  --fa: "\e07d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ups {
  --fa: "\f7e0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pixiv {
  --fa: "\e640";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wpexplorer {
  --fa: "\f2de";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dyalog {
  --fa: "\f399";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bity {
  --fa: "\f37a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stackpath {
  --fa: "\f842";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-buysellads {
  --fa: "\f20d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-first-order {
  --fa: "\f2b0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-modx {
  --fa: "\f285";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-guilded {
  --fa: "\e07e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vnv {
  --fa: "\f40b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-js {
  --fa: "\f3b9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-js-square {
  --fa: "\f3b9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-microsoft {
  --fa: "\f3ca";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-qq {
  --fa: "\f1d6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-orcid {
  --fa: "\f8d2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-java {
  --fa: "\f4e4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-invision {
  --fa: "\f7b0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-pd-alt {
  --fa: "\f4ed";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-centercode {
  --fa: "\f380";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-glide-g {
  --fa: "\f2a6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-drupal {
  --fa: "\f1a9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-jxl {
  --fa: "\e67b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dart-lang {
  --fa: "\e693";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hire-a-helper {
  --fa: "\f3b0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-by {
  --fa: "\f4e7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-unity {
  --fa: "\e049";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-whmcs {
  --fa: "\f40d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rocketchat {
  --fa: "\f3e8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vk {
  --fa: "\f189";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-untappd {
  --fa: "\f405";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mailchimp {
  --fa: "\f59e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-css3-alt {
  --fa: "\f38b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-reddit {
  --fa: "\f1a2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-reddit-square {
  --fa: "\f1a2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vimeo-v {
  --fa: "\f27d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-contao {
  --fa: "\f26d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-font-awesome {
  --fa: "\e5ad";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-deskpro {
  --fa: "\f38f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-brave {
  --fa: "\e63c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sistrix {
  --fa: "\f3ee";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-instagram {
  --fa: "\e055";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-instagram-square {
  --fa: "\e055";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-battle-net {
  --fa: "\f835";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-the-red-yeti {
  --fa: "\f69d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-hacker-news {
  --fa: "\f3af";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hacker-news-square {
  --fa: "\f3af";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-edge {
  --fa: "\f282";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-threads {
  --fa: "\e618";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-napster {
  --fa: "\f3d2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-snapchat {
  --fa: "\f2ad";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-snapchat-square {
  --fa: "\f2ad";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-plus-g {
  --fa: "\f0d5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-artstation {
  --fa: "\f77a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-markdown {
  --fa: "\f60f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sourcetree {
  --fa: "\f7d3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-plus {
  --fa: "\f2b3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-diaspora {
  --fa: "\f791";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-foursquare {
  --fa: "\f180";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stack-overflow {
  --fa: "\f16c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-github-alt {
  --fa: "\f113";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-phoenix-squadron {
  --fa: "\f511";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pagelines {
  --fa: "\f18c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-algolia {
  --fa: "\f36c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-red-river {
  --fa: "\f3e3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-sa {
  --fa: "\f4ef";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-safari {
  --fa: "\f267";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google {
  --fa: "\f1a0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-font-awesome-stroke {
  --fa: "\f35c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-font-awesome-alt {
  --fa: "\f35c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-atlassian {
  --fa: "\f77b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-linkedin-in {
  --fa: "\f0e1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-digital-ocean {
  --fa: "\f391";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-nimblr {
  --fa: "\f5a8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-chromecast {
  --fa: "\f838";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-evernote {
  --fa: "\f839";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hacker-news {
  --fa: "\f1d4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-sampling {
  --fa: "\f4f0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-adversal {
  --fa: "\f36a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons {
  --fa: "\f25e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-watchman-monitoring {
  --fa: "\e087";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fonticons {
  --fa: "\f280";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-weixin {
  --fa: "\f1d7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-shirtsinbulk {
  --fa: "\f214";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-codepen {
  --fa: "\f1cb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-git-alt {
  --fa: "\f841";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-lyft {
  --fa: "\f3c3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rev {
  --fa: "\f5b2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-windows {
  --fa: "\f17a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wizards-of-the-coast {
  --fa: "\f730";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-viadeo {
  --fa: "\f2aa";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-viadeo-square {
  --fa: "\f2aa";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-meetup {
  --fa: "\f2e0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-centos {
  --fa: "\f789";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-adn {
  --fa: "\f170";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cloudsmith {
  --fa: "\f384";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-opensuse {
  --fa: "\e62b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pied-piper-alt {
  --fa: "\f1a8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-dribbble {
  --fa: "\f397";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dribbble-square {
  --fa: "\f397";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-codiepie {
  --fa: "\f284";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-node {
  --fa: "\f419";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mix {
  --fa: "\f3cb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-steam {
  --fa: "\f1b6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-apple-pay {
  --fa: "\f416";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-scribd {
  --fa: "\f28a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-debian {
  --fa: "\e60b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-openid {
  --fa: "\f19b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-instalod {
  --fa: "\e081";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-files-pinwheel {
  --fa: "\e69f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-expeditedssl {
  --fa: "\f23e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sellcast {
  --fa: "\f2da";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-twitter {
  --fa: "\f081";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-twitter-square {
  --fa: "\f081";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-r-project {
  --fa: "\f4f7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-delicious {
  --fa: "\f1a5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-freebsd {
  --fa: "\f3a4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vuejs {
  --fa: "\f41f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-accusoft {
  --fa: "\f369";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ioxhost {
  --fa: "\f208";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fonticons-fi {
  --fa: "\f3a2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-app-store {
  --fa: "\f36f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-mastercard {
  --fa: "\f1f1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-itunes-note {
  --fa: "\f3b5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-golang {
  --fa: "\e40f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-kickstarter {
  --fa: "\f3bb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-kickstarter {
  --fa: "\f3bb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-grav {
  --fa: "\f2d6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-weibo {
  --fa: "\f18a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-uncharted {
  --fa: "\e084";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-firstdraft {
  --fa: "\f3a1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-youtube {
  --fa: "\f431";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-youtube-square {
  --fa: "\f431";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wikipedia-w {
  --fa: "\f266";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wpressr {
  --fa: "\f3e4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rendact {
  --fa: "\f3e4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-angellist {
  --fa: "\f209";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-galactic-republic {
  --fa: "\f50c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-nfc-directional {
  --fa: "\e530";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-skype {
  --fa: "\f17e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-joget {
  --fa: "\f3b7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fedora {
  --fa: "\f798";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stripe-s {
  --fa: "\f42a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-meta {
  --fa: "\e49b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-laravel {
  --fa: "\f3bd";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hotjar {
  --fa: "\f3b1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bluetooth-b {
  --fa: "\f294";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-letterboxd {
  --fa: "\e62e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sticker-mule {
  --fa: "\f3f7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-zero {
  --fa: "\f4f3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hips {
  --fa: "\f452";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-css {
  --fa: "\e6a2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-behance {
  --fa: "\f1b4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-reddit {
  --fa: "\f1a1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-discord {
  --fa: "\f392";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-chrome {
  --fa: "\f268";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-app-store-ios {
  --fa: "\f370";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-discover {
  --fa: "\f1f2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wpbeginner {
  --fa: "\f297";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-confluence {
  --fa: "\f78d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-shoelace {
  --fa: "\e60c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mdb {
  --fa: "\f8ca";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dochub {
  --fa: "\f394";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-accessible-icon {
  --fa: "\f368";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ebay {
  --fa: "\f4f4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-amazon {
  --fa: "\f270";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-unsplash {
  --fa: "\e07c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yarn {
  --fa: "\f7e3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-steam {
  --fa: "\f1b7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-steam-square {
  --fa: "\f1b7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-500px {
  --fa: "\f26e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-vimeo {
  --fa: "\f194";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vimeo-square {
  --fa: "\f194";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-asymmetrik {
  --fa: "\f372";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-font-awesome {
  --fa: "\f2b4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-font-awesome-flag {
  --fa: "\f2b4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-font-awesome-logo-full {
  --fa: "\f2b4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gratipay {
  --fa: "\f184";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-apple {
  --fa: "\f179";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hive {
  --fa: "\e07f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gitkraken {
  --fa: "\f3a6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-keybase {
  --fa: "\f4f5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-apple-pay {
  --fa: "\f415";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-padlet {
  --fa: "\e4a0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-amazon-pay {
  --fa: "\f42c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-github {
  --fa: "\f092";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-github-square {
  --fa: "\f092";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stumbleupon {
  --fa: "\f1a4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fedex {
  --fa: "\f797";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-phoenix-framework {
  --fa: "\f3dc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-shopify {
  --fa: "\e057";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-neos {
  --fa: "\f612";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-threads {
  --fa: "\e619";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hackerrank {
  --fa: "\f5f7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-researchgate {
  --fa: "\f4f8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-swift {
  --fa: "\f8e1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-angular {
  --fa: "\f420";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-speakap {
  --fa: "\f3f3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-angrycreative {
  --fa: "\f36e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-y-combinator {
  --fa: "\f23b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-empire {
  --fa: "\f1d1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-envira {
  --fa: "\f299";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-scholar {
  --fa: "\e63b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-gitlab {
  --fa: "\e5ae";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gitlab-square {
  --fa: "\e5ae";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-studiovinari {
  --fa: "\f3f8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pied-piper {
  --fa: "\f2ae";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wordpress {
  --fa: "\f19a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-product-hunt {
  --fa: "\f288";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-firefox {
  --fa: "\f269";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-linode {
  --fa: "\f2b8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-goodreads {
  --fa: "\f3a8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-odnoklassniki {
  --fa: "\f264";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-odnoklassniki-square {
  --fa: "\f264";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-jsfiddle {
  --fa: "\f1cc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sith {
  --fa: "\f512";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-themeisle {
  --fa: "\f2b2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-page4 {
  --fa: "\f3d7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hashnode {
  --fa: "\e499";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-react {
  --fa: "\f41b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-paypal {
  --fa: "\f1f4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-squarespace {
  --fa: "\f5be";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-stripe {
  --fa: "\f1f5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-share {
  --fa: "\f4f2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bitcoin {
  --fa: "\f379";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-keycdn {
  --fa: "\f3ba";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-opera {
  --fa: "\f26a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-itch-io {
  --fa: "\f83a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-umbraco {
  --fa: "\f8e8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-galactic-senate {
  --fa: "\f50d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ubuntu {
  --fa: "\f7df";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-draft2digital {
  --fa: "\f396";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stripe {
  --fa: "\f429";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-houzz {
  --fa: "\f27c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gg {
  --fa: "\f260";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dhl {
  --fa: "\f790";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-pinterest {
  --fa: "\f0d3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pinterest-square {
  --fa: "\f0d3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-xing {
  --fa: "\f168";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-blackberry {
  --fa: "\f37b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-pd {
  --fa: "\f4ec";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-playstation {
  --fa: "\f3df";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-quinscape {
  --fa: "\f459";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-less {
  --fa: "\f41d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-blogger-b {
  --fa: "\f37d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-opencart {
  --fa: "\f23d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vine {
  --fa: "\f1ca";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-signal-messenger {
  --fa: "\e663";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-paypal {
  --fa: "\f1ed";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gitlab {
  --fa: "\f296";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-typo3 {
  --fa: "\f42b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-reddit-alien {
  --fa: "\f281";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yahoo {
  --fa: "\f19e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dailymotion {
  --fa: "\e052";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-affiliatetheme {
  --fa: "\f36b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pied-piper-pp {
  --fa: "\f1a7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bootstrap {
  --fa: "\f836";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-odnoklassniki {
  --fa: "\f263";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-nfc-symbol {
  --fa: "\e531";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mintbit {
  --fa: "\e62f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ethereum {
  --fa: "\f42e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-speaker-deck {
  --fa: "\f83c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-nc-eu {
  --fa: "\f4e9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-patreon {
  --fa: "\f3d9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-avianex {
  --fa: "\f374";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ello {
  --fa: "\f5f1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gofore {
  --fa: "\f3a7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bimobject {
  --fa: "\f378";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-brave-reverse {
  --fa: "\e63d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-facebook-f {
  --fa: "\f39e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-google-plus {
  --fa: "\f0d4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-plus-square {
  --fa: "\f0d4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-web-awesome {
  --fa: "\e682";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mandalorian {
  --fa: "\f50f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-first-order-alt {
  --fa: "\f50a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-osi {
  --fa: "\f41a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-wallet {
  --fa: "\f1ee";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-d-and-d-beyond {
  --fa: "\f6ca";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-periscope {
  --fa: "\f3da";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fulcrum {
  --fa: "\f50b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cloudscale {
  --fa: "\f383";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-forumbee {
  --fa: "\f211";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mizuni {
  --fa: "\f3cc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-schlix {
  --fa: "\f3ea";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-xing {
  --fa: "\f169";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-xing-square {
  --fa: "\f169";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bandcamp {
  --fa: "\f2d5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wpforms {
  --fa: "\f298";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cloudversify {
  --fa: "\f385";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-usps {
  --fa: "\f7e1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-megaport {
  --fa: "\f5a3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-magento {
  --fa: "\f3c4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-spotify {
  --fa: "\f1bc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-optin-monster {
  --fa: "\f23c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fly {
  --fa: "\f417";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-bluesky {
  --fa: "\e6a3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-aviato {
  --fa: "\f421";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-itunes {
  --fa: "\f3b4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cuttlefish {
  --fa: "\f38c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-blogger {
  --fa: "\f37c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-flickr {
  --fa: "\f16e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-viber {
  --fa: "\f409";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-soundcloud {
  --fa: "\f1be";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-digg {
  --fa: "\f1a6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-tencent-weibo {
  --fa: "\f1d5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-letterboxd {
  --fa: "\e62d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-symfony {
  --fa: "\f83d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-maxcdn {
  --fa: "\f136";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-etsy {
  --fa: "\f2d7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-facebook-messenger {
  --fa: "\f39f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-audible {
  --fa: "\f373";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-think-peaks {
  --fa: "\f731";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bilibili {
  --fa: "\e3d9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-erlang {
  --fa: "\f39d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-x-twitter {
  --fa: "\e61b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cotton-bureau {
  --fa: "\f89e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dashcube {
  --fa: "\f210";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-42-group {
  --fa: "\e080";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-innosoft {
  --fa: "\e080";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stack-exchange {
  --fa: "\f18d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-elementor {
  --fa: "\f430";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-pied-piper {
  --fa: "\e01e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pied-piper-square {
  --fa: "\e01e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-nd {
  --fa: "\f4eb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-palfed {
  --fa: "\f3d8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-superpowers {
  --fa: "\f2dd";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-resolving {
  --fa: "\f3e7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-xbox {
  --fa: "\f412";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-web-awesome-stroke {
  --fa: "\e684";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-searchengin {
  --fa: "\f3eb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-tiktok {
  --fa: "\e07b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-facebook {
  --fa: "\f082";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-facebook-square {
  --fa: "\f082";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-renren {
  --fa: "\f18b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-linux {
  --fa: "\f17c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-glide {
  --fa: "\f2a5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-linkedin {
  --fa: "\f08c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hubspot {
  --fa: "\f3b2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-deploydog {
  --fa: "\f38e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-twitch {
  --fa: "\f1e8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-flutter {
  --fa: "\e694";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ravelry {
  --fa: "\f2d9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mixer {
  --fa: "\e056";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-lastfm {
  --fa: "\f203";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-lastfm-square {
  --fa: "\f203";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vimeo {
  --fa: "\f40a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mendeley {
  --fa: "\f7b3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-uniregistry {
  --fa: "\f404";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-figma {
  --fa: "\f799";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-remix {
  --fa: "\f4ee";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-amazon-pay {
  --fa: "\f42d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dropbox {
  --fa: "\f16b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-instagram {
  --fa: "\f16d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cmplid {
  --fa: "\e360";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-upwork {
  --fa: "\e641";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-facebook {
  --fa: "\f09a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gripfire {
  --fa: "\f3ac";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-jedi-order {
  --fa: "\f50e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-uikit {
  --fa: "\f403";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fort-awesome-alt {
  --fa: "\f3a3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-phabricator {
  --fa: "\f3db";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ussunnah {
  --fa: "\f407";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-earlybirds {
  --fa: "\f39a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-trade-federation {
  --fa: "\f513";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-autoprefixer {
  --fa: "\f41c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-whatsapp {
  --fa: "\f232";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-upwork {
  --fa: "\e67c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-slideshare {
  --fa: "\f1e7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-play {
  --fa: "\f3ab";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-viadeo {
  --fa: "\f2a9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-line {
  --fa: "\f3c0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-drive {
  --fa: "\f3aa";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-servicestack {
  --fa: "\f3ec";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-simplybuilt {
  --fa: "\f215";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bitbucket {
  --fa: "\f171";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-imdb {
  --fa: "\f2d8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-deezer {
  --fa: "\e077";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-raspberry-pi {
  --fa: "\f7bb";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-jira {
  --fa: "\f7b1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-docker {
  --fa: "\f395";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-screenpal {
  --fa: "\e570";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bluetooth {
  --fa: "\f293";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gitter {
  --fa: "\f426";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-d-and-d {
  --fa: "\f38d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-microblog {
  --fa: "\e01a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-diners-club {
  --fa: "\f24c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gg-circle {
  --fa: "\f261";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pied-piper-hat {
  --fa: "\f4e5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-kickstarter-k {
  --fa: "\f3bc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yandex {
  --fa: "\f413";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-readme {
  --fa: "\f4d5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-html5 {
  --fa: "\f13b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sellsy {
  --fa: "\f213";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-web-awesome {
  --fa: "\e683";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sass {
  --fa: "\f41e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wirsindhandwerk {
  --fa: "\e2d0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wsh {
  --fa: "\e2d0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-buromobelexperte {
  --fa: "\f37f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-salesforce {
  --fa: "\f83b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-octopus-deploy {
  --fa: "\e082";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-medapps {
  --fa: "\f3c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ns8 {
  --fa: "\f3d5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pinterest-p {
  --fa: "\f231";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-apper {
  --fa: "\f371";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fort-awesome {
  --fa: "\f286";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-waze {
  --fa: "\f83f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bluesky {
  --fa: "\e671";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-jcb {
  --fa: "\f24b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-snapchat {
  --fa: "\f2ab";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-snapchat-ghost {
  --fa: "\f2ab";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-fantasy-flight-games {
  --fa: "\f6dc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rust {
  --fa: "\e07a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wix {
  --fa: "\f5cf";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-behance {
  --fa: "\f1b5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-behance-square {
  --fa: "\f1b5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-supple {
  --fa: "\f3f9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-webflow {
  --fa: "\e65c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rebel {
  --fa: "\f1d0";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-css3 {
  --fa: "\f13c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-staylinked {
  --fa: "\f3f5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-kaggle {
  --fa: "\f5fa";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-space-awesome {
  --fa: "\e5ac";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-deviantart {
  --fa: "\f1bd";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cpanel {
  --fa: "\f388";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-goodreads-g {
  --fa: "\f3a9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-git {
  --fa: "\f1d2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-git-square {
  --fa: "\f1d2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-tumblr {
  --fa: "\f174";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-tumblr-square {
  --fa: "\f174";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-trello {
  --fa: "\f181";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-nc-jp {
  --fa: "\f4ea";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-get-pocket {
  --fa: "\f265";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-perbyte {
  --fa: "\e083";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-grunt {
  --fa: "\f3ad";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-weebly {
  --fa: "\f5cc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-connectdevelop {
  --fa: "\f20e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-leanpub {
  --fa: "\f212";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-black-tie {
  --fa: "\f27e";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-themeco {
  --fa: "\f5c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-python {
  --fa: "\f3e2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-android {
  --fa: "\f17b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-bots {
  --fa: "\e340";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-free-code-camp {
  --fa: "\f2c5";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-hornbill {
  --fa: "\f592";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-js {
  --fa: "\f3b8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ideal {
  --fa: "\e013";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-git {
  --fa: "\f1d3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dev {
  --fa: "\f6cc";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sketch {
  --fa: "\f7c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yandex-international {
  --fa: "\f414";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-cc-amex {
  --fa: "\f1f3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-uber {
  --fa: "\f402";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-github {
  --fa: "\f09b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-php {
  --fa: "\f457";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-alipay {
  --fa: "\f642";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-youtube {
  --fa: "\f167";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-skyatlas {
  --fa: "\f216";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-firefox-browser {
  --fa: "\e007";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-replyd {
  --fa: "\f3e6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-suse {
  --fa: "\f7d6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-jenkins {
  --fa: "\f3b6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-twitter {
  --fa: "\f099";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-rockrms {
  --fa: "\f3e9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pinterest {
  --fa: "\f0d2";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-buffer {
  --fa: "\f837";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-npm {
  --fa: "\f3d4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-yammer {
  --fa: "\f840";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-btc {
  --fa: "\f15a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-dribbble {
  --fa: "\f17d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stumbleupon-circle {
  --fa: "\f1a3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-internet-explorer {
  --fa: "\f26b";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-stubber {
  --fa: "\e5c7";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-telegram {
  --fa: "\f2c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-telegram-plane {
  --fa: "\f2c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-old-republic {
  --fa: "\f510";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-odysee {
  --fa: "\e5c6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-whatsapp {
  --fa: "\f40c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-whatsapp-square {
  --fa: "\f40c";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-node-js {
  --fa: "\f3d3";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-edge-legacy {
  --fa: "\e078";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-slack {
  --fa: "\f198";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-slack-hash {
  --fa: "\f198";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-medrt {
  --fa: "\f3c8";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-usb {
  --fa: "\f287";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-tumblr {
  --fa: "\f173";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-vaadin {
  --fa: "\f408";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-quora {
  --fa: "\f2c4";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-square-x-twitter {
  --fa: "\e61a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-reacteurope {
  --fa: "\f75d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-medium {
  --fa: "\f23a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-medium-m {
  --fa: "\f23a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-amilia {
  --fa: "\f36d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mixcloud {
  --fa: "\f289";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-flipboard {
  --fa: "\f44d";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-viacoin {
  --fa: "\f237";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-critical-role {
  --fa: "\f6c9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-sitrox {
  --fa: "\e44a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-discourse {
  --fa: "\f393";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-joomla {
  --fa: "\f1aa";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-mastodon {
  --fa: "\f4f6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-airbnb {
  --fa: "\f834";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wolf-pack-battalion {
  --fa: "\f514";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-buy-n-large {
  --fa: "\f8a6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-gulp {
  --fa: "\f3ae";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-creative-commons-sampling-plus {
  --fa: "\f4f1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-strava {
  --fa: "\f428";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-ember {
  --fa: "\f423";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-canadian-maple-leaf {
  --fa: "\f785";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-teamspeak {
  --fa: "\f4f9";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pushed {
  --fa: "\f3e1";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wordpress-simple {
  --fa: "\f411";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-nutritionix {
  --fa: "\f3d6";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-wodu {
  --fa: "\e088";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-google-pay {
  --fa: "\e079";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-intercom {
  --fa: "\f7af";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-zhihu {
  --fa: "\f63f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-korvue {
  --fa: "\f42f";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-pix {
  --fa: "\e43a";
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/font-awesome-sass-6.7.2/assets/stylesheets/font-awesome/_brands.scss */
.fa-steam-symbol {
  --fa: "\f3f6";
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-RegularItalic-bb5d972a7a4b24202b2eab2d01bf52ea34a9bec9050174d6a7c5a7519ac48a9b.woff2) format("woff2"), url(/assets/fonts/Gibson-RegularItalic-d9416ce59d84f2665cf163d501736baa6dc572eb65c20b34640a17208a4460f0.woff) format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-Regular-e483baf7f0ba9e733229bab2c4ad2ae8b2a0f1d6bcc775e2e763fed62fab6ede.woff2) format("woff2"), url(/assets/fonts/Gibson-Regular-03d9c9f1d88f1d833622d580fb09a1e09b5cc19bde994faf940e914e17a42e8c.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-BoldItalic-ef363fee333829346b5b37bbd4f85bf5bdaa1c506e37bbeef971a4d4f193cbcd.woff2) format("woff2"), url(/assets/fonts/Gibson-BoldItalic-c22bc97dbc5c33438d150107d7df39766aa50e08617952b44a3b174996a6ee25.woff) format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-SemiBold-1565416337d8a345e1cd4371937e17c0d0e99f146950b6da3cacbcbc762d51c3.woff2) format("woff2"), url(/assets/fonts/Gibson-SemiBold-4ec662dff6c017b81a0b7ae9d5df051840fa3f25833c2a83e79e686c95da1e3b.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-Bold-32fea9921e85eebb46635849d6a78f04bf0ce8ccf1fc810a1f20b2a9743d6a9a.woff2) format("woff2"), url(/assets/fonts/Gibson-Bold-bcb39fdc66ff91776e7aee2e64f68199b43372489977adaec80838724a1589c9.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gibson';
  src: url(/assets/fonts/Gibson-Light-d4af48d5e5a4c4761b4eeee84e8fc8c14c1d773ccce1a784fc5726a5c2a606d8.woff2) format("woff2"), url(/assets/fonts/Gibson-Light-61f0605e75d21ff290d0d1f8a64ebaa5712bed8b4ca1f53932e8ba6121ff47f8.woff) format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Axia';
  src: url(/assets/fonts/AxiaBlack-Regular-632892d99358aea0919e870846da4d84d9e204e2cd6b0de0f0df6da28a09216e.woff2) format("woff2"), url(/assets/fonts/AxiaBlack-Regular-1a9ef95c2ad5d4ecb24979e44ca85b2577befa35b80216ed079be6c44e5c792c.woff) format("woff");
  font-weight: 900;
  font-style: normal;
}

/* line 57, app/assets/stylesheets/tetherx-fonts.scss */
html * {
  font-family: 'Gibson', 'Helvetica Neue', 'Helvetica';
}

/* line 62, app/assets/stylesheets/tetherx-fonts.scss */
html *:not(em, del, b, strong) {
  font-style: normal;
  font-weight: 300;
}

/* line 67, app/assets/stylesheets/tetherx-fonts.scss */
p {
  font-family: 'Gibson', 'Helvetica Neue', 'Helvetica';
  font-weight: 300 !important;
  font-style: normal;
}

/* line 74, app/assets/stylesheets/tetherx-fonts.scss */
p a {
  text-decoration: none;
  line-height: 1;
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 2px 0px;
  overflow: hidden;
  color: #333;
  vertical-align: bottom;
  transition: color .3s ease-out;
}

/* line 89, app/assets/stylesheets/tetherx-fonts.scss */
p a:not(.toggle_button)::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translateY(calc(100% - 2px));
  width: 100%;
  height: 100%;
  background-image: linear-gradient(60deg, #64b3f4 0%, #c2e59c 100%);
  transition: transform .25s ease-out;
}

/* line 102, app/assets/stylesheets/tetherx-fonts.scss */
b {
  font-weight: 600;
}

/* line 106, app/assets/stylesheets/tetherx-fonts.scss */
.btn {
  font-weight: 300 !important;
  font-style: normal !important;
}

/* line 111, app/assets/stylesheets/tetherx-fonts.scss */
h1 {
  font-family: 'Gibson', 'Helvetica Neue', 'Helvetica';
  font-weight: 900;
  font-style: normal;
}

/* line 117, app/assets/stylesheets/tetherx-fonts.scss */
h2, h3, h4 {
  margin-bottom: 0.2rem;
  font-family: 'Gibson', 'Helvetica Neue', 'Helvetica';
  font-weight: normal;
  font-style: normal;
}

/* line 124, app/assets/stylesheets/tetherx-fonts.scss */
h5, h6 {
  margin-bottom: 0.2rem;
  font-family: 'Gibson', 'Helvetica Neue', 'Helvetica';
  font-weight: 300 !important;
  font-style: normal;
}

/* line 131, app/assets/stylesheets/tetherx-fonts.scss */
h5 {
  font-size: 1rem;
}

/* line 135, app/assets/stylesheets/tetherx-fonts.scss */
.light {
  font-weight: 300;
  font-style: normal;
}

/* line 140, app/assets/stylesheets/tetherx-fonts.scss */
.axia {
  font-family: 'Axia';
  font-weight: 900;
  font-style: normal;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.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;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_single.scss */
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.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;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline {
  float: left;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_multiple.scss */
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.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;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results {
  display: block;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-results__option[aria-selected] {
  cursor: pointer;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown {
  left: 0;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown {
  display: block;
  padding: 4px;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* line 70, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/_dropdown.scss */
.select2-search--dropdown.select2-search--hide {
  display: none;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.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);
}

/* line 36, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/core.scss */
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.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;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

/* line 77, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_single.scss */
.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;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
  padding: 1px;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.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;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/* line 81, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

/* line 88, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/_multiple.scss */
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.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;
}

/* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/default/layout.scss */
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

/* line 75, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 90, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

/* line 98, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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;
}

/* line 106, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_single.scss */
.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);
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto;
}

/* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/_multiple.scss */
.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;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/rails-assets-select2-4.0.13/app/assets/stylesheets/select2/theme/classic/layout.scss */
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*!
 * jQuery UI CSS Framework 1.11.4
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/*
 *= require jquery-ui/base
 *= require jquery-ui/theme
 */
/* line 1, vendor/assets/stylesheets/password.min.css */
.pass-graybar {
  height: 3px;
  background-color: #ccc;
  width: 100%;
  position: relative;
}

/* line 1, vendor/assets/stylesheets/password.min.css */
.pass-colorbar {
  height: 3px;
  background-image: url(/assets/passwordstrength-9ca6d5b963f4f15bf7a09bbd463ebef5c1d732c28a947efc859dae6375360f41.jpg);
  position: absolute;
  top: 0;
  left: 0;
}

/* line 1, vendor/assets/stylesheets/password.min.css */
.pass-percent, .pass-text {
  font-size: 1em;
}

/* line 1, vendor/assets/stylesheets/password.min.css */
.pass-percent {
  margin-right: 5px;
}

/* required styles */
/* line 3, vendor/assets/stylesheets/leaflet.scss */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 17, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container {
  overflow: hidden;
}

/* line 20, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
/* line 29, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tile::-moz-selection {
  background: transparent;
}
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
/* line 33, vendor/assets/stylesheets/leaflet.scss */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
/* line 37, vendor/assets/stylesheets/leaflet.scss */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

/* line 42, vendor/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
/* line 48, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

/* line 52, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

/* line 63, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}

/* line 67, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

/* line 73, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none;
}

/* line 77, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

/* line 80, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

/* line 83, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

/* line 87, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tile-loaded {
  visibility: inherit;
}

/* line 90, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
/* line 98, vendor/assets/stylesheets/leaflet.scss */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

/* line 102, vendor/assets/stylesheets/leaflet.scss */
.leaflet-pane {
  z-index: 400;
}

/* line 104, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tile-pane {
  z-index: 200;
}

/* line 105, vendor/assets/stylesheets/leaflet.scss */
.leaflet-overlay-pane {
  z-index: 400;
}

/* line 106, vendor/assets/stylesheets/leaflet.scss */
.leaflet-shadow-pane {
  z-index: 500;
}

/* line 107, vendor/assets/stylesheets/leaflet.scss */
.leaflet-marker-pane {
  z-index: 600;
}

/* line 108, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-pane {
  z-index: 650;
}

/* line 109, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-pane {
  z-index: 700;
}

/* line 111, vendor/assets/stylesheets/leaflet.scss */
.leaflet-map-pane canvas {
  z-index: 100;
}

/* line 112, vendor/assets/stylesheets/leaflet.scss */
.leaflet-map-pane svg {
  z-index: 200;
}

/* line 114, vendor/assets/stylesheets/leaflet.scss */
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

/* line 118, vendor/assets/stylesheets/leaflet.scss */
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
/* line 127, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* line 133, vendor/assets/stylesheets/leaflet.scss */
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

/* line 139, vendor/assets/stylesheets/leaflet.scss */
.leaflet-top {
  top: 0;
}

/* line 142, vendor/assets/stylesheets/leaflet.scss */
.leaflet-right {
  right: 0;
}

/* line 145, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bottom {
  bottom: 0;
}

/* line 148, vendor/assets/stylesheets/leaflet.scss */
.leaflet-left {
  left: 0;
}

/* line 151, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control {
  float: left;
  clear: both;
}

/* line 155, vendor/assets/stylesheets/leaflet.scss */
.leaflet-right .leaflet-control {
  float: right;
}

/* line 158, vendor/assets/stylesheets/leaflet.scss */
.leaflet-top .leaflet-control {
  margin-top: 10px;
}

/* line 161, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

/* line 164, vendor/assets/stylesheets/leaflet.scss */
.leaflet-left .leaflet-control {
  margin-left: 10px;
}

/* line 167, vendor/assets/stylesheets/leaflet.scss */
.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
/* line 174, vendor/assets/stylesheets/leaflet.scss */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

/* line 180, vendor/assets/stylesheets/leaflet.scss */
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

/* line 183, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-animated {
  transform-origin: 0 0;
}

/* line 188, vendor/assets/stylesheets/leaflet.scss */
svg.leaflet-zoom-animated {
  will-change: transform;
}

/* line 192, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

/* line 197, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}

/* line 204, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
/* line 211, vendor/assets/stylesheets/leaflet.scss */
.leaflet-interactive {
  cursor: pointer;
}

/* line 214, vendor/assets/stylesheets/leaflet.scss */
.leaflet-grab {
  cursor: grab;
}

/* line 219, vendor/assets/stylesheets/leaflet.scss */
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

/* line 223, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

/* line 227, vendor/assets/stylesheets/leaflet.scss */
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing;
}

/* marker & overlays interactivity */
/* line 237, vendor/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

/* line 245, vendor/assets/stylesheets/leaflet.scss */
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
/* line 255, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

/* line 259, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container a {
  color: #0078A8;
}

/* line 262, vendor/assets/stylesheets/leaflet.scss */
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
/* line 269, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
/* line 279, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

/* line 283, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

/* line 294, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

/* line 300, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

/* line 304, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 308, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

/* line 313, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

/* line 319, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 324, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

/* line 328, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
/* line 335, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}

/* line 341, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
/* line 348, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

/* line 353, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-toggle {
  background-image: url(/images/layers.png);
  width: 36px;
  height: 36px;
}

/* line 358, vendor/assets/stylesheets/leaflet.scss */
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/layers-2x.png);
  background-size: 26px 26px;
}

/* line 362, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

/* line 366, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

/* line 370, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

/* line 374, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

/* line 379, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

/* line 384, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

/* line 389, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

/* line 394, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
/* line 401, vendor/assets/stylesheets/leaflet.scss */
.leaflet-default-icon-path {
  /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(/images/marker-icon.png);
}

/* attribution and scale controls */
/* line 408, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* line 413, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

/* line 419, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution a {
  text-decoration: none;
}

/* line 422, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

/* line 426, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-attribution svg {
  display: inline !important;
}

/* line 429, vendor/assets/stylesheets/leaflet.scss */
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

/* line 432, vendor/assets/stylesheets/leaflet.scss */
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

/* line 435, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

/* line 448, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

/* line 453, vendor/assets/stylesheets/leaflet.scss */
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

/* line 457, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

/* line 462, vendor/assets/stylesheets/leaflet.scss */
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
/* line 471, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

/* line 476, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

/* line 481, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

/* line 488, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

/* line 492, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

/* line 502, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  transform: rotate(45deg);
}

/* line 515, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

/* line 521, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

/* line 534, vendor/assets/stylesheets/leaflet.scss */
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

/* line 538, vendor/assets/stylesheets/leaflet.scss */
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

/* line 544, vendor/assets/stylesheets/leaflet.scss */
.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

/* line 547, vendor/assets/stylesheets/leaflet.scss */
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

/* line 555, vendor/assets/stylesheets/leaflet.scss */
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
/* line 565, vendor/assets/stylesheets/leaflet.scss */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
/* line 573, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* line 588, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

/* line 592, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
/* line 605, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

/* line 608, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top {
  margin-top: -6px;
}

/* line 611, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

/* line 616, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

/* line 621, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

/* line 627, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left {
  margin-left: -6px;
}

/* line 630, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-right {
  margin-left: 6px;
}

/* line 633, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

/* line 638, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

/* line 643, vendor/assets/stylesheets/leaflet.scss */
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  /* line 653, vendor/assets/stylesheets/leaflet.scss */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}

/*
Trix 1.3.1
Copyright © 2020 Basecamp, LLC
http://trix-editor.org/*/
/* line 6, vendor/assets/stylesheets/trix.css */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

/* line 13, vendor/assets/stylesheets/trix.css */
trix-toolbar * {
  box-sizing: border-box;
}

/* line 15, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

/* line 20, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

/* line 27, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-device-width: 768px) {
  /* line 30, vendor/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}

/* line 32, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-device-width: 768px) {
  /* line 35, vendor/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}

/* line 37, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

/* line 51, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 53, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}

/* line 56, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 58, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-device-width: 768px) {
  /* line 61, vendor/assets/stylesheets/trix.css */
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}

/* line 64, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-device-width: 768px) {
  /* line 71, vendor/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}

/* line 74, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-device-width: 768px) {
  /* line 87, vendor/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}

/* line 90, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

/* line 92, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

/* line 94, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-attach::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M16.5%206v11.5a4%204%200%201%201-8%200V5a2.5%202.5%200%200%201%205%200v10.5a1%201%200%201%201-2%200V6H10v9.5a2.5%202.5%200%200%200%205%200V5a4%204%200%201%200-8%200v12.5a5.5%205.5%200%200%200%2011%200V6h-1.5z%22%2F%3E%3C%2Fsvg%3E);
  top: 8%;
  bottom: 4%;
}

/* line 98, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bold::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M15.6%2011.8c1-.7%201.6-1.8%201.6-2.8a4%204%200%200%200-4-4H7v14h7c2.1%200%203.7-1.7%203.7-3.8%200-1.5-.8-2.8-2.1-3.4zM10%207.5h3a1.5%201.5%200%201%201%200%203h-3v-3zm3.5%209H10v-3h3.5a1.5%201.5%200%201%201%200%203z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 100, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-italic::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M10%205v3h2.2l-3.4%208H6v3h8v-3h-2.2l3.4-8H18V5h-8z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 102, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-link::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M9.88%2013.7a4.3%204.3%200%200%201%200-6.07l3.37-3.37a4.26%204.26%200%200%201%206.07%200%204.3%204.3%200%200%201%200%206.06l-1.96%201.72a.91.91%200%201%201-1.3-1.3l1.97-1.71a2.46%202.46%200%200%200-3.48-3.48l-3.38%203.37a2.46%202.46%200%200%200%200%203.48.91.91%200%201%201-1.3%201.3z%22%2F%3E%3Cpath%20d%3D%22M4.25%2019.46a4.3%204.3%200%200%201%200-6.07l1.93-1.9a.91.91%200%201%201%201.3%201.3l-1.93%201.9a2.46%202.46%200%200%200%203.48%203.48l3.37-3.38c.96-.96.96-2.52%200-3.48a.91.91%200%201%201%201.3-1.3%204.3%204.3%200%200%201%200%206.07l-3.38%203.38a4.26%204.26%200%200%201-6.07%200z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 104, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-strike::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.73%2014l.28.14c.26.15.45.3.57.44.12.14.18.3.18.5%200%20.3-.15.56-.44.75-.3.2-.76.3-1.39.3A13.52%2013.52%200%200%201%207%2014.95v3.37a10.64%2010.64%200%200%200%204.84.88c1.26%200%202.35-.19%203.28-.56.93-.37%201.64-.9%202.14-1.57s.74-1.45.74-2.32c0-.26-.02-.51-.06-.75h-5.21zm-5.5-4c-.08-.34-.12-.7-.12-1.1%200-1.29.52-2.3%201.58-3.02%201.05-.72%202.5-1.08%204.34-1.08%201.62%200%203.28.34%204.97%201l-1.3%202.93c-1.47-.6-2.73-.9-3.8-.9-.55%200-.96.08-1.2.26-.26.17-.38.38-.38.64%200%20.27.16.52.48.74.17.12.53.3%201.05.53H7.23zM3%2013h18v-2H3v2z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 106, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-quote::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M6%2017h3l2-4V7H5v6h3zm8%200h3l2-4V7h-6v6h3z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 108, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12%209v3H9v7H6v-7H3V9h9zM8%204h14v3h-6v12h-3V7H8V4z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 110, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-code::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.2%2012L15%2015.2l1.4%201.4L21%2012l-4.6-4.6L15%208.8l3.2%203.2zM5.8%2012L9%208.8%207.6%207.4%203%2012l4.6%204.6L9%2015.2%205.8%2012z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 112, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20version%3D%221%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%204a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm0%206a2%202%200%201%200%200%204%202%202%200%200%200%200-4zm4%203h14v-2H8v2zm0-6h14v-2H8v2zm0-8v2h14V5H8z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 114, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M2%2017h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1%203h1.8L2%2013.1v.9h3v-1H3.2L5%2010.9V10H2v1zm5-6v2h14V5H7zm0%2014h14v-2H7v2zm0-6h14v-2H7v2z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 116, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-undo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M12.5%208c-2.6%200-5%201-6.9%202.6L2%207v9h9l-3.6-3.6A8%208%200%200%201%2020%2016l2.4-.8a10.5%2010.5%200%200%200-10-7.2z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 118, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-redo::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M18.4%2010.6a10.5%2010.5%200%200%200-16.9%204.6L4%2016a8%208%200%200%201%2012.7-3.6L13%2016h9V7l-3.6%203.6z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 120, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-8.3-.3l2.8%202.9L6%2014.2%204%2012l2-2-1.4-1.5L1%2012l.7.7zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 122, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M3%2019h19v-2H3v2zm7-6h12v-2H10v2zm-6.9-1L1%2014.2l1.4%201.4L6%2012l-.7-.7-2.8-2.8L1%209.9%203.1%2012zM3%205v2h19V5H3z%22%2F%3E%3C%2Fsvg%3E);
}

/* line 124, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialogs {
  position: relative;
}

/* line 126, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

/* line 138, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 150, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

/* line 152, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

/* line 156, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

/* line 158, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

/* line 161, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}

/* line 163, vendor/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

/* line 166, vendor/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 172, vendor/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}

/* line 175, vendor/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]::-moz-selection, trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
  background: none;
}

/* line 179, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}

/* line 181, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::selection {
  background: highlight;
}

/* line 184, vendor/assets/stylesheets/trix.css */
trix-editor .attachment.attachment--file[data-trix-mutable] {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

/* line 187, vendor/assets/stylesheets/trix.css */
trix-editor .attachment[data-trix-mutable] img {
  box-shadow: 0 0 0 2px highlight;
}

/* line 189, vendor/assets/stylesheets/trix.css */
trix-editor .attachment {
  position: relative;
}

/* line 191, vendor/assets/stylesheets/trix.css */
trix-editor .attachment:hover {
  cursor: default;
}

/* line 193, vendor/assets/stylesheets/trix.css */
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

/* line 195, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

/* line 204, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

/* line 206, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 221, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 228, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button-group {
  display: inline-flex;
}

/* line 230, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* line 242, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 244, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

/* line 246, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 248, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

/* line 260, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url(data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.4L17.6%205%2012%2010.6%206.4%205%205%206.4l5.6%205.6L5%2017.6%206.4%2019l5.6-5.6%205.6%205.6%201.4-1.4-5.6-5.6z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

/* line 273, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover {
  border-color: #333;
}

/* line 275, vendor/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

/* line 277, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__metadata-container {
  position: relative;
}

/* line 279, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

/* line 290, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 297, vendor/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

/* line 301, vendor/assets/stylesheets/trix.css */
.trix-content {
  line-height: 1.5;
}

/* line 303, vendor/assets/stylesheets/trix.css */
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 307, vendor/assets/stylesheets/trix.css */
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

/* line 310, vendor/assets/stylesheets/trix.css */
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

/* line 315, vendor/assets/stylesheets/trix.css */
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

/* line 321, vendor/assets/stylesheets/trix.css */
.trix-content li {
  margin-left: 1em;
}

/* line 323, vendor/assets/stylesheets/trix.css */
.trix-content [dir=rtl] li {
  margin-right: 1em;
}

/* line 325, vendor/assets/stylesheets/trix.css */
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

/* line 335, vendor/assets/stylesheets/trix.css */
.trix-content img {
  max-width: 100%;
  height: auto;
}

/* line 338, vendor/assets/stylesheets/trix.css */
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

/* line 342, vendor/assets/stylesheets/trix.css */
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

/* line 345, vendor/assets/stylesheets/trix.css */
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

/* line 347, vendor/assets/stylesheets/trix.css */
.trix-content .attachment__caption {
  text-align: center;
}

/* line 349, vendor/assets/stylesheets/trix.css */
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: ' · ';
}

/* line 351, vendor/assets/stylesheets/trix.css */
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

/* line 354, vendor/assets/stylesheets/trix.css */
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

/* line 358, vendor/assets/stylesheets/trix.css */
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* line 365, vendor/assets/stylesheets/trix.css */
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* line 369, vendor/assets/stylesheets/trix.css */
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 373, vendor/assets/stylesheets/trix.css */
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 1, vendor/assets/stylesheets/markercluster.scss */
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

/* line 8, vendor/assets/stylesheets/markercluster.scss */
.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

/* tetherboxes */
/* companies */
/* line 34, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker {
  margin-left: -8px !important;
  margin-top: -8px !important;
  height: 16px !important;
  width: 16px !important;
  border-radius: 8px;
  outline: none;
}

/* line 42, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker div {
  width: 11.2px;
  height: 11.2px;
  border-radius: 5.6px;
  margin-left: 2.4px;
  margin-top: 2.4px;
}

/* line 53, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster {
  margin-left: -13px !important;
  margin-top: -13px !important;
  width: 26px !important;
  height: 26px !important;
  background-clip: padding-box;
  border-radius: 13px;
}

/* line 61, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster div {
  width: 18.2px;
  height: 18.2px;
  margin-left: 3.9px;
  margin-top: 3.9px;
  text-align: center;
  border-radius: 9.1px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* line 72, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster span {
  line-height: 20.8px;
  font-size: 10.4px;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-default {
  background-color: #5b5b60;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-default .marker-default {
  background-color: #424246;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-default {
  background-color: #67676d;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-default div {
  background-color: #424246;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-warning {
  background-color: #ffcc33;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-warning .marker-warning {
  background-color: #ffbf00;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-warning {
  background-color: #ffd24d;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-warning div {
  background-color: #ffbf00;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-danger {
  background-color: #ffb3b3;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-danger .marker-danger {
  background-color: #ff8080;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-danger {
  background-color: #ffcccc;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-danger div {
  background-color: #ff8080;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-demo {
  background-color: #3333ff;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-demo .marker-demo {
  background-color: #0000FF;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-demo {
  background-color: #4d4dff;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-demo div {
  background-color: #0000FF;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-success {
  background-color: #71b870;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-success .marker-success {
  background-color: #52a451;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-success {
  background-color: #82c181;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-success div {
  background-color: #52a451;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-failed {
  background-color: #ff3333;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-failed .marker-failed {
  background-color: red;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-failed {
  background-color: #ff4d4d;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-failed div {
  background-color: red;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-silver {
  background-color: #dadada;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-silver .marker-silver {
  background-color: #c0c0c0;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-silver {
  background-color: #e6e6e6;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-silver div {
  background-color: #c0c0c0;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-gold {
  background-color: #ffdf33;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-gold .marker-gold {
  background-color: #ffd700;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-gold {
  background-color: #ffe34d;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-gold div {
  background-color: #ffd700;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-bronze {
  background-color: #d7995b;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-bronze .marker-bronze {
  background-color: #cd7f32;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-bronze {
  background-color: #dca570;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-bronze div {
  background-color: #cd7f32;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-authorised {
  background-color: #3333ff;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-authorised .marker-authorised {
  background-color: #0000FF;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-authorised {
  background-color: #4d4dff;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-authorised div {
  background-color: #0000FF;
}

/* line 81, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-oem {
  background-color: #5ec542;
}

/* line 84, vendor/assets/stylesheets/markercluster.scss */
.tetherbox-marker.marker-oem .marker-oem {
  background-color: #4aa232;
}

/* line 89, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-oem {
  background-color: #6fcb56;
}

/* line 92, vendor/assets/stylesheets/markercluster.scss */
.marker-cluster.marker-oem div {
  background-color: #4aa232;
}

/* line 98, vendor/assets/stylesheets/markercluster.scss */
.marker-default, .marker-authorised {
  color: white;
}

/* line 1, app/assets/stylesheets/datatable_theme.sass */
table {
  border-collapse: collapse;
}

/* line 4, app/assets/stylesheets/datatable_theme.sass */
table {
  border: 1px solid #ebebeb;
}

/* line 8, app/assets/stylesheets/datatable_theme.sass */
table tr td, table tr th {
  border: 1px solid #ebebeb;
  border-left: 0;
  border-right: 0;
}

/* line 13, app/assets/stylesheets/datatable_theme.sass */
table tr td {
  color: #949494 !important;
  vertical-align: top;
  padding-top: 7px;
  padding-bottom: 7px;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
}

/* line 25, app/assets/stylesheets/datatable_theme.sass */
table tr.even, table table tr.alt, table table tr:nth-of-type(even) {
  background-color: #fff;
}

/* line 29, app/assets/stylesheets/datatable_theme.sass */
table thead > tr th {
  padding-right: 20px;
  white-space: nowrap;
}

/* line 33, app/assets/stylesheets/datatable_theme.sass */
table thead > tr th {
  color: #a6a7aa !important;
  font-size: 1.0em;
}

/* line 38, app/assets/stylesheets/datatable_theme.sass */
table tbody > tr td.controls {
  vertical-align: middle !important;
}

/* line 41, app/assets/stylesheets/datatable_theme.sass */
table tbody > tr td.toggle {
  vertical-align: middle !important;
}

/* line 44, app/assets/stylesheets/datatable_theme.sass */
table tbody > tr td.nowrap {
  width: 100%;
  min-width: 220px;
  text-overflow: clip;
  white-space: nowrap;
  word-break: keep-all;
}

/* line 52, app/assets/stylesheets/datatable_theme.sass */
table .has-tip.warning {
  color: orange !important;
}

/* line 54, app/assets/stylesheets/datatable_theme.sass */
table .has-tip.alert {
  color: red !important;
}

/* line 59, app/assets/stylesheets/datatable_theme.sass */
table .progress .meter {
  opacity: 0.85;
  position: relative;
  top: 1px;
  left: 0px;
}

/* line 64, app/assets/stylesheets/datatable_theme.sass */
table .progress .progress-meter-text {
  color: black !important;
}

/* line 68, app/assets/stylesheets/datatable_theme.sass */
table .label, table .button, table .meter, table .progress {
  border-radius: 3px !important;
}

/* line 70, app/assets/stylesheets/datatable_theme.sass */
table .label .has-tip, table .button .has-tip, table .meter .has-tip, table .progress .has-tip {
  position: relative;
  top: 0px;
  color: #949494 !important;
  opacity: 0.85 !important;
  font-size: 1.02em !important;
}

/* line 77, app/assets/stylesheets/datatable_theme.sass */
table .progress.alert > .meter {
  background-color: Tomato !important;
}

/* line 80, app/assets/stylesheets/datatable_theme.sass */
.dataTables_wrapper {
  width: 100%;
}

/* line 84, app/assets/stylesheets/datatable_theme.sass */
.dataTables_wrapper .dataTables_paginate .paginate_button a.page-link {
  border: none;
}

/* line 87, app/assets/stylesheets/datatable_theme.sass */
.dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_info {
  margin-top: 1rem !important;
}

@media (min-width: 640px) {
  /* line 93, app/assets/stylesheets/datatable_theme.sass */
  .dataTables_wrapper .dt-bootstrap4 .row:first-child .col-sm-12 {
    max-width: 50%;
  }
}

/* line 95, app/assets/stylesheets/datatable_theme.sass */
.dataTables_wrapper .dt-bootstrap4 .row:nth-child(2) {
  overflow: auto;
}

@media (min-width: 640px) {
  /* line 98, app/assets/stylesheets/datatable_theme.sass */
  .dataTables_filter {
    float: right;
  }
}

/* line 102, app/assets/stylesheets/datatable_theme.sass */
.dataTables_length {
  margin-bottom: 5px;
}

/* line 106, app/assets/stylesheets/datatable_theme.sass */
table.dataTable thead .sorting:before, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_asc:before {
  bottom: 0.1em !important;
}

/* line 109, app/assets/stylesheets/datatable_theme.sass */
table.dataTable thead .sorting:after, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc:after {
  bottom: 0.1em !important;
}

/* line 112, app/assets/stylesheets/datatable_theme.sass */
.table th {
  padding-top: 0.35rem !important;
  padding-bottom: 0.2rem !important;
  font-weight: normal;
}

/* line 117, app/assets/stylesheets/datatable_theme.sass */
.dataTables_scrollBody table thead {
  visibility: collapse;
}

/* line 1012, app/assets/stylesheets/foundation_and_overrides.sass */
html {
  -webkit-text-size-adjust: none;
}

/* line 1015, app/assets/stylesheets/foundation_and_overrides.sass */
.datetimepicker {
  z-index: 999;
}

/* line 1018, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip p {
  margin-bottom: 0px;
  font-size: 100%;
}

/* line 1025, app/assets/stylesheets/foundation_and_overrides.sass */
aside.left-off-canvas-menu {
  background-color: #f8f8fa;
  border-right: 1px solid #e8e8e8;
}

/* line 1028, app/assets/stylesheets/foundation_and_overrides.sass */
aside.left-off-canvas-menu::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* line 1032, app/assets/stylesheets/foundation_and_overrides.sass */
#sidebar-nav {
  height: 100%;
}

/* line 1035, app/assets/stylesheets/foundation_and_overrides.sass */
.progress {
  min-width: 50px;
  position: relative;
}

/* line 1039, app/assets/stylesheets/foundation_and_overrides.sass */
.meter {
  float: left;
  position: absolute !important;
  height: 90% !important;
}

/* line 1044, app/assets/stylesheets/foundation_and_overrides.sass */
.progress-meter-text {
  position: absolute;
  float: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
  color: black !important;
}

/* line 1054, app/assets/stylesheets/foundation_and_overrides.sass */
.progress.amber > .meter {
  color: #ff7f00;
  background: #ff7f00;
}

/* line 1058, app/assets/stylesheets/foundation_and_overrides.sass */
.clear {
  clear: both;
}

/* line 1061, app/assets/stylesheets/foundation_and_overrides.sass */
.hide {
  display: none !important;
}

/* line 1064, app/assets/stylesheets/foundation_and_overrides.sass */
.small-icon {
  position: relative;
  top: -1px;
  max-width: 24px;
  max-height: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

/* line 1078, app/assets/stylesheets/foundation_and_overrides.sass */
.table {
  width: 100%;
}

/* line 1081, app/assets/stylesheets/foundation_and_overrides.sass */
form span.hint {
  opacity: 0.7;
  font-size: 90%;
  display: block;
  margin-bottom: 10px;
  color: #737373;
}

/* line 1091, app/assets/stylesheets/foundation_and_overrides.sass */
table.simple_table {
  border: none;
  padding: 0px;
  margin: 0px;
  background: none !important;
}

/* line 1096, app/assets/stylesheets/foundation_and_overrides.sass */
table.simple_table td {
  margin: 0px;
  padding: 0px;
  font-size: 10px;
  color: white;
}

/* line 1101, app/assets/stylesheets/foundation_and_overrides.sass */
table.simple_table .key {
  font-weight: bold;
}

/* line 1103, app/assets/stylesheets/foundation_and_overrides.sass */
table.simple_table .val {
  text-align: left;
  padding-left: 3px;
}

/* line 1108, app/assets/stylesheets/foundation_and_overrides.sass */
.no-underline {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* line 1113, app/assets/stylesheets/foundation_and_overrides.sass */
input[type=checkbox] {
  margin-right: 5px;
}

/* line 1116, app/assets/stylesheets/foundation_and_overrides.sass */
.button {
  border-radius: 5px !important;
}

/* line 1121, app/assets/stylesheets/foundation_and_overrides.sass */
.button-group label.button, .button-group a.button, .button-group span.button {
  border-left: 1px solid !important;
  border-bottom: 1px solid !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* line 1125, app/assets/stylesheets/foundation_and_overrides.sass */
.button-group > li {
  margin: 0 1px;
}

/* line 1128, app/assets/stylesheets/foundation_and_overrides.sass */
.thumbnail, .thumbnail * {
  -moz-box-sizing: content-box;
  -webkit-touch-callout: none;
}

/* line 1133, app/assets/stylesheets/foundation_and_overrides.sass */
.reveal-modal-bg {
  z-index: 10004;
}

/* line 1136, app/assets/stylesheets/foundation_and_overrides.sass */
.reveal-modal {
  z-index: 10005;
}

/* line 1139, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip {
  z-index: 10006;
}

/* line 1142, app/assets/stylesheets/foundation_and_overrides.sass */
.select2-dropdown {
  z-index: 10051;
}

/* line 1145, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip {
  z-index: 10052;
}

/* line 1148, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip > .tooltip-inner {
  background-color: #333333;
}

/* line 1151, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip .arrow:before {
  border-bottom-color: #333333 !important;
}

/* line 1154, app/assets/stylesheets/foundation_and_overrides.sass */
.tooltip a {
  color: #ff774f;
}

/* line 1157, app/assets/stylesheets/foundation_and_overrides.sass */
.overlay-div {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

/* line 1164, app/assets/stylesheets/foundation_and_overrides.sass */
.overlay.loading {
  position: sticky;
  top: calc(50% - 35px - 40px - env(safe-area-inset-top));
  left: calc(50% - 35px);
  z-index: 10000;
  display: block;
  text-align: center;
}

@media screen and (max-width: 767px) {
  /* line 1164, app/assets/stylesheets/foundation_and_overrides.sass */
  .overlay.loading {
    top: calc(50% - 35px - 40px - 65px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }
}

/* line 1175, app/assets/stylesheets/foundation_and_overrides.sass */
.overlay.loading:not(.small):before {
  margin: 0;
}

/* line 1178, app/assets/stylesheets/foundation_and_overrides.sass */
#events .thumbnails.with-opacity {
  opacity: 0.3;
}

/* line 1181, app/assets/stylesheets/foundation_and_overrides.sass */
.alert.alert-info.flat {
  border-radius: 0;
  margin-bottom: 0;
  padding: 5px;
}

/* line 1185, app/assets/stylesheets/foundation_and_overrides.sass */
.alert.alert-info.flat h5 {
  color: #1c5b64;
}

/* line 1188, app/assets/stylesheets/foundation_and_overrides.sass */
.row.no-padding {
  padding: 0 !important;
}

/* line 1191, app/assets/stylesheets/foundation_and_overrides.sass */
p {
  font-family: inherit;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  text-rendering: optimizeLegibility;
}

/* line 1202, app/assets/stylesheets/foundation_and_overrides.sass */
kbd {
  background-color: #e0f3f6 !important;
  border-color: #bbe5ec !important;
  border-style: solid !important;
  border-width: 1px !important;
  color: #333333 !important;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

/* line 1212, app/assets/stylesheets/foundation_and_overrides.sass */
.error small.error {
  display: block;
  font-size: 75%;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
  margin-top: -1px;
  padding: 0.375rem 0.5625rem 0.5625rem;
  background: #f04124;
  color: #FFFFFF;
}

/* line 1223, app/assets/stylesheets/foundation_and_overrides.sass */
.scrollable {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 10, app/assets/stylesheets/bootstrap_overrides.scss */
blockquote {
  margin: 1rem 40px !important;
}

/* line 14, app/assets/stylesheets/bootstrap_overrides.scss */
.signin-button svg {
  height: 37px;
  width: 100%;
}

/* line 19, app/assets/stylesheets/bootstrap_overrides.scss */
.signin-button text {
  font-family: 'applied-button-font-0';
}

/* line 23, app/assets/stylesheets/bootstrap_overrides.scss */
.signin-button > div[role="button"] {
  max-width: 100% !important;
  margin-top: 1rem;
}

/* line 28, app/assets/stylesheets/bootstrap_overrides.scss */
.flex-video {
  height: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  padding-bottom: 67.5%;
  padding-top: 1.5625rem;
  position: relative;
}

/* line 37, app/assets/stylesheets/bootstrap_overrides.scss */
.alert-wrapper {
  width: 100%;
  display: flow-root;
}

/* line 41, app/assets/stylesheets/bootstrap_overrides.scss */
.alert-wrapper .alert {
  float: left;
  padding: 0.25rem 1rem 0.25rem 1rem;
  margin-right: 0.5rem;
  border-radius: 1.5rem;
  display: flex;
  font-size: 0.9rem;
}

/* line 48, app/assets/stylesheets/bootstrap_overrides.scss */
.alert-wrapper .alert.alert-dismissible .close {
  position: relative;
  padding: 0;
  margin-left: 0.25rem;
}

/* line 53, app/assets/stylesheets/bootstrap_overrides.scss */
.alert-wrapper .alert b {
  font-weight: 700;
}

/* line 56, app/assets/stylesheets/bootstrap_overrides.scss */
.alert-wrapper .alert p {
  margin-bottom: auto !important;
  margin-top: auto !important;
  line-height: 1.5;
  float: left;
}

/* line 65, app/assets/stylesheets/bootstrap_overrides.scss */
.no-bullet {
  list-style-type: none;
  margin-left: 16px;
  margin-right: 16px;
  padding: 0;
  margin: 0;
}

/* line 72, app/assets/stylesheets/bootstrap_overrides.scss */
.no-bullet li {
  margin: 0;
}

/* line 74, app/assets/stylesheets/bootstrap_overrides.scss */
.no-bullet ul {
  margin-left: 1.25rem;
}

/* line 75, app/assets/stylesheets/bootstrap_overrides.scss */
.no-bullet li, .no-bullet ul, .no-bullet ol {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

/* line 82, app/assets/stylesheets/bootstrap_overrides.scss */
body {
  overflow-x: hidden;
}

/* line 88, app/assets/stylesheets/bootstrap_overrides.scss */
.radio-button-group label.btn input, .radio-button-group label.btn .tetherx-checkbox, .radio-button-group label.quote-btn input, .radio-button-group label.quote-btn .tetherx-checkbox {
  width: 0px;
  opacity: 0;
  margin: 0;
}

/* line 99, app/assets/stylesheets/bootstrap_overrides.scss */
.list-group {
  width: 100%;
}

/* line 103, app/assets/stylesheets/bootstrap_overrides.scss */
.small-icon {
  position: relative;
  top: -1px;
  max-width: 24px;
  max-height: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

/* line 112, app/assets/stylesheets/bootstrap_overrides.scss */
body label {
  margin-bottom: 0;
  display: block;
}

/* line 117, app/assets/stylesheets/bootstrap_overrides.scss */
ul, ol, dl {
  font-family: inherit;
}

/* line 121, app/assets/stylesheets/bootstrap_overrides.scss */
form span.hint {
  opacity: 0.7;
  font-size: 90%;
  display: block;
  margin-bottom: 10px;
  color: #737373;
}

/* line 129, app/assets/stylesheets/bootstrap_overrides.scss */
a.toggle_button.alert {
  position: inherit;
  padding: 0;
  margin-bottom: inherit;
  border: inherit;
  border-radius: inherit;
}

/* line 138, app/assets/stylesheets/bootstrap_overrides.scss */
.dataTables_length label {
  float: left;
}

/* line 143, app/assets/stylesheets/bootstrap_overrides.scss */
#perspectives_filter #layouts img,
#timelapse_filter img {
  max-width: 100%;
}

/* line 148, app/assets/stylesheets/bootstrap_overrides.scss */
#timelapse_filter {
  margin-bottom: 200px;
}

/* line 152, app/assets/stylesheets/bootstrap_overrides.scss */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

/* line 161, app/assets/stylesheets/bootstrap_overrides.scss */
.filter-styles .btn-block + .btn-block {
  margin-top: 0;
}

/* line 165, app/assets/stylesheets/bootstrap_overrides.scss */
.filter-styles .col-6:nth-child(even) {
  padding-left: 0.125rem;
}

/* line 169, app/assets/stylesheets/bootstrap_overrides.scss */
.filter-styles .col-6:nth-child(odd) {
  padding-right: 0.125rem;
}

/* line 173, app/assets/stylesheets/bootstrap_overrides.scss */
.filter-styles a.nav-link {
  padding-right: 9px;
  padding-left: 9px;
}

/* line 180, app/assets/stylesheets/bootstrap_overrides.scss */
.nav-tabs a.nav-link {
  padding-left: 12px;
  padding-right: 12px;
  color: #333;
}

/* line 184, app/assets/stylesheets/bootstrap_overrides.scss */
.nav-tabs a.nav-link:hover {
  background-color: #494949;
  color: white;
}

/* line 188, app/assets/stylesheets/bootstrap_overrides.scss */
.nav-tabs a.nav-link.active {
  background-color: #3c3c3c;
  color: white;
  opacity: 0.9;
}

/* line 197, app/assets/stylesheets/bootstrap_overrides.scss */
#help-page img {
  max-width: 100%;
}

/* line 203, app/assets/stylesheets/bootstrap_overrides.scss */
span.has-tip {
  display: inline-block;
}

/* line 206, app/assets/stylesheets/bootstrap_overrides.scss */
span.has-tip .fa-map-marker-alt {
  display: inline-block;
  height: 20px;
  margin-top: 4px;
}

/* line 213, app/assets/stylesheets/bootstrap_overrides.scss */
span.has-tip.alert {
  padding: 0;
}

/* line 217, app/assets/stylesheets/bootstrap_overrides.scss */
span.has-tip.warning {
  padding: 0;
}

/* line 221, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip {
  pointer-events: none;
}

/* line 224, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip.show {
  opacity: 1 !important;
}

/* line 228, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip .tooltip-inner {
  max-width: 390px;
  text-align: left;
}

/* line 231, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip .tooltip-inner table {
  border: none;
}

/* line 233, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip .tooltip-inner table tr td {
  color: white !important;
  border: none;
}

/* line 240, app/assets/stylesheets/bootstrap_overrides.scss */
.tooltip img {
  max-width: 100%;
}

/* line 246, app/assets/stylesheets/bootstrap_overrides.scss */
body a {
  cursor: pointer;
}

/* line 249, app/assets/stylesheets/bootstrap_overrides.scss */
body a:hover {
  text-decoration: none;
}

/* line 254, app/assets/stylesheets/bootstrap_overrides.scss */
body .alert a:hover {
  text-decoration: underline;
}

/* line 255, app/assets/stylesheets/bootstrap_overrides.scss */
body .alert a {
  text-decoration: underline;
}

/* line 258, app/assets/stylesheets/bootstrap_overrides.scss */
.btn.btn-primary, .dropdown-item {
  color: #333333;
  background-color: white;
  border: solid 0.8px #c3c3c3;
}

/* line 263, app/assets/stylesheets/bootstrap_overrides.scss */
.btn.btn-primary:hover, .btn.btn-primary:focus, .dropdown-item:hover, .dropdown-item:focus {
  border-color: #0f0f0f !important;
  background-color: #494949 !important;
  color: white !important;
}

/* line 269, app/assets/stylesheets/bootstrap_overrides.scss */
.btn.btn-primary.disabled, .dropdown-item.disabled {
  box-shadow: none;
  cursor: default;
  opacity: 0.9;
  border-color: #0f0f0f;
  background-color: #3c3c3c;
}

/* line 278, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu {
  width: 14rem;
}

/* line 281, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu table {
  border: none;
}

/* line 282, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu tbody {
  border-collapse: unset;
}

/* line 283, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu thead tr:not(:first-child) {
  background-color: transparent;
}

/* line 287, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu .table thead th {
  border: none;
}

/* line 292, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days td {
  padding: 0;
}

/* line 295, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days td.active {
  background-color: #324a66;
  color: white !important;
  border-radius: 50%;
}

/* line 301, app/assets/stylesheets/bootstrap_overrides.scss */
body .bootstrap-datetimepicker-widget.dropdown-menu .datepicker .datepicker-days td.day {
  border: none;
  line-height: 1.9rem;
  width: 33px;
}

/* line 313, app/assets/stylesheets/bootstrap_overrides.scss */
#content p a {
  display: inline;
  vertical-align: unset;
  text-decoration: underline;
}

/* line 314, app/assets/stylesheets/bootstrap_overrides.scss */
#content p a:before {
  content: none;
}

/* line 316, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-primary a, #content .alert-primary a:hover {
  color: #002752 !important;
  font-weight: 500;
}

/* line 317, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-secondary a, #content .alert-secondary a:hover {
  color: #202326 !important;
  font-weight: 500;
}

/* line 318, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-success a, #content .alert-success a:hover {
  color: #0b2e13 !important;
  font-weight: 500;
}

/* line 319, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-danger a, #content .alert-danger a:hover {
  color: #491217 !important;
  font-weight: 500;
}

/* line 320, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-warning a, #content .alert-warning a:hover {
  color: #533f03 !important;
  font-weight: 500;
}

/* line 321, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-info a, #content .alert-info a:hover {
  color: #062c33 !important;
  font-weight: 500;
}

/* line 322, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-light a, #content .alert-light a:hover {
  color: #686868 !important;
  font-weight: 500;
}

/* line 323, app/assets/stylesheets/bootstrap_overrides.scss */
#content .alert-dark a, #content .alert-dark a:hover {
  color: #040505 !important;
  font-weight: 500;
}

/* line 326, app/assets/stylesheets/bootstrap_overrides.scss */
#timelapse-video-content .slider {
  position: absolute;
  left: 35px;
  top: 15px;
  width: auto;
  right: 15px;
}

/* line 334, app/assets/stylesheets/bootstrap_overrides.scss */
.slider.slider-horizontal {
  width: 100%;
}

/* line 338, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand {
  padding-top: 0;
  padding-bottom: 0;
}

/* line 342, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .dropdown:hover > .dropdown-menu {
  display: block;
}

/* line 346, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .dropdown-menu {
  margin: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

/* line 351, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .dropdown-menu .dropdown-item:hover {
  background-color: #494949;
  background: #555555;
}

/* line 357, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .navbar-brand {
  font-size: inherit;
  border-color: #787878 !important;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 365, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item:not(:last-child) a:not(.dropdown-item) {
  border-right: 1px solid #787878;
}

/* line 369, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item:hover:not(#cable-status-item) {
  background-color: #555555;
}

/* line 373, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item a.nav-link {
  color: white;
}

/* line 376, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item a.nav-link.active {
  background-color: white;
}

/* line 381, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item .dropdown-menu {
  background-color: #3c3c3c;
  border-color: #343a40;
}

/* line 384, app/assets/stylesheets/bootstrap_overrides.scss */
nav.navbar.navbar-expand .nav-item .dropdown-menu .dropdown-item {
  color: white;
}

/* line 393, app/assets/stylesheets/bootstrap_overrides.scss */
ul.pagination li.paginate_button.page-item.active a.page-link {
  background: white;
  border-color: #d0d0d0;
  color: #333333;
}

/* line 402, app/assets/stylesheets/bootstrap_overrides.scss */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: #6f6f6f;
  font-size: 70%;
  line-height: 0;
}

/* line 409, app/assets/stylesheets/bootstrap_overrides.scss */
.inner-wrap .dataTables_wrapper:first-child {
  overflow: hidden;
}

/* line 411, app/assets/stylesheets/bootstrap_overrides.scss */
.inner-wrap .dataTables_wrapper:first-child .row:first-child div:not(.btn-export-dropdown):not(.btn-export-group) {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

/* line 417, app/assets/stylesheets/bootstrap_overrides.scss */
.delete_button {
  padding-left: 5px;
}

@media screen and (min-width: 1440px) and (max-width: 1680px) {
  /* line 422, app/assets/stylesheets/bootstrap_overrides.scss */
  .foundation-grid-4-col {
    max-width: 25% !important;
    float: left;
  }
}

@media (min-width: 1681px) {
  /* line 429, app/assets/stylesheets/bootstrap_overrides.scss */
  .foundation-grid-5-col {
    max-width: 20% !important;
    float: left;
  }
}

@media (max-width: 576px) {
  /* line 437, app/assets/stylesheets/bootstrap_overrides.scss */
  #view_menu #display-mode {
    padding-right: 0 !important;
  }
  /* line 441, app/assets/stylesheets/bootstrap_overrides.scss */
  #view_menu .grid_size {
    margin-left: 10px !important;
    margin-top: 0.5rem !important;
  }
  /* line 445, app/assets/stylesheets/bootstrap_overrides.scss */
  #view_menu .grid_size > span {
    width: 100%;
  }
  /* line 448, app/assets/stylesheets/bootstrap_overrides.scss */
  #view_menu .grid_size > span .slider.slider-horizontal {
    width: calc(100% - 33px);
  }
}

@media (max-width: 640px) {
  /* line 457, app/assets/stylesheets/bootstrap_overrides.scss */
  .foundation-grid-2-col {
    max-width: 50% !important;
    float: left;
    flex: 0 0 100% !important;
  }
}

@media (max-width: 640px) and (max-width: 380px) {
  /* line 463, app/assets/stylesheets/bootstrap_overrides.scss */
  .foundation-grid-1-col {
    max-width: 100% !important;
    float: left;
    flex: 0 0 100% !important;
  }
}

/* line 472, app/assets/stylesheets/bootstrap_overrides.scss */
span.loading {
  margin: auto;
}

/* line 474, app/assets/stylesheets/bootstrap_overrides.scss */
i.help-tooltip {
  margin-left: 2px;
  opacity: 0.35;
  font-size: 0.8em;
  font-weight: 100;
  position: relative;
  top: -1px;
}

/* line 484, app/assets/stylesheets/bootstrap_overrides.scss */
table thead tr {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 486, app/assets/stylesheets/bootstrap_overrides.scss */
table tr td, table tr th {
  white-space: nowrap;
}

/* line 492, app/assets/stylesheets/bootstrap_overrides.scss */
body .progress {
  height: 1.6rem;
}

/* line 496, app/assets/stylesheets/bootstrap_overrides.scss */
#clear_layout {
  margin-top: -5px;
}

/* line 500, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav {
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 40px);
  margin-left: -260px;
  transition: margin .25s ease-out;
  width: 260px;
  position: absolute;
  z-index: 10;
  min-height: 100%;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

/* line 513, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav::-webkit-scrollbar {
  width: 0 !important;
}

/* line 517, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav .sidebar-heading {
  padding: 0.875rem 1.25rem;
}

/* line 522, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav .btn i {
  opacity: 0.4;
}

/* line 525, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav .logo {
  padding-top: 7px;
  padding-bottom: 0.5rem;
  text-align: center;
}

/* line 530, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav .logo img {
  width: 80%;
}

/* line 533, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav h1, #sidebar-nav h2, #sidebar-nav h3, #sidebar-nav h5 {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  text-align: left;
}

/* line 540, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav .nav-tabs {
  padding-top: 1rem;
}

/* line 544, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav h5 {
  font-size: 100%;
  font-weight: 400;
}

/* line 550, app/assets/stylesheets/bootstrap_overrides.scss */
#sidebar-nav #reset_button {
  width: 100%;
  margin-bottom: 10px !important;
}

/* line 557, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher {
  /* to hide the checkbox itself */
}

/* line 560, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher.disabled input[type=checkbox] + .switch, .switcher.disabled input[type=checkbox]:checked + .switch {
  background-color: #3c3c3c;
}

/* line 561, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher.disabled input[type=checkbox] + .switch::after, .switcher.disabled input[type=checkbox]:checked + .switch::after {
  border: solid 1px #3c3c3c;
}

/* line 565, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher input[type=checkbox] {
  display: none;
}

/* line 566, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher label {
  cursor: pointer;
}

/* line 568, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher label.switch {
  position: relative;
  display: inline-block;
  width: 47px;
  height: 19px;
  background-color: #e8e8e8;
  border-radius: 10px;
  margin-left: 10px;
  vertical-align: text-bottom;
}

/* line 578, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher label.switch:after {
  content: '';
  position: absolute;
  width: 26px;
  height: 19px;
  border-radius: 10px;
  background-color: #e8e8e8;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #ffffff;
  left: 1px;
  transition: all 0.3s;
}

/* line 593, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher input[type=checkbox]:checked + .switch {
  background-color: #ed663e;
}

/* line 597, app/assets/stylesheets/bootstrap_overrides.scss */
.switcher input[type=checkbox]:checked + .switch::after {
  border: solid 1px #ce5835;
  left: 20px;
  box-shadow: -0.5px 0px 1px white;
}

/* line 604, app/assets/stylesheets/bootstrap_overrides.scss */
.d-flex {
  position: relative;
}

/* line 608, app/assets/stylesheets/bootstrap_overrides.scss */
#content {
  margin-left: 0;
  width: 100%;
  --sab: env(safe-area-inset-bottom);
}

/* line 613, app/assets/stylesheets/bootstrap_overrides.scss */
#content #events, #content #recordings {
  padding-right: constant(safe-area-inset-right);
  padding-right: env(safe-area-inset-right);
}

/* line 618, app/assets/stylesheets/bootstrap_overrides.scss */
#content #events {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* line 624, app/assets/stylesheets/bootstrap_overrides.scss */
#wrapper.toggled #sidebar-nav {
  margin-left: 0;
}

/* line 628, app/assets/stylesheets/bootstrap_overrides.scss */
#wrapper.toggled #content {
  margin-left: 260px;
  min-width: 0;
  width: 100%;
}

@media screen and (max-width: 740px) {
  /* line 637, app/assets/stylesheets/bootstrap_overrides.scss */
  #sidebar-nav {
    margin-left: -100%;
    width: 100%;
  }
  /* line 642, app/assets/stylesheets/bootstrap_overrides.scss */
  #content {
    margin-left: 0 !important;
  }
}

@media (max-width: 768px) {
  /* line 648, app/assets/stylesheets/bootstrap_overrides.scss */
  body .container {
    max-width: 100%;
  }
  /* line 651, app/assets/stylesheets/bootstrap_overrides.scss */
  .intercom-launcher {
    bottom: 80px !important;
    margin-bottom: env(safe-area-inset-bottom) !important;
  }
  /* line 655, app/assets/stylesheets/bootstrap_overrides.scss */
  .intercom-launcher-frame-slide-menu {
    bottom: 145px !important;
    margin-bottom: env(safe-area-inset-bottom) !important;
  }
}

/* line 661, app/assets/stylesheets/bootstrap_overrides.scss */
.has-tip:not(#cable-status):not(.pointer) {
  border-bottom: dotted 1px #CCCCCC;
  cursor: help;
}

/* line 666, app/assets/stylesheets/bootstrap_overrides.scss */
.bottom-border {
  border-bottom: dotted 1px #CCCCCC;
}

/* line 671, app/assets/stylesheets/bootstrap_overrides.scss */
.badge i {
  color: inherit;
}

/* line 678, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-selection__clear {
  opacity: 0.5;
  padding-top: 1px !important;
  font-size: 0.8em;
  margin-top: 10px;
  margin-right: 5px;
}

/* line 687, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-container--bootstrap4 .select2-selection--single {
  height: 36px !important;
}

/* line 690, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered, .livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
  line-height: 34px;
  border-radius: 4px;
}

/* line 695, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
  top: 10px;
}

/* line 697, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
  display: none;
}

/* line 698, app/assets/stylesheets/bootstrap_overrides.scss */
.livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow:after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  display: inline-block;
}

@media screen and (max-width: 900px) {
  /* line 711, app/assets/stylesheets/bootstrap_overrides.scss */
  .livebox .camera-show-ptz-btn {
    font-size: 12px;
    padding: 4px 5px;
  }
  /* line 717, app/assets/stylesheets/bootstrap_overrides.scss */
  .livebox .select2-container--bootstrap4 .select2-selection--single {
    height: 27px !important;
  }
  /* line 720, app/assets/stylesheets/bootstrap_overrides.scss */
  .livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered, .livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    line-height: 23px;
    font-size: 14px;
  }
  /* line 725, app/assets/stylesheets/bootstrap_overrides.scss */
  .livebox .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    top: 4px;
  }
}

/* line 732, app/assets/stylesheets/bootstrap_overrides.scss */
.select2-container .select2-results__option--highlighted {
  background-color: #494949 !important;
}

/* line 738, app/assets/stylesheets/bootstrap_overrides.scss */
.pricing-table .description {
  background-color: #FFFFFF;
  border-bottom: dotted 1px #DDDDDD;
  color: #777777;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 0.9375rem;
  text-align: center;
}

/* line 750, app/assets/stylesheets/bootstrap_overrides.scss */
.unselectable {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
}

/* line 758, app/assets/stylesheets/bootstrap_overrides.scss */
.input-group-prepend .input-group-text {
  background-color: #3c3c3c;
  color: white;
  opacity: 0.9;
}

/* line 764, app/assets/stylesheets/bootstrap_overrides.scss */
.trix-button-group--file-tools {
  display: none !important;
}

/* line 768, app/assets/stylesheets/bootstrap_overrides.scss */
.primary-colour {
  color: #ed663e !important;
}

/* line 772, app/assets/stylesheets/bootstrap_overrides.scss */
.thumbnail-tooltip {
  display: block !important;
}

/* Customize the label (the container) */
/* line 777, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox {
  display: inline-block;
  padding-right: 18px;
  padding-left: 0;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a primary background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}

/* line 791, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* line 800, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #ffffff;
  border: solid 1px #808080;
  border-radius: 3px;
}

/* line 817, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox input:checked ~ .checkmark {
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 823, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* line 830, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* line 835, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-checkbox .checkmark:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0px;
  transform: rotate(35deg);
}

/* line 847, app/assets/stylesheets/bootstrap_overrides.scss */
table.white-space-normal td, .white-space-normal {
  white-space: normal !important;
}

/* line 853, app/assets/stylesheets/bootstrap_overrides.scss */
table:not(.table-striped):not(#camera_schedule_table) .fullfill a:not(.show_button):not(.edit_button):not(.delete_button) {
  color: #949494 !important;
}

/* line 856, app/assets/stylesheets/bootstrap_overrides.scss */
table:not(.table-striped):not(#camera_schedule_table) .fullfill a:not(.show_button):not(.edit_button):not(.delete_button):hover {
  text-decoration: underline;
}

/* line 862, app/assets/stylesheets/bootstrap_overrides.scss */
table:not(.table-striped):not(#camera_schedule_table) tr.even, table:not(.table-striped):not(#camera_schedule_table) tr.alt, table:not(.table-striped):not(#camera_schedule_table) tr:nth-of-type(even):not(.react-selectable-selected):not(.severity-notice):not(.severity-alert):not(.fullfill), table:not(.table-striped):not(#camera_schedule_table) thead tr, table:not(.table-striped):not(#camera_schedule_table) .thead-light th {
  background-color: #f8f8f8 !important;
}

/* line 865, app/assets/stylesheets/bootstrap_overrides.scss */
table:not(.table-striped):not(#camera_schedule_table) tr.even td:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) tr.even th:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) tr.alt td:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) tr.alt th:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) tr:nth-of-type(even):not(.react-selectable-selected):not(.severity-notice):not(.severity-alert):not(.fullfill) td:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) tr:nth-of-type(even):not(.react-selectable-selected):not(.severity-notice):not(.severity-alert):not(.fullfill) th:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) thead tr td:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) thead tr th:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) .thead-light th td:nth-of-type(even), table:not(.table-striped):not(#camera_schedule_table) .thead-light th th:nth-of-type(even) {
  background-color: #f3f3f3 !important;
}

/* line 871, app/assets/stylesheets/bootstrap_overrides.scss */
table:not(.table-striped):not(#camera_schedule_table) tr:nth-of-type(odd):not(.react-selectable-selected):not(.severity-notice):not(.severity-alert):not(.fullfill) td:nth-of-type(even) {
  background-color: #fafafa;
}

/* line 876, app/assets/stylesheets/bootstrap_overrides.scss */
table.table:not(.table-striped):not(#camera_schedule_table) {
  border: none;
}

/* line 879, app/assets/stylesheets/bootstrap_overrides.scss */
table.table:not(.table-striped):not(#camera_schedule_table) td, table.table:not(.table-striped):not(#camera_schedule_table) th {
  border: none;
}

/* line 885, app/assets/stylesheets/bootstrap_overrides.scss */
.table, .table td, .table th {
  border: none;
}

/* line 889, app/assets/stylesheets/bootstrap_overrides.scss */
.primary-btn-background {
  background-color: #ed663e !important;
  color: white !important;
}

/* line 896, app/assets/stylesheets/bootstrap_overrides.scss */
.select2-container .no-selected-background .select2-results__option--highlighted, .select2-container .tetherx-select-options-list .select2-results__option--highlighted {
  background-color: #f8f8f8 !important;
  color: black;
}

/* line 900, app/assets/stylesheets/bootstrap_overrides.scss */
.select2-container .no-selected-background .select2-results__option[aria-selected=true], .select2-container .tetherx-select-options-list .select2-results__option[aria-selected=true] {
  background-color: transparent;
}

/* line 906, app/assets/stylesheets/bootstrap_overrides.scss */
#events_tetherbox_events_ + .select2-container .select2-search__field,
#events_alarm_events_ + .select2-container .select2-search__field,
#events_vmd_events_ + .select2-container .select2-search__field {
  width: auto !important;
}

/* line 912, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-option {
  margin-left: 21px;
}

/* line 916, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-selected-option, .tetherx-select-selected-option {
  display: inline-block;
  margin-right: 10px;
  width: 7px;
  height: 10px;
  margin-left: 3px;
  margin-bottom: 2px;
  border: solid #343434;
  border-width: 0 2px 2px 0px;
  transform: rotate(35deg);
}

/* line 929, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select-options-list {
  border-radius: 0 0 4px 4px;
}

/* line 932, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select-options-list .tetherx-select-option {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 938, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select-options-list .tetherx-select-selected-option {
  margin-left: auto;
  margin-right: 7px;
}

/* line 943, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select-options-list i {
  font-size: 0.8rem;
}

/* line 947, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-toggle .select2-container .select2-selection, .tetherx-select ~ .select2-container .select2-selection {
  height: 36px;
  border-radius: 4px;
  border: 1px solid #c3c3c3;
  background-color: #ffffff;
  color: #333333;
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 14px;
  color: #333333;
}

/* line 960, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-toggle .select2-container .select2-selection .select2-selection__rendered, .tetherx-select ~ .select2-container .select2-selection .select2-selection__rendered {
  padding-top: 4px;
  border-radius: 4px;
}

/* line 965, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-toggle .select2-container .select2-selection .select2-selection__arrow, .tetherx-select ~ .select2-container .select2-selection .select2-selection__arrow {
  background-image: url(/assets/icons/select-arrow-17f8717e24bb0c473814b7dcca22d91505c23adf66ef6b9037cb95065061f361.png);
  background-repeat: no-repeat;
  background-size: 16px 10px;
  background-position: 90% 50%;
  top: 4px;
  right: 8px;
}

/* line 966, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-toggle .select2-container .select2-selection .select2-selection__arrow b, .tetherx-select ~ .select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

/* line 977, app/assets/stylesheets/bootstrap_overrides.scss */
.camera-state-toggle .select2-container.select2-container--open .select2-selection__arrow, .tetherx-select ~ .select2-container.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
  right: 3px;
}

/* line 984, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select.small ~ .select2-container .select2-selection {
  height: 30px;
}

/* line 987, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select.small ~ .select2-container .select2-selection .select2-selection__rendered {
  padding-top: 0;
}

/* line 991, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select.small ~ .select2-container .select2-selection .select2-selection__arrow {
  top: 0;
}

/* line 998, app/assets/stylesheets/bootstrap_overrides.scss */
.dataTables_filter input {
  border-radius: 0.2rem 0 0 0.2rem;
  border-color: #ced4da;
}

/* line 1003, app/assets/stylesheets/bootstrap_overrides.scss */
.dataTables_filter label {
  width: 203px;
  padding-right: 30px;
  background: url(/assets/icons/black-search-icon-215e81503d30f2a40dd725bc4f4eaa40e143d9bed7ad193356a4045439109edd.png) no-repeat 179px 8px, linear-gradient(to right, transparent 50%, #ced4da 50%);
  border-radius: 0 0.2rem 0.2rem 0;
}

/* line 1011, app/assets/stylesheets/bootstrap_overrides.scss */
.in-progress-icon i {
  color: #dc3545 !important;
  opacity: 0.9;
}

@keyframes select2-slider-down {
  from {
    height: 0;
  }
  to {
    height: 100px;
  }
}

/* line 1021, app/assets/stylesheets/bootstrap_overrides.scss */
.tetherx-select-options-list {
  overflow: hidden !important;
  animation-name: select2-slider-down;
  animation-duration: 0.5s;
}

/* line 1028, app/assets/stylesheets/bootstrap_overrides.scss */
.staff-notes-icon form {
  display: inline-block;
}

/* line 1033, app/assets/stylesheets/bootstrap_overrides.scss */
.with_preview {
  cursor: pointer;
  display: inline-block;
}

/* line 1038, app/assets/stylesheets/bootstrap_overrides.scss */
.underline {
  text-decoration: underline !important;
}

/* line 1042, app/assets/stylesheets/bootstrap_overrides.scss */
#filter-bar {
  display: flex;
}

/* line 1044, app/assets/stylesheets/bootstrap_overrides.scss */
#events {
  user-select: none;
  position: relative;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* line 1053, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable {
  position: relative;
}

/* line 1056, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable .severity-notice {
  box-shadow: 0px 0px 5px rgba(255, 193, 7, 0.9);
  border-radius: 4px;
}

/* line 1061, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable .severity-alert {
  box-shadow: 0px 0px 5px rgba(220, 53, 70, 0.9);
  border-radius: 4px;
}

/* line 1067, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable.severity-notice {
  box-shadow: inset 0px 0px 5px rgba(255, 193, 7, 0.9);
  border-radius: 4px;
}

/* line 1072, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable.severity-alert {
  box-shadow: inset 0px 0px 5px rgba(220, 53, 70, 0.9);
  border-radius: 4px;
}

/* line 1077, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable .event-select {
  color: #ed663e;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 8;
  cursor: pointer;
  opacity: 1;
  display: none;
}

/* line 1087, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable .event-select.show {
  display: block;
}

/* line 1091, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable .event-select:hover {
  text-shadow: 1px 1px #323236;
}

/* line 1096, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable.react-selectable-selected {
  background-color: rgba(237, 103, 62, 0.1);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* line 1101, app/assets/stylesheets/bootstrap_overrides.scss */
.react-selectable.react-selectable-selected .event-select {
  display: block;
}

/* line 1107, app/assets/stylesheets/bootstrap_overrides.scss */
.selectable-selectbox {
  z-index: 9000;
  position: absolute;
  cursor: default;
  background: none;
}

/* line 1114, app/assets/stylesheets/bootstrap_overrides.scss */
#bulk-operations-nav-bar {
  background-color: #324a66;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  color: white;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  position: sticky;
  top: 0;
  z-index: 9;
}

/* line 1127, app/assets/stylesheets/bootstrap_overrides.scss */
#bulk-operations-nav-bar .nav-bar-item {
  padding: 0 0.5rem;
}

/* line 1132, app/assets/stylesheets/bootstrap_overrides.scss */
#billing-overdue-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0;
  border-radius: 0;
  text-align: center;
}

/* line 1143, app/assets/stylesheets/bootstrap_overrides.scss */
.with-scrollable-content {
  overflow: hidden;
  max-height: 100vh;
}

/* line 1147, app/assets/stylesheets/bootstrap_overrides.scss */
.with-scrollable-content .xan-footer-top, .with-scrollable-content .xan-footer-bottom {
  display: none;
}

/* line 1149, app/assets/stylesheets/bootstrap_overrides.scss */
.with-scrollable-content #content {
  height: calc(100vh - 60px);
  min-height: 50vh !important;
  overflow: auto;
}

/* line 1155, app/assets/stylesheets/bootstrap_overrides.scss */
.with-scrollable-content #sidebar-nav {
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: auto;
  height: calc(100vh - 60px);
}

/* line 1163, app/assets/stylesheets/bootstrap_overrides.scss */
#tetherboxes-map-content, #companies-map-content {
  min-height: calc(100vh - 100px);
}

/* line 1167, app/assets/stylesheets/bootstrap_overrides.scss */
#perspective {
  height: calc(100vh - 40px - env(safe-area-inset-top));
}

/* line 1171, app/assets/stylesheets/bootstrap_overrides.scss */
#timelapse {
  height: calc(100vh - 40px - env(safe-area-inset-top) - 45px);
}

@media screen and (max-width: 767px) {
  /* line 1176, app/assets/stylesheets/bootstrap_overrides.scss */
  #perspective {
    height: calc(100vh - 65px - 40px - env(safe-area-inset-bottom) - env(safe-area-inset-top));
  }
  /* line 1180, app/assets/stylesheets/bootstrap_overrides.scss */
  #timelapse {
    height: calc(100vh - 65px - 40px - env(safe-area-inset-bottom) - env(safe-area-inset-top) - 45px);
  }
}

/* line 1185, app/assets/stylesheets/bootstrap_overrides.scss */
.form-control.is-warning {
  border-color: #ffc107;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23BF360C' d='M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 1194, app/assets/stylesheets/bootstrap_overrides.scss */
.form-control.is-warning:focus {
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

/* line 1199, app/assets/stylesheets/bootstrap_overrides.scss */
textarea.form-control.is-warning {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* line 1204, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-select.is-warning {
  border-color: #ffc107;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23BF360C' d='M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23BF360C' d='M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16'/%3E%3C/svg%3E") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

/* line 1210, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-select.is-warning:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 1215, app/assets/stylesheets/bootstrap_overrides.scss */
.form-check-input.is-warning ~ .form-check-label {
  color: #ffc107;
}

/* line 1219, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-control-input.is-warning ~ .custom-control-label {
  color: #ffc107;
}

/* line 1223, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-control-input.is-warning ~ .custom-control-label::before {
  border-color: #ffc107;
}

/* line 1227, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-control-input.is-warning:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

/* line 1232, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-control-input.is-warning:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

/* line 1236, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-control-input.is-warning:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #ffc107;
}

/* line 1240, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-file-input.is-warning ~ .custom-file-label {
  border-color: #ffc107;
}

/* line 1244, app/assets/stylesheets/bootstrap_overrides.scss */
.custom-file-input.is-warning:focus ~ .custom-file-label {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

/* line 1251, app/assets/stylesheets/bootstrap_overrides.scss */
.bootstrap-table .fixed-height .fixed-table-header {
  height: 55px !important;
}

/* line 1257, app/assets/stylesheets/bootstrap_overrides.scss */
.table-rented,
.table-rented > th,
.table-rented > td {
  background-color: lime;
}

/* line 1263, app/assets/stylesheets/bootstrap_overrides.scss */
.table-hover .table-rented:hover {
  background-color: limegreen;
}

/* line 1267, app/assets/stylesheets/bootstrap_overrides.scss */
.table-hover .table-rented:hover > td,
.table-hover .table-rented:hover > th {
  background-color: limegreen;
}

/* line 1272, app/assets/stylesheets/bootstrap_overrides.scss */
.bypassed-row {
  background-color: #ffcb71;
}

/* line 1276, app/assets/stylesheets/bootstrap_overrides.scss */
.has-slash:after {
  position: absolute;
  content: "\f715";
  color: tomato;
  top: 6px;
  margin-left: -15px;
}

/* line 1285, app/assets/stylesheets/bootstrap_overrides.scss */
#acu-events-table tbody > tr > td:last-of-type {
  padding: 3px 0 3px 0;
}

/* line 1288, app/assets/stylesheets/bootstrap_overrides.scss */
#acu-events-table .list-group {
  font-size: 13px;
}

/* line 1291, app/assets/stylesheets/bootstrap_overrides.scss */
#acu-events-table .list-group .list-group-item {
  padding: 0.2rem 0.3rem;
}

/* line 18, app/assets/stylesheets/layout.sass */
small.error i {
  color: white;
}

/* line 21, app/assets/stylesheets/layout.sass */
.tethtitle {
  clear: both;
  position: relative;
  top: 10px;
  margin-bottom: 25px;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  text-align: left;
  line-height: 26px;
  margin-top: 8px;
  font-size: 105%;
  margin-right: env(safe-area-inset-right);
}

/* line 36, app/assets/stylesheets/layout.sass */
.tethtitle .weather {
  color: #959595;
  font-size: 90%;
}

/* line 40, app/assets/stylesheets/layout.sass */
.tethtitle .weather img.weather-icon {
  width: 32px;
  margin-top: -20px;
  margin-bottom: -18px;
  margin-right: 5px;
  opacity: 0.5;
}

/* line 47, app/assets/stylesheets/layout.sass */
.tethtitle .weather img.weather-icon[src$=".png"] {
  width: 30px;
  margin-top: -22px;
  filter: grayscale(1);
}

/* line 52, app/assets/stylesheets/layout.sass */
.tethtitle .date {
  font-weight: normal;
  color: #333333;
}

/* line 53, app/assets/stylesheets/layout.sass */
.tethtitle .date i {
  position: relative;
  top: 1px;
  opacity: 0.2;
}

/* line 60, app/assets/stylesheets/layout.sass */
.tethtitle .time_ago {
  font-size: 90%;
  color: #333333;
  opacity: 0.5;
}

/* line 65, app/assets/stylesheets/layout.sass */
.tethtitle .scroll_to_top {
  font-size: 20px;
  position: absolute;
  bottom: 3px;
  right: 10px;
  right: env(safe-area-inset-right);
}

/* line 72, app/assets/stylesheets/layout.sass */
.two-col {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
}

/* line 78, app/assets/stylesheets/layout.sass */
.three-col {
  -moz-column-count: 3;
  -moz-column-gap: 20px;
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
}

/* line 85, app/assets/stylesheets/layout.sass */
video::-webkit-media-controls-overlay-play-button {
  display: none;
}

/* line 90, app/assets/stylesheets/layout.sass */
.recording-pagination ul.pagination, .audit-pagination ul.pagination, .event-pagination ul.pagination {
  visibility: hidden;
}

/* line 93, app/assets/stylesheets/layout.sass */
#mainmenu {
  padding-top: constant(safe-area-inset-top);
  padding-right: constant(safe-area-inset-right);
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  border-radius: 0px;
  background-color: #ed663e;
}

/* line 99, app/assets/stylesheets/layout.sass */
#mainmenu .menu-toggle {
  background-color: #d35631;
  width: 65px;
}

/* line 102, app/assets/stylesheets/layout.sass */
#mainmenu a.nav-link {
  border: none;
}

/* line 104, app/assets/stylesheets/layout.sass */
#mainmenu a.nav-link.dropdown-toggle:after {
  content: none;
}

/* line 106, app/assets/stylesheets/layout.sass */
#mainmenu a.nav-link img {
  border-radius: 50%;
  width: 22px;
}

/* line 110, app/assets/stylesheets/layout.sass */
#mainmenu i {
  font-size: 1em;
  vertical-align: middle;
}

/* line 115, app/assets/stylesheets/layout.sass */
#mainmenu #cable-status i {
  background-color: #ed663e;
  border-style: solid;
  border-width: 1px;
  border-color: #ed663e;
  border-radius: 50%;
  display: inline-block;
  height: 11px;
  width: 11px;
}

/* line 125, app/assets/stylesheets/layout.sass */
#mainmenu #logout i {
  padding-right: 15px;
}

/* line 128, app/assets/stylesheets/layout.sass */
#side-menu {
  padding-left: constant(safe-area-inset-left);
  padding-left: env(safe-area-inset-left);
  padding-bottom: 40px;
  background-color: #324a66;
  min-width: 65px;
  position: absolute;
  height: 100%;
  font-size: 0.65rem;
  z-index: 20;
  overflow: auto;
}

/* line 139, app/assets/stylesheets/layout.sass */
#side-menu ul.nav {
  width: 100%;
}

/* line 141, app/assets/stylesheets/layout.sass */
#side-menu ul.nav .nav-item {
  margin-left: unset !important;
  margin-right: unset !important;
}

/* line 144, app/assets/stylesheets/layout.sass */
#side-menu ul.nav .nav-link {
  font-size: 120%;
  font-weight: 400;
}

/* line 147, app/assets/stylesheets/layout.sass */
#side-menu ul.nav .nav-link.active {
  background: #536681;
  border-left: 2px solid #ed663e;
}

/* line 151, app/assets/stylesheets/layout.sass */
#bottom-menu {
  background-color: #324a66;
  width: 100%;
  position: fixed;
  bottom: 0;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  min-height: 65px;
  font-size: 0.65rem;
  z-index: 20;
}

/* line 161, app/assets/stylesheets/layout.sass */
#bottom-menu.sub {
  background-color: #536681;
  bottom: constant(safe-area-inset-bottom);
  bottom: env(safe-area-inset-bottom);
}

/* line 165, app/assets/stylesheets/layout.sass */
#bottom-menu.sub-1 {
  margin-bottom: 65px;
}

/* line 167, app/assets/stylesheets/layout.sass */
#bottom-menu.sub-2 {
  margin-bottom: 130px;
}

/* line 169, app/assets/stylesheets/layout.sass */
#bottom-menu ul.navbar-nav {
  display: flex;
}

/* line 171, app/assets/stylesheets/layout.sass */
#bottom-menu ul.navbar-nav .nav-item {
  width: 80px;
}

/* line 173, app/assets/stylesheets/layout.sass */
#bottom-menu ul.navbar-nav .nav-link {
  font-size: 115%;
  font-weight: 400;
  border: none;
  height: 65px;
  padding-top: calc(0.5rem + 6px);
}

/* line 179, app/assets/stylesheets/layout.sass */
#bottom-menu ul.navbar-nav .nav-link.active {
  padding-top: calc(0.5rem + 3px);
  background-color: #536681;
  border-top: 3px solid #ed663e;
}

/* line 184, app/assets/stylesheets/layout.sass */
.off-canvas-wrap {
  position: relative;
}

@media screen and (min-width: 768px) {
  /* line 187, app/assets/stylesheets/layout.sass */
  .off-canvas-wrap #wrapper.with-menu {
    left: constant(safe-area-inset-left);
    left: env(safe-area-inset-left);
    margin-left: 65px;
  }
}

/* line 193, app/assets/stylesheets/layout.sass */
.modal .modal-dialog {
  margin-top: 2.8rem;
  margin-bottom: 2rem;
}

/* line 198, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  right: 18px;
}

/* line 201, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body {
  padding: 2rem;
}

/* line 203, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-success {
  background-color: #c3e6cb;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* line 207, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-success .fa {
  color: #0c5460;
}

/* line 209, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* line 213, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-info .fa {
  color: #0c5460;
}

/* line 215, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-error {
  background-color: #f8d7da;
  color: #491217;
  border: 1px solid #f5c6cb;
}

/* line 219, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-error .fa {
  color: #491217;
}

/* line 221, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

/* line 225, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-warning .fa {
  color: #856404;
}

/* line 228, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-default {
  padding: 10px 80px 10px 80px;
  margin-top: -32px;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: 2rem;
  text-align: center;
}

/* line 235, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-default svg {
  width: 60px;
  margin: 0.5rem 0 1rem 0;
}

/* line 238, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .modal-default .fa, .modal .modal-dialog .modal-content .modal-body .modal-default .far {
  font-size: 75px;
  margin: 0.5rem 0 1rem 0;
}

/* line 241, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .content {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* line 245, app/assets/stylesheets/layout.sass */
.modal .modal-dialog .modal-content .modal-body .content strong a {
  font-weight: bold;
}

@media (min-width: 900px) {
  /* line 251, app/assets/stylesheets/layout.sass */
  .modal .modal-dialog {
    min-width: 800px;
  }
}

/* line 254, app/assets/stylesheets/layout.sass */
.paper {
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  padding-top: 30px;
  padding-left: 60px !important;
  padding-right: 60px !important;
  position: relative;
  z-index: 3;
  text-decoration: none;
  overflow: hidden;
  width: 100%;
  display: block;
  outline: none;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.03);
  transition: border .15s linear, transform .15s linear, background-color .15s linear, box-shadow .15s linear, opacity .15s linear;
}

/* line 1, app/assets/stylesheets/thumbnails.sass */
[class*="block-grid-"] > li {
  padding-bottom: 32px;
}

/* line 6, app/assets/stylesheets/thumbnails.sass */
.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 12, app/assets/stylesheets/thumbnails.sass */
.custom-row .custom-col {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 5px;
}

/* line 18, app/assets/stylesheets/thumbnails.sass */
.thumbnail {
  background-color: white;
  margin-left: 0px;
}

/* line 30, app/assets/stylesheets/thumbnails.sass */
.xanthumb:before {
  display: block;
  content: '';
  border: 0px solid white;
  padding-top: 59.25%;
}

/* line 39, app/assets/stylesheets/thumbnails.sass */
.xanthumb {
  box-sizing: content-box;
  box-shadow: 0;
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  width: 100%;
  color: #282727;
  border: 0;
  border-radius: 4px;
  position: relative;
  margin-bottom: 0;
}

/* line 52, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 58, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap:hover {
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.2), 0 3px 3px rgba(0, 0, 0, 0.18);
}

/* line 60, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap {
  background-color: #d0d0d2;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 72, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap .img {
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  display: table;
  height: 100%;
  width: 100%;
}

/* line 79, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap .img .img-inner {
  display: table-cell;
  vertical-align: middle;
}

/* line 82, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap .img .img-inner img {
  border-radius: 4px;
  width: 100%;
}

/* line 85, app/assets/stylesheets/thumbnails.sass */
.xanthumb .content .img-wrap .img .img-inner .loading, .xanthumb .content .img-wrap .img .img-inner .loading-failed {
  position: relative;
  top: 5px;
}

/* line 89, app/assets/stylesheets/thumbnails.sass */
.xanthumb .in_progress {
  color: #fafafa;
  position: absolute;
  top: 8px;
  right: 8px;
}

/* line 90, app/assets/stylesheets/thumbnails.sass */
.xanthumb .in_progress .has-tip:not(#cable-status) {
  border-bottom: none !important;
  color: #dc3545;
}

/* line 99, app/assets/stylesheets/thumbnails.sass */
.xanthumb .items_count {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 0px 0px 0px 7px;
  padding: 3px 4px 3px 3px;
  opacity: 0.8;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  font-size: 25px;
  line-height: 25px;
  color: white;
  margin-left: 3px;
}

/* line 113, app/assets/stylesheets/thumbnails.sass */
.xanthumb .duration {
  display: block;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: absolute;
  border-radius: 4px 0;
  line-height: 15px;
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-top: 5px;
  font-weight: 600;
  font-size: 0.8em;
}

/* line 130, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event {
  overflow: hidden;
  width: 90%;
  height: 100%;
  display: table;
  position: absolute;
  left: 4%;
  top: 20%;
  padding: 5px;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 141, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event table {
  width: 100%;
}

/* line 144, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event table td.success {
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #43AC6A;
}

/* line 148, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event table td.alert {
  color: #f04124;
}

/* line 150, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event table, .xanthumb .text-event td, .xanthumb .text-event tr, .xanthumb .text-event th {
  background: none;
  border: 0;
  color: gray;
}

/* line 154, app/assets/stylesheets/thumbnails.sass */
.xanthumb .text-event .title {
  width: 100%;
  font-size: 130%;
  font-weight: bold;
  text-align: center;
}

/* line 160, app/assets/stylesheets/thumbnails.sass */
.description {
  margin-left: 10px;
  padding-top: 2px;
  padding-peft: 2px;
  line-height: 1.2;
}

/* line 161, app/assets/stylesheets/thumbnails.sass */
.description a {
  outline: none;
}

/* line 167, app/assets/stylesheets/thumbnails.sass */
.description .name {
  opacity: 0.9;
  font-size: 0.95em;
  font-weight: normal;
  font-style: normal;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* line 179, app/assets/stylesheets/thumbnails.sass */
.description.with-menu .name {
  width: 85%;
}

/* line 181, app/assets/stylesheets/thumbnails.sass */
.description.with-menu .dropdown-menu i {
  width: 27px;
}

/* line 184, app/assets/stylesheets/thumbnails.sass */
.time {
  opacity: 0.6;
  position: relative;
  top: -4px;
  margin-left: -1px;
  font-size: 0.9em;
}

/* line 190, app/assets/stylesheets/thumbnails.sass */
.time i {
  margin-right: 5px !important;
  font-size: 0.8em;
  opacity: 0.45;
}

/* line 196, app/assets/stylesheets/thumbnails.sass */
.xanthumb-card .xanthumb .content .img-wrap .img .img-inner .thumb {
  display: block;
}

/* line 199, app/assets/stylesheets/thumbnails.sass */
.xanthumb-card .xanthumb .content .img-wrap .img .img-inner .thumb img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 206, app/assets/stylesheets/thumbnails.sass */
.xanthumb-card.fill .xanthumb .content .img-wrap .img .img-inner .thumb img,
#player-wrapper.fill video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* line 214, app/assets/stylesheets/thumbnails.sass */
#events .thumbnails.grid-1 .custom-row .custom-col {
  max-width: 100% !important;
  flex: none;
}

/* line 218, app/assets/stylesheets/thumbnails.sass */
#events .thumbnails.grid-2 .custom-row .custom-col {
  max-width: 50% !important;
  flex: none;
}

/* line 222, app/assets/stylesheets/thumbnails.sass */
#events .thumbnails.grid-3 .custom-row .custom-col {
  max-width: 33.3333333333% !important;
  flex: none;
}

/* line 226, app/assets/stylesheets/thumbnails.sass */
#events .thumbnails.grid-4 .custom-row .custom-col {
  max-width: 25% !important;
  flex: none;
}

/* line 230, app/assets/stylesheets/thumbnails.sass */
#events .thumbnails.grid-5 .custom-row .custom-col {
  max-width: 20% !important;
  flex: none;
}

/* line 236, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags .has-tip:not(#cable-status), #events-list .tags .has-tip:not(#cable-status) {
  border-bottom: none !important;
}

/* line 239, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags span.icon-group, #events-list .tags span.icon-group {
  margin-left: -4px;
}

/* line 241, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags span.icon-group i:last-child, #events-list .tags span.icon-group i:last-child {
  padding: 5px;
  background: rgba(150, 150, 150, 0.4);
}

/* line 244, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags span.icon-group i, #events-list .tags span.icon-group i {
  font-size: 0.8em;
  padding: 0;
  background: none;
}

/* line 248, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags span.icon-wrapper, #events-list .tags span.icon-wrapper {
  padding: 3px;
  border-radius: 4px;
  margin-right: 4px;
  padding-top: 2px;
}

/* line 253, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags span.icon-wrapper i, #events-list .tags span.icon-wrapper i {
  margin: 0;
  background: none;
}

/* line 257, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags .has-tip, #events-list .tags .has-tip {
  border: 0;
}

/* line 260, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags i, #events-list .tags i {
  font-size: 0.8em;
  color: #fafafa;
  margin-left: 4px;
  background: rgba(150, 150, 150, 0.4);
  padding: 5px;
  border-radius: 4px;
}

/* line 268, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags i.fa-move, #events-list .tags i.fa-move {
  color: #72bcd4;
}

/* line 270, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags i.fa-bell-alt, #events-list .tags i.fa-bell-alt {
  color: #ffff33;
}

/* line 272, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags i.fa-exclamation-circle, #events-list .tags i.fa-exclamation-circle {
  color: #ff3333;
}

/* line 279, app/assets/stylesheets/thumbnails.sass */
#events-list .tags span.icon-group i {
  background: none;
}

/* line 281, app/assets/stylesheets/thumbnails.sass */
#events-list .tags span.icon-group i:last-child {
  background: #969696;
}

/* line 283, app/assets/stylesheets/thumbnails.sass */
#events-list .tags i {
  background: #969696;
}

/* line 286, app/assets/stylesheets/thumbnails.sass */
.xanthumb .tags {
  position: absolute;
  bottom: 0;
}

/* line 290, app/assets/stylesheets/thumbnails.sass */
#events-list .tags i {
  color: black;
}

/* line 293, app/assets/stylesheets/thumbnails.sass */
.xanthumb-card.closed .xanthumb, .xanthumb-card.closed .description > span, #events-list .table tr.closed {
  opacity: 0.4;
}

/* line 7, app/assets/stylesheets/events.sass */
#clip_share_button.zeroclipboard-is-hover {
  cursor: hand;
}

/* line 10, app/assets/stylesheets/events.sass */
.context-menu-btn {
  z-index: 9;
}

/* line 12, app/assets/stylesheets/events.sass */
.context-menu-btn[aria-expanded="true"] {
  z-index: 11;
}

/* line 15, app/assets/stylesheets/events.sass */
.thumbnail-context-menu {
  margin-right: 4px;
  left: 9px !important;
}

/* line 19, app/assets/stylesheets/events.sass */
.thumbnail-context-menu.dropdown-menu {
  min-width: auto;
  width: 155px;
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 0;
}

/* line 26, app/assets/stylesheets/events.sass */
.thumbnail-context-menu .dropdown-item {
  width: 34px;
  height: 14px;
  font-family: Gibson;
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: normal;
  text-align: left;
  color: #333333;
  padding-left: 14px;
  width: 100%;
  height: 25px;
}

/* line 43, app/assets/stylesheets/events.sass */
.thumbnail-context-menu .dropdown-item span {
  vertical-align: middle;
}

/* line 45, app/assets/stylesheets/events.sass */
.thumbnail-context-menu .dropdown-item i {
  vertical-align: middle;
  width: 14.4px !important;
  font-size: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}

/* line 52, app/assets/stylesheets/events.sass */
.thumbnail-context-menu .dropdown-item:hover {
  background-color: #b3b3b393 !important;
  color: #333333 !important;
}

/* line 56, app/assets/stylesheets/events.sass */
.thumbnail-context-menu[x-placement="bottom-end"] {
  padding-top: 25px;
  margin-top: -24px;
  z-index: 10;
}

/* line 61, app/assets/stylesheets/events.sass */
.thumbnail-context-menu[x-placement="top-end"] {
  padding-bottom: 25px;
  margin-bottom: -24px;
  top: -3px !important;
  z-index: 10;
}

/* line 67, app/assets/stylesheets/events.sass */
#view_menu {
  padding: 0 0.3rem;
  border-radius: 4px;
  background-color: #f8f8f8;
  min-height: 40px;
}

/* line 73, app/assets/stylesheets/events.sass */
#view_menu .slider.slider-horizontal {
  width: 150px;
}

/* line 78, app/assets/stylesheets/events.sass */
#events-list .table td {
  padding: 0.2rem 0.75rem;
  vertical-align: middle;
  height: 3.5rem;
}

/* line 82, app/assets/stylesheets/events.sass */
#events-list .table tr.closed {
  opacity: 0.3;
}

/* line 85, app/assets/stylesheets/events.sass */
#events-list .thumb img {
  max-height: 100%;
}

/* line 88, app/assets/stylesheets/events.sass */
.events-selectable-group {
  min-height: calc(100vh - 200px);
}

/* line 1, app/assets/stylesheets/footer.sass */
.xan-footer-top {
  color: white;
}

/* line 4, app/assets/stylesheets/footer.sass */
.xan-footer-top .row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%;
}

/* line 9, app/assets/stylesheets/footer.sass */
.xan-footer-top .property {
  text-align: left;
}

/* line 11, app/assets/stylesheets/footer.sass */
.xan-footer-top .property h3, .xan-footer-top .property h4 {
  margin-bottom: 0.5rem;
}

/* line 14, app/assets/stylesheets/footer.sass */
.xan-footer-top .property h3 {
  padding-top: 10px;
  font-size: 140%;
  font-weight: bold;
  color: white;
}

/* line 19, app/assets/stylesheets/footer.sass */
.xan-footer-top .property h4 {
  padding-top: 10px;
  font-size: 110%;
  font-weight: 200;
  color: white;
  margin-bottom: 10px;
}

/* line 25, app/assets/stylesheets/footer.sass */
.xan-footer-top .property a {
  color: white;
}

/* line 32, app/assets/stylesheets/footer.sass */
.xan-footer-top .learn-links, .xan-footer-top .support-links, .xan-footer-top .connect-links {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 10px;
}

/* line 35, app/assets/stylesheets/footer.sass */
.xan-footer-top .learn-links ul, .xan-footer-top .support-links ul, .xan-footer-top .connect-links ul {
  margin-left: 0px !important;
  list-style: none;
  padding-left: 0;
}

/* line 40, app/assets/stylesheets/footer.sass */
.xan-footer-top .connect-links .button {
  font-size: 12px;
  font-weight: normal;
  background: rgba(0, 0, 0, 0.1);
  color: white !important;
  font-weight: bold;
  text-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border: none;
  padding: 6px 16px;
}

/* line 53, app/assets/stylesheets/footer.sass */
.xan-footer-top .global .footer-link-block span.title {
  margin-bottom: 5px;
}

/* line 56, app/assets/stylesheets/footer.sass */
.xan-footer-top .global .footer-link-block span {
  display: block;
  color: white;
  font-size: 75%;
  padding-left: 40px;
  line-height: 18px;
}

/* line 63, app/assets/stylesheets/footer.sass */
.xan-footer-top.bg-fblue {
  background: #ed663e;
}

/* line 66, app/assets/stylesheets/footer.sass */
.xan-footer-bottom {
  background: #333333;
  padding: 24px 0 10px;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 767px) {
  /* line 72, app/assets/stylesheets/footer.sass */
  .xan-footer-bottom.with-menu {
    margin-bottom: 65px;
  }
}

/* line 75, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-links {
  margin: 0;
  display: inline-block;
  padding-bottom: 0px;
  padding-left: 0px;
}

/* line 80, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-links li {
  display: block;
  float: left;
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.77778rem;
}

/* line 87, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-links li a {
  color: #666666;
  padding: 3px 6px;
}

/* line 90, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-links li a:hover {
  color: #777777;
}

/* line 93, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-terms {
  margin: 0;
  display: inline-block;
  padding-bottom: 0px;
  padding-left: 0px;
  list-style-position: inside;
}

/* line 99, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-terms li {
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.77778rem;
  color: #666666;
}

/* line 105, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-terms li a {
  color: #666666;
  padding: 3px 6px;
}

/* line 108, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.xan-terms li a:hover {
  color: #777777;
}

/* line 111, app/assets/stylesheets/footer.sass */
.xan-footer-bottom h3.terms {
  text-transform: uppercase;
  color: #666666;
  font-weight: 700;
  font-size: 0.77778rem;
}

/* line 117, app/assets/stylesheets/footer.sass */
.xan-footer-bottom p.copyright {
  margin: 6px 0 0;
  font-size: 0.66667rem;
  color: #666666;
}

/* line 122, app/assets/stylesheets/footer.sass */
.xan-footer-bottom a.logo {
  display: inline-block;
}

/* line 124, app/assets/stylesheets/footer.sass */
.xan-footer-bottom a.logo img {
  position: relative;
  top: -5px;
  width: 70px;
}

/* line 129, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social {
  display: block;
  float: right;
  margin-bottom: 8px;
}

/* line 133, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li {
  list-style: none;
  display: block;
  float: left;
  margin-left: 10px;
}

/* line 138, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li a {
  display: block;
  height: 50px;
  width: 50px;
  background: url(/assets/icons/social-retina-f4b9f7cb5a556799e5b1c6ac2796d336c80bcbc7134058d79f7457ab7947932b.png) no-repeat center 0;
  background-size: 50px 600px;
}

/* line 144, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li a.linkedin {
  background-position: center -200px;
}

/* line 146, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li a.twitter {
  background-position: center 0;
}

/* line 148, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li a.mail {
  background-position: center -400px;
}

/* line 150, app/assets/stylesheets/footer.sass */
.xan-footer-bottom ul.home-social li a:hover {
  opacity: 0.8;
}

/* line 1, app/assets/stylesheets/images.sass */
.fader {
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in;
  animation-fill-mode: forwards;
  -webkit-animation: opacity 0.2s ease-in;
  -webkit-animation-fill-mode: forwards;
}

/* line 11, app/assets/stylesheets/images.sass */
.failed {
  display: none;
}

/* line 14, app/assets/stylesheets/images.sass */
.loaded {
  opacity: 1;
  pointer-events: auto;
}

/* line 18, app/assets/stylesheets/images.sass */
#events .thumbnail .loading:before {
  opacity: 0.5;
  width: 50px;
  height: 50px;
}

/* line 24, app/assets/stylesheets/images.sass */
.loading:not(.small):before {
  content: '';
  background-image: url(/assets/tetherx-spiner-2b19e911044ce05b85d4a85e072f4f0041b2caaf13a58c6e81b101bf94d16bb0.gif);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 70px;
  height: 70px;
  position: relative;
  display: inline-block;
  margin-top: -25px;
  margin-left: -15px;
}

/* line 36, app/assets/stylesheets/images.sass */
.loading.loading-centered:not(.small) {
  margin-left: calc(50% - 35px);
  padding: 30px 0;
}

/* line 40, app/assets/stylesheets/images.sass */
.tooltip .loading:before {
  content: '';
  background-size: 70%;
  margin: 0;
  background-position: center;
}

/* line 46, app/assets/stylesheets/images.sass */
.loading.small:before {
  content: "\f110";
  font-size: 90%;
  color: #324a66;
  opacity: 0.5;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  position: relative;
  top: 2%;
  display: inline-block;
  animation: fa-spin 2.0s infinite linear;
}

/* line 63, app/assets/stylesheets/images.sass */
.loading.thumb:before {
  position: fixed;
  top: 50%;
  left: 45%;
}

/* line 70, app/assets/stylesheets/images.sass */
#events-list.grid-1 .thumbnail-cell, #events-list.grid-null .thumbnail-cell {
  height: 40px;
  width: 67px;
}

/* line 74, app/assets/stylesheets/images.sass */
#events-list.grid-1 .thumbnail-cell .thumb:before, #events-list.grid-null .thumbnail-cell .thumb:before {
  font-size: 14px;
}

/* line 76, app/assets/stylesheets/images.sass */
#events-list.grid-1 .thumbnail-cell .loading-failed:before, #events-list.grid-null .thumbnail-cell .loading-failed:before {
  top: -2px;
}

/* line 79, app/assets/stylesheets/images.sass */
#events-list.grid-2 .thumbnail-cell {
  height: 80px;
  width: 134px;
}

/* line 83, app/assets/stylesheets/images.sass */
#events-list.grid-3 .thumbnail-cell {
  height: 120px;
  width: 201px;
}

/* line 87, app/assets/stylesheets/images.sass */
#events-list.grid-4 .thumbnail-cell {
  height: 160px;
  width: 268px;
}

/* line 91, app/assets/stylesheets/images.sass */
#events-list.grid-5 .thumbnail-cell {
  height: 200px;
  width: 335px;
}

/* line 95, app/assets/stylesheets/images.sass */
#events-list .thumbnail-cell {
  max-height: 200px;
  max-width: 335px;
  display: flex;
  position: relative;
  justify-content: center;
}

/* line 103, app/assets/stylesheets/images.sass */
#events-list .thumbnail-cell .event-select {
  top: -5px;
  left: -10px;
}

/* line 107, app/assets/stylesheets/images.sass */
#events-list .thumbnail-cell .xanthumb-card {
  width: 100%;
  max-height: 100%;
}

/* line 111, app/assets/stylesheets/images.sass */
.loading.white:before {
  color: white;
  padding: 22px 40px;
}

/* line 115, app/assets/stylesheets/images.sass */
.loading {
  display: inline-block;
}

/* line 119, app/assets/stylesheets/images.sass */
.no-camera-text {
  display: none !important;
}

/* line 122, app/assets/stylesheets/images.sass */
.loading-failed:before {
  opacity: 0.5;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  color: #524835;
  font-size: 20px;
  position: relative;
  top: 2%;
  content: "\f00d  Offline?";
}

/* line 134, app/assets/stylesheets/images.sass */
.loading-failed.only-monitor:before {
  content: "";
}

/* line 138, app/assets/stylesheets/images.sass */
.loading-failed.only-monitor .no-camera-text {
  display: inline-block !important;
  opacity: 0.5;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  color: #524835;
  font-size: 20px;
  position: relative;
  top: 2%;
}

/* line 150, app/assets/stylesheets/images.sass */
.loading-failed {
  display: inline-block;
}

/* line 153, app/assets/stylesheets/images.sass */
.loading-modal {
  position: relative;
  padding: 5px;
}

/* line 157, app/assets/stylesheets/images.sass */
.loading-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #dddddd94;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* line 169, app/assets/stylesheets/images.sass */
.logo-wrapper {
  margin-right: 10px;
  vertical-align: top;
}

/* line 172, app/assets/stylesheets/images.sass */
.logo-wrapper img {
  border-radius: 50%;
  height: 35px;
  max-width: none;
}

/* line 177, app/assets/stylesheets/images.sass */
.logo-text {
  display: inline-block;
  line-height: 1.2;
}

/* line 1, app/assets/stylesheets/recordings.sass */
#snap {
  display: inline-block;
  font-weight: 900;
  font-size: 32px;
  margin-top: 10px;
  right: 32px;
  position: absolute;
  perspective: 400;
  z-index: 1;
  opacity: 0.7;
}

@media (max-width: 767px) {
  /* line 14, app/assets/stylesheets/recordings.sass */
  #perspective table td {
    vertical-align: bottom !important;
  }
  /* line 19, app/assets/stylesheets/recordings.sass */
  .livebox.ui-draggable-dragging {
    height: 65px !important;
  }
  /* line 21, app/assets/stylesheets/recordings.sass */
  .livebox.ui-draggable-dragging *:not(.drag-label) {
    display: none !important;
  }
}

/* line 2, app/assets/stylesheets/help.sass */
#quoteCalculatorContainer .slider_label {
  width: 95%;
  text-align: center;
}

/* line 5, app/assets/stylesheets/help.sass */
#quoteCalculatorContainer .slider {
  width: 80%;
  margin-right: 50px;
  margin-left: 50px;
}

/* line 10, app/assets/stylesheets/help.sass */
#selected-items {
  font-size: 0.9em;
}

/* line 13, app/assets/stylesheets/help.sass */
#new-help-page *:not(code) {
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica,Arial,sans-serif;
  color: #33475b;
}

/* line 18, app/assets/stylesheets/help.sass */
#new-help-page img {
  max-width: 100%;
}

/* line 21, app/assets/stylesheets/help.sass */
#new-help-page h1, #new-help-page h2, #new-help-page h3, #new-help-page h4, #new-help-page h5, #new-help-page h6 {
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica,Arial,sans-serif;
  font-weight: normal;
}

/* line 26, app/assets/stylesheets/help.sass */
#new-help-page h5 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.625rem;
}

/* line 31, app/assets/stylesheets/help.sass */
#new-help-page ul, #new-help-page ul ul {
  list-style-type: square;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica,Arial,sans-serif;
}

/* line 36, app/assets/stylesheets/help.sass */
#new-help-page li, #new-help-page p {
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.625rem;
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica,Arial,sans-serif;
}

/* line 46, app/assets/stylesheets/help.sass */
#help-filter *:not(i) {
  font-family: Helvetica,Arial,sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* line 50, app/assets/stylesheets/help.sass */
#help-filter .hover-menu-item {
  padding: .75rem;
  color: #33475b;
  font-size: 0.875rem;
}

/* line 55, app/assets/stylesheets/help.sass */
#help-filter .hover-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 58, app/assets/stylesheets/help.sass */
#help-filter ul {
  padding-left: 0;
}

/* line 61, app/assets/stylesheets/help.sass */
#help-filter ul li {
  list-style-type: none;
  line-height: 1rem;
}

/* line 62, app/assets/stylesheets/help.sass */
#help-filter ul li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 68, app/assets/stylesheets/help.sass */
.collapse-with-arrow {
  display: flex;
  cursor: pointer;
}

/* line 71, app/assets/stylesheets/help.sass */
.collapse-with-arrow i {
  margin-left: auto;
}

/* line 73, app/assets/stylesheets/help.sass */
.collapse-with-arrow i.fa-angle-down {
  display: none;
}

/* line 76, app/assets/stylesheets/help.sass */
.collapse-with-arrow[aria-expanded="true"] i.fa-angle-right {
  display: none;
}

/* line 78, app/assets/stylesheets/help.sass */
.collapse-with-arrow[aria-expanded="true"] i.fa-angle-down {
  display: block;
}

/* line 83, app/assets/stylesheets/help.sass */
#help-page #datasheets .card, #help-page #marketing_pdfs .card, #help-page #partner_program .card, #help-page #price_list .card {
  border: none !important;
  background-color: #d6d6d615;
  border-radius: 15px;
  width: 255px;
  margin-bottom: 35px;
}

/* line 89, app/assets/stylesheets/help.sass */
#help-page #datasheets .card:hover, #help-page #marketing_pdfs .card:hover, #help-page #partner_program .card:hover, #help-page #price_list .card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/* line 91, app/assets/stylesheets/help.sass */
#help-page #datasheets .card:hover span, #help-page #marketing_pdfs .card:hover span, #help-page #partner_program .card:hover span, #help-page #price_list .card:hover span {
  color: #ed663e;
}

/* line 93, app/assets/stylesheets/help.sass */
#help-page #datasheets .card .card-body, #help-page #marketing_pdfs .card .card-body, #help-page #partner_program .card .card-body, #help-page #price_list .card .card-body {
  padding: 0;
  cursor: pointer;
  text-align: center;
  height: 290px;
}

/* line 98, app/assets/stylesheets/help.sass */
#help-page #datasheets .card .card-body img, #help-page #marketing_pdfs .card .card-body img, #help-page #partner_program .card .card-body img, #help-page #price_list .card .card-body img {
  max-width: 175px;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* line 107, app/assets/stylesheets/help.sass */
#help-page #datasheets .card .card-body .format, #help-page #marketing_pdfs .card .card-body .format, #help-page #partner_program .card .card-body .format, #help-page #price_list .card .card-body .format {
  position: absolute;
  padding: 4px 12px 2px 12px;
  top: 275px;
  right: 15px;
  background-color: #d6d6d6;
  border-radius: 10px;
  color: white;
  font-size: 12px;
}

/* line 116, app/assets/stylesheets/help.sass */
#help-page #datasheets .card .card-footer, #help-page #marketing_pdfs .card .card-footer, #help-page #partner_program .card .card-footer, #help-page #price_list .card .card-footer {
  text-align: center;
  padding: 20px 0 0 0;
  background-color: transparent;
  border-top: none;
}

@media (max-width: 640px) {
  /* line 123, app/assets/stylesheets/help.sass */
  #help-page #datasheets .card, #help-page #marketing_pdfs .card, #help-page #partner_program .card, #help-page #price_list .card {
    width: 142px;
  }
  /* line 125, app/assets/stylesheets/help.sass */
  #help-page #datasheets .card .card-body, #help-page #marketing_pdfs .card .card-body, #help-page #partner_program .card .card-body, #help-page #price_list .card .card-body {
    height: 198px;
    position: relative;
  }
  /* line 128, app/assets/stylesheets/help.sass */
  #help-page #datasheets .card .card-body img, #help-page #marketing_pdfs .card .card-body img, #help-page #partner_program .card .card-body img, #help-page #price_list .card .card-body img {
    max-width: 138px;
  }
  /* line 130, app/assets/stylesheets/help.sass */
  #help-page #datasheets .card .card-body .format, #help-page #marketing_pdfs .card .card-body .format, #help-page #partner_program .card .card-body .format, #help-page #price_list .card .card-body .format {
    top: 180px;
    right: 0px;
  }
  /* line 133, app/assets/stylesheets/help.sass */
  #help-page #datasheets .card .card-footer, #help-page #marketing_pdfs .card .card-footer, #help-page #partner_program .card .card-footer, #help-page #price_list .card .card-footer {
    padding-top: 10px;
  }
}

/* line 137, app/assets/stylesheets/help.sass */
table.bootstrap_table .select2-selection--single {
  height: calc(1.5em + 0.75rem + 2px) !important;
  padding: 0.375rem 0.75rem !important;
}

/* line 140, app/assets/stylesheets/help.sass */
table.bootstrap_table .select2-selection__arrow {
  height: calc(1.5em + 0.75rem + 2px) !important;
}

/* line 2, app/assets/stylesheets/sessions.sass */
#login_form button i {
  margin-right: 5px;
}

/* line 5, app/assets/stylesheets/audit_sessions.sass */
table tr.staff {
  opacity: 0.5;
}

/* line 8, app/assets/stylesheets/audit_sessions.sass */
table .thumbnail {
  min-width: 100px;
}

/* line 11, app/assets/stylesheets/audit_sessions.sass */
table i {
  font-size: 0.8em;
  opacity: 0.8;
}

/* line 4, app/assets/stylesheets/audit_logs.sass */
.audit-log-tab {
  overflow-x: auto;
}

/* line 2, app/assets/stylesheets/perspectives.sass */
form#camera_selection {
  margin-bottom: 0px !important;
}

/* line 7, app/assets/stylesheets/perspectives.sass */
.livebox .ptz, .livebox .camera-show-ptz-btn, .livebox .ptz-mobile-portrait-badge {
  display: none;
}

/* line 12, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .camera-show-ptz-btn {
  max-width: 40px;
  min-width: 40px;
}

/* line 17, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description {
  width: 100% !important;
  margin-left: 0px !important;
  padding-top: 0px !important;
}

/* line 22, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2.select2-container {
  width: 100% !important;
}

/* line 25, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2.select2-container .select2-selection {
  height: 22px !important;
}

/* line 28, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2.select2-container .select2-selection .select2-selection__rendered {
  line-height: 18px;
  height: 20px;
  font-size: 12px;
  padding-right: 3px;
  padding-left: 3px;
}

/* line 35, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2.select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  line-height: 18px;
}

/* line 38, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2.select2-container .select2-selection .select2-selection__arrow {
  display: none;
}

/* line 41, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .description .select2-selection__clear {
  opacity: 0.5;
  padding-top: 1px !important;
  font-size: 11px;
  margin-top: 3px;
  margin-right: 2px;
}

/* line 48, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-xs-screen .camera-show-ptz-btn {
  font-size: 12px;
  padding: 1px 5px;
}

/* line 53, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-small-screen .controls, #perspective table .livebox.livebox-small-screen .audio-challenge {
  visibility: hidden;
}

/* line 58, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-show-ptz-btn[show-ptz-controls="true"] .camera-show-ptz-btn {
  display: block;
}

/* line 60, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.livebox-show-ptz-btn[show-ptz-controls="true"] .ptz {
  display: none;
}

/* line 63, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox[show-ptz-controls="true"] .ptz {
  display: block;
}

/* line 68, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .livebox {
  background-color: black;
}

/* line 72, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .livebox[show-ptz-controls="true"] .camera-show-ptz-btn {
  display: none;
}

/* line 74, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .livebox[show-ptz-controls="true"] .ptz {
  display: block;
}

/* line 78, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .livebox.livebox-mobile-portrait[show-ptz-controls="true"] .ptz-mobile-portrait-badge {
  display: block;
}

/* line 80, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .livebox.livebox-mobile-portrait[show-ptz-controls="true"] .ptz {
  display: none;
}

/* line 84, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list {
  padding-inline-start: 0;
  list-style-type: none;
  margin-left: 1px;
  margin-right: 1px;
}

/* line 89, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list li {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* line 92, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list a.perspective > i {
  opacity: 0.7;
  display: inline;
  position: relative;
  float: left;
  cursor: move;
}

/* line 99, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list, #sidebar-nav #new_user_perspective {
  padding: 0;
}

/* line 102, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table td, #sidebar-nav #new_user_perspective table td {
  border: none;
}

/* line 105, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table.perspective, #sidebar-nav #new_user_perspective table.perspective {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-spacing: 0;
}

/* line 110, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table.perspective td, #sidebar-nav #perspectives_list table.perspective tr, #sidebar-nav #new_user_perspective table.perspective td, #sidebar-nav #new_user_perspective table.perspective tr {
  padding: 0;
  margin: 0;
}

/* line 113, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table.perspective td.name, #sidebar-nav #new_user_perspective table.perspective td.name {
  width: 100%;
}

/* line 115, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table.perspective td.name a, #sidebar-nav #new_user_perspective table.perspective td.name a {
  text-align: left;
  margin-top: 0;
  martin-bottom: 0;
  margin-right: 0;
}

/* line 120, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_list table.perspective td.name i, #sidebar-nav #new_user_perspective table.perspective td.name i {
  margin-left: -1px;
  padding-right: 5px;
}

/* line 124, app/assets/stylesheets/perspectives.sass */
#sidebar-nav {
  margin-right: 0px;
}

@media (max-width: 767px) {
  /* line 127, app/assets/stylesheets/perspectives.sass */
  #sidebar-nav #perspectives_filter {
    margin-bottom: 110px;
  }
}

/* line 130, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_filter .section, #sidebar-nav #perspectives_filter ul #perspectives {
  text-align: center;
}

/* line 134, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_filter span.error {
  margin-top: -1em;
  margin-left: 1px;
}

/* line 138, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #perspectives_filter #perspectives_list .button {
  border-radius: 0px;
  margin-right: 0;
  width: inherit !important;
}

/* line 142, app/assets/stylesheets/perspectives.sass */
#sidebar-nav .thin-button {
  float: none;
  padding-left: 10px;
  padding-right: 20px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* line 150, app/assets/stylesheets/perspectives.sass */
  #sidebar-nav #layouts img {
    pointer-events: none;
  }
}

/* line 153, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts {
  text-align: center;
}

/* line 156, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts .layout {
  margin: 2px;
  width: 53px;
  cursor: pointer;
  display: inline-block;
  box-sizing: content-box !important;
}

/* line 157, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts .layout input {
  display: none;
}

/* line 161, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts .layout img {
  opacity: 0.5;
}

/* line 163, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts .layout img.active {
  opacity: 0.8;
}

/* line 165, app/assets/stylesheets/perspectives.sass */
#sidebar-nav #layouts .layout img:hover {
  opacity: 0.8;
  -webkit-transition-property: opacity;
  -webkit-transition-duration: 0.5s;
  transition-property: opacity;
  transition-duration: 0.5s;
}

/* line 182, app/assets/stylesheets/perspectives.sass */
#create_perspective_form .hidden {
  display: none;
}

/* line 185, app/assets/stylesheets/perspectives.sass */
#camera_selection {
  width: 100%;
  height: 100%;
}

/* line 190, app/assets/stylesheets/perspectives.sass */
#perspective table, #timelapse table {
  table-layout: fixed;
  background: none !important;
  border: 0px solid white !important;
  z-index: -1;
  border-collapse: separate;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-spacing: 1px;
}

/* line 200, app/assets/stylesheets/perspectives.sass */
#perspective table td, #timelapse table td {
  white-space: normal;
  z-index: -1;
  background: linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%);
  padding: 1px;
  margin: 0px;
  vertical-align: top;
}

/* line 202, app/assets/stylesheets/perspectives.sass */
#perspective table td.highlight, #timelapse table td.highlight {
  cursor: pointer;
  opacity: 0.5;
}

/* line 212, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen, #timelapse table .fullscreen {
  position: fixed !important;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1049;
  background: black !important;
}

/* line 220, app/assets/stylesheets/perspectives.sass */
#perspective table .fullscreen .container, #perspective table .fullscreen .player-poster, #timelapse table .fullscreen .container, #timelapse table .fullscreen .player-poster {
  background: black !important;
}

/* line 222, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox, #timelapse table .livebox {
  position: relative;
  overflow: hidden;
  display: table;
  border: 0px solid white;
  box-sizing: content-box !important;
  border-spacing: 0px;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}

/* line 223, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.ui-draggable-dragging, #timelapse table .livebox.ui-draggable-dragging {
  height: auto;
  width: auto;
  float: right;
  cursor: pointer;
  z-index: 1;
}

/* line 229, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.ui-draggable-dragging .image, #perspective table .livebox.ui-draggable-dragging .description, #timelapse table .livebox.ui-draggable-dragging .image, #timelapse table .livebox.ui-draggable-dragging .description {
  display: none;
}

/* line 231, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox.ui-draggable-dragging .drag-label, #timelapse table .livebox.ui-draggable-dragging .drag-label {
  display: inline;
}

/* line 244, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .drag-label, #timelapse table .livebox .drag-label {
  font-size: 14px;
  z-index: 10;
  display: none;
  float: right;
  cursor: pointer;
}

/* line 251, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .error .error_msg, #timelapse table .livebox .error .error_msg {
  display: block !important;
}

/* line 254, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .error .error_msg span.has-tip, #timelapse table .livebox .error .error_msg span.has-tip {
  border: none;
}

/* line 257, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .error .error_msg i, #timelapse table .livebox .error .error_msg i {
  font-size: 6vw;
  color: #f8d7da;
}

/* line 261, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .alert:not(.ptz-mobile-portrait-badge), #timelapse table .livebox .alert:not(.ptz-mobile-portrait-badge) {
  position: absolute;
  z-index: 1;
  width: 100%;
}

/* line 266, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .image, #timelapse table .livebox .image {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

/* line 273, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .image .error_msg, #timelapse table .livebox .image .error_msg {
  display: none;
}

/* line 275, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .image img, #timelapse table .livebox .image img {
  position: absolute;
  line-height: 100%;
}

/* line 280, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .image .container, #perspective table .livebox .image .player-poster, #timelapse table .livebox .image .container, #timelapse table .livebox .image .player-poster {
  background: linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%);
}

/* line 282, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .description, #timelapse table .livebox .description {
  opacity: 0.9;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* line 288, app/assets/stylesheets/perspectives.sass */
#perspective table .livebox .description.hidden:not(.focus):not(.selecting), #timelapse table .livebox .description.hidden:not(.focus):not(.selecting) {
  visibility: hidden;
}

@media (max-width: 600px) {
  /* line 282, app/assets/stylesheets/perspectives.sass */
  #perspective table .livebox .description, #timelapse table .livebox .description {
    width: 80%;
    margin-left: 10%;
  }
}

@media (min-width: 601px) {
  /* line 282, app/assets/stylesheets/perspectives.sass */
  #perspective table .livebox .description, #timelapse table .livebox .description {
    width: 60%;
    margin-left: 20%;
  }
}

/* ptz style */
/* line 298, app/assets/stylesheets/perspectives.sass */
.livebox_controls {
  position: absolute;
  display: flex;
  z-index: 1;
}

/* line 302, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz {
  z-index: 1;
}

/* line 305, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz #speed-range .slider {
  width: 100%;
  float: left;
}

/* line 308, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz #speed-range label {
  float: left;
  padding-left: 1rem;
  margin-top: 2px;
}

/* line 312, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-name {
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #E2E2E2;
}

/* line 319, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-l {
  float: left;
  margin-top: 10px;
  width: 115px;
}

/* line 323, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-l .direction {
  float: left;
  width: 32px;
  height: 32px;
  margin: 0 4px 4px 0;
  cursor: pointer;
  background-image: url(/assets/icons/ptz-icons-462139b0eab8b4591b78ec568cb0f006db4c0bee34d558510d90affce03bd02e.png);
  background-color: #FFFFFF;
  background-position: 0 -90px;
}

/* line 332, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-l i {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 1px 1px;
  background: url(/assets/icons/ptz-icons-462139b0eab8b4591b78ec568cb0f006db4c0bee34d558510d90affce03bd02e.png) no-repeat;
}

/* line 338, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-l i:hover {
  background-image: url(/assets/icons/ptz-icons-on-f6acd2835e331ec3b7a22ff7e11f62df39387d19ada0a4e021a2f8f08454684d.png);
}

/* line 341, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r {
  float: left;
  margin-top: 10px;
  text-align: right;
  width: 75px;
}

/* line 347, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r .operation {
  float: left;
  width: 75px;
  height: 32px;
  margin-bottom: 4px;
  cursor: pointer;
  background-image: url(/assets/icons/ptz-icons-462139b0eab8b4591b78ec568cb0f006db4c0bee34d558510d90affce03bd02e.png);
  background-color: #FFFFFF;
  background-position: -32px -90px;
}

/* line 357, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i {
  float: left;
  width: 36px;
  height: 30px;
  margin: 1px 0 1px 1px;
  background: url(/assets/icons/ptz-icons-462139b0eab8b4591b78ec568cb0f006db4c0bee34d558510d90affce03bd02e.png) no-repeat;
}

/* line 364, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i:hover, .livebox_controls .ptz .ptz-ctrl-r i.hover {
  float: left;
  width: 36px;
  height: 30px;
  margin: 1px 0 1px 1px;
  background: url(/assets/icons/ptz-icons-on-f6acd2835e331ec3b7a22ff7e11f62df39387d19ada0a4e021a2f8f08454684d.png) no-repeat;
}

/* line 371, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-zoomout {
  background-position: -90px 0;
}

/* line 374, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-zoomin {
  background-position: -126px 0;
}

/* line 377, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-focusout {
  background-position: -90px -30px;
}

/* line 380, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-focusin {
  background-position: -126px -30px;
}

/* line 383, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-irisout {
  background-position: -90px -60px;
}

/* line 386, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-irisin {
  background-position: -126px -60px;
}

/* line 389, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-light {
  background-position: -162px 0px;
}

/* line 392, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz .ptz-ctrl-r i.icon-ptz-brush {
  background-position: -162px -29px;
}

/* line 395, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-left-up {
  background-position: 0 0;
}

/* line 398, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-up {
  background-position: -30px 0px;
}

/* line 401, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-right-up {
  background-position: -60px 0px;
}

/* line 404, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-left {
  background-position: 0 -30px;
}

/* line 407, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-auto {
  background-position: -30px -30px;
}

/* line 410, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-auto-sel {
  background-position: -126px -90px;
}

/* line 413, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-right {
  background-position: -60px -30px;
}

/* line 416, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-left-down {
  background-position: 0px -60px;
}

/* line 419, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-down {
  background-position: -30px -60px;
}

/* line 422, app/assets/stylesheets/perspectives.sass */
.livebox_controls .ptz i.icon-ptz-right-down {
  background-position: -60px -60px;
}

/* line 425, app/assets/stylesheets/perspectives.sass */
.audio-challenge {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-size: 1.5rem;
  text-align: center;
  z-index: 1;
  display: none;
}

/* line 434, app/assets/stylesheets/perspectives.sass */
.audio-challenge .audio-challenge-btn {
  width: 42px;
  height: 42px;
  padding: 2px 10px;
  border-radius: 50%;
  border: 1px solid #ed663e;
  color: #ed663e;
  cursor: pointer;
  z-index: 1;
}

/* line 444, app/assets/stylesheets/perspectives.sass */
.audio-challenge .audio-challenge-btn i {
  opacity: 1;
}

/* line 447, app/assets/stylesheets/perspectives.sass */
.audio-challenge .audio-challenge-btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* line 450, app/assets/stylesheets/perspectives.sass */
.audio-challenge .audio-challenge-btn:active {
  transform: scale(0.98);
  background-color: #ed663e;
  color: white;
  box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.8);
}

/* line 456, app/assets/stylesheets/perspectives.sass */
#idle-modal {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* line 461, app/assets/stylesheets/perspectives.sass */
#perspective .media-control-background {
  background: none !important;
}

/* line 463, app/assets/stylesheets/perspectives.sass */
#perspective .bar-container {
  display: none !important;
}

/* line 466, app/assets/stylesheets/perspectives.sass */
#perspective .media-control-button.media-control-icon {
  background: url(/assets/icons/hd_btn-3ba5b6b61638631235530d145316078d9546daaae8bb84bcae359e93f08a66b9.png) 2px 2px no-repeat;
}

/* line 468, app/assets/stylesheets/perspectives.sass */
#perspective .media-control-button.media-control-icon.player-paused {
  background-image: url(/assets/icons/sd_btn-c230ac2e56ea4e31cde85ecc0cf66f561f36428ae2e382c876cc46952b1e31a0.png);
}

/* line 470, app/assets/stylesheets/perspectives.sass */
#perspective .media-control-button.media-control-icon svg {
  display: none;
}

/* line 474, app/assets/stylesheets/perspectives.sass */
#perspective .livebox .livebox_controls {
  display: none;
}

/* line 476, app/assets/stylesheets/perspectives.sass */
#perspective .livebox:hover .livebox_controls, #perspective .livebox_controls.focus {
  display: flex;
}

/* line 478, app/assets/stylesheets/perspectives.sass */
#perspective .livebox:hover .audio-challenge {
  display: flex;
}

/* line 481, app/assets/stylesheets/perspectives.sass */
.ptz {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 486, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small {
  top: 40px;
  left: 5px;
}

/* line 490, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r {
  width: 55px;
}

/* line 493, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation {
  width: 54px;
  height: 25px;
  background-position: -43px -90px;
}

/* line 498, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation i {
  background-size: 250px;
  width: 24px;
  height: 23px;
}

/* line 502, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation i.icon-ptz-zoomout {
  background-position: -77px 0;
}

/* line 504, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation i.icon-ptz-zoomin {
  background-position: -106px 0;
}

/* line 506, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation i.icon-ptz-light {
  background-position: -137px 0;
}

/* line 508, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-r .operation i.icon-ptz-brush {
  background-position: -137px -25px;
}

/* line 510, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l {
  width: 90px;
}

/* line 513, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l .direction {
  width: 25px;
  height: 25px;
}

/* line 516, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i {
  background-size: 250px;
  width: 23px;
  height: 23px;
}

/* line 521, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-auto {
  background-position: -26px -26px;
}

/* line 523, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-left {
  background-position: 0 -27px;
}

/* line 525, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-left-down {
  background-position: 0 -52px;
}

/* line 527, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-up {
  background-position: -27px 0px;
}

/* line 529, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-down {
  background-position: -27px -52px;
}

/* line 531, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-right-up {
  background-position: -52px 0px;
}

/* line 533, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-right {
  background-position: -52px -27px;
}

/* line 535, app/assets/stylesheets/perspectives.sass */
#perspective td:not(.fullscreen) .livebox_controls.small .ptz .ptz-ctrl-l i.icon-ptz-right-down {
  background-position: -53px -52px;
}

/* line 5, app/assets/stylesheets/cameras.sass */
#login_to_see_calculator a {
  text-decoration: underline;
}

/* line 9, app/assets/stylesheets/cameras.sass */
#camera_schedule_table th {
  text-align: center;
  font-size: 10px !important;
  padding-left: 1px !important;
  padding-right: 1px !important;
}

/* line 14, app/assets/stylesheets/cameras.sass */
#camera_schedule_table input {
  display: none;
}

/* line 16, app/assets/stylesheets/cameras.sass */
#camera_schedule_table td {
  font-size: 10px !important;
}

/* line 18, app/assets/stylesheets/cameras.sass */
#camera_schedule_table td.schedulebox {
  background-color: red;
}

/* line 20, app/assets/stylesheets/cameras.sass */
#camera_schedule_table td.schedulebox.full {
  background-color: green;
}

/* line 22, app/assets/stylesheets/cameras.sass */
#camera_schedule_table td.schedulebox.live {
  background-color: black;
}

/* line 26, app/assets/stylesheets/cameras.sass */
#select_mode_table td, #schedule_selection_table td, #camera_schedule_table td {
  padding: 0.5rem 0.625rem 0.625rem;
}

/* line 29, app/assets/stylesheets/cameras.sass */
#schedule_selection_table {
  width: auto;
}

/* line 31, app/assets/stylesheets/cameras.sass */
#schedule_selection_table .schedule_selector {
  cursor: pointer;
}

/* line 33, app/assets/stylesheets/cameras.sass */
#select_mode_table {
  width: auto;
}

/* line 36, app/assets/stylesheets/cameras.sass */
#mask {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 40, app/assets/stylesheets/cameras.sass */
#maskload {
  width: 50px;
  height: 50px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 50, app/assets/stylesheets/cameras.sass */
#maskwrap {
  width: 100%;
  height: 100%;
  min-height: 200px !important;
  border: 1px solid lightgray;
  display: inline-block;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 59, app/assets/stylesheets/cameras.sass */
#maskpreview {
  position: relative;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 67, app/assets/stylesheets/cameras.sass */
#maskcanvas {
  position: absolute;
  top: 0px;
  left: 0px;
  cursor: crosshair;
  opacity: 0.8;
  z-index: 999;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 76, app/assets/stylesheets/cameras.sass */
.camera_toggle {
  display: inline;
}

/* line 77, app/assets/stylesheets/cameras.sass */
.camera_toggle .fa-2x {
  font-size: 1.2em;
}

/* line 82, app/assets/stylesheets/cameras.sass */
form.camera .accordion .accordion-navigation > a, form.camera .accordion dd > a {
  background: none;
  padding-left: 0;
}

/* line 85, app/assets/stylesheets/cameras.sass */
form.camera .accordion .accordion-navigation > a:hover, form.camera .accordion dd > a:hover {
  background: none;
}

/* line 87, app/assets/stylesheets/cameras.sass */
form.camera .accordion .accordion-navigation > .content, form.camera .accordion dd > .content {
  padding: 0;
}

/* line 90, app/assets/stylesheets/cameras.sass */
.camera_status {
  float: right;
  opacity: 0.4;
}

/* line 93, app/assets/stylesheets/cameras.sass */
.camera_status .red {
  color: red;
}

/* line 95, app/assets/stylesheets/cameras.sass */
.camera_status .green {
  color: green;
}

/* line 97, app/assets/stylesheets/cameras.sass */
.camera_status .grey {
  color: grey;
}

/* line 101, app/assets/stylesheets/cameras.sass */
.nav-pills .nav-link.quote-btn, .quote-btn {
  border: 1px solid #324a66;
  padding: 20px;
  height: 6rem;
  text-align: center;
  color: black;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0.25rem;
}

/* line 111, app/assets/stylesheets/cameras.sass */
.nav-pills .nav-link.quote-btn.active, .nav-pills .nav-link.quote-btn[aria-expanded="true"], .quote-btn.active, .quote-btn[aria-expanded="true"] {
  font-weight: bold;
  color: white;
  background-color: #324a66;
}

/* line 115, app/assets/stylesheets/cameras.sass */
.nav-pills .nav-link.quote-btn:hover, .quote-btn:hover {
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 120, app/assets/stylesheets/cameras.sass */
#quote-calculation .slider-handle.min-slider-handle.round {
  width: 20px;
}

/* line 123, app/assets/stylesheets/cameras.sass */
.addition {
  min-height: 20rem;
}

/* line 128, app/assets/stylesheets/cameras.sass */
.pointer {
  cursor: pointer !important;
}

/* line 132, app/assets/stylesheets/cameras.sass */
#ukStorage .active-tab-line, #euStorage .active-tab-line {
  display: none;
}

/* line 135, app/assets/stylesheets/cameras.sass */
#ukStorage.active .active-tab-line, #euStorage.active .active-tab-line {
  display: block;
  border: 2px solid #ed663e;
  margin-top: -15%;
}

/* line 139, app/assets/stylesheets/cameras.sass */
#ukStorage img, #euStorage img {
  width: 100%;
  cursor: pointer;
  margin-top: -14%;
}

/* line 144, app/assets/stylesheets/cameras.sass */
#calipsa-block, #deepalert-block {
  min-height: 125px;
}

/* line 147, app/assets/stylesheets/cameras.sass */
#calipsa-block {
  background-color: white !important;
}

/* line 150, app/assets/stylesheets/cameras.sass */
#calipsa-block .card-body {
  background: url(/assets/calipsa_logo-4b27a513e64f600da0a36e033ec5953bc4bf6b7b92a65904f6ac24a23cc2b25a.png) no-repeat center;
  background-size: 80%;
}

/* line 154, app/assets/stylesheets/cameras.sass */
#deepalert-block {
  background: linear-gradient(90deg, #4773b8, rgba(57, 72, 158, 0.98));
}

/* line 157, app/assets/stylesheets/cameras.sass */
#deepalert-block .card-body {
  background: url(/assets/deepalert_logo-1f3679835cfe32d2245937df14fe056b86f8eca9fa3bd87c9557b51576d38dcd.png) no-repeat center top;
  background-position-y: 25px;
  background-size: 90%;
}

/* line 163, app/assets/stylesheets/cameras.sass */
.deepalert-option {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* line 170, app/assets/stylesheets/cameras.sass */
.im-interested-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

/* line 175, app/assets/stylesheets/cameras.sass */
.alarm-filtering-more-info-btn {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}

/* line 1, app/assets/stylesheets/tables.scss */
table .button {
  margin: 0 0 0;
}

/* line 3, app/assets/stylesheets/lpr.scss */
.codepen-wrapper {
  width: 25%;
}

/* line 9, app/assets/stylesheets/lpr.scss */
.anpr-eu-ui, .anpr-noneu-ui {
  position: relative;
  background: white;
  color: black !important;
  font-weight: bold;
  display: inline-grid;
  height: 35px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #000;
  position: relative;
  font-family: helvetica, ariel, sans-serif;
  white-space: nowrap;
  line-height: 1rem;
  padding-left: 29px;
  padding-right: 7px;
  text-align: justify;
  font-size: 34px;
  line-height: 34px;
  font-weight: bold;
  text-transform: uppercase;
  transform: scale(1, 1.2);
}

/* line 34, app/assets/stylesheets/lpr.scss */
.anpr-noneu-ui.anpr-uk {
  color: black !important;
}

/* line 38, app/assets/stylesheets/lpr.scss */
.anpr-reverse {
  background: #ebd84a !important;
}

/* line 41, app/assets/stylesheets/lpr.scss */
.anpr-reverse .anpr-country_code {
  color: #ebd84a;
}

/* line 46, app/assets/stylesheets/lpr.scss */
.anpr-noneu-ui {
  color: #949494 !important;
}

/* line 51, app/assets/stylesheets/lpr.scss */
.anpr-eu-ui:before, .anpr-noneu-ui:before {
  content: '';
  display: block;
  width: 25px;
  height: 101%;
  background: #063298;
  position: absolute;
  top: 0px;
  border-radius: 5px 0 0 5px;
  color: #f8d038;
  font-size: .5em;
  line-height: 85px;
}

/* line 65, app/assets/stylesheets/lpr.scss */
.anpr-eu-ui:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 26px;
  border: 1px dashed #f8d038;
  transform: scale(1.2, 1);
}

/* line 79, app/assets/stylesheets/lpr.scss */
.anpr-noneu-ui {
  background: linear-gradient(to bottom, #f2f2f2 0%, #fff 100%);
}

/* line 83, app/assets/stylesheets/lpr.scss */
.anpr-country_code {
  position: absolute;
  color: white;
  font-size: 0.5rem;
  line-height: 0.5rem;
  font-weight: bold;
  bottom: 2px;
  left: 7px;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: break-all !important;
  transform: scale(1.2, 1);
}

/* line 98, app/assets/stylesheets/lpr.scss */
.btn-export {
  margin: 0 0 0 10px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 103, app/assets/stylesheets/lpr.scss */
.btn-export:focus {
  box-shadow: none !important;
}

/* line 108, app/assets/stylesheets/lpr.scss */
.btn-export-dropdown {
  display: inline-block;
  padding: 0 !important;
  margin: 0 !important;
}

/* line 113, app/assets/stylesheets/lpr.scss */
.btn-export-dropdown .dropdown-toggle:focus {
  box-shadow: none !important;
}

/* line 1, app/assets/stylesheets/maps.scss */
.leaflet-popup-content-wrapper {
  width: 350px;
}

/* line 4, app/assets/stylesheets/maps.scss */
.leaflet-popup-content-wrapper button a {
  color: black;
}

/* line 9, app/assets/stylesheets/maps.scss */
.leaflet-popup-content-wrapper button:hover a {
  color: white;
}

/* line 5, app/assets/stylesheets/tetherboxes.sass */
#deploy_log {
  font-family: Helvetica Neue;
  font-size: 0.85rem;
  overflow-y: scroll;
  height: 600px;
  border: 1px solid #ccc;
  padding: 8px;
  background-color: #000;
  color: #fff;
}

/* line 15, app/assets/stylesheets/tetherboxes.sass */
.leaflet-map-pane {
  z-index: 8;
}

/* line 17, app/assets/stylesheets/tetherboxes.sass */
.leaflet-top {
  z-index: 9;
}

/* line 1, app/assets/stylesheets/companies.sass */
#tetherboxes-map,
#companies-map,
div[data-react-class="TetherBoxesMap"],
div[data-react-class="CompaniesMap"] {
  height: 100%;
}

/* line 7, app/assets/stylesheets/companies.sass */
#companies-map {
  max-height: 100%;
}

/* line 11, app/assets/stylesheets/companies.sass */
#tetherboxes-map-content .leaflet-popup-content-wrapper {
  width: 300px;
}

/* line 13, app/assets/stylesheets/companies.sass */
#tetherboxes-map-content .leaflet-popup-content {
  margin-left: 0;
  width: 100% !important;
  font-size: 14px;
}

/* line 19, app/assets/stylesheets/companies.sass */
#companies-map-container, #tetherboxes-map-container {
  position: relative;
}

/* line 22, app/assets/stylesheets/companies.sass */
#companies-map-container .container-loader, #tetherboxes-map-container .container-loader {
  background-color: rgba(50, 74, 102, 0.5);
  position: fixed;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 32, app/assets/stylesheets/companies.sass */
#companies-map-container .container-loader .loading, #tetherboxes-map-container .container-loader .loading {
  position: absolute;
  top: 43%;
  left: 50%;
}

/* line 1, app/assets/stylesheets/alarms.sass */
.keypad tr td {
  width: 80px;
  text-align: center;
}

/* line 5, app/assets/stylesheets/alarms.sass */
.virtual-keypad {
  margin: 0 auto;
}

/* line 7, app/assets/stylesheets/alarms.sass */
.virtual-keypad td {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
  border: none;
}

/* line 5, app/assets/stylesheets/users.css.scss */
#oauth-applications {
  overflow: auto;
}

/* line 9, app/assets/stylesheets/users.css.scss */
.scrolable-x {
  overflow: auto;
}

/* line 14, app/assets/stylesheets/users.css.scss */
#image-uploader-wrapper img {
  border-radius: 50%;
  width: 120px;
  border: 4px solid #dee2e6;
}

/* line 19, app/assets/stylesheets/users.css.scss */
#image-uploader-wrapper i {
  position: absolute;
  bottom: 20px;
  left: 100px;
  color: white;
  background-color: rgba(85, 85, 85, 0.7);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 1.7;
  font-size: 1.2em;
}

/* line 32, app/assets/stylesheets/users.css.scss */
#image-uploader-wrapper input[type=file] {
  position: absolute;
  bottom: 20px;
  left: 100px;
  opacity: 0;
  width: 32px;
  height: 32px;
  z-index: 1;
}

/* line 40, app/assets/stylesheets/users.css.scss */
#image-uploader-wrapper input[type=file]:hover + i {
  background-color: #555555;
}

/* line 47, app/assets/stylesheets/users.css.scss */
.logo-wrapper-user-preview img {
  max-width: 250px;
  max-height: 250px;
}

/* line 1, app/assets/stylesheets/subscriptions.scss */
.subscription-page-content:not(.loading) {
  overflow: auto;
}

/* line 4, app/assets/stylesheets/timelapse.sass */
#slider_timestamp {
  position: absolute;
  margin-top: -3px;
  margin-left: 50px;
}

/* line 8, app/assets/stylesheets/timelapse.sass */
a.play {
  display: block;
  float: left;
  font-size: 25px;
  margin-top: 6px;
  margin-right: 10px;
}

/* line 14, app/assets/stylesheets/timelapse.sass */
.range-slider {
  float: left;
}

/* line 17, app/assets/stylesheets/timelapse.sass */
.slider-selection {
  background: #eee;
  border-bottom-left-radius: inherit;
  border-top-left-radius: inherit;
  display: inline-block;
  height: 0.875rem;
  position: absolute;
}

/* line 24, app/assets/stylesheets/timelapse.sass */
.slider-track {
  border-radius: 5px;
}

/* line 27, app/assets/stylesheets/timelapse.sass */
.slider-handle.min-slider-handle.round {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #ce5835;
}

/* line 31, app/assets/stylesheets/timelapse.sass */
.slider-handle.min-slider-handle.round, .slider-selection {
  border-radius: 5;
  background: #ed663e;
}

/* line 36, app/assets/stylesheets/timelapse.sass */
.overlapLoading.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 54, 0.2);
  z-index: 10;
}

/* line 44, app/assets/stylesheets/timelapse.sass */
.overlapLoading.loading:before {
  color: #ed663e;
  opacity: 1;
  color: #ed663e;
  opacity: 1;
  position: absolute;
  left: calc(50% - 16px);
  top: calc(50% - 16px);
}

/* line 2, app/assets/stylesheets/controls.sass */
.image .controls, #player-wrapper .controls {
  display: none;
  position: absolute;
  font-size: 20px;
  z-index: 1;
  background-color: white;
  opacity: 0.85;
  padding-top: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 2px;
  overflow: hidden;
  border-radius: 5px;
}

@media (min-width: 768px) {
  /* line 2, app/assets/stylesheets/controls.sass */
  .image .controls, #player-wrapper .controls {
    top: 8px;
    right: 8px;
  }
}

/* line 19, app/assets/stylesheets/controls.sass */
.image .controls a, #player-wrapper .controls a {
  color: black;
  margin-left: 5px;
  margin-right: 5px;
}

/* line 23, app/assets/stylesheets/controls.sass */
.image .controls a i, #player-wrapper .controls a i {
  opacity: 0.5;
}

/* line 27, app/assets/stylesheets/controls.sass */
.image .controls a:hover i, .image .controls a:active i, #player-wrapper .controls a:hover i, #player-wrapper .controls a:active i {
  opacity: 0.7;
}

/* line 31, app/assets/stylesheets/controls.sass */
.fullscreen .controls a.move, #player-wrapper .controls a.move {
  display: none;
}

/* line 36, app/assets/stylesheets/controls.sass */
.fullscreen .livebox[show-ptz-controls="true"] .controls {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 41, app/assets/stylesheets/controls.sass */
  .livebox .audio-challenge {
    bottom: 50px;
    right: 5px;
  }
  /* line 45, app/assets/stylesheets/controls.sass */
  .image .controls {
    left: 0;
    bottom: 0;
    width: 100%;
  }
  /* line 51, app/assets/stylesheets/controls.sass */
  .fullscreen .image .controls {
    bottom: 40px;
  }
  /* line 54, app/assets/stylesheets/controls.sass */
  .fullscreen .livebox .audio-challenge {
    top: calc(50% - 50px);
    bottom: unset;
  }
}

/* line 62, app/assets/stylesheets/controls.sass */
#player-wrapper.image .controls, #player-wrapper#player-wrapper .controls {
  top: calc(1.5625rem + 8px);
  right: 8px;
}

/* line 66, app/assets/stylesheets/controls.sass */
#player-wrapper.image.for-partners .controls, #player-wrapper#player-wrapper.for-partners .controls {
  top: 8px;
}

/* line 68, app/assets/stylesheets/controls.sass */
.image:hover .controls:not(.hide), #player-wrapper:hover .controls:not(.hide) {
  display: inline-block;
}

/* line 72, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] {
  /* additionals controls */
}

/* line 74, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-action-icons-block .ptz-action-icon {
  width: 25px;
  height: 25px;
  text-align: center;
  padding-top: 3px;
  border: 2px solid #dedede;
  color: black;
  background-color: #eee;
}

/* line 83, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-action-icons-block .ptz-action-icon i {
  opacity: 1;
}

/* line 86, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .camera-presets, .livebox[show-ptz-controls="true"] .fetch-presets-bnt {
  position: relative;
  z-index: 10;
}

/* line 90, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .move-ptz-controls {
  position: relative;
  width: 125px;
  height: 125px;
}

/* line 95, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button, .livebox[show-ptz-controls="true"] .ptz-action-icon {
  cursor: pointer;
}

/* line 98, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button:hover, .livebox[show-ptz-controls="true"] .ptz-action-icon:hover {
  color: white;
  background-color: #d5d5d5;
}

/* line 102, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button:hover .ptz-move-control-arrow, .livebox[show-ptz-controls="true"] .ptz-action-icon:hover .ptz-move-control-arrow {
  border-color: white;
}

/* line 104, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button.ptz-move-control-button-clicked, .livebox[show-ptz-controls="true"] .ptz-action-icon.ptz-move-control-button-clicked {
  background-color: #ed663e;
  outline: none;
  color: white;
}

/* line 109, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button {
  width: 50px;
  height: 50px;
  border-top-left-radius: 100%;
  border: 2px solid #dedede;
  position: absolute;
  background-color: #eeeeee;
}

/* line 117, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-up {
  transform: rotate(45deg);
  left: 37px;
}

/* line 120, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-left {
  transform: rotate(-45deg);
  top: 37px;
  left: 0px;
}

/* line 124, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-right {
  transform: rotate(135deg);
  top: 37px;
  left: 74px;
}

/* line 128, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-down {
  transform: rotate(-135deg);
  left: 37px;
  top: 74px;
}

/* line 133, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-return {
  width: 20px;
  height: 20px;
  left: 51px;
  top: 53px;
  z-index: 1;
  border-radius: 50%;
  z-index: 1;
  background-color: #dedede;
  text-align: center;
  background-color: white;
  color: black;
}

/* line 146, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 19px;
  margin-bottom: -12px;
  border: solid #343434;
  border-width: 0 2px 2px 0px;
  transform: rotate(180deg);
}

/* line 157, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left, .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right,
.livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left, .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right {
  width: 30px;
  height: 30px;
  z-index: 1;
  background-color: white;
}

/* line 164, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left .ptz-move-control-arrow, .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right .ptz-move-control-arrow,
.livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left .ptz-move-control-arrow, .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right .ptz-move-control-arrow {
  margin-left: 13px;
  margin-bottom: -6px;
}

/* line 169, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left {
  left: 31px;
  top: 32px;
}

/* line 173, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right {
  left: 63px;
  top: 32px;
  transform: rotate(450deg);
}

/* line 178, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left {
  left: 31px;
  top: 64px;
  transform: rotate(-90deg);
}

/* line 183, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right {
  left: 63px;
  top: 64px;
  transform: rotate(180deg);
}

/* line 188, app/assets/stylesheets/controls.sass */
.livebox[show-ptz-controls="true"] .display-flex {
  display: flex;
}

@media (max-width: 767px) and (orientation: landscape) {
  /* line 194, app/assets/stylesheets/controls.sass */
  #perspective td .ptz {
    display: none;
  }
}

/* line 198, app/assets/stylesheets/controls.sass */
#perspective .image.loading:before {
  margin-top: calc(1.5rem + 8px) !important;
}

@media (max-width: 767px) and (orientation: portrait) {
  /* line 203, app/assets/stylesheets/controls.sass */
  #perspective td:not(.fullscreen) .ptz {
    display: none;
  }
  /* line 207, app/assets/stylesheets/controls.sass */
  #perspective .livebox[show-ptz-controls="true"] .ptz {
    display: block;
  }
  /* line 212, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .livebox_controls {
    display: flex;
  }
  /* line 214, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .image {
    height: 50%;
    position: fixed !important;
  }
  /* line 218, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .image.loading:before {
    top: 50%;
  }
  /* line 220, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] div[data-player] {
    height: 100% !important;
  }
  /* line 223, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button {
    width: 100px;
    height: 100px;
  }
  /* line 227, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-up {
    left: 73px;
  }
  /* line 229, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-left {
    top: 73px;
    left: 0px;
  }
  /* line 232, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-right {
    top: 73px;
    left: 145px;
  }
  /* line 235, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down {
    left: 73px;
    top: 145px;
  }
  /* line 239, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left {
    left: 51px;
    top: 51px;
  }
  /* line 243, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right {
    left: 123px;
    top: 51px;
  }
  /* line 247, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left {
    left: 51px;
    top: 123px;
  }
  /* line 251, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right {
    left: 123px;
    top: 123px;
  }
  /* line 255, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-return {
    width: 50px;
    height: 50px;
    left: 98px;
    top: 98px;
  }
  /* line 261, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-return i {
    font-size: 20px;
    padding-top: 12px;
  }
  /* line 265, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left, #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right,
#perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left, #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right {
    width: 70px;
    height: 70px;
  }
  /* line 270, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-left .ptz-move-control-arrow, #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-top-right .ptz-move-control-arrow,
#perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-left .ptz-move-control-arrow, #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-button-down-right .ptz-move-control-arrow {
    margin-left: 33px;
    margin-bottom: -26px;
  }
  /* line 274, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-move-control-arrow {
    width: 10px;
    height: 10px;
    margin-left: 35px;
    margin-bottom: -33px;
  }
  /* line 280, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .move-ptz-controls {
    width: 240px;
    height: 225px;
  }
  /* line 284, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] #perspective table .livebox .image {
    position: fixed;
    top: 0;
    height: 50%;
  }
  /* line 289, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz {
    position: fixed;
    top: 51%;
    width: 100%;
    left: 0;
  }
  /* line 295, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .move-ptz-controls, #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-action-icons-block:not(:first-child) {
    margin-left: auto;
  }
  /* line 298, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-action-icons-block .ptz-action-icon {
    width: 40px;
    height: 40px;
  }
  /* line 302, app/assets/stylesheets/controls.sass */
  #perspective td.fullscreen .livebox[show-ptz-controls="true"] .ptz-action-icons-block .ptz-action-icon i {
    font-size: 20px;
    padding-top: 5px;
  }
}

/* line 62, app/assets/stylesheets/main.scss */
.info-item {
  margin-bottom: 0.5rem;
}

/* line 65, app/assets/stylesheets/main.scss */
.info-item strong {
  color: #495057;
  font-weight: 600;
}

/* line 70, app/assets/stylesheets/main.scss */
.info-item .value {
  margin-left: 0.5rem;
}

/* line 76, app/assets/stylesheets/main.scss */
.technical-details summary {
  cursor: pointer;
  outline: none;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}

/* line 85, app/assets/stylesheets/main.scss */
.technical-details summary:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

/* line 90, app/assets/stylesheets/main.scss */
.technical-details summary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 96, app/assets/stylesheets/main.scss */
.help-tooltip {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

/* line 101, app/assets/stylesheets/main.scss */
.help-tooltip:hover {
  opacity: 1;
}

/* line 106, app/assets/stylesheets/main.scss */
.turbo-progress-bar {
  visibility: hidden;
}

/* line 110, app/assets/stylesheets/main.scss */
.bs-bars {
  display: flex;
}

@media (min-width: 900px) {
  /* line 113, app/assets/stylesheets/main.scss */
  #global-application-modal.modal .modal-dialog {
    min-width: 1200px;
  }
}
/*




 */
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_root.scss */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #333333;
  --primary: #324a66;
  --secondary: #ed663e;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #333333;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 101, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
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;
}

/* line 123, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 129, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 136, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 143, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
dt {
  font-weight: 700;
}

/* line 147, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 152, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
b,
strong {
  font-weight: bolder;
}

/* line 161, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
small {
  font-size: 80%;
}

/* line 170, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 178, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
sub {
  bottom: -.25em;
}

/* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
sup {
  top: -.5em;
}

/* line 186, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
a {
  color: #324a66;
  text-decoration: none;
  background-color: transparent;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a:hover {
  color: #192533;
  text-decoration: underline;
}

/* line 202, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

/* line 225, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* line 242, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
figure {
  margin: 0 0 1rem;
}

/* line 252, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
img {
  vertical-align: middle;
  border-style: none;
}

/* line 257, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 269, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
table {
  border-collapse: collapse;
}

/* line 273, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

/* line 285, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

/* line 296, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 305, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button {
  border-radius: 0;
}

/* line 315, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button:focus:not(:focus-visible) {
  outline: 0;
}

/* line 319, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 330, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button,
input {
  overflow: visible;
}

/* line 335, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button,
select {
  text-transform: none;
}

/* line 343, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[role="button"] {
  cursor: pointer;
}

/* line 350, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
select {
  word-wrap: normal;
}

/* line 358, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 371, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* line 378, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 386, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 393, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
textarea {
  overflow: auto;
  resize: vertical;
}

/* line 399, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 414, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 426, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
progress {
  vertical-align: baseline;
}

/* line 431, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 436, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 449, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 458, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 467, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
output {
  display: inline-block;
}

/* line 471, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 476, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
template {
  display: none;
}

/* line 482, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_reboot.scss */
[hidden] {
  display: none !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 2.5rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 2rem;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 1.75rem;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 1.5rem;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 1.25rem;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 1rem;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 89, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item {
  display: inline-block;
}

/* line 95, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 106, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 112, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 117, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

/* line 122, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer::before {
  content: "\2014\00A0";
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_images.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_images.scss */
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_images.scss */
.figure {
  display: inline-block;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_images.scss */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_images.scss */
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

/* line 2, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
a > code {
  color: inherit;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_grid.scss */
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-first {
  order: -1;
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-last {
  order: 13;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-0 {
  order: 0;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-1 {
  order: 1;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-2 {
  order: 2;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-3 {
  order: 3;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-4 {
  order: 4;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-5 {
  order: 5;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-6 {
  order: 6;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-7 {
  order: 7;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-8 {
  order: 8;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-9 {
  order: 9;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-10 {
  order: 10;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-11 {
  order: 11;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-12 {
  order: 12;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-1 {
  margin-left: 8.33333333%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-2 {
  margin-left: 16.66666667%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-3 {
  margin-left: 25%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-4 {
  margin-left: 33.33333333%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-5 {
  margin-left: 41.66666667%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-6 {
  margin-left: 50%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-7 {
  margin-left: 58.33333333%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-8 {
  margin-left: 66.66666667%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-9 {
  margin-left: 75%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-10 {
  margin-left: 83.33333333%;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-first {
    order: -1;
  }
  /* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-last {
    order: 13;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-0 {
    order: 0;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-1 {
    order: 1;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-2 {
    order: 2;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-3 {
    order: 3;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-4 {
    order: 4;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-5 {
    order: 5;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-6 {
    order: 6;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-7 {
    order: 7;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-8 {
    order: 8;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-9 {
    order: 9;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-10 {
    order: 10;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-11 {
    order: 11;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-12 {
    order: 12;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-first {
    order: -1;
  }
  /* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-last {
    order: 13;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-0 {
    order: 0;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-1 {
    order: 1;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-2 {
    order: 2;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-3 {
    order: 3;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-4 {
    order: 4;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-5 {
    order: 5;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-6 {
    order: 6;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-7 {
    order: 7;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-8 {
    order: 8;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-9 {
    order: 9;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-10 {
    order: 10;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-11 {
    order: 11;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-12 {
    order: 12;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-first {
    order: -1;
  }
  /* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-last {
    order: 13;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-0 {
    order: 0;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-1 {
    order: 1;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-2 {
    order: 2;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-3 {
    order: 3;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-4 {
    order: 4;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-5 {
    order: 5;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-6 {
    order: 6;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-7 {
    order: 7;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-8 {
    order: 8;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-9 {
    order: 9;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-10 {
    order: 10;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-11 {
    order: 11;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-12 {
    order: 12;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  /* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-first {
    order: -1;
  }
  /* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-last {
    order: 13;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-0 {
    order: 0;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-1 {
    order: 1;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-2 {
    order: 2;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-3 {
    order: 3;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-4 {
    order: 4;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-5 {
    order: 5;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-6 {
    order: 6;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-7 {
    order: 7;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-8 {
    order: 8;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-9 {
    order: 9;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-10 {
    order: 10;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-11 {
    order: 11;
  }
  /* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-12 {
    order: 12;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  /* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #dee2e6;
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

/* line 62, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

/* line 75, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #c6ccd4;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #94a1af;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-primary:hover {
  background-color: #b7bfc9;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #b7bfc9;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #fad4c9;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #f6af9b;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-secondary:hover {
  background-color: #f8c1b2;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #f8c1b2;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-info:hover {
  background-color: #abdde5;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-light:hover {
  background-color: #ececf6;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c6c6;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #959595;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-dark:hover {
  background-color: #b9b9b9;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9b9b9;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table .thead-dark th {
  color: #fff;
  background-color: #333333;
  border-color: #464646;
}

/* line 122, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 130, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-dark {
  color: #fff;
  background-color: #333333;
}

/* line 134, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #464646;
}

/* line 140, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-dark.table-bordered {
  border: 0;
}

/* line 145, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  /* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

/* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 179, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive > .table-bordered {
  border: 0;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-control {
    transition: none;
  }
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #6489b3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
input.form-control[type="date"],
input.form-control[type="time"],
input.form-control[type="datetime-local"],
input.form-control[type="month"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

/* line 97, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

/* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 112, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 125, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

/* line 137, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 152, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 160, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 170, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
select.form-control[size], select.form-control[multiple] {
  height: auto;
}

/* line 176, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 185, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 1rem;
}

/* line 189, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 199, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 205, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

/* line 223, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

/* line 229, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

/* line 235, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check-label {
  margin-bottom: 0;
}

/* line 239, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

/* line 246, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #28a745;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-row > .col > .valid-tooltip, .form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 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='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  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='%23333333' 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='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

/* line 129, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 138, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

/* line 142, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 150, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

/* line 153, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

/* line 159, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

/* line 166, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 170, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

/* line 185, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-row > .col > .invalid-tooltip, .form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 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='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  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='%23333333' 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='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

/* line 129, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 138, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

/* line 142, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.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;
}

/* line 150, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

/* line 153, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

/* line 159, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

/* line 166, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 170, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

/* line 185, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 275, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 283, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 289, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  /* line 297, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  /* line 306, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 313, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  /* line 317, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  /* line 324, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  /* line 331, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  /* line 339, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  /* line 343, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  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: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
  .btn {
    transition: none;
  }
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn:hover {
  color: #212529;
  text-decoration: none;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #25374c;
  border-color: #213144;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #25374c;
  border-color: #213144;
  box-shadow: 0 0 0 0.2rem rgba(81, 101, 125, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary.active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #213144;
  border-color: #1d2b3b;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.active:not(:disabled):not(.disabled):focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(81, 101, 125, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-secondary {
  color: #fff;
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-secondary:hover {
  color: #fff;
  background-color: #ea4a1b;
  border-color: #e34415;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #ea4a1b;
  border-color: #e34415;
  box-shadow: 0 0 0 0.2rem rgba(240, 125, 91, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary.active:not(:disabled):not(.disabled), .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #e34415;
  border-color: #d74114;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary.active:not(:disabled):not(.disabled):focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 125, 91, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active, .btn-success.active:not(:disabled):not(.disabled), .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success.active:not(:disabled):not(.disabled):focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active, .btn-info.active:not(:disabled):not(.disabled), .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info.active:not(:disabled):not(.disabled):focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning.active:not(:disabled):not(.disabled), .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning.active:not(:disabled):not(.disabled):focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger.active:not(:disabled):not(.disabled), .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger.active:not(:disabled):not(.disabled):focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active, .btn-light.active:not(:disabled):not(.disabled), .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light.active:not(:disabled):not(.disabled):focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-dark {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-dark:hover {
  color: #fff;
  background-color: #202020;
  border-color: #1a1a1a;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #202020;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

/* line 43, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark.active:not(:disabled):not(.disabled), .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #131313;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark.active:not(:disabled):not(.disabled):focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-primary {
  color: #324a66;
  border-color: #324a66;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-primary:hover {
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #324a66;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.active:not(:disabled):not(.disabled), .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-secondary {
  color: #ed663e;
  border-color: #ed663e;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 102, 62, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #ed663e;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary.active:not(:disabled):not(.disabled), .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #ed663e;
  border-color: #ed663e;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(237, 102, 62, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success.active:not(:disabled):not(.disabled), .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info.active:not(:disabled):not(.disabled), .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning.active:not(:disabled):not(.disabled), .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger.active:not(:disabled):not(.disabled), .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light.active:not(:disabled):not(.disabled), .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-dark {
  color: #333333;
  border-color: #333333;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-outline-dark:hover {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #333333;
  background-color: transparent;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark.active:not(:disabled):not(.disabled), .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

/* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #324a66;
  text-decoration: none;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-link:hover {
  color: #192533;
  text-decoration: underline;
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

/* line 98, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

/* line 112, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 125, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 130, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 139, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
  .fade {
    transition: none;
  }
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
.fade:not(.show) {
  opacity: 0;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
.collapse:not(.show) {
  display: none;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing {
    transition: none;
  }
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing.width {
    transition: none;
  }
}

/* line 2, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-toggle {
  white-space: nowrap;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 70, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 80, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: none;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 97, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 106, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* line 123, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

/* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #324a66;
}

/* line 161, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

/* line 173, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu.show {
  display: block;
}

/* line 178, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* line 188, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 89, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 111, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

/* line 121, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

/* line 127, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 132, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 152, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

/* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file {
  display: flex;
  align-items: center;
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 85, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend,
.input-group-append {
  display: flex;
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

/* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

/* line 101, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

/* line 109, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend {
  margin-right: -1px;
}

/* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-append {
  margin-left: -1px;
}

/* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 134, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

/* line 146, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

/* line 151, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 163, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

/* line 168, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

/* line 193, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 204, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #324a66;
  background-color: #324a66;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #6489b3;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #87a3c4;
  border-color: #87a3c4;
}

/* line 62, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

/* line 99, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

/* line 117, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

/* line 122, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/* line 128, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #324a66;
  background-color: #324a66;
}

/* line 133, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

/* line 139, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(50, 74, 102, 0.5);
}

/* line 142, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(50, 74, 102, 0.5);
}

/* line 153, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

/* line 159, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* line 165, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(50, 74, 102, 0.5);
}

/* line 176, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-switch {
  padding-left: 2.25rem;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

/* line 188, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 188, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

/* line 201, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

/* line 208, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(50, 74, 102, 0.5);
}

/* line 221, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff 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='%23333333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 238, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:focus {
  border-color: #6489b3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 248, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 259, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

/* line 266, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

/* line 272, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select::-ms-expand {
  display: none;
}

/* line 277, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

/* line 283, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

/* line 291, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

/* line 304, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

/* line 312, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

/* line 321, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:focus ~ .custom-file-label {
  border-color: #6489b3;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 327, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

/* line 333, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/* line 338, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

/* line 343, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 361, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* line 385, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 392, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus {
  outline: 0;
}

/* line 397, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 398, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 399, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 402, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-focus-outer {
  border: 0;
}

/* line 406, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #324a66;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 406, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

/* line 417, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-thumb:active {
  background-color: #87a3c4;
}

/* line 422, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 433, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #324a66;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 433, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

/* line 443, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-thumb:active {
  background-color: #87a3c4;
}

/* line 448, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 459, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #324a66;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 459, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

/* line 472, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-thumb:active {
  background-color: #87a3c4;
}

/* line 477, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

/* line 488, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 493, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 500, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

/* line 504, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

/* line 508, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

/* line 512, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:disabled::-moz-range-track {
  cursor: default;
}

/* line 516, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

/* line 522, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 522, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* line 64, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 78, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #324a66;
}

/* line 97, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 119, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 122, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .active {
  display: block;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 78, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 94, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 109, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

/* line 133, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

/* line 142, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  /* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 184, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 206, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 184, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 206, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 184, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 206, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 184, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  /* line 206, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

/* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

/* line 156, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

/* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 184, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

/* line 206, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

/* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 217, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 232, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 241, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

/* line 248, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 253, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

/* line 261, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 266, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 270, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 272, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 284, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-brand {
  color: #fff;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

/* line 293, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

/* line 300, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 305, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

/* line 313, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 318, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 322, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 324, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text a {
  color: #fff;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-title {
  margin-bottom: 0.75rem;
}

/* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.card-link:hover {
  text-decoration: none;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 90, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

/* line 95, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 101, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

/* line 111, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 124, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 1px);
}

/* line 134, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

/* line 141, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 146, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

/* line 155, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 165, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* line 183, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 192, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  /* line 197, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 204, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 207, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  /* line 212, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  /* line 219, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 222, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  /* line 227, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

/* line 244, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 243, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  /* line 254, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 266, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.accordion {
  overflow-anchor: none;
}

/* line 269, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.accordion > .card {
  overflow: hidden;
}

/* line 272, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 277, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 281, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_card.scss */
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item.active {
  color: #6c757d;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #324a66;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:hover {
  z-index: 2;
  color: #192533;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.25);
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
  .badge {
    transition: none;
  }
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge:empty {
  display: none;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-primary {
  color: #fff;
  background-color: #324a66;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #213144;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(50, 74, 102, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-secondary {
  color: #fff;
  background-color: #ed663e;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #e34415;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(237, 102, 62, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-success {
  color: #fff;
  background-color: #28a745;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_badge.scss */
.badge-dark {
  color: #fff;
  background-color: #333333;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1a1a1a;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_badge.scss */
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  /* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-heading {
  color: inherit;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-link {
  font-weight: 700;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible {
  padding-right: 4rem;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-primary {
  color: #1a2635;
  background-color: #d6dbe0;
  border-color: #c6ccd4;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-primary hr {
  border-top-color: #b7bfc9;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-primary .alert-link {
  color: #090d13;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-secondary {
  color: #7b3520;
  background-color: #fbe0d8;
  border-color: #fad4c9;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-secondary hr {
  border-top-color: #f8c1b2;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-secondary .alert-link {
  color: #532415;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-success hr {
  border-top-color: #b1dfbb;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-success .alert-link {
  color: #0b2e13;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-info hr {
  border-top-color: #abdde5;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-info .alert-link {
  color: #062c33;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-warning hr {
  border-top-color: #ffe8a1;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-warning .alert-link {
  color: #533f03;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-danger hr {
  border-top-color: #f1b0b7;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-danger .alert-link {
  color: #491217;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-light hr {
  border-top-color: #ececf6;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-light .alert-link {
  color: #686868;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_alert.scss */
.alert-dark {
  color: #1b1b1b;
  background-color: #d6d6d6;
  border-color: #c6c6c6;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-dark hr {
  border-top-color: #b9b9b9;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-dark .alert-link {
  color: #020202;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #324a66;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar {
    transition: none;
  }
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  /* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar-animated {
    animation: none;
  }
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_media.scss */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  flex: 1;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

/* line 62, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

/* line 70, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #324a66;
  border-color: #324a66;
}

/* line 77, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item {
  border-top-width: 0;
}

/* line 80, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

/* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal {
  flex-direction: row;
}

/* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

/* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

/* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

/* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

/* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  /* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  /* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  /* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  /* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md {
    flex-direction: row;
  }
  /* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  /* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  /* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  /* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  /* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  /* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  /* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 105, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 110, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 118, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

/* line 134, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush {
  border-radius: 0;
}

/* line 137, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

/* line 140, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary {
  color: #1a2635;
  background-color: #c6ccd4;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #1a2635;
  background-color: #b7bfc9;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #1a2635;
  border-color: #1a2635;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary {
  color: #7b3520;
  background-color: #fad4c9;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #7b3520;
  background-color: #f8c1b2;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #7b3520;
  border-color: #7b3520;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark {
  color: #1b1b1b;
  background-color: #c6c6c6;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1b1b;
  background-color: #b9b9b9;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1b1b;
  border-color: #1b1b1b;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.close:hover {
  color: #000;
  text-decoration: none;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_close.scss */
a.close.disabled {
  pointer-events: none;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast.showing {
  opacity: 1;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast.show {
  display: block;
  opacity: 1;
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast.hide {
  display: none;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_toasts.scss */
.toast-body {
  padding: 0.75rem;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-open {
  overflow: hidden;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

/* line 36, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  /* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal.show .modal-dialog {
  transform: none;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

/* line 62, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 77, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -moz-min-content;
  height: min-content;
  content: "";
}

/* line 91, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

/* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

/* line 107, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

/* line 125, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

/* line 135, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 136, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 141, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 149, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 157, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 164, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

/* line 173, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

/* line 185, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer > * {
  margin: 0.25rem;
}

/* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 202, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  /* line 207, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  /* line 210, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  /* line 215, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  /* line 218, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -moz-min-content;
    height: min-content;
  }
  /* line 228, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 232, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  /* line 239, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_modal.scss */
  .modal-xl {
    max-width: 1140px;
  }
}

/* line 2, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.show {
  opacity: 0.9;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

/* line 62, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

/* line 76, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 79, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

/* line 108, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

/* line 1, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

/* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

/* line 81, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

/* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 93, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

/* line 101, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

/* line 113, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 122, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 128, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

/* line 153, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 162, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover-header:empty {
  display: none;
}

/* line 167, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_popover.scss */
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel.pointer-event {
  touch-action: pan-y;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 2, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item {
    transition: none;
  }
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

/* line 67, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

/* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 74, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

/* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 87, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

/* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev {
  left: 0;
}

/* line 120, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next {
  right: 0;
}

/* line 128, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

/* line 135, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

/* line 138, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/* line 148, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 162, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 162, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators li {
    transition: none;
  }
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  opacity: 1;
}

/* line 190, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: .75s linear infinite spinner-border;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: .75s linear infinite spinner-grow;
}

/* line 53, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  /* line 60, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_spinners.scss */
  .spinner-border,
.spinner-grow {
    animation-duration: 1.5s;
  }
}

/* line 3, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-top {
  vertical-align: top !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #324a66 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #213144 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-secondary {
  background-color: #ed663e !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #e34415 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #28a745 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #17a2b8 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #ffc107 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #dc3545 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-light {
  background-color: #f8f9fa !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-dark {
  background-color: #333333 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1a1a1a !important;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_background.scss */
.bg-white {
  background-color: #fff !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_background.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-left {
  border-left: 1px solid #dee2e6 !important;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-0 {
  border: 0 !important;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-right-0 {
  border-right: 0 !important;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-left-0 {
  border-left: 0 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-primary {
  border-color: #324a66 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-secondary {
  border-color: #ed663e !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-success {
  border-color: #28a745 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-info {
  border-color: #17a2b8 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-warning {
  border-color: #ffc107 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-danger {
  border-color: #dc3545 !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-light {
  border-color: #f8f9fa !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-dark {
  border-color: #333333 !important;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-white {
  border-color: #fff !important;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-sm {
  border-radius: 0.2rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 61, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-lg {
  border-radius: 0.3rem !important;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-pill {
  border-radius: 50rem !important;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 2, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-none {
  display: none !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline {
  display: inline !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-block {
  display: block !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table {
  display: table !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table-row {
  display: table-row !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-flex {
  display: flex !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-none {
    display: none !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline {
    display: inline !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-block {
    display: block !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table {
    display: table !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-flex {
    display: flex !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

/* line 3, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive::before {
  display: block;
  content: "";
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.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;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-center {
  align-items: center !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-center {
  align-content: center !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-center {
  align-self: center !important;
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-left {
  float: left !important;
}

/* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-right {
  float: right !important;
}

/* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-left {
    float: left !important;
  }
  /* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-right {
    float: right !important;
  }
  /* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-left {
    float: left !important;
  }
  /* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-right {
    float: right !important;
  }
  /* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-left {
    float: left !important;
  }
  /* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-right {
    float: right !important;
  }
  /* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-left {
    float: left !important;
  }
  /* line 8, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-right {
    float: right !important;
  }
  /* line 9, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-none {
    float: none !important;
  }
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_interactions.scss */
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_interactions.scss */
.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_interactions.scss */
.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_overflow.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-static {
  position: static !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-relative {
  position: relative !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-absolute {
  position: absolute !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-fixed {
  position: fixed !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-sticky {
  position: sticky !important;
}

/* line 10, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  /* line 26, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_position.scss */
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */
.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;
}

/* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* line 3, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 4, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 5, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-25 {
  width: 25% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-50 {
  width: 50% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-75 {
  width: 75% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-100 {
  width: 100% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-auto {
  width: auto !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-25 {
  height: 25% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-50 {
  height: 50% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-75 {
  height: 75% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-100 {
  height: 100% !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-auto {
  height: auto !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.vw-100 {
  width: 100vw !important;
}

/* line 20, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.vh-100 {
  height: 100vh !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-0 {
  margin: 0 !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-0 {
  padding: 0 !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-n1 {
  margin: -0.25rem !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-n2 {
  margin: -0.5rem !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-n3 {
  margin: -1rem !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-n4 {
  margin: -1.5rem !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-n5 {
  margin: -3rem !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

/* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-auto {
  margin: auto !important;
}

/* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-n3 {
    margin: -1rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-n5 {
    margin: -3rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  /* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  /* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-n3 {
    margin: -1rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-n5 {
    margin: -3rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }
  /* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }
  /* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }
  /* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-n3 {
    margin: -1rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-n5 {
    margin: -3rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }
  /* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }
  /* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 15, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 18, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 21, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-n3 {
    margin: -1rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-n5 {
    margin: -3rem !important;
  }
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }
  /* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }
  /* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 48, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }
  /* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }
  /* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_stretched-link.scss */
.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);
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-justify {
  text-align: justify !important;
}

/* line 12, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-wrap {
  white-space: normal !important;
}

/* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 14, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-left {
  text-align: left !important;
}

/* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-right {
  text-align: right !important;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 22, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

/* line 30, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 32, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 36, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-lighter {
  font-weight: lighter !important;
}

/* line 38, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-normal {
  font-weight: 400 !important;
}

/* line 39, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-bold {
  font-weight: 700 !important;
}

/* line 40, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-bolder {
  font-weight: bolder !important;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-italic {
  font-style: italic !important;
}

/* line 45, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-white {
  color: #fff !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #324a66 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-primary:hover, a.text-primary:focus {
  color: #192533 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-secondary {
  color: #ed663e !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-secondary:hover, a.text-secondary:focus {
  color: #cc3d13 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #28a745 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #17a2b8 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #ffc107 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #dc3545 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-light {
  color: #f8f9fa !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

/* line 6, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-dark {
  color: #333333 !important;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-dark:hover, a.text-dark:focus {
  color: #0d0d0d !important;
}

/* line 51, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-body {
  color: #212529 !important;
}

/* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-muted {
  color: #6c757d !important;
}

/* line 54, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 55, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 59, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 65, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

/* line 72, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-reset {
  color: inherit !important;
}

/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */
.visible {
  visibility: visible !important;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/utilities/_visibility.scss */
.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 13, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  a:not(.btn) {
    text-decoration: underline;
  }
  /* line 34, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /* line 49, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  pre {
    white-space: pre-wrap !important;
  }
  /* line 52, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  /* line 58, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 70, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  /* line 83, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  body {
    min-width: 992px !important;
  }
  /* line 86, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .container {
    min-width: 992px !important;
  }
  /* line 91, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 94, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .badge {
    border: 1px solid #000;
  }
  /* line 98, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 101, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 108, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  /* line 114, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table-dark {
    color: inherit;
  }
  /* line 117, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  /* line 125, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap-4.6.2.1/assets/stylesheets/bootstrap/_print.scss */
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/*@preserve
 * Tempus Dominus Bootstrap4 v5.1.2 (https://tempusdominus.github.io/bootstrap-4/)
 * Copyright 2016-2018 Jonathan Peterson
 * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE)
 */
/* line 7, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 17, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 19, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}

@media (min-width: 576px) {
  /* line 25, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 768px) {
  /* line 28, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  /* line 31, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

/* line 33, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 37, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 44, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 57, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}

/* line 66, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}

/* line 69, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}

/* line 71, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 75, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

/* line 77, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 82, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 84, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  content: "Increment Hours";
}

/* line 86, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  content: "Increment Minutes";
}

/* line 88, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  content: "Decrement Hours";
}

/* line 90, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  content: "Decrement Minutes";
}

/* line 92, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  content: "Show Hours";
}

/* line 94, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  content: "Show Minutes";
}

/* line 96, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  content: "Toggle AM/PM";
}

/* line 98, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  content: "Clear the picker";
}

/* line 100, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  content: "Set the date to today";
}

/* line 102, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 104, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}

/* line 106, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 112, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 119, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
}

/* line 123, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 127, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 129, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 133, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}

/* line 135, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}

/* line 137, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 139, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #e9ecef;
}

/* line 141, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 145, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #6c757d;
}

/* line 150, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 154, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #e9ecef;
  cursor: pointer;
}

/* line 157, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #6c757d;
}

/* line 159, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 161, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #007bff;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 171, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 175, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 181, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

/* line 189, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span:hover {
  background: #e9ecef;
}

/* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 195, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.old {
  color: #6c757d;
}

/* line 197, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 201, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 205, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.input-group [data-toggle="datetimepicker"] {
  cursor: pointer;
}

/* line 3, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}

/* line 11, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable td,
table.dataTable th {
  box-sizing: content-box;
}

/* line 16, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}

/* line 24, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

/* line 35, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}

/* line 41, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_length select {
  width: auto;
  display: inline-block;
}

/* line 47, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}

/* line 50, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}

/* line 56, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}

/* line 63, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}

/* line 68, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}

/* line 73, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  justify-content: flex-end;
}

/* line 80, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

/* line 97, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}

/* line 103, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}

/* line 108, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}

/* line 116, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}

/* line 124, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}

/* line 129, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}

/* line 135, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  opacity: 1;
}

/* line 140, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

/* line 148, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

/* line 153, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 159, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollBody table thead .sorting:before,
div.dataTables_scrollBody table thead .sorting_asc:before,
div.dataTables_scrollBody table thead .sorting_desc:before,
div.dataTables_scrollBody table thead .sorting:after,
div.dataTables_scrollBody table thead .sorting_asc:after,
div.dataTables_scrollBody table thead .sorting_desc:after {
  display: none;
}

/* line 169, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollBody table tbody tr:first-child th,
div.dataTables_scrollBody table tbody tr:first-child td {
  border-top: none;
}

/* line 177, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollFoot > .dataTables_scrollFootInner {
  box-sizing: content-box;
}

/* line 180, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollFoot > .dataTables_scrollFootInner > table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  /* line 191, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
  div.dataTables_wrapper div.dataTables_length,
div.dataTables_wrapper div.dataTables_filter,
div.dataTables_wrapper div.dataTables_info,
div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}

/* line 208, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable.table-sm > thead > tr > th {
  padding-right: 20px;
}

/* line 215, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable.table-sm .sorting:before,
table.dataTable.table-sm .sorting_asc:before,
table.dataTable.table-sm .sorting_desc:before {
  top: 5px;
  right: 0.85em;
}

/* line 220, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.dataTable.table-sm .sorting:after,
table.dataTable.table-sm .sorting_asc:after,
table.dataTable.table-sm .sorting_desc:after {
  top: 5px;
}

/* line 231, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}

/* line 235, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 0;
}

/* line 241, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

/* line 248, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

/* line 254, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}

/* line 258, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0;
}

/* line 261, ../../../../../opt/homebrew/lib/ruby/gems/3.4.0/bundler/gems/jquery-datatables-c44893a4919a/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss */
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0;
}
