/* GLOBAL STYLESHEETS CALLS
 * /!\ Imports only: do not write CSS here please!
 */
/*
 * 0-VENDORS
 */
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
@import url("https://fonts.googleapis.com/css2?family=Odor+Mean+Chey&display=swap");
/* line 7, vendor/assets/stylesheets/animate.min.css */
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat)*2);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat)*3);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay)*2);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay)*3);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay)*4);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay)*5);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__faster {
  animation-duration: .5s;
  animation-duration: calc(var(--animate-duration)/2);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__fast {
  animation-duration: .8s;
  animation-duration: calc(var(--animate-duration)*0.8);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration)*2);
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration)*3);
}

@media (prefers-reduced-motion: reduce), print {
  /* line 7, vendor/assets/stylesheets/animate.min.css */
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  /* line 7, vendor/assets/stylesheets/animate.min.css */
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rubberBand {
  animation-name: rubberBand;
}

@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__shakeX {
  animation-name: shakeX;
}

@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__shakeY {
  animation-name: shakeY;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration)*1.3);
  animation-timing-function: ease-in-out;
}

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: .7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: .7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backInLeft {
  animation-name: backInLeft;
}

@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: .7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backInRight {
  animation-name: backInRight;
}

@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: .7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backInUp {
  animation-name: backInUp;
}

@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: .7;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backOutDown {
  animation-name: backOutDown;
}

@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: .7;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backOutLeft {
  animation-name: backOutLeft;
}

@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: .7;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backOutRight {
  animation-name: backOutRight;
}

@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: .7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: .7;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__backOutUp {
  animation-name: backOutUp;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceIn {
  animation-duration: .75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceOut {
  animation-duration: .75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}

@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__flipOutX {
  animation-duration: .75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__flipOutY {
  animation-duration: .75s;
  animation-duration: calc(var(--animate-duration)*0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}

@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}

@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration)*2);
  animation-name: hinge;
  transform-origin: top left;
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

/* line 7, vendor/assets/stylesheets/animate.min.css */
.animate__slideOutUp {
  animation-name: slideOutUp;
}

/***/
/*
 * 1-BASE
 */
/*
 * CUSTOM VARIABLES
 */
/* Global selectors */
/***/
/*
 * THEMING
 */
/* Import the necessary Bootstrap files */
/***/
/* Finally, import Bootstrap */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_root.scss */
:root {
  --bs-blue: #1076c1;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #f160a9;
  --bs-red: #f2582a;
  --bs-orange: #F18827;
  --bs-yellow: #fdc300;
  --bs-green: #70b008;
  --bs-teal: #20c997;
  --bs-cyan: #009FE3;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #F18827;
  --bs-secondary: #009FE3;
  --bs-success: #70b008;
  --bs-info: #009FE3;
  --bs-warning: #F18827;
  --bs-danger: #f2582a;
  --bs-light: #efefef;
  --bs-dark: white;
  --bs-tertiary: #1076c1;
  --bs-primary-rgb: 241, 136, 39;
  --bs-secondary-rgb: 0, 159, 227;
  --bs-success-rgb: 112, 176, 8;
  --bs-info-rgb: 0, 159, 227;
  --bs-warning-rgb: 241, 136, 39;
  --bs-danger-rgb: 242, 88, 42;
  --bs-light-rgb: 239, 239, 239;
  --bs-dark-rgb: 255, 255, 255;
  --bs-tertiary-rgb: 16, 118, 193;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Noto Sans", Roboto, system-ui, -apple-system, "Segoe UI", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  /* line 28, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  :root {
    scroll-behavior: smooth;
  }
}

/* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 69, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

/* line 77, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
hr:not([size]) {
  height: 1px;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Figtree", Arial;
  font-weight: 500;
  line-height: 1.2;
}

/* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  /* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  h1, .h1 {
    font-size: 2.5rem;
  }
}

/* line 103, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  /* line 103, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  h2, .h2 {
    font-size: 2rem;
  }
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  /* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  h3, .h3 {
    font-size: 1.75rem;
  }
}

/* line 113, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  /* line 113, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  h4, .h4 {
    font-size: 1.5rem;
  }
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h5, .h5 {
  font-size: 1.25rem;
}

/* line 123, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h6, .h6 {
  font-size: 1rem;
}

/* line 134, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 147, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

/* line 157, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul {
  padding-left: 2rem;
}

/* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 185, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
dt {
  font-weight: 700;
}

/* line 191, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 208, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
b,
strong {
  font-weight: bolder;
}

/* line 218, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
small, .small {
  font-size: 0.875em;
}

/* line 225, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 236, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

/* line 244, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sub {
  bottom: -.25em;
}

/* line 245, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sup {
  top: -.5em;
}

/* line 250, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a {
  color: #F18827;
  text-decoration: underline;
}

/* line 254, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a:hover {
  color: #c16d1f;
}

/* line 266, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 276, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

/* line 290, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

/* line 299, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 306, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
code {
  font-size: 0.875em;
  color: #f160a9;
  word-wrap: break-word;
}

/* line 312, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a > code {
  color: inherit;
}

/* line 317, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* line 324, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

/* line 336, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
figure {
  margin: 0 0 1rem;
}

/* line 343, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
img,
svg {
  vertical-align: middle;
}

/* line 353, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
table {
  caption-side: bottom;
  border-collapse: collapse;
}

/* line 358, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

/* line 369, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

/* line 375, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

/* line 391, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
label {
  display: inline-block;
}

/* line 398, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button {
  border-radius: 0;
}

/* line 408, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button:focus:not(:focus-visible) {
  outline: 0;
}

/* line 414, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 426, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button,
select {
  text-transform: none;
}

/* line 433, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[role="button"] {
  cursor: pointer;
}

/* line 437, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
select {
  word-wrap: normal;
}

/* line 443, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
select:disabled {
  opacity: 1;
}

/* line 451, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[list]::-webkit-calendar-picker-indicator {
  display: none;
}

/* line 460, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 467, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* line 475, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 482, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
textarea {
  resize: vertical;
}

/* line 493, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 505, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  /* line 505, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
  legend {
    font-size: 1.5rem;
  }
}

/* line 514, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
legend + * {
  clear: left;
}

/* line 522, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

/* line 532, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-inner-spin-button {
  height: auto;
}

/* line 542, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
/* line 563, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 569, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-color-swatch-wrapper {
  padding: 0;
}

/* line 576, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::file-selector-button {
  font: inherit;
}

/* line 583, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 590, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
output {
  display: inline-block;
}

/* line 596, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
iframe {
  border: 0;
}

/* line 604, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 614, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
progress {
  vertical-align: baseline;
}

/* line 623, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[hidden] {
  display: none !important;
}

/* line 29, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-1 {
    font-size: 5rem;
  }
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-2 {
    font-size: 4.5rem;
  }
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-3 {
    font-size: 4rem;
  }
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-4 {
    font-size: 3.5rem;
  }
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-5 {
    font-size: 3rem;
  }
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  /* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
  .display-6 {
    font-size: 2.5rem;
  }
}

/* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 63, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item {
  display: inline-block;
}

/* line 69, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 80, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

/* line 86, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote > :last-child {
  margin-bottom: 0;
}

/* line 95, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

/* line 101, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer::before {
  content: "\2014\00A0";
}

/* line 8, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_images.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_images.scss */
.figure {
  display: inline-block;
}

/* line 34, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_images.scss */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_images.scss */
.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 480px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-xs, .container {
    max-width: 450px;
  }
}

@media (min-width: 576px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-sm, .container-xs, .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-md, .container-sm, .container-xs, .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1140px;
  }
}

@media (min-width: 1360px) {
  /* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_containers.scss */
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container {
    max-width: 1300px;
  }
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_grid.scss */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

/* line 9, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_grid.scss */
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col {
  flex: 1 0 0%;
}

/* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

/* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-1 {
  margin-left: 8.33333333%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-2 {
  margin-left: 16.66666667%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-3 {
  margin-left: 25%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-4 {
  margin-left: 33.33333333%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-5 {
  margin-left: 41.66666667%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-6 {
  margin-left: 50%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-7 {
  margin-left: 58.33333333%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-8 {
  margin-left: 66.66666667%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-9 {
  margin-left: 75%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-10 {
  margin-left: 83.33333333%;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.offset-11 {
  margin-left: 91.66666667%;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 480px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xs-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-0,
.gx-xs-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-0,
.gy-xs-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-1,
.gx-xs-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-1,
.gy-xs-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-2,
.gx-xs-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-2,
.gy-xs-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-3,
.gx-xs-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-3,
.gy-xs-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-4,
.gx-xs-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-4,
.gy-xs-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-5,
.gx-xs-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xs-5,
.gy-xs-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 576px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1360px) {
  /* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl {
    flex: 1 0 0%;
  }
  /* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  /* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  /* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  /* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-0 {
    margin-left: 0;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-3 {
    margin-left: 25%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-6 {
    margin-left: 50%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-9 {
    margin-left: 75%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  /* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  /* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  /* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_grid.scss */
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table > tbody {
  vertical-align: inherit;
}

/* line 37, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table > thead {
  vertical-align: bottom;
}

/* line 42, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

/* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.caption-top {
  caption-side: top;
}

/* line 63, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

/* line 79, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}

/* line 83, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

/* line 91, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

/* line 95, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

/* line 105, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

/* line 115, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

/* line 125, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-primary {
  --bs-table-bg: #fce7d4;
  --bs-table-striped-bg: #efdbc9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3d0bf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9d6c4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e3d0bf;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-secondary {
  --bs-table-bg: #ccecf9;
  --bs-table-striped-bg: #c2e0ed;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8d4e0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bddae6;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8d4e0;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-success {
  --bs-table-bg: #e2efce;
  --bs-table-striped-bg: #d7e3c4;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbd7b9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1ddbf;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbd7b9;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-info {
  --bs-table-bg: #ccecf9;
  --bs-table-striped-bg: #c2e0ed;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8d4e0;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bddae6;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8d4e0;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-warning {
  --bs-table-bg: #fce7d4;
  --bs-table-striped-bg: #efdbc9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3d0bf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9d6c4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e3d0bf;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-danger {
  --bs-table-bg: #fcded4;
  --bs-table-striped-bg: #efd3c9;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3c8bf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9cdc4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e3c8bf;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-light {
  --bs-table-bg: #efefef;
  --bs-table-striped-bg: #e3e3e3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d7d7d7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #dddddd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d7d7d7;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_table-variants.scss */
.table-dark {
  --bs-table-bg: white;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6e6e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ececec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6e6e6;
}

/* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 479.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 575.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1359.98px) {
  /* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_labels.scss */
.form-label, .control-label {
  margin-bottom: 0.5rem;
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_labels.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 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_labels.scss */
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_labels.scss */
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-text.scss */
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  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 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
  .form-control {
    transition: none;
  }
}

/* line 25, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control[type="file"] {
  overflow: hidden;
}

/* line 28, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

/* line 34, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #f8c493;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* line 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
  .form-control::file-selector-button {
    transition: none;
  }
}

/* line 91, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

/* line 95, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-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;
  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 95, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

/* line 110, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

/* line 120, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

/* line 131, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 145, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* line 151, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

/* line 157, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

/* line 164, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* line 170, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

/* line 176, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

/* line 187, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

/* line 191, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

/* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

/* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}

/* line 206, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

/* line 210, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

/* line 215, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-control.scss */
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select, select.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
  .form-select, select.form-control {
    transition: none;
  }
}

/* line 28, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:focus, select.form-control:focus {
  border-color: #f8c493;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select[multiple], select.form-control[multiple], .form-select[size]:not([size="1"]), select.form-control[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:disabled, select.form-control:disabled {
  background-color: #e9ecef;
}

/* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select:-moz-focusring, select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

/* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-select.scss */
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

/* line 35, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

/* line 40, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:active {
  filter: brightness(90%);
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:focus {
  border-color: #f8c493;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:checked {
  background-color: #F18827;
  border-color: #F18827;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

/* line 62, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

/* line 71, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #F18827;
  border-color: #F18827;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

/* line 82, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

/* line 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

/* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-label {
  color: #212529;
}

/* line 107, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch {
  padding-left: 2.5em;
}

/* line 110, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 110, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
  .form-switch .form-check-input {
    transition: none;
  }
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23f8c493'/%3e%3c/svg%3e");
}

/* line 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* line 134, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

/* line 139, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 146, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-check.scss */
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus {
  outline: 0;
}

/* line 19, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-focus-outer {
  border: 0;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #F18827;
  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 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-thumb:active {
  background-color: #fbdbbe;
}

/* line 43, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #F18827;
  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 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-thumb:active {
  background-color: #fbdbbe;
}

/* line 69, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 80, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled {
  pointer-events: none;
}

/* line 83, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

/* line 87, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_form-range.scss */
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating {
  position: relative;
}

/* line 4, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
  .form-floating > label {
    transition: none;
  }
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}

/* line 30, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

/* line 36, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

/* line 42, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-select, .form-floating > select.form-control {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label,
.form-floating > select.form-control ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_floating-labels.scss */
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 12, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

/* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

/* line 29, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group .btn {
  position: relative;
  z-index: 2;
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group .btn:focus {
  z-index: 3;
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* line 75, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* line 84, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group-lg > .form-select, .input-group-lg > select.form-control,
.input-group-sm > .form-select,
.input-group-sm > select.form-control {
  padding-right: 3rem;
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 106, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/forms/_input-group.scss */
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 25, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #70b008;
}

/* line 34, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(112, 176, 8, 0.9);
  border-radius: 0.25rem;
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #70b008;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2370b008' 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 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #70b008;
  box-shadow: 0 0 0 0.25rem rgba(112, 176, 8, 0.25);
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid, .was-validated select.form-control:valid, .form-select.is-valid, select.is-valid.form-control {
  border-color: #70b008;
}

/* line 89, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated select.form-control:valid:not([multiple]):not([size]), .was-validated .form-select[size="1"]:valid:not([multiple]), .was-validated select.form-control[size="1"]:valid:not([multiple]), .form-select.is-valid:not([multiple]):not([size]), select.is-valid.form-control:not([multiple]):not([size]), .form-select.is-valid[size="1"]:not([multiple]), select.is-valid.form-control[size="1"]:not([multiple]) {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2370b008' 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-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:valid:focus, .was-validated select.form-control:valid:focus, .form-select.is-valid:focus, select.is-valid.form-control:focus {
  border-color: #70b008;
  box-shadow: 0 0 0 0.25rem rgba(112, 176, 8, 0.25);
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #70b008;
}

/* line 109, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #70b008;
}

/* line 113, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(112, 176, 8, 0.25);
}

/* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #70b008;
}

/* line 123, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}

/* line 136, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

/* line 25, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #f2582a;
}

/* line 34, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(242, 88, 42, 0.9);
  border-radius: 0.25rem;
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #f2582a;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f2582a'%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='%23f2582a' 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 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #f2582a;
  box-shadow: 0 0 0 0.25rem rgba(242, 88, 42, 0.25);
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid, .was-validated select.form-control:invalid, .form-select.is-invalid, select.is-invalid.form-control {
  border-color: #f2582a;
}

/* line 89, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated select.form-control:invalid:not([multiple]):not([size]), .was-validated .form-select[size="1"]:invalid:not([multiple]), .was-validated select.form-control[size="1"]:invalid:not([multiple]), .form-select.is-invalid:not([multiple]):not([size]), select.is-invalid.form-control:not([multiple]):not([size]), .form-select.is-invalid[size="1"]:not([multiple]), select.is-invalid.form-control[size="1"]:not([multiple]) {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f2582a'%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='%23f2582a' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 98, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-select:invalid:focus, .was-validated select.form-control:invalid:focus, .form-select.is-invalid:focus, select.is-invalid.form-control:focus {
  border-color: #f2582a;
  box-shadow: 0 0 0 0.25rem rgba(242, 88, 42, 0.25);
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #f2582a;
}

/* line 109, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #f2582a;
}

/* line 113, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(242, 88, 42, 0.25);
}

/* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #f2582a;
}

/* line 123, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}

/* line 136, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -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;
  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 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
  .btn {
    transition: none;
  }
}

/* line 22, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn:hover {
  color: #212529;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:hover {
  color: #000;
  background-color: #f39a47;
  border-color: #f2943d;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000;
  background-color: #f39a47;
  border-color: #f2943d;
  box-shadow: 0 0 0 0.25rem rgba(205, 116, 33, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #f4a052;
  border-color: #f2943d;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(205, 116, 33, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:disabled, .btn-primary.disabled {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-secondary {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:hover {
  color: #000;
  background-color: #26ade7;
  border-color: #1aa9e6;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: #26ade7;
  border-color: #1aa9e6;
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 193, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #000;
  background-color: #33b2e9;
  border-color: #1aa9e6;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 193, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #000;
  background-color: #70b008;
  border-color: #70b008;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:hover {
  color: #000;
  background-color: #85bc2d;
  border-color: #7eb821;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #000;
  background-color: #85bc2d;
  border-color: #7eb821;
  box-shadow: 0 0 0 0.25rem rgba(95, 150, 7, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #000;
  background-color: #8dc039;
  border-color: #7eb821;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(95, 150, 7, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:disabled, .btn-success.disabled {
  color: #000;
  background-color: #70b008;
  border-color: #70b008;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:hover {
  color: #000;
  background-color: #26ade7;
  border-color: #1aa9e6;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #26ade7;
  border-color: #1aa9e6;
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 193, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #33b2e9;
  border-color: #1aa9e6;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 135, 193, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:hover {
  color: #000;
  background-color: #f39a47;
  border-color: #f2943d;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #f39a47;
  border-color: #f2943d;
  box-shadow: 0 0 0 0.25rem rgba(205, 116, 33, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #f4a052;
  border-color: #f2943d;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(205, 116, 33, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #f2582a;
  border-color: #f2582a;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #ce4b24;
  border-color: #c24622;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #ce4b24;
  border-color: #c24622;
  box-shadow: 0 0 0 0.25rem rgba(244, 113, 74, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c24622;
  border-color: #b64220;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(244, 113, 74, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #f2582a;
  border-color: #f2582a;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-light {
  color: #000;
  background-color: #efefef;
  border-color: #efefef;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:hover {
  color: #000;
  background-color: #f1f1f1;
  border-color: #f1f1f1;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f1f1f1;
  border-color: #f1f1f1;
  box-shadow: 0 0 0 0.25rem rgba(203, 203, 203, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f1f1f1;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(203, 203, 203, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #efefef;
  border-color: #efefef;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-dark {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:disabled, .btn-dark.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-tertiary {
  color: #fff;
  background-color: #1076c1;
  border-color: #1076c1;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-tertiary:hover {
  color: #fff;
  background-color: #0e64a4;
  border-color: #0d5e9a;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-tertiary, .btn-tertiary:focus {
  color: #fff;
  background-color: #0e64a4;
  border-color: #0d5e9a;
  box-shadow: 0 0 0 0.25rem rgba(52, 139, 202, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-tertiary, .btn-check:active + .btn-tertiary, .btn-tertiary:active, .btn-tertiary.active, .show > .btn-tertiary.dropdown-toggle {
  color: #fff;
  background-color: #0d5e9a;
  border-color: #0c5991;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-tertiary:focus, .btn-check:active + .btn-tertiary:focus, .btn-tertiary:active:focus, .btn-tertiary.active:focus, .show > .btn-tertiary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 139, 202, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-tertiary:disabled, .btn-tertiary.disabled {
  color: #fff;
  background-color: #1076c1;
  border-color: #1076c1;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-primary {
  color: #F18827;
  border-color: #F18827;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:hover {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #F18827;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-secondary {
  color: #009FE3;
  border-color: #009FE3;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:hover {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 159, 227, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 159, 227, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #009FE3;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-success {
  color: #70b008;
  border-color: #70b008;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:hover {
  color: #000;
  background-color: #70b008;
  border-color: #70b008;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(112, 176, 8, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #000;
  background-color: #70b008;
  border-color: #70b008;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(112, 176, 8, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #70b008;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-info {
  color: #009FE3;
  border-color: #009FE3;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:hover {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 159, 227, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #009FE3;
  border-color: #009FE3;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 159, 227, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #009FE3;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-warning {
  color: #F18827;
  border-color: #F18827;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:hover {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #F18827;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-danger {
  color: #f2582a;
  border-color: #f2582a;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #f2582a;
  border-color: #f2582a;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(242, 88, 42, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #f2582a;
  border-color: #f2582a;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(242, 88, 42, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #f2582a;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-light {
  color: #efefef;
  border-color: #efefef;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:hover {
  color: #000;
  background-color: #efefef;
  border-color: #efefef;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 239, 239, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #efefef;
  border-color: #efefef;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(239, 239, 239, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #efefef;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-dark {
  color: white;
  border-color: white;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: white;
  background-color: transparent;
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-tertiary {
  color: #1076c1;
  border-color: #1076c1;
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-tertiary:hover {
  color: #fff;
  background-color: #1076c1;
  border-color: #1076c1;
}

/* line 94, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-outline-tertiary, .btn-outline-tertiary:focus {
  box-shadow: 0 0 0 0.25rem rgba(16, 118, 193, 0.5);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-tertiary, .btn-check:active + .btn-outline-tertiary, .btn-outline-tertiary:active, .btn-outline-tertiary.active, .btn-outline-tertiary.dropdown-toggle.show {
  color: #fff;
  background-color: #1076c1;
  border-color: #1076c1;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-outline-tertiary:focus, .btn-check:active + .btn-outline-tertiary:focus, .btn-outline-tertiary:active:focus, .btn-outline-tertiary.active:focus, .btn-outline-tertiary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(16, 118, 193, 0.5);
}

/* line 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-tertiary:disabled, .btn-outline-tertiary.disabled {
  color: #1076c1;
  background-color: transparent;
}

/* line 78, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #F18827;
  text-decoration: underline;
}

/* line 83, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:hover {
  color: #c16d1f;
}

/* line 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

/* line 105, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

/* line 109, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
  .fade {
    transition: none;
  }
}

/* line 4, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.fade:not(.show) {
  opacity: 0;
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.collapse:not(.show) {
  display: none;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing {
    transition: none;
  }
}

/* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

/* line 9, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-toggle {
  white-space: nowrap;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 59, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 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 34, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

/* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-start {
  --bs-position: start;
}

/* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

/* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-end {
  --bs-position: end;
}

/* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 480px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xs-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xs-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xs-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xs-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 576px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1360px) {
  /* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  /* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  /* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  /* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

/* line 73, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 59, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 86, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropend .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 59, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 96, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 103, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle::after {
  display: none;
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .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 59, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 113, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 121, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

/* line 131, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* line 156, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

/* line 163, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #F18827;
}

/* line 170, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

/* line 180, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu.show {
  display: block;
}

/* line 185, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

/* line 202, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 208, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

/* line 211, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

/* line 217, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #F18827;
}

/* line 223, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

/* line 229, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 233, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

/* line 237, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 8, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 31, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 72, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 82, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 87, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 114, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 119, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

/* line 124, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 135, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #F18827;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
  .nav-link {
    transition: none;
  }
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-link:hover, .nav-link:focus {
  color: #c16d1f;
}

/* line 30, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

/* line 41, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 50, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 71, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 85, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

/* line 91, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #F18827;
}

/* line 104, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

/* line 133, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 136, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .active {
  display: block;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-xs,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

/* line 75, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 82, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 87, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .dropdown-menu {
  position: static;
}

/* line 97, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 111, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* line 120, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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;
  transition: box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 120, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-toggler {
    transition: none;
  }
}

/* line 129, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler:hover {
  text-decoration: none;
}

/* line 133, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

/* line 142, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

/* line 152, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 480px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .offcanvas-top,
.navbar-expand-xs .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xs .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 576px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 992px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1200px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1360px) {
  /* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  /* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  /* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  /* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  /* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  /* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  /* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

/* line 166, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

/* line 171, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 178, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

/* line 188, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 197, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas-header {
  display: none;
}

/* line 201, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}

/* line 213, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}

/* line 220, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

/* line 238, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 241, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 248, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link {
  color: rgba(241, 136, 39, 0.9);
}

/* line 251, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(241, 136, 39, 0.8);
}

/* line 256, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 261, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #f18827;
}

/* line 267, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-toggler {
  color: rgba(241, 136, 39, 0.9);
  border-color: #F18827;
}

/* line 272, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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='%23F18827' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 276, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text {
  color: rgba(241, 136, 39, 0.9);
}

/* line 279, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: #f18827;
}

/* line 289, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-brand {
  color: #fff;
}

/* line 292, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

/* line 299, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

/* line 302, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

/* line 307, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 312, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

/* line 318, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 323, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 327, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}

/* line 329, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 18, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 40, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-title {
  margin-bottom: 0.5rem;
}

/* line 58, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

/* line 63, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 72, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-link + .card-link {
  margin-left: 1rem;
}

/* line 81, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 88, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

/* line 93, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 99, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

/* line 109, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

/* line 123, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

/* line 129, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

/* line 139, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

/* line 145, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 163, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-group > .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 160, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 172, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  /* line 177, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 184, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 187, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 192, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 202, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 207, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
  .accordion-button {
    transition: none;
  }
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:not(.collapsed) {
  color: #d97a23;
  background-color: #fef3e9;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

/* line 25, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d97a23'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
  .accordion-button::after {
    transition: none;
  }
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:hover {
  z-index: 2;
}

/* line 48, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-button:focus {
  z-index: 3;
  border-color: #f8c493;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-header {
  margin-bottom: 0;
}

/* line 60, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 72, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:not(:first-of-type) {
  border-top: 0;
}

/* line 77, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 81, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

/* line 86, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-body {
  padding: 1rem 1.25rem;
}

/* line 102, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush .accordion-collapse {
  border-width: 0;
}

/* line 106, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* line 111, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

/* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

/* line 114, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_accordion.scss */
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}

/* line 25, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item.active {
  color: #6c757d;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link {
  position: relative;
  display: block;
  color: #F18827;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  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, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
  .page-link {
    transition: none;
  }
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:hover {
  z-index: 2;
  color: #c16d1f;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:focus {
  z-index: 3;
  color: #c16d1f;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

/* line 37, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.page-link {
  padding: 0.375rem 0.75rem;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 19, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.15rem;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 19, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 19, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge:empty {
  display: none;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_badge.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-heading {
  color: inherit;
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-link {
  font-weight: 700;
}

/* line 29, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible {
  padding-right: 3rem;
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-primary {
  color: #915217;
  background-color: #fce7d4;
  border-color: #fbdbbe;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-primary .alert-link {
  color: #744212;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-secondary {
  color: #005f88;
  background-color: #ccecf9;
  border-color: #b3e2f7;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-secondary .alert-link {
  color: #004c6d;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-success {
  color: #436a05;
  background-color: #e2efce;
  border-color: #d4e7b5;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-success .alert-link {
  color: #365504;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-info {
  color: #005f88;
  background-color: #ccecf9;
  border-color: #b3e2f7;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-info .alert-link {
  color: #004c6d;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-warning {
  color: #915217;
  background-color: #fce7d4;
  border-color: #fbdbbe;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-warning .alert-link {
  color: #744212;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-danger {
  color: #913519;
  background-color: #fcded4;
  border-color: #fbcdbf;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-danger .alert-link {
  color: #742a14;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-light {
  color: #8f8f8f;
  background-color: #fcfcfc;
  border-color: #fafafa;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-light .alert-link {
  color: #727272;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dark {
  color: #666666;
  background-color: white;
  border-color: white;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-dark .alert-link {
  color: #525252;
}

/* line 53, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-tertiary {
  color: #0a4774;
  background-color: #cfe4f3;
  border-color: #b7d6ec;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-tertiary .alert-link {
  color: #08395d;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_progress.scss */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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: #F18827;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar {
    transition: none;
  }
}

/* line 33, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  /* line 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar-animated {
    animation: none;
  }
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

/* line 19, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* line 70, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

/* line 74, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

/* line 82, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #F18827;
  border-color: #F18827;
}

/* line 89, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item {
  border-top-width: 0;
}

/* line 92, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal {
  flex-direction: row;
}

/* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

/* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

/* line 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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: 480px) {
  /* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xs > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 576px) {
  /* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1360px) {
  /* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  /* line 112, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  /* line 126, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 130, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

/* line 146, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush {
  border-radius: 0;
}

/* line 149, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

/* line 152, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary {
  color: #915217;
  background-color: #fce7d4;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #915217;
  background-color: #e3d0bf;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #915217;
  border-color: #915217;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary {
  color: #005f88;
  background-color: #ccecf9;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #005f88;
  background-color: #b8d4e0;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #005f88;
  border-color: #005f88;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #436a05;
  background-color: #e2efce;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #436a05;
  background-color: #cbd7b9;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #436a05;
  border-color: #436a05;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #005f88;
  background-color: #ccecf9;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #005f88;
  background-color: #b8d4e0;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #005f88;
  border-color: #005f88;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #915217;
  background-color: #fce7d4;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #915217;
  background-color: #e3d0bf;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #915217;
  border-color: #915217;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #913519;
  background-color: #fcded4;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #913519;
  background-color: #e3c8bf;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #913519;
  border-color: #913519;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light {
  color: #8f8f8f;
  background-color: #fcfcfc;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #8f8f8f;
  background-color: #e3e3e3;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #8f8f8f;
  border-color: #8f8f8f;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark {
  color: #666666;
  background-color: white;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #666666;
  background-color: #e6e6e6;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #666666;
  border-color: #666666;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-tertiary {
  color: #0a4774;
  background-color: #cfe4f3;
}

/* line 10, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-tertiary.list-group-item-action:hover, .list-group-item-tertiary.list-group-item-action:focus {
  color: #0a4774;
  background-color: #bacddb;
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-tertiary.list-group-item-action.active {
  color: #fff;
  background-color: #0a4774;
  border-color: #0a4774;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_close.scss */
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

/* line 18, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_close.scss */
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

/* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_close.scss */
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(241, 136, 39, 0.25);
  opacity: 1;
}

/* line 30, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_close.scss */
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_close.scss */
.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  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.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast.showing {
  opacity: 0;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast:not(.show) {
  display: none;
}

/* line 22, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast-container {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 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 42, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

/* line 48, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_toasts.scss */
.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

/* line 8, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 35, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 35, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal.show .modal-dialog {
  transform: none;
}

/* line 44, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

/* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

/* line 52, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 62, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* line 69, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 87, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

/* line 12, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 93, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  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 102, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

/* line 109, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 116, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

/* line 125, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  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 138, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  /* line 146, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  /* line 151, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  /* line 155, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  /* line 163, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 167, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  /* line 174, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-xl {
    max-width: 1140px;
  }
}

/* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

/* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-header {
  border-radius: 0;
}

/* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

/* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 479.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xs-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xs-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xs-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xs-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xs-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1359.98px) {
  /* line 183, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  /* line 189, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  /* line 195, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  /* line 199, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  /* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 15, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.show {
  opacity: 0.9;
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 35, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  bottom: 0;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 49, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

/* line 62, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 65, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: 0;
}

/* line 68, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

/* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 79, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 84, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

/* line 108, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 38, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}

/* line 41, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 47, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

/* line 61, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 67, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

/* line 76, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}

/* line 79, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 85, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

/* line 93, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

/* line 106, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

/* line 111, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 117, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

/* line 141, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 150, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-header:empty {
  display: none;
}

/* line 155, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

/* line 14, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 18, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel.pointer-event {
  touch-action: pan-y;
}

/* line 22, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

/* line 29, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item {
    transition: none;
  }
}

/* line 39, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

/* line 51, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

/* line 70, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

/* line 77, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 77, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

/* line 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 90, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}

/* line 110, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.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 118, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev {
  left: 0;
}

/* line 122, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next {
  right: 0;
}

/* line 128, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
/* line 146, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

/* line 149, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* line 158, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}

/* line 173, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 173, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

/* line 193, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  opacity: 1;
}

/* line 203, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

/* line 217, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}

/* line 222, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}

/* line 226, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-dark .carousel-caption {
  color: #000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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: 0.75s linear infinite spinner-border;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/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: 0.75s linear infinite spinner-grow;
}

/* line 57, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_spinners.scss */
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_spinners.scss */
  .spinner-border,
.spinner-grow {
    animation-duration: 1.5s;
  }
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
  .offcanvas {
    transition: none;
  }
}

/* line 17, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

/* line 12, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.offcanvas-backdrop.fade {
  opacity: 0;
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_backdrop.scss */
.offcanvas-backdrop.show {
  opacity: 0.5;
}

/* line 21, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

/* line 27, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

/* line 35, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 40, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

/* line 46, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

/* line 62, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

/* line 72, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

/* line 81, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_offcanvas.scss */
.offcanvas.show {
  transform: none;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}

/* line 9, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

/* line 16, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-xs {
  min-height: .6em;
}

/* line 20, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-sm {
  min-height: .8em;
}

/* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-lg {
  min-height: 1.2em;
}

/* line 30, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

/* line 41, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/_placeholders.scss */
.placeholder-wave {
  -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
          mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-primary {
  color: #F18827;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-primary:hover, .link-primary:focus {
  color: #f4a052;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-secondary {
  color: #009FE3;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-secondary:hover, .link-secondary:focus {
  color: #33b2e9;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-success {
  color: #70b008;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-success:hover, .link-success:focus {
  color: #8dc039;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-info {
  color: #009FE3;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-info:hover, .link-info:focus {
  color: #33b2e9;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-warning {
  color: #F18827;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-warning:hover, .link-warning:focus {
  color: #f4a052;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-danger {
  color: #f2582a;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-danger:hover, .link-danger:focus {
  color: #c24622;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-light {
  color: #efefef;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-light:hover, .link-light:focus {
  color: #f2f2f2;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-dark {
  color: white;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-dark:hover, .link-dark:focus {
  color: white;
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-tertiary {
  color: #1076c1;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_colored-links.scss */
.link-tertiary:hover, .link-tertiary:focus {
  color: #0d5e9a;
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio {
  position: relative;
  width: 100%;
}

/* line 7, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

/* line 13, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

/* line 23, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_ratio.scss */
.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

/* line 3, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 11, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

/* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 480px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xs-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 576px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1360px) {
  /* line 24, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_position.scss */
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 2, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_stacks.scss */
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

/* line 9, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_stacks.scss */
.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss */
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* line 6, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_stretched-link.scss */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* line 5, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_text-truncation.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 1, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/helpers/_vr.scss */
.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-top {
  vertical-align: top !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-start {
  float: left !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-end {
  float: right !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.float-none {
  float: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-0 {
  opacity: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-25 {
  opacity: 0.25 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-50 {
  opacity: 0.5 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-75 {
  opacity: 0.75 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.opacity-100 {
  opacity: 1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-visible {
  overflow: visible !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.overflow-scroll {
  overflow: scroll !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline {
  display: inline !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-block {
  display: block !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-grid {
  display: grid !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table {
  display: table !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table-row {
  display: table-row !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-flex {
  display: flex !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-inline-flex {
  display: inline-flex !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.d-none {
  display: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-static {
  position: static !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-relative {
  position: relative !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-absolute {
  position: absolute !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-fixed {
  position: fixed !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.position-sticky {
  position: sticky !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-0 {
  top: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-50 {
  top: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.top-100 {
  top: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-0 {
  bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-50 {
  bottom: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bottom-100 {
  bottom: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-0 {
  left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-50 {
  left: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.start-100 {
  left: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-0 {
  right: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-50 {
  right: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.end-100 {
  right: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle {
  transform: translate(-50%, -50%) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle-x {
  transform: translateX(-50%) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.translate-middle-y {
  transform: translateY(-50%) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-0 {
  border: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-end {
  border-right: 1px solid #dee2e6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-end-0 {
  border-right: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-start {
  border-left: 1px solid #dee2e6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-start-0 {
  border-left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-primary {
  border-color: #F18827 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-secondary {
  border-color: #009FE3 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-success {
  border-color: #70b008 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-info {
  border-color: #009FE3 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-warning {
  border-color: #F18827 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-danger {
  border-color: #f2582a !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-light {
  border-color: #efefef !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-dark {
  border-color: white !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-tertiary {
  border-color: #1076c1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-white {
  border-color: #fff !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-1 {
  border-width: 1px !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-2 {
  border-width: 2px !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-3 {
  border-width: 3px !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-4 {
  border-width: 4px !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.border-5 {
  border-width: 5px !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-25 {
  width: 25% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-50 {
  width: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-75 {
  width: 75% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-100 {
  width: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.w-auto {
  width: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.vw-100 {
  width: 100vw !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-25 {
  height: 25% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-50 {
  height: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-75 {
  height: 75% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-100 {
  height: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.h-auto {
  height: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.vh-100 {
  height: 100vh !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-0 {
  gap: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-1 {
  gap: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-2 {
  gap: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-3 {
  gap: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-4 {
  gap: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-5 {
  gap: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.gap-6 {
  gap: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.justify-content-evenly {
  justify-content: space-evenly !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-center {
  align-items: center !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-center {
  align-content: center !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-center {
  align-self: center !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.align-self-stretch {
  align-self: stretch !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-first {
  order: -1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-0 {
  order: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-1 {
  order: 1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-2 {
  order: 2 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-3 {
  order: 3 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-4 {
  order: 4 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-5 {
  order: 5 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.order-last {
  order: 6 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-0 {
  margin: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-6 {
  margin: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-auto {
  margin: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-6 {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-0 {
  margin-top: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-1 {
  margin-top: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-2 {
  margin-top: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-3 {
  margin-top: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-4 {
  margin-top: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-5 {
  margin-top: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-6 {
  margin-top: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-auto {
  margin-top: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-0 {
  margin-right: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-1 {
  margin-right: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-2 {
  margin-right: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-3 {
  margin-right: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-4 {
  margin-right: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-5 {
  margin-right: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-6 {
  margin-right: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-auto {
  margin-right: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-0 {
  margin-bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-2 {
  margin-bottom: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-3 {
  margin-bottom: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-4 {
  margin-bottom: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-5 {
  margin-bottom: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-6 {
  margin-bottom: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-auto {
  margin-bottom: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-0 {
  margin-left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-1 {
  margin-left: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-2 {
  margin-left: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-3 {
  margin-left: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-4 {
  margin-left: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-5 {
  margin-left: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-6 {
  margin-left: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-auto {
  margin-left: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-n1 {
  margin: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-n2 {
  margin: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-n3 {
  margin: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-n4 {
  margin: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.m-n5 {
  margin: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-n1 {
  margin-top: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-n2 {
  margin-top: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-n3 {
  margin-top: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-n4 {
  margin-top: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mt-n5 {
  margin-top: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-n1 {
  margin-right: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-n2 {
  margin-right: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-n3 {
  margin-right: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-n4 {
  margin-right: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.me-n5 {
  margin-right: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-n1 {
  margin-bottom: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-n2 {
  margin-bottom: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-n3 {
  margin-bottom: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-n4 {
  margin-bottom: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.mb-n5 {
  margin-bottom: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-n1 {
  margin-left: -0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-n2 {
  margin-left: -0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-n3 {
  margin-left: -1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-n4 {
  margin-left: -1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ms-n5 {
  margin-left: -3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-0 {
  padding: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.p-6 {
  padding: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.px-6 {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-0 {
  padding-top: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-1 {
  padding-top: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-2 {
  padding-top: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-3 {
  padding-top: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-4 {
  padding-top: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-5 {
  padding-top: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pt-6 {
  padding-top: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-0 {
  padding-right: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-1 {
  padding-right: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-2 {
  padding-right: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-3 {
  padding-right: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-4 {
  padding-right: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-5 {
  padding-right: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-6 {
  padding-right: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-0 {
  padding-bottom: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-1 {
  padding-bottom: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-2 {
  padding-bottom: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-3 {
  padding-bottom: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-4 {
  padding-bottom: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-5 {
  padding-bottom: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pb-6 {
  padding-bottom: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-0 {
  padding-left: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-1 {
  padding-left: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-2 {
  padding-left: 0.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-3 {
  padding-left: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-4 {
  padding-left: 1.5rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-5 {
  padding-left: 3rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.ps-6 {
  padding-left: 6rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-5 {
  font-size: 1.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fs-6 {
  font-size: 1rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fst-italic {
  font-style: italic !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fst-normal {
  font-style: normal !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-light {
  font-weight: 300 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-lighter {
  font-weight: lighter !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-normal {
  font-weight: 400 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-bold {
  font-weight: 700 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.fw-bolder {
  font-weight: bolder !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-1 {
  line-height: 1 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-sm {
  line-height: 1.25 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-base {
  line-height: 1.5 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.lh-lg {
  line-height: 2 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-start {
  text-align: left !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-end {
  text-align: right !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-center {
  text-align: center !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-underline {
  text-decoration: underline !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-decoration-line-through {
  text-decoration: line-through !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-wrap {
  white-space: normal !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-tertiary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-tertiary-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.text-opacity-100 {
  --bs-text-opacity: 1;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

/* line 54, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
          user-select: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-none {
  pointer-events: none !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.pe-auto {
  pointer-events: auto !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-1 {
  border-radius: 0.2rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-2 {
  border-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-3 {
  border-radius: 0.75rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-pill {
  border-radius: 50rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.visible {
  visibility: visible !important;
}

/* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
.invisible {
  visibility: hidden !important;
}

@media (min-width: 480px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xs-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xs-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xs-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xs-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xs-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xs-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xs-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xs-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xs-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xs-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xs-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xs-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xs-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xs-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xs-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xs-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xs-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xs-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xs-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xs-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xs-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xs-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xs-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xs-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xs-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xs-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xs-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xs-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xs-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xs-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xs-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xs-center {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-sm-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-sm-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-sm-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-sm-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-sm-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-sm-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-sm-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-md-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-md-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-md-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-md-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-md-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-md-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-md-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-lg-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-lg-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-lg-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-lg-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-lg-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-lg-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-lg-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xl-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xl-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xl-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xl-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xl-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xl-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xl-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1360px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-start {
    float: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-end {
    float: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .float-xxl-none {
    float: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-xxl-none {
    display: none !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-row {
    flex-direction: row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-column {
    flex-direction: column !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-0 {
    gap: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .gap-xxl-6 {
    gap: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-center {
    align-items: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-center {
    align-content: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-center {
    align-self: center !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-first {
    order: -1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-0 {
    order: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-1 {
    order: 1 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-2 {
    order: 2 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-3 {
    order: 3 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-4 {
    order: 4 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-5 {
    order: 5 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .order-xxl-last {
    order: 6 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-0 {
    margin: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-3 {
    margin: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-5 {
    margin: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-6 {
    margin: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-auto {
    margin: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-auto {
    margin-right: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-n3 {
    margin-right: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .me-xxl-n5 {
    margin-right: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-0 {
    padding: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-3 {
    padding: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-5 {
    padding: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .p-xxl-6 {
    padding: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-start {
    text-align: left !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-end {
    text-align: right !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-1 {
    font-size: 2.5rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-2 {
    font-size: 2rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-3 {
    font-size: 1.75rem !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline {
    display: inline !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-block {
    display: block !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-grid {
    display: grid !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table {
    display: table !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-flex {
    display: flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  /* line 64, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_utilities.scss */
  .d-print-none {
    display: none !important;
  }
}

/***/
/*
 * KEYFRAMES
 */
@keyframes animation-pop {
  50% {
    transform: scale(1.1);
  }
}

/* line 9, app/assets/stylesheets/front/1-base/_macros.scss */
.animation-pop {
  animation-name: animation-pop;
  animation-duration: .9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/***/
/*
 * MIXINS
 */
/***/
/*
 * PLACEHOLDERS
 */
/* line 33, app/assets/stylesheets/front/1-base/_macros.scss */
.rounded-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
}

/* line 44, app/assets/stylesheets/front/1-base/_macros.scss */
.text-ellipsis {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

/* line 56, app/assets/stylesheets/front/1-base/_macros.scss */
.text-ellipsis-inner {
  overflow: hidden;
  text-overflow: ellipsis;
}

/***/
/***/
/*
 * SHARED
 */
/* line 1, app/assets/stylesheets/shared/_backgrounds.scss */
.background-cover {
  background-size: cover;
  background-position: center;
}

/* line 6, app/assets/stylesheets/shared/_backgrounds.scss */
.background-no-repeat {
  background-repeat: no-repeat;
}

/* line 10, app/assets/stylesheets/shared/_backgrounds.scss */
.background-fade-white {
  position: relative;
}

/* line 13, app/assets/stylesheets/shared/_backgrounds.scss */
.background-fade-white::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, white 0%, transparent 100%);
}

/* line 23, app/assets/stylesheets/shared/_backgrounds.scss */
.background-fade-white > * {
  position: relative;
  z-index: 1;
}

/* line 29, app/assets/stylesheets/shared/_backgrounds.scss */
.inverse-color {
  -webkit-mix-blend-mode: difference;
  mix-blend-mode: difference;
}

/* line 35, app/assets/stylesheets/shared/_backgrounds.scss */
th, .table th {
  white-space: nowrap;
}

/* line 38, app/assets/stylesheets/shared/_backgrounds.scss */
th.with-sort, .table th.with-sort {
  padding-right: 20px;
  position: relative;
}

/* line 42, app/assets/stylesheets/shared/_backgrounds.scss */
th.with-sort .btn, .table th.with-sort .btn {
  position: absolute;
  right: 0;
}

/* line 1, app/assets/stylesheets/shared/_consent_banner.scss */
.open-cookies-settings {
  display: none;
}

/* line 4, app/assets/stylesheets/shared/_consent_banner.scss */
.open-cookies-settings.visible {
  display: inline-block;
}

/* line 10, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .modal-dialog {
  max-width: 600px;
}

/* line 14, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .modal-header {
  flex-direction: column;
}

/* line 18, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .btn-close {
  position: absolute;
  right: 1em;
  top: 1em;
}

/* line 24, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .description {
  flex: 1 1 0;
}

/* line 28, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .form-switch {
  padding-left: 0;
}

/* line 32, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .control {
  flex: 0 0 5em;
  justify-content: end;
  display: flex;
  align-items: center;
}

/* line 38, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .control .form-check-input {
  margin-left: 0;
}

/* line 41, app/assets/stylesheets/shared/_consent_banner.scss */
.consents .control .form-check-input.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-primary {
  color: #F18827;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-primary:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-primary, .btn-negative-primary:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(253, 237, 223, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-primary, .btn-check:active + .btn-negative-primary, .btn-negative-primary:active, .btn-negative-primary.active, .show > .btn-negative-primary.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-primary:focus, .btn-check:active + .btn-negative-primary:focus, .btn-negative-primary:active:focus, .btn-negative-primary.active:focus, .show > .btn-negative-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 237, 223, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-primary:disabled, .btn-negative-primary.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-secondary {
  color: #009FE3;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-secondary:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-secondary, .btn-negative-secondary:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 241, 251, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-secondary, .btn-check:active + .btn-negative-secondary, .btn-negative-secondary:active, .btn-negative-secondary.active, .show > .btn-negative-secondary.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-secondary:focus, .btn-check:active + .btn-negative-secondary:focus, .btn-negative-secondary:active:focus, .btn-negative-secondary.active:focus, .show > .btn-negative-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 241, 251, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-secondary:disabled, .btn-negative-secondary.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-success {
  color: #70b008;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-success:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-success, .btn-negative-success:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(234, 243, 218, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-success, .btn-check:active + .btn-negative-success, .btn-negative-success:active, .btn-negative-success.active, .show > .btn-negative-success.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-success:focus, .btn-check:active + .btn-negative-success:focus, .btn-negative-success:active:focus, .btn-negative-success.active:focus, .show > .btn-negative-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(234, 243, 218, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-success:disabled, .btn-negative-success.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-info {
  color: #009FE3;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-info:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-info, .btn-negative-info:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 241, 251, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-info, .btn-check:active + .btn-negative-info, .btn-negative-info:active, .btn-negative-info.active, .show > .btn-negative-info.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-info:focus, .btn-check:active + .btn-negative-info:focus, .btn-negative-info:active:focus, .btn-negative-info.active:focus, .show > .btn-negative-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 241, 251, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-info:disabled, .btn-negative-info.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-warning {
  color: #F18827;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-warning:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-warning, .btn-negative-warning:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(253, 237, 223, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-warning, .btn-check:active + .btn-negative-warning, .btn-negative-warning:active, .btn-negative-warning.active, .show > .btn-negative-warning.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-warning:focus, .btn-check:active + .btn-negative-warning:focus, .btn-negative-warning:active:focus, .btn-negative-warning.active:focus, .show > .btn-negative-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 237, 223, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-warning:disabled, .btn-negative-warning.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-danger {
  color: #f2582a;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-danger:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-danger, .btn-negative-danger:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(253, 230, 223, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-danger, .btn-check:active + .btn-negative-danger, .btn-negative-danger:active, .btn-negative-danger.active, .show > .btn-negative-danger.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-danger:focus, .btn-check:active + .btn-negative-danger:focus, .btn-negative-danger:active:focus, .btn-negative-danger.active:focus, .show > .btn-negative-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 230, 223, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-danger:disabled, .btn-negative-danger.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-light {
  color: #efefef;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-light:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-light, .btn-negative-light:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(253, 253, 253, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-light, .btn-check:active + .btn-negative-light, .btn-negative-light:active, .btn-negative-light.active, .show > .btn-negative-light.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-light:focus, .btn-check:active + .btn-negative-light:focus, .btn-negative-light:active:focus, .btn-negative-light.active:focus, .show > .btn-negative-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 253, 253, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-light:disabled, .btn-negative-light.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-dark {
  color: white;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-dark:hover {
  color: #000;
  background-color: #d9d9d9;
  border-color: #cccccc;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-dark, .btn-negative-dark:focus {
  color: #000;
  background-color: #d9d9d9;
  border-color: #cccccc;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-dark, .btn-check:active + .btn-negative-dark, .btn-negative-dark:active, .btn-negative-dark.active, .show > .btn-negative-dark.dropdown-toggle {
  color: #000;
  background-color: #cccccc;
  border-color: #bfbfbf;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-dark:focus, .btn-check:active + .btn-negative-dark:focus, .btn-negative-dark:active:focus, .btn-negative-dark.active:focus, .show > .btn-negative-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-dark:disabled, .btn-negative-dark.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 2, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-negative-tertiary {
  color: #1076c1;
  background-color: white;
  border-color: white;
}

/* line 26, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-tertiary:hover {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 32, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:focus + .btn-negative-tertiary, .btn-negative-tertiary:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(219, 234, 246, 0.5);
}

/* line 45, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-tertiary, .btn-check:active + .btn-negative-tertiary, .btn-negative-tertiary:active, .btn-negative-tertiary.active, .show > .btn-negative-tertiary.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 56, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-check:checked + .btn-negative-tertiary:focus, .btn-check:active + .btn-negative-tertiary:focus, .btn-negative-tertiary:active:focus, .btn-negative-tertiary.active:focus, .show > .btn-negative-tertiary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(219, 234, 246, 0.5);
}

/* line 66, vendor/bundle/ruby/3.1.0/gems/bootstrap-5.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-negative-tertiary:disabled, .btn-negative-tertiary.disabled {
  color: #000;
  background-color: white;
  border-color: white;
}

/* line 10, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-pill {
  border-radius: 2em;
}

/* line 14, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn .feather {
  pointer-events: none;
  width: 18px;
  height: 18px;
  vertical-align: sub;
  margin-right: 0.5em;
}

/* line 22, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn .text {
  pointer-events: none;
}

/* line 26, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn .spinner-border {
  display: none;
}

/* line 30, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn.loading .spinner-border {
  display: inline-block;
  margin-left: 0.5em;
}

/* line 35, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-xs, .btn-group-xs > .btn {
  padding: 0.1rem 0.25rem;
  font-size: 0.6rem;
  border-radius: 0.1rem;
}

/* line 40, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-xs .feather, .btn-group-xs > .btn .feather {
  width: 14px;
  height: 14px;
}

/* line 46, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  border-radius: 0.25em;
}

/* line 49, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-sm.btn-icon .feather, .btn-group-sm > .btn-icon.btn .feather {
  vertical-align: bottom;
}

/* line 54, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-sm .feather, .btn-group-sm > .btn .feather {
  width: 14px;
  height: 14px;
}

/* line 59, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* line 66, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-xl {
  font-size: 1.6rem;
}

/* line 69, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-xl .feather {
  width: 32px;
  height: 32px;
}

/* line 76, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-icon .text {
  display: none;
}

/* line 79, app/assets/stylesheets/shared/overrides/_buttons.scss */
.btn-icon .feather {
  margin-right: 0;
}

/* line 85, app/assets/stylesheets/shared/overrides/_buttons.scss */
.dropdown-toggle.no-caret::after {
  content: none;
}

/* line 90, app/assets/stylesheets/shared/overrides/_buttons.scss */
.dropdown-item .feather {
  margin-right: 0.4em;
}

/* line 1, app/assets/stylesheets/shared/overrides/_forms.scss */
.form-control.form-check-input {
  padding: 0;
}

/* line 8, app/assets/stylesheets/shared/overrides/_forms.scss */
.form-switch-lg .form-check-input {
  width: 4em;
  height: 2em;
}

/* line 18, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes fieldset > legend {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

/* line 22, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes fieldset + fieldset {
  margin-top: 1.5rem;
}

/* line 26, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes .form-check-group-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* line 31, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes .form-check-group-row .form-check-group-column {
  flex-grow: 1;
}

/* line 35, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes .form-check-group-row .form-check-group {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/* line 39, app/assets/stylesheets/shared/overrides/_forms.scss */
.collection_grouped_check_boxes .form-check-group-row .form-check {
  clear: both;
}

/***/
/*
 * 2-GENERIC
 */
/*
 * GENERIC
 */
/* line 4, app/assets/stylesheets/front/2-generic/_overrides.scss */
hr {
  color: #efefef;
  margin: 2rem auto;
  border-top: 2px solid #efefef;
  opacity: 1;
}

/* line 11, app/assets/stylesheets/front/2-generic/_overrides.scss */
.disabled,
[disabled] {
  animation-name: none !important;
}

/***/
/*
 * BOOTSTRAP
 */
/* line 20, app/assets/stylesheets/front/2-generic/_overrides.scss */
[class*="container"] [class*="container"] {
  padding-left: 0;
  padding-right: 0;
}

/* line 25, app/assets/stylesheets/front/2-generic/_overrides.scss */
label abbr[title] {
  border-bottom: none;
  cursor: inherit;
  text-decoration: none;
  color: #f2582a;
}

/* line 32, app/assets/stylesheets/front/2-generic/_overrides.scss */
small,
.small {
  font-size: .85em;
}

/* line 38, app/assets/stylesheets/front/2-generic/_overrides.scss */
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .btn-dark:hover, .show > .btn-dark.dropdown-toggle {
  border-color: white;
  background-color: white;
}

/* line 45, app/assets/stylesheets/front/2-generic/_overrides.scss */
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary:hover, .show > .btn-outline-secondary.dropdown-toggle {
  color: #009FE3;
  border-color: #009FE3;
  background-color: #efefef;
}

/* line 52, app/assets/stylesheets/front/2-generic/_overrides.scss */
.btn-light {
  color: #009FE3;
}

/* line 55, app/assets/stylesheets/front/2-generic/_overrides.scss */
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .btn-light:hover, .show > .btn-light.dropdown-toggle {
  background-color: #efefef;
  color: #006997;
  border-color: #006997;
}

/* line 62, app/assets/stylesheets/front/2-generic/_overrides.scss */
.dropdown-toggle--locales {
  color: white;
}

/* line 65, app/assets/stylesheets/front/2-generic/_overrides.scss */
.btn-check:checked + .dropdown-toggle--locales, .btn-check:active + .dropdown-toggle--locales, .dropdown-toggle--locales:active, .dropdown-toggle--locales.active, .dropdown-toggle--locales:hover, .show > .dropdown-toggle--locales.dropdown-toggle {
  color: white;
}

/* line 69, app/assets/stylesheets/front/2-generic/_overrides.scss */
.dropdown-toggle--locales:active, .show > .dropdown-toggle--locales {
  color: white;
}

/* line 75, app/assets/stylesheets/front/2-generic/_overrides.scss */
.table > :not(:first-child) {
  border-top: none;
}

/* line 79, app/assets/stylesheets/front/2-generic/_overrides.scss */
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #212529;
}

/***/
@font-face {
  font-family: "Edouard";
  src: url(data:font/opentype;charset=utf-8;base64,T1RUTwALAIAAAwAwQ0ZGIMkFUDQAACAcAAB0AURTSUdVV1WLAACjGAAAAChHU1VCqBHUeAAAlCAAAAfiT1MvMmMdXHMAAAEgAAAAYGNtYXBjH5FyAAALRAAAFLhoZWFkEzSmnwAAALwAAAA2aGhlYQZGAv8AAAD0AAAAJGhtdHjEYT3+AACcBAAABxRtYXhwAcVQAAAAARgAAAAGbmFtZTO751AAAAGAAAAJxHBvc3T/vwBrAAAf/AAAACAAAQAAAAEAQhuhe4lfDzz1AAMD6AAAAADYt8/zAAAAANkJkwr/8/9AAmgDQAABAAMAAgAAAAAAAAABAAAD6P9MAAACfP/z/3ECaAABAAAAAAAAAAAAAAAAAAABxQAAUAABxQAAAAMBkQK8AAMABAKKAlgAAABLAooCWAAAAV4AawEIAAACAAAAAAAAAAAAAAAABwAAAAEAAAAAAAAAAFBST0QAIAAg//8DNP9MALQD6AC0AAAAkwAAAAABuAI8AAAAIAADAAAAKQHyAAEAAAAAAAAAgAAAAAEAAAAAAAEAEQCAAAEAAAAAAAIABACRAAEAAAAAAAMAIgCVAAEAAAAAAAQAFgC3AAEAAAAAAAUAPwDNAAEAAAAAAAYAFQEMAAEAAAAAAAcAqwEhAAEAAAAAAAgADwHMAAEAAAAAAAkADwHMAAEAAAAAAAsAHgHbAAEAAAAAAAwAHgHbAAEAAAAAAA0AgAAAAAEAAAAAAA4APgH5AAEAAAAAABAABwI3AAEAAAAAABEADgI+AAEAAAAAABIADQJMAAEAAAAAAQAAEgJZAAEAAAAAAQEADwJrAAEAAAAAAQIAFAJ6AAEAAAAAAQMAFgKOAAMAAQQJAAABAAKkAAMAAQQJAAEAIgOkAAMAAQQJAAIACAPGAAMAAQQJAAMARAPOAAMAAQQJAAQALAQSAAMAAQQJAAUAfgQ+AAMAAQQJAAYAKgS8AAMAAQQJAAcBVgTmAAMAAQQJAAgAHgY8AAMAAQQJAAkAHgY8AAMAAQQJAAsAPAZaAAMAAQQJAAwAPAZaAAMAAQQJAA0BAAKkAAMAAQQJAA4AfAaWAAMAAQQJABAADgcSAAMAAQQJABEAHAcgAAMAAQQJAQAAJAc8AAMAAQQJAQEAHgdgAAMAAQQJAQIAKAd+AAMAAQQJAQMALAemQ29weXJpZ2h0IDIwMTkgUHJvZHVjdGlvbiBTeXN0ZW1zIFNBUyAtIEFsbCByaWdodHMgcmVzZXJ2ZWQgLSBFbmQtVXNlciBMaWNlbnNlIEFncmVlbWVudDogIGh0dHA6Ly93d3cucHJvZHVjdGlvbnR5cGUuY29tL2xpY2Vuc2VFZG91YXJkIENvbmRlbnNlZEJvbGQxLjAwMTAwO1BST0Q7RWRvdWFyZC1Db25kZW5zZWRCb2xkRWRvdWFyZCBDb25kZW5zZWQgQm9sZFZlcnNpb24gMS4wMDEwMDtQUyAxLjAwMTtob3Rjb252IDEuMDAxLjg4O21ha2VvdGYubGliMi41LjY0NzgwMEVkb3VhcmQtQ29uZGVuc2VkQm9sZFByb2R1Y3Rpb24gVHlwZSBpcyBhIHJlZ2lzdGVyZWQgdHJhZGVtYXJrIG9mIFByb2R1Y3Rpb24gU3lzdGVtcyBTQVMuIEUuTEVDTEVSQyBpcyBhIHJlZ2lzdGVyZWQgdHJhZGVtYXJrIG9mIEEuQy5ELiBMZWMuIEVkb3VhcmQgbWF5IGJlIHJlZ2lzdGVyZWQgaW4gY2VydGFpbiBqdXJpc2RpY3Rpb25zLlByb2R1Y3Rpb24gVHlwZWh0dHA6Ly93d3cucHJvZHVjdGlvbnR5cGUuY29tL2h0dHBzOi8vd3d3LnByb2R1Y3Rpb250eXBlLmNvbS9oZWxwL2VuZF91c2VyX2xpY2Vuc2VfYWdyZWVtZW50RWRvdWFyZENvbmRlbnNlZCBCb2xkRWRvdWFyZCBDZCBCZEFsdGVybmF0ZSBhc3Rlcmlza0xvZ290eXBlIHBlcmlvZE9wZW4gY2lyY2xlZCBmaWd1cmVzQ2xvc2VkIGNpcmNsZWQgZmlndXJlcwBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADkAIABQAHIAbwBkAHUAYwB0AGkAbwBuACAAUwB5AHMAdABlAG0AcwAgAFMAQQBTACAALQAgAEEAbABsACAAcgBpAGcAaAB0AHMAIAByAGUAcwBlAHIAdgBlAGQAIAAtACAARQBuAGQALQBVAHMAZQByACAATABpAGMAZQBuAHMAZQAgAEEAZwByAGUAZQBtAGUAbgB0ADoAIAAgAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBwAHIAbwBkAHUAYwB0AGkAbwBuAHQAeQBwAGUALgBjAG8AbQAvAGwAaQBjAGUAbgBzAGUARQBkAG8AdQBhAHIAZAAgAEMAbwBuAGQAZQBuAHMAZQBkAEIAbwBsAGQAMQAuADAAMAAxADAAMAA7AFAAUgBPAEQAOwBFAGQAbwB1AGEAcgBkAC0AQwBvAG4AZABlAG4AcwBlAGQAQgBvAGwAZABFAGQAbwB1AGEAcgBkACAAQwBvAG4AZABlAG4AcwBlAGQAIABCAG8AbABkAFYAZQByAHMAaQBvAG4AIAAxAC4AMAAwADEAMAAwADsAUABTACAAMQAuADAAMAAxADsAaABvAHQAYwBvAG4AdgAgADEALgAwADAAMQAuADgAOAA7AG0AYQBrAGUAbwB0AGYALgBsAGkAYgAyAC4ANQAuADYANAA3ADgAMAAwAEUAZABvAHUAYQByAGQALQBDAG8AbgBkAGUAbgBzAGUAZABCAG8AbABkAFAAcgBvAGQAdQBjAHQAaQBvAG4AIABUAHkAcABlACAAaQBzACAAYQAgAHIAZQBnAGkAcwB0AGUAcgBlAGQAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAFAAcgBvAGQAdQBjAHQAaQBvAG4AIABTAHkAcwB0AGUAbQBzACAAUwBBAFMALgAgAEUALgBMAEUAQwBMAEUAUgBDACAAaQBzACAAYQAgAHIAZQBnAGkAcwB0AGUAcgBlAGQAIAB0AHIAYQBkAGUAbQBhAHIAawAgAG8AZgAgAEEALgBDAC4ARAAuACAATABlAGMALgAgAEUAZABvAHUAYQByAGQAIABtAGEAeQAgAGIAZQAgAHIAZQBnAGkAcwB0AGUAcgBlAGQAIABpAG4AIABjAGUAcgB0AGEAaQBuACAAagB1AHIAaQBzAGQAaQBjAHQAaQBvAG4AcwAuAFAAcgBvAGQAdQBjAHQAaQBvAG4AIABUAHkAcABlAGgAdAB0AHAAOgAvAC8AdwB3AHcALgBwAHIAbwBkAHUAYwB0AGkAbwBuAHQAeQBwAGUALgBjAG8AbQAvAGgAdAB0AHAAcwA6AC8ALwB3AHcAdwAuAHAAcgBvAGQAdQBjAHQAaQBvAG4AdAB5AHAAZQAuAGMAbwBtAC8AaABlAGwAcAAvAGUAbgBkAF8AdQBzAGUAcgBfAGwAaQBjAGUAbgBzAGUAXwBhAGcAcgBlAGUAbQBlAG4AdABFAGQAbwB1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AGoA7QBsAO8AcADzAHIA9QBzAPYAdAD3AHUA+AB2APkAeQD8AH0BAAB+AH8BAgCBAQQAgAEDACgAqAArAKsAYADiAGkA6wBrAO4BDQEPARgBHgEaASEBEgEcAHcA+gB4APsAegD9AHsA/gFFAUgBMQEyATUBMwE0ATYBWwFcAUoBZwFiAaEBiwGdASIBvwHAAAwAAAAADdgAAAAAAAABJgAAACAAAAAgAAAAAwAAACEAAAAhAAABKwAAACIAAAAiAAABOAAAACMAAAAjAAABaAAAACQAAAAkAAABagAAACUAAAAlAAABiAAAACYAAAAmAAABqAAAACcAAAAnAAABNwAAACgAAAApAAABTQAAACoAAAAqAAABWQAAACsAAAArAAABigAAACwAAAAsAAABJAAAAC0AAAAtAAABKQAAAC4AAAAuAAABJwAAAC8AAAAvAAABQQAAADAAAAA5AAABcAAAADoAAAA6AAABJgAAADsAAAA7AAABJQAAADwAAAA8AAABlAAAAD0AAAA9AAABjwAAAD4AAAA+AAABlQAAAD8AAAA/AAABLgAAAEAAAABAAAABXwAAAEEAAABaAAAABgAAAFsAAABbAAABUQAAAFwAAABcAAABQgAAAF0AAABdAAABUgAAAF4AAABeAAABkwAAAF8AAABfAAABRwAAAGAAAABgAAABCQAAAGEAAAB6AAAAhgAAAHsAAAB7AAABVQAAAHwAAAB8AAABQwAAAH0AAAB9AAABVgAAAH4AAAB+AAABkQAAAKAAAACgAAAABAAAAKEAAAChAAABLAAAAKIAAACjAAABawAAAKQAAACkAAABmQAAAKUAAAClAAABbgAAAKYAAACmAAABRAAAAKcAAACnAAABXQAAAKgAAACoAAABFAAAAKkAAACpAAABYAAAAKoAAACqAAABZQAAAKsAAACrAAABPQAAAKwAAACsAAABmAAAAK4AAACuAAABYQAAAK8AAACvAAABFgAAALAAAACwAAABpQAAALEAAACxAAABjAAAALIAAACzAAABfAAAALQAAAC0AAABCwAAALUAAAC1AAABxAAAALYAAAC2AAABXgAAALcAAAC3AAABSwAAALgAAAC4AAABIAAAALkAAAC5AAABewAAALoAAAC6AAABZgAAALsAAAC7AAABPgAAALwAAAC+AAABhQAAAL8AAAC/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AAAA/AAAAXYAAAF2AAAAfQAAAXcAAAF3AAABAAAAAXgAAAF5AAAAfgAAAXoAAAF6AAABAgAAAXsAAAF7AAAAgQAAAXwAAAF8AAABBAAAAX0AAAF9AAAAgAAAAX4AAAF+AAABAwAAAY8AAAGPAAAAggAAAZIAAAGSAAABbQAAAfoAAAH6AAAAKAAAAfsAAAH7AAAAqAAAAfwAAAH8AAAAKwAAAf0AAAH9AAAAqwAAAf4AAAH+AAAAYAAAAf8AAAH/AAAA4gAAAhgAAAIYAAAAaQAAAhkAAAIZAAAA6wAAAhoAAAIaAAAAawAAAhsAAAIbAAAA7gAAAjcAAAI3AAAAzgAAAsYAAALGAAABDQAAAscAAALHAAABDwAAAtgAAALYAAABGAAAAtkAAALZAAABHgAAAtoAAALaAAABGgAAAtsAAALbAAABIQAAAtwAAALcAAABEgAAAt0AAALdAAABHAAAA5QAAAOUAAABnAAAA7wAAAO8AAABpAAAA8AAAAPAAAABowAAHoAAAB6AAAAAdwAAHoEAAB6BAAAA+gAAHoIAAB6CAAAAeAAAHoMAAB6DAAAA+wAAHoQAAB6EAAAAegAAHoUAAB6FAAAA/QAAHvIAAB7yAAAAewAAHvMAAB7zAAAA/gAAIAkAACAJAAAABQAAIBMAACATAAABRQAAIBQAACAUAAABSAAAIBgAACAZAAABMQAAIBoAACAaAAABNQAAIBwAACAdAAABMwAAIB4AACAeAAABNgAAICAAACAhAAABWwAAICIAACAiAAABSgAAICYAACAmAAABKAAAIDAAACAwAAABiQAAIDkAACA6AAABOQAAIEQAACBEAAABhAAAIHAAACBwAAABegAAIHQAACB5AAABfgAAIKQAACCkAAABbwAAIKwAACCsAAABaQAAIRMAACETAAABpgAAIRYAACEWAAABZwAAIRcAACEXAAABYgAAISAAACEgAAABZAAAISIAACEiAAABYwAAIS4AACEuAAABpwAAIgIAACICAAABngAAIg8AACIPAAABogAAIhEAACIRAAABoQAAIhIAACISAAABiwAAIhoAACIaAAABoAAAIh4AACIeAAABmgAAIisAACIrAAABnwAAIkgAACJIAAABkgAAImAAACJgAAABkAAAImQAACJlAAABlgAAJcoAACXKAAABmwAAJg4AACYOAAABwQAAJ4AAACeJAAABqgAAJ4oAACeTAAABtQAAp7YAAKe2AAABnQAA9sMAAPbDAAABIgAA+wEAAPsCAAABvwAB9pcAAfaXAAABwgAB9tIAAfbSAAABwwADAAAAAAAA/7wAawAAAAAAAAAAAAAAAAAAAAAAAAAAAQAEAgABAQEWRWRvdWFyZC1Db25kZW5zZWRCb2xkAAEBATD49AD49QH49gwA+PcC+PgD+BQE+w0MA/YMBH77VPj8+dQFHBTuDxwXqhG9HGkQEgDeAgABAAYACAAPABgAHwAlAC8ANgA9AEMATgBUAF4AZABqAHAAdwB9AIcAjgCZAJ8AqQC1AMAAxADKANEA1wDhAOgA6gD1AQEBBwENARkBHQEjASkBNQE8AUIBTwFaAWABZgFyAXgBgwGLAZcBnQGpAa0BswG6AcABxQHSAdkB3wHlAfAB+QH/AgoCEAIaAh8CIgIpAi8COQJAAkcCTQJYAl4CaAJuAnQCegKBAocCkQKYAqMCqQKzAr8CygLOAtQC2wLhAugC8gL0Av8DBwMTAxkDHwMrAy8DNQM7A0cDTgNUA2EDbANyA3gDhAOKA5UDnQOpA68DuwO/A8UDzAPSA9cD5APrA/ED9wQCBAsEEQQcBCIELAQxBDQEPQRGBFQEXQRoBHEEfQSHBJAEmASoBLUEwATPBNkE5wT3BQgFGgUrBT0FRwVRBWMFcAV+BY0FnQWqBbgFxAXLBdYF3AXgBeQF7AX3BgAGDAYUBhsGIAYlBjAGOAY/BkgGTwZRBlYGXwZsBnMGegaBBogGjwaWBp0GpAarBrIGwAbHBs4G1QbcBuMG6gbxBvgG/wcGBwsHDgcSBxwHHwfKCEcIVAhbLm51bGxDUm5ic3BhY2V0aGluc3BhY2VBbWFjcm9uQWJyZXZlQXJpbmdhY3V0ZUFvZ29uZWtBRWFjdXRlQ2FjdXRlQ2NpcmN1bWZsZXhDY2Fyb25DZG90YWNjZW50RGNhcm9uRGNyb2F0RWNhcm9uRW1hY3JvbkVicmV2ZUVkb3RhY2NlbnRFb2dvbmVrR2NpcmN1bWZsZXhHYnJldmVHZG90YWNjZW50R2NvbW1hYWNjZW50SGNpcmN1bWZsZXhIYmFySXRpbGRlSW1hY3JvbklicmV2ZUlkb3RhY2NlbnRJb2dvbmVrSUpKY2lyY3VtZmxleEtjb21tYWFjY2VudExhY3V0ZUxjYXJvbkxjb21tYWFjY2VudExkb3ROYWN1dGVOY2Fyb25OY29tbWFhY2NlbnRPbWFjcm9uT2JyZXZlT2h1bmdhcnVtbGF1dE9zbGFzaGFjdXRlUmFjdXRlUmNhcm9uUmNvbW1hYWNjZW50U2FjdXRlU2NpcmN1bWZsZXhTY2VkaWxsYVNjb21tYWFjY2VudFRjYXJvblRjb21tYWFjY2VudFRiYXJVdGlsZGVVbWFjcm9uVWJyZXZlVXJpbmdVaHVuZ2FydW1sYXV0VW9nb25la1dncmF2ZVdhY3V0ZVdjaXJjdW1mbGV4V2RpZXJlc2lzWWdyYXZlWWNpcmN1bWZsZXhaYWN1dGVaZG90YWNjZW50U2Nod2FFbmdhbWFjcm9uYWJyZXZlYXJpbmdhY3V0ZWFvZ29uZWthZWFjdXRlY2FjdXRlY2NpcmN1bWZsZXhjY2Fyb25jZG90YWNjZW50ZGNhcm9uZGNyb2F0ZWNhcm9uZW1hY3JvbmVicmV2ZWVkb3RhY2NlbnRlb2dvbmVrZ2NpcmN1bWZsZXhnYnJldmVnZG90YWNjZW50Z2NvbW1hYWNjZW50aGNpcmN1bWZsZXhoYmFyaXRpbGRlaW1hY3JvbmlicmV2ZWlvZ29uZWtpZG90YWNjZW50aWpqY2lyY3VtZmxleGRvdGxlc3Nqa2NvbW1hYWNjZW50bGFjdXRlbGNhcm9ubGNvbW1hYWNjZW50bGRvdG5hY3V0ZW5jYXJvbm5jb21tYWFjY2VudG9tYWNyb25vYnJldmVvaHVuZ2FydW1sYXV0b3NsYXNoYWN1dGVyYWN1dGVyY2Fyb25yY29tbWFhY2NlbnRzYWN1dGVzY2lyY3VtZmxleHNjZWRpbGxhc2NvbW1hYWNjZW50dGNhcm9udGNvbW1hYWNjZW50dGJhcnV0aWxkZXVtYWNyb251YnJldmV1cmluZ3VodW5nYXJ1bWxhdXR1b2dvbmVrd2dyYXZld2FjdXRld2NpcmN1bWZsZXh3ZGllcmVzaXN5Z3JhdmV5Y2lyY3VtZmxleHphY3V0ZXpkb3RhY2NlbnRzY2h3YWVuZ2dyYXZlLmNhcGFjdXRlLmNhcGNpcmN1bWZsZXguY2FwY2Fyb24uY2FwY2Fyb25TbG92YWt0aWxkZS5jYXBkaWVyZXNpcy5jYXBtYWNyb24uY2FwYnJldmUuY2FwcmluZy5jYXBodW5nYXJ1bWxhdXQuY2FwZG90YWNjZW50LmNhcGNvbW1hYWNjZW50Y29tbWFhY2NlbnQuYWx0aHlwaGVuLmNhcGV4Y2xhbWRvd24uY2FwcXVlc3Rpb25kb3duLmNhcGd1aWxzaW5nbGxlZnQuY2FwZ3VpbHNpbmdscmlnaHQuY2FwZ3VpbGxlbW90bGVmdC5jYXBndWlsbGVtb3RyaWdodC5jYXBlbmRhc2guY2FwZW1kYXNoLmNhcHBlcmlvZGNlbnRlcmVkLmNhcHBhcmVubGVmdC5jYXBwYXJlbnJpZ2h0LmNhcGJyYWNrZXRsZWZ0LmNhcGJyYWNrZXRyaWdodC5jYXBicmFjZWxlZnQuY2FwYnJhY2VyaWdodC5jYXBhc3Rlcmlzay5hbHR1bmkyMTE3c2VydmljZW1hcmtudW1lcm9FdXJvbGlyYW5vdGVxdWFsYXBwcm94ZXF1YWxsZXNzZXF1YWxncmVhdGVyZXF1YWxpbmZpbml0eWxvemVuZ2VEZWx0YU9tZWdhcGFydGlhbGRpZmZpbnRlZ3JhbHJhZGljYWxzdW1tYXRpb25wcm9kdWN0cGlsaXRyZWVzdGltYXRlZHplcm8ub3BlbmNpcmN1bmkyNzgwdW5pMjc4MXVuaTI3ODJ1bmkyNzgzdW5pMjc4NHVuaTI3ODV1bmkyNzg2dW5pMjc4N3VuaTI3ODh1bmkyNzg5emVyby5jbG9zZWNpcmN1bmkyNzhBdW5pMjc4QnVuaTI3OEN1bmkyNzhEdW5pMjc4RXVuaTI3OEZ1bmkyNzkwdW5pMjc5MXVuaTI3OTJ1bmkyNzkzcGhvbmVjYXJjYXJ0cGVyaW9kLmFsdDEuMFByb2R1Y3Rpb24gVHlwZSBpcyBhIHJlZ2lzdGVyZWQgdHJhZGVtYXJrIG9mIFByb2R1Y3Rpb24gU3lzdGVtcyBTQVMuIEUuTEVDTEVSQyBpcyBhIHJlZ2lzdGVyZWQgdHJhZGVtYXJrIG9mIEEuQy5ELiBMZWMuIEVkb3VhcmQgbWF5IGJlIHJlZ2lzdGVyZWQgaW4gY2VydGFpbiBqdXJpc2RpY3Rpb25zLkNvcHlyaWdodCAyMDE5IFByb2R1Y3Rpb24gU3lzdGVtcyBTQVMgLSBBbGwgcmlnaHRzIHJlc2Vy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AZAADAGQACABkAAsAZAAFgGQACABkAAgAZAADwGQACABkAAWAZAAIAGQAAwBkAAXAZAAKgGQAAsBkAAfAZAACwGQAAwBkAAMAZAADAGQABYBkAAQAZAAEAGQABABkAAQAZAAEAGQABABkAAQAZAAEAGQABABkAAQAZAAEAGQABABkAAgAZAAIAGQACABkAAgAZAAIAGQAAwBkAAMAZAAFgGQABYBkAAWAZAAFgGQABYBkAAWAZAAFgGQABYBkAAWAZAADAGQAAwBkAAMAZAADAGQABkBkAABAZAALAGQACwBkAAsAZAALAGQACwBkAAsAZAALAGQACwBkAAsAZAALAGQABwBkAAWAZAAFgGQACABkAAgAZAAIAGQACABkAAgAZAAIAGQACABkAAgAZAAIAGQACABkAAWAZAAFgGQABYBkAAWAZAAFgGQABYBkAAWAZAAFgGQABYBkAAWAZAAFQGQABcBkAAXAZAAFwGQACoBkAAqAZAAKgGQACoBkAAqAZAAKgGQAAsBkAALAZAACwGQAB8BkAAfAZAAHwGQAB8BkAAfAZAAHwGQAB8BkAAfAZAAHwGQAB8BkAAMAZAADAGQAAwBkAAMAZAADAGQAAwBkAAMAZAADAGQABYBkAAWAZAAFgGQABIBkAAgAZAAFgGQACABkABwAZAAcAGQAHABkABwAZAAPwGQAD8BkAA/AZAAPwGQAKABkAA/AZAAPwGQAEgBkABIAZAAZAGQAGQBkABZAZAAWQGQAHwBkAB8AZAAcAGQAGwBkACNAZAAjQGQAGgBkABnAZAAgQGQAIEBkABTAZAAUwGQAHMBkABzAZAAEAGQAEgBkABIAZAAcwGQAHMBkABzAZAAFwGQABcBkAAXAZAAYwGQAFIBkAAQAZAADgGQAFIBkAAOAZAAjwGQAEABkAAmAZAAXgGQACYBkABeAZAADwGQACIBkAAPAZAAIgGQAB8BkAAfAZAAnAGQAJwBkAAyAZAAMgGQADIBkAAAAZAAAAGQAEMBkABzAZAAcwGQAEABkAAzAZAAQAGQADMBkABdAZAAPQGQAF0BkAA9AZAAMwGQADMBkAAzAZAAMwGQACMBkAAQAZAAQgGQAEIBkAATAZAAEAGQABEBkAARAZAAQgGQAEIBkAAkAZAAKgGQAFkBkABfAZAAEAGQAAwBkAAKAZAAGwGQAB8BkAAWAZAAEwGQAAEBkAABAZAAFgGQACABkAAWAZAABAGQABUBkAACAZAADwGQABYBkAAVAZAADQGQAFsBkABsAZAAZgGQAFwBkABYAZAAWwGQAGIBkABlAZAAZAGQAGABkAApAZAABwGQAAcBkP/+AZD/8wGQ//MBkAAUAZAAFAGQABQBkAAIAZAAFAGQABQBkAAUAZAAFAGQABQBkAAQAZAAFgGQACgBkAAWAZAAKAGQABQBkAAeAZAACwGQAA4BkAAWAZAAFQGQABkBkAALAZAAAgGQAB4BkAAKAZAADQGQACEBkABdAZAANAGQACgBkAAUAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQABEBkAARAZAAEQGQAAsBkAALAnwAFAJ8ABQCfAAUAOoAIAAAAAEAAQABAAAAAQAAABQAAAAUAAAAAAAAAAzTTTTTTTXTTTTTTTQ=);
  font-weight: bold;
  font-style: normal;
}

/*
 * GLOBAL RESPONSIVE FONT
 */
/* line 4, app/assets/stylesheets/front/2-generic/_text.scss */
html {
  font-size: 14px;
}

@media (min-width: 576px) {
  /* line 4, app/assets/stylesheets/front/2-generic/_text.scss */
  html {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  /* line 4, app/assets/stylesheets/front/2-generic/_text.scss */
  html {
    font-size: 18px;
  }
}

/***/
/* line 17, app/assets/stylesheets/front/2-generic/_text.scss */
.font-headings {
  font-family: "Figtree", Arial;
  /* Fix for Luckiest Guy unproper alignment:
   */
  /***/
}

/* line 32, app/assets/stylesheets/front/2-generic/_text.scss */
.font-base {
  font-family: var(--bs-font-sans-serif);
}

/* line 36, app/assets/stylesheets/front/2-generic/_text.scss */
.font-cursive {
  font-family: cursive;
}

/* line 40, app/assets/stylesheets/front/2-generic/_text.scss */
.font-brand {
  font-family: "Edouard";
}

/* line 44, app/assets/stylesheets/front/2-generic/_text.scss */
.fs-lg {
  font-size: 1.15rem;
}

/* line 48, app/assets/stylesheets/front/2-generic/_text.scss */
.h0 {
  font-size: 2.785rem;
}

/* line 52, app/assets/stylesheets/front/2-generic/_text.scss */
.page-title, .game_entry__title {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: #F18827;
  font-weight: 900;
  margin-bottom: 3rem;
}

@media (max-width: 767.98px) {
  /* line 52, app/assets/stylesheets/front/2-generic/_text.scss */
  .page-title, .game_entry__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  /* line 65, app/assets/stylesheets/front/2-generic/_text.scss */
  .small {
    font-size: 100%;
  }
}

/* line 71, app/assets/stylesheets/front/2-generic/_text.scss */
.smaller {
  font-size: 65%;
}

/* line 75, app/assets/stylesheets/front/2-generic/_text.scss */
.text-rotate {
  transform: rotate(-3deg);
}

/* line 79, app/assets/stylesheets/front/2-generic/_text.scss */
.text-shadow-dark {
  text-shadow: 0 0 0.35rem rgba(0, 0, 0, 0.35);
}

/* line 83, app/assets/stylesheets/front/2-generic/_text.scss */
.text-shadow-light {
  text-shadow: 0 0 0.35rem rgba(255, 255, 255, 0.35);
}

/* line 87, app/assets/stylesheets/front/2-generic/_text.scss */
.text-shadow-drop {
  text-shadow: 1px 1px 0px #846f6b;
}

/* line 91, app/assets/stylesheets/front/2-generic/_text.scss */
.text-spacing-tighter {
  letter-spacing: -.05rem;
}

/* line 95, app/assets/stylesheets/front/2-generic/_text.scss */
.text-spacing-wider {
  letter-spacing: .3rem;
}

/* line 1, app/assets/stylesheets/front/2-generic/_utilities.scss */
.align-super {
  vertical-align: super !important;
}

/* line 5, app/assets/stylesheets/front/2-generic/_utilities.scss */
.fw-boldest {
  font-weight: 900 !important;
}

/* line 1, app/assets/stylesheets/front/2-generic/_layouts.scss */
html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* line 8, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* line 13, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--deco {
  background: url(/images/bg-deco.png) top/contain no-repeat;
}

@media (max-width: 991.98px) {
  /* line 13, app/assets/stylesheets/front/2-generic/_layouts.scss */
  .bg-main--deco {
    background-position-y: 20%;
  }
}

/* line 33, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--play {
  background: url(/assets/bg-play-6d8801a93ef4e04e6d0faa9a8d552503978ff1ef26d4c7d33d47e869c38040c9.jpg) center/cover no-repeat;
}

/* line 37, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--long {
  background-image: url(/assets/bg-long-c8f879af02a8c2fc744937a2bbeb22fcc6d0dd93fc8efdc136907409e80ae1b9.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;
}

/* line 43, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--long-blur {
  position: relative;
  background-image: url(/assets/bg-long-c8f879af02a8c2fc744937a2bbeb22fcc6d0dd93fc8efdc136907409e80ae1b9.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;
}

/* line 50, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--long-blur:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* line 64, app/assets/stylesheets/front/2-generic/_layouts.scss */
.bg-main--long-blur > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  /* line 71, app/assets/stylesheets/front/2-generic/_layouts.scss */
  .bg-main,
.bg-main__logo,
.game__wrapper {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
}

/* line 1, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-tertiary {
  background: #1076c1;
}

/* line 4, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-quaternary {
  background: #456daf;
}

/* line 7, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-primary {
  color: white !important;
}

/* line 10, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-blue-gradient {
  background-image: linear-gradient(to right, #367aca 0%, #285f9e 100%);
}

/* line 14, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-primary-linear--x {
  background-image: linear-gradient(to right, #367aca 0%, #285f9e 100%);
}

/* line 18, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-primary-linear--y {
  background-image: linear-gradient(to top, #367aca 0%, #285f9e 100%);
}

/* line 22, app/assets/stylesheets/front/2-generic/_common.scss */
.bg-primary-dark {
  background: #005391;
}

/* line 26, app/assets/stylesheets/front/2-generic/_common.scss */
.sidebar-ad {
  display: inline-block;
  border: 1px solid #efefef;
  padding: 5px;
}

/* EDIT CALENDAR OFFER PAGE */
/* line 34, app/assets/stylesheets/front/2-generic/_common.scss */
.offer__background__content h1, .offer__background__content .h1 {
  font-size: 2.8rem;
}

/* line 38, app/assets/stylesheets/front/2-generic/_common.scss */
.offer__background__content .row h2, .offer__background__content .row .h2 {
  text-align: left;
}

/* line 41, app/assets/stylesheets/front/2-generic/_common.scss */
.offer__background__content .row .offer__background__description {
  text-align: left;
}

/* line 45, app/assets/stylesheets/front/2-generic/_common.scss */
.offer__background__content .offer__background__foot_note {
  font-size: 0.9rem;
}

/***/
/*
 * 3-OBJECTS
 */
/* line 1, app/assets/stylesheets/front/3-objects/_animations.scss */
:root {
  --animate-ms-delay: 100ms;
  --animate-duration: 600ms;
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-1s {
  animation-delay: calc(var(--animate-ms-delay) * 1);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-2s {
  animation-delay: calc(var(--animate-ms-delay) * 2);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-3s {
  animation-delay: calc(var(--animate-ms-delay) * 3);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-4s {
  animation-delay: calc(var(--animate-ms-delay) * 4);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-5s {
  animation-delay: calc(var(--animate-ms-delay) * 5);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-6s {
  animation-delay: calc(var(--animate-ms-delay) * 6);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-7s {
  animation-delay: calc(var(--animate-ms-delay) * 7);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-8s {
  animation-delay: calc(var(--animate-ms-delay) * 8);
}

/* line 7, app/assets/stylesheets/front/3-objects/_animations.scss */
.animate__delay-0-9s {
  animation-delay: calc(var(--animate-ms-delay) * 9);
}

/* line 1, app/assets/stylesheets/front/3-objects/_cards.scss */
.card {
  overflow: hidden;
}

/* line 4, app/assets/stylesheets/front/3-objects/_cards.scss */
.card .card-header, .card .card-footer {
  background: transparent;
  border: none;
}

/* line 2, app/assets/stylesheets/front/3-objects/_inputs.scss */
.radio_buttons .form-check {
  display: inline-block;
}

/* line 4, app/assets/stylesheets/front/3-objects/_inputs.scss */
.radio_buttons .form-check + .form-check {
  margin-left: 1em;
}

/* line 10, app/assets/stylesheets/front/3-objects/_inputs.scss */
.was-validated .form-control.form-check-input:valid,
.form-control.form-check-input.is-valid,
.was-validated .form-control.form-check-input:invalid,
.form-control.form-check-input.is-invalid {
  background-position: center;
}

/*
 * BUTTONS
 */
/* line 4, app/assets/stylesheets/front/3-objects/_clickables.scss */
.btn-custom {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* line 7, app/assets/stylesheets/front/3-objects/_clickables.scss */
.btn-custom:hover, .btn-custom:focus {
  color: #F18827 !important;
  border-color: #F18827 !important;
}

/* line 13, app/assets/stylesheets/front/3-objects/_clickables.scss */
.btn-custom:active {
  box-shadow: none;
}

/***/
/*
 * LINKS
 */
/***/
/***/
/*
 * 4-COMPONENTS
 */
/* line 1, app/assets/stylesheets/front/4-components/_header.scss */
.header {
  position: relative;
  z-index: 1;
}

/* line 8, app/assets/stylesheets/front/4-components/_header.scss */
.header-menu__link.active {
  pointer-events: none;
}

@media (max-width: 575.98px) {
  /* line 24, app/assets/stylesheets/front/4-components/_header.scss */
  .header__logo-link {
    max-width: 160px;
  }
}

/* line 2, app/assets/stylesheets/front/4-components/_games.scss */
.game__inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
}

@media (min-width: 768px) {
  /* line 2, app/assets/stylesheets/front/4-components/_games.scss */
  .game__inner {
    padding: 2rem;
  }
}

/* line 13, app/assets/stylesheets/front/4-components/_games.scss */
.game__logo {
  max-width: 100%;
}

/* line 17, app/assets/stylesheets/front/4-components/_games.scss */
.game__row {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: start;
  gap: 1rem;
}

/* line 25, app/assets/stylesheets/front/4-components/_games.scss */
.game__call_to_play {
  min-height: 500px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 1rem 2rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* line 38, app/assets/stylesheets/front/4-components/_games.scss */
.game__call_to_play__title {
  margin: 1rem auto;
  transform: skew(-5deg, -5deg);
}

/* line 42, app/assets/stylesheets/front/4-components/_games.scss */
.game__call_to_play__title h1, .game__call_to_play__title .h1 {
  text-transform: uppercase;
  font-size: 28px;
}

/* line 47, app/assets/stylesheets/front/4-components/_games.scss */
.game__call_to_play__title h2, .game__call_to_play__title .h2 {
  font-size: 18px;
}

/* line 52, app/assets/stylesheets/front/4-components/_games.scss */
.game__call_to_play h3, .game__call_to_play .h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  /* line 59, app/assets/stylesheets/front/4-components/_games.scss */
  .game__row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 67, app/assets/stylesheets/front/4-components/_games.scss */
.stores_list__row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: stretch;
}

/* line 74, app/assets/stylesheets/front/4-components/_games.scss */
.stores_list .adserver-slot--map .adserver-slot {
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  /* line 79, app/assets/stylesheets/front/4-components/_games.scss */
  .stores_list__row {
    flex-direction: column;
  }
}

/* line 85, app/assets/stylesheets/front/4-components/_games.scss */
.game_stores {
  background: #132d77;
  padding: 2rem 3rem;
  box-shadow: 0 0 20px inset #F18827;
  height: 100%;
}

/* line 91, app/assets/stylesheets/front/4-components/_games.scss */
.game_stores__row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* line 98, app/assets/stylesheets/front/4-components/_games.scss */
.game_stores .card {
  box-shadow: 0 0 20px #F18827;
}

/* line 102, app/assets/stylesheets/front/4-components/_games.scss */
.game_stores img {
  max-width: 100%;
}

@media (max-width: 767.98px) {
  /* line 107, app/assets/stylesheets/front/4-components/_games.scss */
  .game_stores {
    padding: 1rem;
  }
  /* line 110, app/assets/stylesheets/front/4-components/_games.scss */
  .game_stores__row {
    flex-direction: column;
  }
  /* line 114, app/assets/stylesheets/front/4-components/_games.scss */
  .game_stores img {
    max-width: 200px;
  }
}

/* line 1, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  margin: auto;
}

/* line 10, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-svg {
  position: relative;
}

/* line 14, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-canvas {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%, 0);
  max-width: 100%;
  padding: 5%;
}

/* line 23, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-pointer {
  transform: translate(-35px, -35px);
}

/* line 27, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-center {
  transform: translate(-50px, -50px);
}

/* line 31, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-light {
  transform: translate(-15px, -15px);
  display: none;
}

/* line 36, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result {
  display: none;
}

/* line 39, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result.visible {
  display: block;
}

/* line 42, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result.visible ~ .wheel .wheel-center {
  display: none;
}

/* line 47, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result .title {
  font-size: 36px;
  font-weight: bold;
  text-anchor: middle;
}

/* line 53, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result .body {
  font-size: 20px;
  text-anchor: middle;
}

/* line 58, app/assets/stylesheets/front/4-components/_wheel.scss */
.wheel-result .prize {
  font-size: 24px;
  text-anchor: middle;
}

/* line 1, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-jackpot {
  width: 100%;
  background: url(/images/background.png);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 140px 20px;
}

@media (max-width: 991.98px) {
  /* line 1, app/assets/stylesheets/front/4-components/_jackpot.scss */
  .container-jackpot {
    flex-direction: column;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

/* line 15, app/assets/stylesheets/front/4-components/_jackpot.scss */
.jackpot {
  background: url(/images/jackpot.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 653px;
  height: 562px;
  position: relative;
}

@media (max-width: 991.98px) {
  /* line 15, app/assets/stylesheets/front/4-components/_jackpot.scss */
  .jackpot {
    background-size: 100% auto;
    width: 360px;
    height: 350px;
  }
}

/* line 30, app/assets/stylesheets/front/4-components/_jackpot.scss */
.handle {
  position: absolute;
  right: -20px;
  height: 200px;
  width: 120px;
  display: block;
  transition: all 250ms ease-in-out;
  top: 154px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70px 129px;
  cursor: pointer;
}

/* line 44, app/assets/stylesheets/front/4-components/_jackpot.scss */
.handle.active {
  animation-name: rotate_handle;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

@keyframes rotate_handle {
  0% {
    transform: translateY(0) translateX(0) rotate(0);
  }
  50% {
    transform: translateY(25px) translateX(15px) rotate(15deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(0);
  }
}

/* line 62, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle {
  position: absolute !important;
  top: 250px;
  height: 205px;
  left: -45px;
  width: 100% !important;
}

/* line 69, app/assets/stylesheets/front/4-components/_jackpot.scss */
.spinner-frame,
.spinner-shape {
  display: none !important;
}

/* line 74, app/assets/stylesheets/front/4-components/_jackpot.scss */
.glass-effect {
  display: none;
}

/* line 78, app/assets/stylesheets/front/4-components/_jackpot.scss */
.left {
  width: 650px;
  position: relative;
}

/* line 82, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 775px;
  height: 456px;
  margin-left: -110px;
  border-radius: 0 20px 20px 0;
  gap: 10px;
  padding: 50px 20px 50px 115px;
}

@media (max-width: 991.98px) {
  /* line 82, app/assets/stylesheets/front/4-components/_jackpot.scss */
  .right {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    height: auto;
  }
}

/* line 107, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-title,
.right-prize {
  color: #006EB7;
  text-transform: uppercase;
}

/* line 113, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-title {
  font-size: 40px;
  line-height: 1;
}

/* line 118, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-prize {
  font-size: 80px;
  line-height: 1;
}

/* line 123, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-text {
  font-size: 20px;
  line-height: 1;
}

/* line 128, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-modalites {
  font-size: 16px;
  line-height: 1.4;
}

/* line 133, app/assets/stylesheets/front/4-components/_jackpot.scss */
.fw-bold {
  font-weight: 700;
}

/* line 136, app/assets/stylesheets/front/4-components/_jackpot.scss */
.fw-extrabold {
  font-weight: 800;
}

/* line 140, app/assets/stylesheets/front/4-components/_jackpot.scss */
.right-button {
  font-size: 22px;
  font-weight: 700;
  background: #F18926;
  padding: 10px 35px;
  height: 60px;
  border: none;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 35px;
}

/* line 153, app/assets/stylesheets/front/4-components/_jackpot.scss */
.symbol img {
  width: 70px;
  height: 70px;
}

/* line 158, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-result {
  background: white;
  font-family: "Poppins", sans-serif;
  position: absolute;
  left: 75px;
  /* left: 505px; */
  top: 196px;
  border-radius: 10px;
  width: 415px;
  z-index: 2;
  text-align: center;
  height: 316px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  opacity: 0;
}

@media (max-width: 991.98px) {
  /* line 158, app/assets/stylesheets/front/4-components/_jackpot.scss */
  .container-result {
    left: 0;
    top: 96px;
    width: 92%;
    padding: 20px !important;
  }
}

/* line 186, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-result.active {
  opacity: 1;
  transition: opacity 5s ease;
  transition-delay: .5s;
}

/* line 192, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-result__title {
  font-size: 50px;
  color: #006EB7;
  font-weight: 800;
}

/* line 197, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-result__text {
  font-size: 17px;
}

/* line 200, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container-result__price {
  font-size: 20px;
  font-weight: 800;
}

/* --------- */
/* line 207, app/assets/stylesheets/front/4-components/_jackpot.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 212, app/assets/stylesheets/front/4-components/_jackpot.scss */
:root {
  --length:  min(20vw, 2.5px);
  --radius: min(1.8vw, 1.1vh);
}

/* line 216, app/assets/stylesheets/front/4-components/_jackpot.scss */
body {
  display: grid;
  width: 100%;
}

/* line 220, app/assets/stylesheets/front/4-components/_jackpot.scss */
.container {
  width: calc(80 * var(--length));
  aspect-ratio: 0.6666666667;
}

/* line 224, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine {
  height: 100%;
  width: 100%;
  background: #473d5c;
  display: grid;
  margin: 0 auto;
  width: 380px;
  border-radius: var(--radius) var(--radius) 0 0;
  grid-template-rows: 1fr 2fr 1.5fr;
  grid-template-areas: "top" "middle" "bottom";
}

/* line 235, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top {
  grid-area: top;
  position: relative;
  height: 97.5%;
  background: #1a004d;
  border-radius: var(--radius);
}

/* line 242, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .bulb-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* line 248, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .top-bulb {
  left: 5%;
  width: 90%;
  top: 0.5%;
}

/* line 253, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .bottom-bulb {
  left: 5%;
  width: 90%;
  bottom: 0.5%;
}

/* line 258, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .left-bulb {
  flex-direction: column;
  width: 5%;
  height: 100%;
  left: 0.5%;
}

/* line 264, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .right-bulb {
  flex-direction: column;
  width: 5%;
  height: 100%;
  right: 0.5%;
}

/* line 270, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .bulb {
  font-size: calc(2.5 * var(--length));
  color: #fbbb32;
  text-shadow: calc(-0.2 * var(--length)) calc(-0.2 * var(--length)) calc(1 * var(--length)) #fff, calc(0.2 * var(--length)) calc(0.2 * var(--length)) calc(1 * var(--length)) #fff, 0 0 calc(0.5 * var(--length)) #fbbb32, 0 0 calc(1 * var(--length)) #fbbb32, 0 0 calc(1.5 * var(--length)) #fbbb32, 0 0 calc(2 * var(--length)) #fbbb32, 0 0 calc(2.5 * var(--length)) #fbbb32;
}

/* line 275, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .machine-title {
  position: absolute;
  width: calc(70 * var(--length));
  height: calc(17.5 * var(--length));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Odor Mean Chey", serif;
  display: grid;
  place-content: center;
  color: #d3342e;
  font-size: calc(12.5 * var(--length));
  font-weight: bolder;
  letter-spacing: calc(1.5 * var(--length));
  border-radius: inherit;
  background: #222;
}

/* line 292, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-top .jackpot {
  text-shadow: calc(-0.2 * var(--length)) calc(-0.2 * var(--length)) calc(1 * var(--length)) #fff, calc(0.2 * var(--length)) calc(0.2 * var(--length)) calc(1 * var(--length)) #fff, 0 0 calc(1 * var(--length)) #d3342e, 0 0 calc(2 * var(--length)) #d3342e, 0 0 calc(3 * var(--length)) #d3342e, 0 0 calc(4 * var(--length)) #d3342e, 0 0 calc(5 * var(--length)) #d3342e;
}

/* line 295, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle {
  grid-area: middle;
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: calc(5 * var(--length));
  border-radius: var(--radius);
  background: #1a004d; */
}

/* line 305, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinner-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: #fbbb32;
  border-radius: var(--radius);
}

/* line 315, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinner-frame::after {
  content: "";
  position: absolute;
  height: 77.5%;
  width: 82.5%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  background: #1a004d;
}

/* line 326, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinner-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 60%;
  background: conic-gradient(#737373 58.5deg, #8c8c8c 58.5deg 121.5deg, #737373 121.5deg 238.5deg, #8c8c8c 238.5deg 301.5deg, #737373 301.5deg);
  border-radius: var(--radius);
}

/* line 336, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinner-shape::before {
  content: "";
  position: absolute;
  height: 90%;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a004d;
}

/* line 346, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 95%;
  width: 69%;
  overflow: hidden;
}

/* line 355, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .overlay {
  position: absolute;
  height: 100%;
  width: 30%;
  border: 2px solid black;
  background: linear-gradient(#000, #fff 33%, #fff 66%, #000);
  opacity: 0.1;
}

/* line 364, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container {
  width: 99px;
  height: 100%;
  display: grid;
  place-content: center;
  /* background: whitesmoke; */
}

/* line 371, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner {
  position: relative;
  width: 100%;
  height: inherit;
  transform-style: preserve-3d;
  /* 45 = number of items /360*/
  transform-origin: 50% 50% calc(-45 * var(--length));
  pointer-events: none;
}

/* line 380, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner .symbol {
  position: absolute;
  backface-visibility: hidden;
  height: 100%;
  width: 100%;
  font-size: calc(10 * var(--length));
  display: grid;
  place-content: center;
  /* 45 = number of items /360*/
  transform-origin: 50% 50% calc(-45 * var(--length));
}

/* line 391, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(1) {
  transform: rotateX(0deg);
}

/* line 394, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(2) {
  transform: rotateX(45deg);
}

/* line 397, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(3) {
  transform: rotateX(90deg);
}

/* line 400, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(4) {
  transform: rotateX(135deg);
}

/* line 403, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(5) {
  transform: rotateX(180deg);
}

/* line 406, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(6) {
  transform: rotateX(225deg);
}

/* line 409, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(7) {
  transform: rotateX(270deg);
}

/* line 412, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(8) {
  transform: rotateX(315deg);
}

/* line 415, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(9) {
  transform: rotateX(360deg);
}

/*.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(10) {
    transform: rotateX(360deg);
} */
/* .slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(11) {
    transform: rotateX(330deg);
}
.slot-machine-middle .spinners-container .spinner-container .spinner > div:nth-child(12) {
    transform: rotateX(360deg);
} */
/* line 427, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner-1 {
  transform: rotateX(var(--rot-spin));
  transition: transform var(--rot-speed) linear;
}

/* line 431, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner-2 {
  transform: rotateX(var(--rot-spin));
  transition: transform var(--rot-speed) linear;
}

/* line 435, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container .spinner-3 {
  transform: rotateX(var(--rot-spin));
  transition: transform var(--rot-speed) linear;
}

/* line 439, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .spinners-container .spinner-container::after {
  content: "";
  position: absolute;
}

/* line 443, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-middle .glass-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 60%;
  border-radius: inherit;
  background: rgba(172, 206, 199, 0.15);
  backdrop-filter: blur(0.3px);
  -webkit-backdrop-filter: blur(0.3px);
}

/* line 455, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom {
  grid-area: bottom;
  position: relative;
  top: calc(-12.5 * var(--length));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transform-style: preserve-3d;
  perspective: calc(75 * var(--length));
}

/* line 466, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container {
  position: relative;
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transform-origin: top;
  transform: translateY(calc(2.5 * var(--length))) rotateX(45deg);
  background: linear-gradient(transparent 90%, #120330), #1a004d;
  transform-style: preserve-3d;
  border-top: 2px solid black;
}

/* line 479, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button {
  --btn-bottom: 12.5%;
  position: relative;
  background-color: #222;
  cursor: pointer;
  width: 40%;
  height: 75%;
  font-size: calc(10 * var(--length));
  border: none;
  top: 0;
  border-radius: calc(7.5 * var(--length));
}

/* line 491, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button:nth-child(1) {
  background: radial-gradient(circle at 35% 40%, #ffff80 5%, #333 50%), radial-gradient(circle at 65% 40%, #ffff80 5%, #333 50%), #030;
}

/* line 494, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button:nth-child(2) {
  background: radial-gradient(circle at 35% 40%, #ffff80 5%, #333 50%), radial-gradient(circle at 65% 40%, #ffff80 5%, #333 50%), #950e29;
}

/* line 497, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button::before {
  font-family: "Odor Mean Chey", serif;
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  left: 0;
  color: #fff;
  text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px 0px 0 #000, 0px 1px 0 #000, -1px 0px 0 #000, 0px -1px 0 #000;
  display: grid;
  place-content: center;
}

/* line 509, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button:nth-child(1)::before {
  content: "SPIN";
  bottom: var(--btn-bottom);
  left: calc(-0.5 * var(--length));
  background: radial-gradient(circle at 27.5%, #ffff80 5%, #333 50%), radial-gradient(circle at 72.5%, #ffff80 5%, #333 50%), #008000;
}

/* line 515, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .button-container button:nth-child(2)::before {
  content: "STOP";
  bottom: var(--btn-bottom);
  left: calc(0.5 * var(--length));
  background: radial-gradient(circle at 27.5%, #ffff80 5%, #333 50%), radial-gradient(circle at 72.5%, #ffff80 5%, #333 50%), #db143c;
}

/* line 521, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .slot-machine-footer {
  position: absolute;
  width: 100%;
  height: 150%;
  background: #120330;
  transform-origin: top;
  transform: translateY(100%) rotateX(-30deg);
  bottom: 0;
}

/* line 530, app/assets/stylesheets/front/4-components/_jackpot.scss */
.slot-machine-bottom .slot-machine-footer .casino-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 100%;
  /* height: 50%; */
  display: grid;
  place-content: center;
  font-family: "Odor Mean Chey", serif;
  display: grid;
  place-content: center;
  color: #d3342e;
  font-size: calc(7.5 * var(--length));
  font-weight: bolder;
  letter-spacing: calc(0.75 * var(--length));
  background: radial-gradient(circle at 25%, #ffff80 5%, #333 50%), radial-gradient(circle at 75%, #ffff80 5%, #333 50%), conic-gradient(#fbbb32 25deg, #fde168 25deg 60deg, #fbbb32 60deg 80deg, #fde168 80deg 95deg, #fbbb32 95deg 115deg, #fde168 115deg 140deg, #fbbb32 140deg 190deg, #fde168 190deg 225deg, #fbbb32 225deg 250deg, #fde168 250deg 265deg, #fbbb32 265deg 280deg, #fde168 280deg 295deg, #fbbb32 295deg 315deg, #fde168 315deg 340deg, #fbbb32 340deg);
  border-radius: var(--radius);
}

/* line 2, app/assets/stylesheets/front/4-components/_forms.scss */
.sms-sub-modal__form legend {
  display: none;
}

/* line 6, app/assets/stylesheets/front/4-components/_forms.scss */
.sms-sub-modal__form fieldset.form-group {
  margin-left: 1rem;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  /* line 12, app/assets/stylesheets/front/4-components/_forms.scss */
  .sms-sub-modal__form fieldset.form-group {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  /* line 18, app/assets/stylesheets/front/4-components/_forms.scss */
  .sms-sub-modal__form .form-check-label {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
  }
  /* line 22, app/assets/stylesheets/front/4-components/_forms.scss */
  .sms-sub-modal__form .form-check {
    position: relative;
    left: 1rem;
    width: 100%;
    flex: 0 0 auto;
    width: 50%;
    padding-right: 1rem;
  }
  /* line 29, app/assets/stylesheets/front/4-components/_forms.scss */
  .sms-sub-modal__form .form-check:only-of-type {
    flex: 0 0 auto;
    width: 100%;
  }
  /* line 32, app/assets/stylesheets/front/4-components/_forms.scss */
  .sms-sub-modal__form .form-check:only-of-type .form-check-label {
    white-space: normal;
  }
}

/* line 1, app/assets/stylesheets/front/4-components/_carousel.scss */
.carousel-item img {
  max-width: 100%;
}

/* line 5, app/assets/stylesheets/front/4-components/_carousel.scss */
.carousel-indicators {
  position: static;
}

/* line 2, app/assets/stylesheets/front/4-components/_banners.scss */
.banners__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
}

@media (max-width: 767.98px) {
  /* line 10, app/assets/stylesheets/front/4-components/_banners.scss */
  .banners__row {
    flex-direction: column;
  }
}

/* line 16, app/assets/stylesheets/front/4-components/_banners.scss */
.banner {
  min-width: 50%;
}

/* line 20, app/assets/stylesheets/front/4-components/_banners.scss */
.banner--ad {
  text-align: center;
  margin-right: .75rem;
  margin-left: .75rem;
}

/* line 26, app/assets/stylesheets/front/4-components/_banners.scss */
.banner--large {
  max-width: none;
}

/* line 30, app/assets/stylesheets/front/4-components/_banners.scss */
.banner__link {
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  text-decoration: none;
}

/* line 35, app/assets/stylesheets/front/4-components/_banners.scss */
.banner__link:hover {
  text-decoration: none;
  text-shadow: 1px 1px 2px #009FE3;
}

/* line 41, app/assets/stylesheets/front/4-components/_banners.scss */
.banner__btn {
  min-width: 11rem;
}

@media (max-width: 575.98px) {
  /* line 46, app/assets/stylesheets/front/4-components/_banners.scss */
  .banner__ticket {
    font-size: 1.5em;
  }
}

/* line 2, app/assets/stylesheets/front/4-components/_catalogs.scss */
.catalogs .card {
  border: none;
}

/* line 2, app/assets/stylesheets/front/4-components/_offers.scss */
.offers .card {
  border: none;
}

/* line 2, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__notice {
  font-weight: bold;
  color: #365d99;
  font-size: 18px;
  text-align: center;
  margin: 2rem;
}

/* line 10, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph {
  position: relative;
  text-align: center;
}

/* line 14, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph svg {
  max-width: 100%;
}

/* line 17, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph svg .circle {
  stroke: #d7dfeb;
}

/* line 20, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph svg .arc {
  stroke: #365d99;
}

/* line 25, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 35, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph__content__label, .last_winners__graph__content__value {
  text-align: center;
  font-weight: bold;
  color: #365d99;
  font-size: 18px;
}

/* line 42, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__graph__content__value {
  font-size: 40px;
}

/* line 48, app/assets/stylesheets/front/4-components/_last_winners.scss */
.last_winners__ad {
  display: inline-block;
  border: 1px solid #efefef;
  padding: 5px;
}

/* line 2, app/assets/stylesheets/front/4-components/_outro.scss */
.outro-main {
  overflow: hidden;
}

/* line 6, app/assets/stylesheets/front/4-components/_outro.scss */
.outro-main__deco::before, .outro-main__deco::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 90%;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: center;
  z-index: 0;
}

/* line 20, app/assets/stylesheets/front/4-components/_outro.scss */
.outro-main__deco::before {
  background-image: url(/assets/tickets-euros-right-864e0e70fea6c81f672f6fb67675f067975cf86cdcd9977ac711c382cefbfef6.png);
  left: -2.5rem;
  background-position-x: right;
}

/* line 26, app/assets/stylesheets/front/4-components/_outro.scss */
.outro-main__deco::after {
  background-image: url(/assets/tickets-euros-left-fbafc98493884cc1afd458d60975077b6b7cdcf3d366b78756e4922dae862a22.png);
  right: -2.5rem;
}

/* line 31, app/assets/stylesheets/front/4-components/_outro.scss */
.outro-main__content {
  position: relative;
  z-index: 1;
}

/* line 1, app/assets/stylesheets/front/4-components/_footer.scss */
.footer {
  box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

@media (min-width: 480px) {
  /* line 6, app/assets/stylesheets/front/4-components/_footer.scss */
  .footer__item:before {
    content: "-";
  }
}

@media (max-width: 479.98px) {
  /* line 4, app/assets/stylesheets/front/4-components/_footer.scss */
  .footer__item {
    display: block;
    width: 100%;
  }
}

/* line 17, app/assets/stylesheets/front/4-components/_footer.scss */
.footer__link:hover, .footer__link:focus {
  text-decoration: underline;
}

/* line 2, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table {
  width: 100%;
  margin-bottom: 1rem;
}

/* line 6, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table th {
  padding: .25rem !important;
  text-align: center;
}

/* line 9, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table th:first-child {
  background: #1076c1;
  color: white;
}

/* line 15, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table td {
  position: relative;
  padding: .25rem !important;
  height: 100%;
}

/* line 20, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table td::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.25rem;
  width: 100%;
  border-bottom: .5rem solid #ececec;
}

/* line 30, app/assets/stylesheets/front/4-components/_gifts.scss */
.gifts__table td:first-child::after {
  border-color: #1076c1;
}

@media (max-width: 767.98px) {
  /* line 36, app/assets/stylesheets/front/4-components/_gifts.scss */
  .gifts__table img {
    display: none;
  }
  /* line 40, app/assets/stylesheets/front/4-components/_gifts.scss */
  .gifts__table td {
    text-align: center;
  }
}

/* line 1, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar_home {
  background-size: cover;
  padding: 4rem 3rem 3rem;
}

/* line 5, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar_home__title {
  text-transform: uppercase;
  font-size: 3em;
  margin-bottom: 2rem;
  font-weight: 900;
}

/* line 12, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar_home__content {
  max-width: 500px;
  margin-bottom: 2rem;
}

/* line 19, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__table {
  display: -webkit-grid;
  display: grid;
  -webkit-grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 50rem;
  margin: auto;
}

@media (max-width: 767.98px) {
  /* line 19, app/assets/stylesheets/front/4-components/_calendar.scss */
  .calendar__table {
    -webkit-grid-template-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575.98px) {
  /* line 19, app/assets/stylesheets/front/4-components/_calendar.scss */
  .calendar__table {
    -webkit-grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 479.98px) {
  /* line 19, app/assets/stylesheets/front/4-components/_calendar.scss */
  .calendar__table {
    -webkit-grid-template-columns: repeat(2, 1fr);
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 44, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell {
  aspect-ratio: 1;
  pointer-events: none;
  position: relative;
  background: #fff;
}

/* line 50, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell img {
  max-width: 100%;
}

/* line 54, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell > * {
  opacity: .5;
}

/* line 58, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell.discoverable, .calendar__cell.filler {
  pointer-events: auto;
}

/* line 60, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell.discoverable > *, .calendar__cell.filler > * {
  opacity: 1;
}

/* line 65, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell a, .calendar__cell a:hover {
  color: inherit;
}

/* line 69, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar__cell a:visited {
  filter: grayscale(50%);
}

/* line 75, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar-date {
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10vmin;
  font-weight: bold;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1em;
}

/* line 90, app/assets/stylesheets/front/4-components/_calendar.scss */
.calendar-date__month {
  font-size: 35%;
}

@media (max-width: 479.98px) {
  /* line 90, app/assets/stylesheets/front/4-components/_calendar.scss */
  .calendar-date__month {
    font-size: 50%;
  }
}

@media (max-width: 991.98px) {
  /* line 2, app/assets/stylesheets/front/4-components/_modals.scss */
  .sms-sub-modal__dialog {
    max-width: 100%;
  }
}

@media (min-width: 480px) and (max-width: 991.98px) {
  /* line 2, app/assets/stylesheets/front/4-components/_modals.scss */
  .sms-sub-modal__dialog {
    margin: 1rem;
  }
}

/***/
/*
 * 5-PAGES
 */
/* line 2, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry hr {
  width: 50%;
}

/* line 6, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry .form-check-input:checked {
  background-color: #f2582a;
  border-color: #f2582a;
}

/* line 11, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry [class*='btn-outline-'] {
  border-width: 2px;
}

/* line 15, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry .btn-danger {
  color: #fff;
}

/* line 19, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry .btn-outline-danger:hover {
  color: #fff;
}

/* line 23, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__ad {
  display: inline-block;
  border: 1px solid #efefef;
  padding: 5px;
}

/* line 33, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__sign_in, .game_entry__notice, .game_entry__form {
  padding: 0 1.5rem;
}

/* line 39, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__sign_in {
  text-align: center;
  flex: 1 0 auto;
}

/* line 43, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__sign_in__label {
  font-weight: bold;
  margin-bottom: 1rem;
}

/* line 47, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__sign_in__actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-around;
}

/* line 53, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__sign_in__actions .btn {
  flex: 1 1 50%;
}

/* line 59, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__label {
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

/* line 66, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__form__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: end;
}

/* line 75, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__footer {
  background: #132d77;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-radius: 5px;
}

/* line 85, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__footer p {
  margin: 0;
}

/* line 91, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__inner {
  padding: 5rem 8rem;
}

/* line 95, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__title {
  margin: 1rem auto;
  transform: skew(-5deg, -5deg);
}

/* line 99, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__title h1, .game_entry__loto__title .h1 {
  text-transform: uppercase;
  font-size: 28px;
}

/* line 104, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__title h2, .game_entry__loto__title .h2 {
  font-size: 18px;
}

/* line 109, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__row {
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

/* line 117, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__wheel__row {
  align-items: center;
}

/* line 120, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__wheel__row .col {
  text-align: center;
  z-index: 2;
}

/* line 124, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__wheel__row .col.blue {
  margin-left: -30%;
  border-radius: 40px;
  padding: 3rem 2rem;
  padding-left: 35%;
  z-index: 0;
  background: #F18827;
  color: #fff;
  position: relative;
}

/* line 139, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__row {
  align-items: center;
}

/* line 142, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__row .col {
  text-align: center;
}

/* line 145, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__row .col.blue {
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 3rem 2rem;
  background: #F18827;
  color: #fff;
  position: relative;
}

/* line 156, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids {
  background: #009FE3;
  color: #fff;
  padding: 1rem;
}

/* line 162, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids table {
  border-spacing: 1rem;
  border-collapse: initial;
  width: 100%;
}

/* line 167, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids table td {
  background: #fff;
  color: #009FE3;
  font-size: 20px;
  line-height: 25px;
  height: 0;
  border-radius: 6px;
}

/* line 175, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids table td::after, .game_entry__loto__grids table td::before {
  content: '';
  display: block;
  padding-bottom: calc(50% - 0.5em);
}

/* line 184, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids__bonus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #64d0ff;
}

/* line 191, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids__bonus table {
  width: 60%;
}

/* line 193, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__grids__bonus table td {
  color: #F18827;
}

/* line 199, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__numbers {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* line 207, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__number {
  background: #fff;
  color: #009FE3;
  font-size: 20px;
  line-height: 25px;
  height: 40px;
  width: 40px;
  padding: 8px;
  border-radius: 6px;
}

/* line 217, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__loto__number.extra_grid {
  color: #fff;
  background: #009FE3;
}

/* line 225, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__question {
  color: #F18827;
  margin-bottom: 2rem;
}

/* line 230, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__counter {
  color: #F18827;
  font-weight: bold;
  font-size: 20px;
}

/* line 235, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__answers {
  margin-bottom: 1rem;
}

/* line 238, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__answer {
  margin-bottom: 0.5rem;
}

/* line 241, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__answer input {
  display: none;
}

/* line 245, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__answer input + label {
  display: block;
  padding: 0.7rem 1rem;
  background: #efefef;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
}

/* line 254, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
.game_entry__quizz__answer input:checked + label {
  background: #F18827;
  color: #fff;
}

@media (max-width: 1199.98px) {
  /* line 263, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__grids {
    padding: 0.5rem;
  }
  /* line 266, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__grids table {
    border-spacing: 0.5rem;
  }
}

@media (max-width: 991.98px) {
  /* line 274, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__sign_in, .game_entry__notice, .game_entry__form {
    padding: 0 1rem;
  }
  /* line 281, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__sign_in__actions {
    flex-direction: column;
  }
  /* line 287, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__form__actions {
    flex-direction: column-reverse;
  }
  /* line 292, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__footer {
    flex-direction: column;
  }
  /* line 295, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__footer p {
    margin-bottom: 1rem;
  }
  /* line 301, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__inner {
    padding: 2rem 3rem;
  }
  /* line 305, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__row {
    flex-direction: column;
  }
  /* line 314, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__row .col.blue, .game_entry__wheel__row .col.blue {
    margin: 0;
    padding: 1rem 2rem;
  }
  /* line 323, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__row .col.blue {
    border-top-right-radius: 0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}

@media (max-width: 767.98px) {
  /* line 333, app/assets/stylesheets/front/5-pages/_game_entry_new.scss */
  .game_entry__loto__inner {
    padding: 1rem;
  }
}

@media (max-width: 991.98px) {
  /* line 3, app/assets/stylesheets/front/5-pages/_game_entry_discovery.scss */
  .game_discovery__row {
    flex-direction: column;
  }
  /* line 5, app/assets/stylesheets/front/5-pages/_game_entry_discovery.scss */
  .game_discovery__row .col.blue {
    padding: 0 2rem 1rem 2rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}

/* line 16, app/assets/stylesheets/front/5-pages/_game_entry_discovery.scss */
.scratchcard__wrapper {
  border-radius: 3.5rem;
  overflow: hidden;
}

/* line 2, app/assets/stylesheets/front/5-pages/_dotations.scss */
.dotations {
  min-height: 100%;
}

/* line 5, app/assets/stylesheets/front/5-pages/_dotations.scss */
.dotations__inner {
  min-height: inherit;
}

@media (min-width: 768px) {
  /* line 11, app/assets/stylesheets/front/5-pages/_dotations.scss */
  .dotations__list-item:nth-child(odd) .dotation {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  /* line 28, app/assets/stylesheets/front/5-pages/_dotations.scss */
  .dotation__img {
    max-width: 50%;
  }
}

/* line 40, app/assets/stylesheets/front/5-pages/_dotations.scss */
.dotation__img, .dotation__desc {
  margin-left: auto;
  margin-right: auto;
}

/***/
