@charset "UTF-8";
/***
Spectrum Colorpicker v1.8.0
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans: 300,400,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans: 300,400,600,700,800,900");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans: 300,400,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Nunito+Sans: 300,400,600,700,800,900");
/* line 8, vendor/assets/stylesheets/spectrum.css */
.sp-container {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  /* https://github.com/bgrins/spectrum/issues/40 */
  z-index: 9999994;
  overflow: hidden;
}

/* line 19, vendor/assets/stylesheets/spectrum.css */
.sp-container.sp-flat {
  position: relative;
}

/* Fix for * { box-sizing: border-box; } */
/* line 24, vendor/assets/stylesheets/spectrum.css */
.sp-container,
.sp-container * {
  box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
/* line 32, vendor/assets/stylesheets/spectrum.css */
.sp-top {
  position: relative;
  width: 100%;
  display: inline-block;
}

/* line 37, vendor/assets/stylesheets/spectrum.css */
.sp-top-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 44, vendor/assets/stylesheets/spectrum.css */
.sp-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 20%;
}

/* line 51, vendor/assets/stylesheets/spectrum.css */
.sp-hue {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 100%;
}

/* line 60, vendor/assets/stylesheets/spectrum.css */
.sp-clear-enabled .sp-hue {
  top: 33px;
  height: 77.5%;
}

/* line 65, vendor/assets/stylesheets/spectrum.css */
.sp-fill {
  padding-top: 80%;
}

/* line 68, vendor/assets/stylesheets/spectrum.css */
.sp-sat, .sp-val {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* line 76, vendor/assets/stylesheets/spectrum.css */
.sp-alpha-enabled .sp-top {
  margin-bottom: 18px;
}

/* line 79, vendor/assets/stylesheets/spectrum.css */
.sp-alpha-enabled .sp-alpha {
  display: block;
}

/* line 82, vendor/assets/stylesheets/spectrum.css */
.sp-alpha-handle {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 6px;
  left: 50%;
  cursor: pointer;
  border: 1px solid black;
  background: white;
  opacity: .8;
}

/* line 93, vendor/assets/stylesheets/spectrum.css */
.sp-alpha {
  display: none;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  height: 8px;
}

/* line 101, vendor/assets/stylesheets/spectrum.css */
.sp-alpha-inner {
  border: solid 1px #333;
}

/* line 105, vendor/assets/stylesheets/spectrum.css */
.sp-clear {
  display: none;
}

/* line 109, vendor/assets/stylesheets/spectrum.css */
.sp-clear.sp-clear-display {
  background-position: center;
}

/* line 113, vendor/assets/stylesheets/spectrum.css */
.sp-clear-enabled .sp-clear {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 28px;
}

/* Don't allow text selection */
/* line 124, vendor/assets/stylesheets/spectrum.css */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

/* line 131, vendor/assets/stylesheets/spectrum.css */
.sp-container.sp-input-disabled .sp-input-container {
  display: none;
}

/* line 134, vendor/assets/stylesheets/spectrum.css */
.sp-container.sp-buttons-disabled .sp-button-container {
  display: none;
}

/* line 137, vendor/assets/stylesheets/spectrum.css */
.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
  display: none;
}

/* line 140, vendor/assets/stylesheets/spectrum.css */
.sp-palette-only .sp-picker-container {
  display: none;
}

/* line 143, vendor/assets/stylesheets/spectrum.css */
.sp-palette-disabled .sp-palette-container {
  display: none;
}

/* line 147, vendor/assets/stylesheets/spectrum.css */
.sp-initial-disabled .sp-initial {
  display: none;
}

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
/* line 153, vendor/assets/stylesheets/spectrum.css */
.sp-sat {
  background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr='#FFFFFFFF', endColorstr='#00CC9A81');
}

/* line 163, vendor/assets/stylesheets/spectrum.css */
.sp-val {
  background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00CC9A81', endColorstr='#FF000000');
}

/* line 174, vendor/assets/stylesheets/spectrum.css */
.sp-hue {
  background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
/* line 187, vendor/assets/stylesheets/spectrum.css */
.sp-1 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#ffff00');
}

/* line 191, vendor/assets/stylesheets/spectrum.css */
.sp-2 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff00', endColorstr='#00ff00');
}

/* line 195, vendor/assets/stylesheets/spectrum.css */
.sp-3 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ff00', endColorstr='#00ffff');
}

/* line 199, vendor/assets/stylesheets/spectrum.css */
.sp-4 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffff', endColorstr='#0000ff');
}

/* line 203, vendor/assets/stylesheets/spectrum.css */
.sp-5 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0000ff', endColorstr='#ff00ff');
}

/* line 207, vendor/assets/stylesheets/spectrum.css */
.sp-6 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00ff', endColorstr='#ff0000');
}

/* line 212, vendor/assets/stylesheets/spectrum.css */
.sp-hidden {
  display: none !important;
}

/* Clearfix hack */
/* line 217, vendor/assets/stylesheets/spectrum.css */
.sp-cf:before, .sp-cf:after {
  content: "";
  display: table;
}

/* line 218, vendor/assets/stylesheets/spectrum.css */
.sp-cf:after {
  clear: both;
}

/* line 219, vendor/assets/stylesheets/spectrum.css */
.sp-cf {
  *zoom: 1;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
  /* line 223, vendor/assets/stylesheets/spectrum.css */
  .sp-color {
    right: 40%;
  }
  /* line 224, vendor/assets/stylesheets/spectrum.css */
  .sp-hue {
    left: 63%;
  }
  /* line 225, vendor/assets/stylesheets/spectrum.css */
  .sp-fill {
    padding-top: 60%;
  }
}

/* line 227, vendor/assets/stylesheets/spectrum.css */
.sp-dragger {
  border-radius: 5px;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  background: #000;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 238, vendor/assets/stylesheets/spectrum.css */
.sp-slider {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid #000;
  background: white;
  opacity: .8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/
/* line 256, vendor/assets/stylesheets/spectrum.css */
.sp-container {
  border-radius: 0;
  background-color: #ECECEC;
  border: solid 1px #f0c49B;
  padding: 0;
}

/* line 262, vendor/assets/stylesheets/spectrum.css */
.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
  font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 269, vendor/assets/stylesheets/spectrum.css */
.sp-top {
  margin-bottom: 3px;
}

/* line 272, vendor/assets/stylesheets/spectrum.css */
.sp-color, .sp-hue, .sp-clear {
  border: solid 1px #666;
}

/* Input */
/* line 277, vendor/assets/stylesheets/spectrum.css */
.sp-input-container {
  float: right;
  width: 100px;
  margin-bottom: 4px;
}

/* line 282, vendor/assets/stylesheets/spectrum.css */
.sp-initial-disabled .sp-input-container {
  width: 100%;
}

/* line 285, vendor/assets/stylesheets/spectrum.css */
.sp-input {
  font-size: 12px !important;
  border: 1px inset;
  padding: 4px 5px;
  margin: 0;
  width: 100%;
  background: transparent;
  border-radius: 3px;
  color: #222;
}

/* line 295, vendor/assets/stylesheets/spectrum.css */
.sp-input:focus {
  border: 1px solid orange;
}

/* line 298, vendor/assets/stylesheets/spectrum.css */
.sp-input.sp-validation-error {
  border: 1px solid red;
  background: #fdd;
}

/* line 302, vendor/assets/stylesheets/spectrum.css */
.sp-picker-container, .sp-palette-container {
  float: left;
  position: relative;
  padding: 10px;
  padding-bottom: 300px;
  margin-bottom: -290px;
}

/* line 309, vendor/assets/stylesheets/spectrum.css */
.sp-picker-container {
  width: 172px;
  border-left: solid 1px #fff;
}

/* Palettes */
/* line 315, vendor/assets/stylesheets/spectrum.css */
.sp-palette-container {
  border-right: solid 1px #ccc;
}

/* line 319, vendor/assets/stylesheets/spectrum.css */
.sp-palette-only .sp-palette-container {
  border: 0;
}

/* line 323, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  width: 24px;
  height: 15px;
  margin: 3px;
  cursor: pointer;
  border: solid 2px transparent;
}

/* line 333, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: orange;
}

/* line 336, vendor/assets/stylesheets/spectrum.css */
.sp-thumb-el {
  position: relative;
}

/* Initial */
/* line 341, vendor/assets/stylesheets/spectrum.css */
.sp-initial {
  float: left;
  border: solid 1px #333;
}

/* line 345, vendor/assets/stylesheets/spectrum.css */
.sp-initial span {
  width: 30px;
  height: 25px;
  border: none;
  display: block;
  float: left;
  margin: 0;
}

/* line 354, vendor/assets/stylesheets/spectrum.css */
.sp-initial .sp-clear-display {
  background-position: center;
}

/* Buttons */
/* line 359, vendor/assets/stylesheets/spectrum.css */
.sp-palette-button-container,
.sp-button-container {
  float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
/* line 365, vendor/assets/stylesheets/spectrum.css */
.sp-replacer {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  display: inline-block;
  *zoom: 1;
  *display: inline;
  border: solid 1px #91765d;
  background: #eee;
  color: #333;
  vertical-align: middle;
}

/* line 378, vendor/assets/stylesheets/spectrum.css */
.sp-replacer:hover, .sp-replacer.sp-active {
  border-color: #F0C49B;
  color: #111;
}

/* line 382, vendor/assets/stylesheets/spectrum.css */
.sp-replacer.sp-disabled {
  cursor: default;
  border-color: silver;
  color: silver;
}

/* line 387, vendor/assets/stylesheets/spectrum.css */
.sp-dd {
  padding: 2px 0;
  height: 16px;
  line-height: 16px;
  float: left;
  font-size: 10px;
}

/* line 394, vendor/assets/stylesheets/spectrum.css */
.sp-preview {
  position: relative;
  width: 25px;
  height: 20px;
  border: solid 1px #222;
  margin-right: 5px;
  float: left;
  z-index: 0;
}

/* line 404, vendor/assets/stylesheets/spectrum.css */
.sp-palette {
  *width: 220px;
  max-width: 220px;
}

/* line 408, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-el {
  width: 16px;
  height: 16px;
  margin: 2px 1px;
  border: solid 1px #d0d0d0;
}

/* line 415, vendor/assets/stylesheets/spectrum.css */
.sp-container {
  padding-bottom: 0;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */
/* line 421, vendor/assets/stylesheets/spectrum.css */
.sp-container button {
  background-color: #eeeeee;
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

/* line 439, vendor/assets/stylesheets/spectrum.css */
.sp-container button:hover {
  background-color: #dddddd;
  background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

/* line 451, vendor/assets/stylesheets/spectrum.css */
.sp-container button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}

/* line 460, vendor/assets/stylesheets/spectrum.css */
.sp-cancel {
  font-size: 11px;
  color: #d93f3f !important;
  margin: 0;
  padding: 2px;
  margin-right: 5px;
  vertical-align: middle;
  text-decoration: none;
}

/* line 470, vendor/assets/stylesheets/spectrum.css */
.sp-cancel:hover {
  color: #d93f3f !important;
  text-decoration: underline;
}

/* line 476, vendor/assets/stylesheets/spectrum.css */
.sp-palette span:hover, .sp-palette span.sp-thumb-active {
  border-color: #000;
}

/* line 480, vendor/assets/stylesheets/spectrum.css */
.sp-preview, .sp-alpha, .sp-thumb-el {
  position: relative;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

/* line 484, vendor/assets/stylesheets/spectrum.css */
.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* line 490, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* line 495, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

/* line 499, vendor/assets/stylesheets/spectrum.css */
.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

/* line 503, vendor/assets/stylesheets/spectrum.css */
.sp-clear-display {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

/* jquery.Jcrop.min.css v0.9.12 (build:20130126) */
/* line 2, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-holder {
  direction: ltr;
  text-align: left;
}

/* line 3, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-vline, .jcrop-hline {
  background: #FFF url(http://localhost:3000/assets/Jcrop-b4f7601c7daefef682e753b5f4adc6b83479650c16cfe9f24ef18e72b11590da.gif);
  font-size: 0;
  position: absolute;
}

/* line 4, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-vline {
  height: 100%;
  width: 1px !important;
}

/* line 5, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-vline.right {
  right: 0;
}

/* line 6, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-hline {
  height: 1px !important;
  width: 100%;
}

/* line 7, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-hline.bottom {
  bottom: 0;
}

/* line 8, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-tracker {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  height: 100%;
  width: 100%;
}

/* line 9, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle {
  background-color: #333;
  border: 1px #EEE solid;
  font-size: 1px;
  height: 7px;
  width: 7px;
}

/* line 10, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

/* line 11, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px;
}

/* line 12, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%;
}

/* line 13, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%;
}

/* line 14, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

/* line 15, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0;
}

/* line 16, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0;
}

/* line 17, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px;
}

/* line 18, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-n, .jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%;
}

/* line 19, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-e, .jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px;
}

/* line 20, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-n {
  margin-top: -4px;
}

/* line 21, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}

/* line 22, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}

/* line 23, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dragbar.ord-w {
  margin-left: -4px;
}

/* line 24, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline {
  background: #FFF;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

/* line 25, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000;
  border-color: #FFF;
  border-radius: 3px;
}

/* line 26, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dark .jcrop-vline, .jcrop-dark .jcrop-hline {
  background: #000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

/* line 27, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #FFF;
  border-color: #000;
  border-radius: 3px;
}

/* line 28, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.solid-line .jcrop-vline, .solid-line .jcrop-hline {
  background: #FFF;
}

/* line 29, vendor/assets/stylesheets/jquery.Jcrop.min.css */
.jcrop-holder img, img.jcrop-preview {
  max-width: none;
}

/*!
 * Cropper v3.1.3
 * https://github.com/fengyuanchen/cropper
 *
 * Copyright (c) 2014-2017 Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2017-10-21T10:03:37.133Z
 */
/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-canvas, .cropper-crop-box, .cropper-drag-box, .cropper-modal, .cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-canvas, .cropper-wrap-box {
  overflow: hidden;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-modal {
  background-color: #000;
  opacity: .5;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-view-box {
  display: block;
  height: 100%;
  outline-color: rgba(51, 153, 255, 0.75);
  outline: 1px solid #39f;
  overflow: hidden;
  width: 100%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: .5;
  position: absolute;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: .75;
  position: absolute;
  top: 50%;
  width: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-center:after, .cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-face, .cropper-line, .cropper-point {
  display: block;
  height: 100%;
  opacity: .1;
  position: absolute;
  width: 100%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-line {
  background-color: #39f;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-line.line-e {
  cursor: e-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-line.line-n {
  cursor: n-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-line.line-w {
  cursor: w-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-line.line-s {
  bottom: -3px;
  cursor: s-resize;
  height: 5px;
  left: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: .75;
  width: 5px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-e {
  cursor: e-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-n {
  cursor: n-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-w {
  cursor: w-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-ne {
  cursor: ne-resize;
  right: -3px;
  top: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-nw {
  cursor: nw-resize;
  left: -3px;
  top: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-sw {
  bottom: -3px;
  cursor: sw-resize;
  left: -3px;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-se {
  bottom: -3px;
  cursor: se-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  /* line 9, vendor/assets/stylesheets/cropper.min.css */
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  /* line 9, vendor/assets/stylesheets/cropper.min.css */
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  /* line 9, vendor/assets/stylesheets/cropper.min.css */
  .cropper-point.point-se {
    height: 5px;
    opacity: .75;
    width: 5px;
  }
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-invisible {
  opacity: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-hidden {
  display: none !important;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-move {
  cursor: move;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-crop {
  cursor: crosshair;
}

/* line 9, vendor/assets/stylesheets/cropper.min.css */
.cropper-disabled .cropper-drag-box, .cropper-disabled .cropper-face, .cropper-disabled .cropper-line, .cropper-disabled .cropper-point {
  cursor: not-allowed;
}
/* line 1, vendor/assets/stylesheets/js-graph-it.css */
.draggable {
  position: absolute;
  cursor: move;
  z-index: 1;
}

/* line 8, vendor/assets/stylesheets/js-graph-it.css */
.connector {
  background-color: black;
}

/* line 13, vendor/assets/stylesheets/js-graph-it.css */
.dock_point {
  height: 1px;
  width: 1px;
  overflow: hidden;
  padding: 0px !important;
  border: none !important;
  margin: 0px !important;
  position: absolute;
  font-size: 1px;
  visibility: hidden;
}

/*
 * jQuery File Upload Plugin CSS
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
/* line 13, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload.scss */
.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload.scss */
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  /* line 32, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload.scss */
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}

/*
 * jQuery File Upload UI Plugin CSS
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2010, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */
/* line 13, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-buttonbar .btn,
.fileupload-buttonbar .toggle {
  margin-bottom: 5px;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
.progress-animated .progress-bar,
.progress-animated .bar {
  background: url(http://localhost:3000/assets/progressbar-dc88ed9fbb7d6628821f745bbb396278aabe8b968a64b185f781e31162ce2b4d.gif) !important;
  filter: none;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-process {
  float: right;
  display: none;
}

/* line 26, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
.fileupload-processing .fileupload-process,
.files .processing .preview {
  display: block;
  width: 32px;
  height: 32px;
  background: url(http://localhost:3000/assets/loading-39d2bb36c8a287f69eff60217a8f2572688cd73c89f4132a70c86bd41632d686.gif) center no-repeat;
  background-size: contain;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
.files audio,
.files video {
  max-width: 300px;
}

@media (max-width: 767px) {
  /* line 40, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .fileupload-buttonbar .toggle,
.files .toggle,
.files .btn span {
    display: none;
  }
  /* line 45, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files .name {
    width: 80px;
    word-wrap: break-word;
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files audio,
.files video {
    max-width: 80px;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/jquery-fileupload-rails-1.0.0/app/assets/stylesheets/jquery.fileupload-ui.scss */
  .files img,
.files canvas {
    max-width: 100%;
  }
}

/*@preserve
 * Tempus Dominus Bootstrap4 v5.1.2 (https://tempusdominus.github.io/bootstrap-4/)
 * Copyright 2016-2018 Jonathan Peterson
 * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE)
 */
/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}

@media (min-width: 576px) {
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 768px) {
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}

/* line 66, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

/* line 77, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 82, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  content: "Increment Hours";
}

/* line 86, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  content: "Increment Minutes";
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  content: "Decrement Hours";
}

/* line 90, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  content: "Decrement Minutes";
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  content: "Show Hours";
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  content: "Show Minutes";
}

/* line 96, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  content: "Toggle AM/PM";
}

/* line 98, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  content: "Clear the picker";
}

/* line 100, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  content: "Set the date to today";
}

/* line 102, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}

/* line 106, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 112, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 119, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 127, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 129, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 133, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}

/* line 135, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 139, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #e9ecef;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #6c757d;
}

/* line 150, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 154, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #e9ecef;
  cursor: pointer;
}

/* line 157, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #6c757d;
}

/* line 159, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #007bff;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 171, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 175, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

/* line 189, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span:hover {
  background: #e9ecef;
}

/* line 191, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 195, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.old {
  color: #6c757d;
}

/* line 197, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 201, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 205, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.input-group [data-toggle="datetimepicker"] {
  cursor: pointer;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-button > .vjs-icon-placeholder:before, .vjs-modal-dialog .vjs-modal-dialog-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {
  text-align: center;
}

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder, .vjs-icon-play {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before, .vjs-icon-play:before {
  content: "\f101";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-play-circle:before {
  content: "\f102";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder, .vjs-icon-pause {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before {
  content: "\f103";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder, .vjs-icon-volume-mute {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before, .vjs-icon-volume-mute:before {
  content: "\f104";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder, .vjs-icon-volume-low {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before, .vjs-icon-volume-low:before {
  content: "\f105";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder, .vjs-icon-volume-mid {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before, .vjs-icon-volume-mid:before {
  content: "\f106";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control .vjs-icon-placeholder, .vjs-icon-volume-high {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control .vjs-icon-placeholder:before, .vjs-icon-volume-high:before {
  content: "\f107";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-enter {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-enter:before {
  content: "\f108";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder, .vjs-icon-fullscreen-exit {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before, .vjs-icon-fullscreen-exit:before {
  content: "\f109";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-square {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-square:before {
  content: "\f10a";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-spinner:before {
  content: "\f10b";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-subs-caps-button .vjs-icon-placeholder, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-subtitles {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-subtitles:before {
  content: "\f10c";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder, .vjs-icon-captions {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before, .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before, .vjs-icon-captions:before {
  content: "\f10d";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-chapters-button .vjs-icon-placeholder, .vjs-icon-chapters {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-chapters-button .vjs-icon-placeholder:before, .vjs-icon-chapters:before {
  content: "\f10e";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-share {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-share:before {
  content: "\f10f";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-cog:before {
  content: "\f110";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-progress, .video-js .vjs-volume-level, .vjs-icon-circle, .vjs-seek-to-live-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before, .vjs-icon-circle:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before {
  content: "\f111";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-circle-outline:before {
  content: "\f112";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-circle-inner-circle:before {
  content: "\f113";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-hd:before {
  content: "\f114";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder, .vjs-icon-cancel {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before, .vjs-icon-cancel:before {
  content: "\f115";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder, .vjs-icon-replay {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before, .vjs-icon-replay:before {
  content: "\f116";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-facebook:before {
  content: "\f117";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-gplus:before {
  content: "\f118";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-linkedin:before {
  content: "\f119";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-twitter:before {
  content: "\f11a";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-tumblr:before {
  content: "\f11b";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-pinterest:before {
  content: "\f11c";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-descriptions-button .vjs-icon-placeholder, .vjs-icon-audio-description {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-descriptions-button .vjs-icon-placeholder:before, .vjs-icon-audio-description:before {
  content: "\f11d";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-audio-button .vjs-icon-placeholder, .vjs-icon-audio {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-audio-button .vjs-icon-placeholder:before, .vjs-icon-audio:before {
  content: "\f11e";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-next-item:before {
  content: "\f11f";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-icon-previous-item:before {
  content: "\f120";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-enter {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-enter:before {
  content: "\f121";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder, .vjs-icon-picture-in-picture-exit {
  font-family: VideoJS;
  font-weight: 400;
  font-style: normal;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before, .vjs-icon-picture-in-picture-exit:before {
  content: "\f122";
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  font-family: Arial,Helvetica,sans-serif;
  word-break: initial;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js:-moz-full-screen {
  position: absolute;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js[tabindex="-1"] {
  outline: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js *, .video-js :after, .video-js :before {
  box-sizing: inherit;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-16-9, .video-js.vjs-4-3, .video-js.vjs-fluid {
  width: 100%;
  max-width: 100%;
  height: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-16-9 {
  padding-top: 56.25%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-4-3 {
  padding-top: 75%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-fill {
  width: 100%;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-hidden {
  display: none !important;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-disabled {
  opacity: .5;
  cursor: default;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial,Helvetica,sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0 auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-js a, .vjs-no-js a:visited {
  color: #66a8cc;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: .06666em solid #fff;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: .3em;
  transition: all .4s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -.81666em;
  margin-left: -1.5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-big-play-button:focus, .video-js:hover .vjs-big-play-button {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-controls-disabled .vjs-big-play-button, .vjs-error .vjs-big-play-button, .vjs-has-started .vjs-big-play-button, .vjs-using-native-controls .vjs-big-play-button {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js button {
  background: 0 0;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-control .vjs-button {
  width: 100%;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: .5em;
  z-index: 2;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-modal-dialog > * {
  box-sizing: border-box;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button {
  cursor: pointer;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button.vjs-disabled {
  cursor: default;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial,Helvetica,sans-serif;
  overflow: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: .2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.js-focus-visible .vjs-menu li.vjs-menu-item:hover, .vjs-menu li.vjs-menu-item:focus, .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.js-focus-visible .vjs-menu li.vjs-selected:hover, .vjs-menu li.vjs-selected, .vjs-menu li.vjs-selected:focus, .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2b333f;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 .3em 0;
  font-weight: 700;
  cursor: default;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content, .vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing, .vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-menu-button-inline {
  transition: all .4s;
  overflow: hidden;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-menu-button-inline.vjs-slider-active, .video-js .vjs-menu-button-inline:focus, .video-js .vjs-menu-button-inline:hover, .video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all .4s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-menu-button-inline:focus .vjs-menu, .vjs-menu-button-inline:hover .vjs-menu {
  display: block;
  opacity: 1;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu, .vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
  width: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility .1s,opacity .1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s,opacity 1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-controls-disabled .vjs-control-bar, .vjs-error .vjs-control-bar, .vjs-using-native-controls .vjs-control-bar {
  display: none !important;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control:focus, .video-js .vjs-control:focus:before, .video-js .vjs-control:hover:before {
  text-shadow: 0 0 1em #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-custom-control-spacer {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control.disabled {
  cursor: default;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-live .vjs-progress-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-progress-control {
  width: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-holder {
  flex: auto;
  transition: all .2s;
  height: .3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.6666666667em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-holder .vjs-load-progress, .video-js .vjs-progress-holder .vjs-load-progress div, .video-js .vjs-progress-holder .vjs-play-progress {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-progress {
  background-color: #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-progress:before {
  font-size: .9em;
  position: absolute;
  right: -.5em;
  top: -.3333333333em;
  z-index: 1;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: .3em;
  color: #000;
  float: right;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip, .video-js .vjs-progress-control:hover .vjs-time-tooltip {
  display: block;
  font-size: .6em;
  visibility: visible;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s,opacity 1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 .45em 0 .45em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-slider.disabled {
  cursor: default;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-slider:focus {
  text-shadow: 0 0 1em #fff;
  box-shadow: 0 0 1em #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel {
  transition: width 1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active, .video-js .vjs-volume-panel .vjs-volume-control:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control, .video-js .vjs-volume-panel:active .vjs-volume-control, .video-js .vjs-volume-panel:focus .vjs-volume-control {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: visibility .1s,opacity .1s,height .1s,width .1s,left 0s,top 0s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal, .video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  margin-right: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical, .video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical:active, .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical, .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
  left: -3.5em;
  transition: left 0s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
  width: 10em;
  transition: width .1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
  width: 4em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s,opacity 1s,height 1s 1s,width 1s 1s,left 1s 1s,top 1s 1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s,opacity 1s,height 1s 1s,width 1s,left 1s 1s,top 1s 1s;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical, .video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: .5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel {
  display: flex;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-bar {
  margin: 1.35em .45em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: .3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-volume-bar.vjs-slider-vertical {
  width: .3em;
  height: 5em;
  margin: 1.35em auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-level:before {
  position: absolute;
  font-size: .9em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-slider-vertical .vjs-volume-level {
  width: .3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-slider-vertical .vjs-volume-level:before {
  top: -.5em;
  left: -.3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-slider-horizontal .vjs-volume-level {
  height: .3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-slider-horizontal .vjs-volume-level:before {
  top: -.3em;
  right: -.5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.7);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-has-started .vjs-poster {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-using-native-controls .vjs-poster {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-liveui .vjs-live-control, .video-js:not(.vjs-live) .vjs-live-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-seek-to-live-control {
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: .5em;
  padding-right: .5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control, .video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: .5em;
  color: #888;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-live .vjs-time-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-current-time, .vjs-no-flex .vjs-current-time {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-duration, .vjs-no-flex .vjs-duration {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-time-divider {
  display: none;
  line-height: 3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-live .vjs-time-divider {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control {
  cursor: pointer;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: .1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-subtitles {
  color: #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-captions {
  color: #fc6;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-tt-cue {
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
video::-webkit-media-text-track-display {
  transform: translateY(-3em);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-playback-rate .vjs-playback-rate-value, .vjs-playback-rate > .vjs-menu-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-error .vjs-error-display:before {
  color: #fff;
  content: "X";
  font-family: Arial,Helvetica,sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -.5em;
  position: absolute;
  text-shadow: .05em .05em .1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seeking .vjs-loading-spinner, .vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear .3s forwards;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-loading-spinner:after, .vjs-loading-spinner:before {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seeking .vjs-loading-spinner:after, .vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:before {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seeking .vjs-loading-spinner:before, .vjs-waiting .vjs-loading-spinner:before {
  border-top-color: #fff;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-seeking .vjs-loading-spinner:after, .vjs-waiting .vjs-loading-spinner:after {
  border-top-color: #fff;
  animation-delay: .44s;
}

@keyframes vjs-spinner-show {
  to {
    visibility: visible;
  }
}

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

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f;
  }
  20% {
    border-top-color: #73859f;
  }
  35% {
    border-top-color: #fff;
  }
  60% {
    border-top-color: #73859f;
  }
  100% {
    border-top-color: #73859f;
  }
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-chapters-button .vjs-menu ul {
  width: 24em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -.1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "";
  font-size: 1.5em;
  line-height: inherit;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -.1em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " ";
  font-size: 1.5em;
  line-height: inherit;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-audio-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-captions-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-remaining-time, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-control, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-audio-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-captions-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-remaining-time, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-control, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-audio-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-captions-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-chapters-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-current-time, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-descriptions-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-duration, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-playback-rate, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-remaining-time, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-subtitles-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-time-divider, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:hover, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js.vjs-layout-x-small:not(.vjs-fullscreen) .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
  width: auto;
  width: initial;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-subs-caps-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen):not(.vjs-live) .vjs-subs-caps-button, .video-js.vjs-layout-x-small:not(.vjs-fullscreen):not(.vjs-liveui) .vjs-subs-caps-button {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-custom-control-spacer, .video-js.vjs-layout-x-small.vjs-liveui:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  flex: auto;
  display: block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-tiny.vjs-no-flex:not(.vjs-fullscreen) .vjs-custom-control-spacer, .video-js.vjs-layout-x-small.vjs-liveui.vjs-no-flex:not(.vjs-fullscreen) .vjs-custom-control-spacer {
  width: auto;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js.vjs-layout-tiny:not(.vjs-fullscreen) .vjs-progress-control, .video-js.vjs-layout-x-small.vjs-liveui:not(.vjs-fullscreen) .vjs-progress-control {
  display: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2b333f;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings .vjs-track-settings-colors, .vjs-text-track-settings .vjs-track-settings-controls, .vjs-text-track-settings .vjs-track-settings-font {
  display: table-cell;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom;
}

@supports (display: grid) {
  /* line 1, vendor/assets/stylesheets/video-js.min.css */
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0 24px;
  }
  /* line 1, vendor/assets/stylesheets/video-js.min.css */
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px;
  }
  /* line 1, vendor/assets/stylesheets/video-js.min.css */
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1/-1;
  }
  /* line 1, vendor/assets/stylesheets/video-js.min.css */
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content, .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr;
  }
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: .5em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings fieldset span {
  display: inline-block;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-track-settings-controls button:active, .vjs-track-settings-controls button:focus {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75);
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2b333f;
  cursor: pointer;
  border-radius: 2px;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em;
}

@media print {
  /* line 1, vendor/assets/stylesheets/video-js.min.css */
  .video-js > :not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden;
  }
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.js-focus-visible .video-js :focus:not(.focus-visible) {
  outline: 0;
  background: 0 0;
}

/* line 1, vendor/assets/stylesheets/video-js.min.css */
.video-js .vjs-menu :focus:not(:focus-visible), .video-js :focus:not(:focus-visible) {
  outline: 0;
  background: 0 0;
}

/* Master CSS / SCSS Files Directory -------------------------------------------------------------------------------- */
/* 0) Bootstrap and accessories ------------------------------------------------------------------------------------- */
/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_root.scss */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[tabindex="-1"]:focus {
  outline: 0 !important;
}

/* line 83, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 109, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 121, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

/* line 129, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 135, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 142, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 149, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
dt {
  font-weight: 700;
}

/* line 153, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 162, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
dfn {
  font-style: italic;
}

/* line 167, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
b,
strong {
  font-weight: bolder;
}

/* line 173, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
small {
  font-size: 80%;
}

/* line 182, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 190, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sub {
  bottom: -.25em;
}

/* line 191, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
sup {
  top: -.5em;
}

/* line 198, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* line 216, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

/* line 225, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* line 235, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

/* line 243, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* line 260, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
figure {
  margin: 0 0 1rem;
}

/* line 270, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
img {
  vertical-align: middle;
  border-style: none;
}

/* line 275, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 287, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
table {
  border-collapse: collapse;
}

/* line 291, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

/* line 299, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
th {
  text-align: inherit;
}

/* line 310, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 319, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button {
  border-radius: 0;
}

/* line 327, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 332, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 343, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button,
input {
  overflow: visible;
}

/* line 348, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button,
select {
  text-transform: none;
}

/* line 356, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 364, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 372, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 379, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

/* line 391, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
textarea {
  overflow: auto;
  resize: vertical;
}

/* line 397, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 412, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 424, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
progress {
  vertical-align: baseline;
}

/* line 429, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 434, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 447, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 457, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 466, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
output {
  display: inline-block;
}

/* line 470, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 475, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
template {
  display: none;
}

/* line 481, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_reboot.scss */
[hidden] {
  display: none !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h1, .h1 {
  font-size: 2.5rem;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h2, .h2 {
  font-size: 2rem;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h3, .h3 {
  font-size: 1.75rem;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h4, .h4 {
  font-size: 1.5rem;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h5, .h5 {
  font-size: 1.25rem;
}

/* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
h6, .h6 {
  font-size: 1rem;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
small,
.small {
  font-size: 80%;
  font-weight: 400;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 89, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item {
  display: inline-block;
}

/* line 95, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 106, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 112, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 117, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_type.scss */
.blockquote-footer::before {
  content: "\2014 \00A0";
}

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

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

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

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_images.scss */
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

/* line 2, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

/* line 8, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
a > code {
  color: inherit;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
  .container {
    max-width: 1140px;
  }
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_grid.scss */
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 8, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-first {
  order: -1;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-last {
  order: 13;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-0 {
  order: 0;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-1 {
  order: 1;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-2 {
  order: 2;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-3 {
  order: 3;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-4 {
  order: 4;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-5 {
  order: 5;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-6 {
  order: 6;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-7 {
  order: 7;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-8 {
  order: 8;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-9 {
  order: 9;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-10 {
  order: 10;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-11 {
  order: 11;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.order-12 {
  order: 12;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-1 {
  margin-left: 8.3333333333%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-2 {
  margin-left: 16.6666666667%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-3 {
  margin-left: 25%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-4 {
  margin-left: 33.3333333333%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-5 {
  margin-left: 41.6666666667%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-6 {
  margin-left: 50%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-7 {
  margin-left: 58.3333333333%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-8 {
  margin-left: 66.6666666667%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-9 {
  margin-left: 75%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-10 {
  margin-left: 83.3333333333%;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-first {
    order: -1;
  }
  /* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-last {
    order: 13;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-0 {
    order: 0;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-1 {
    order: 1;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-2 {
    order: 2;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-3 {
    order: 3;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-4 {
    order: 4;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-5 {
    order: 5;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-6 {
    order: 6;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-7 {
    order: 7;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-8 {
    order: 8;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-9 {
    order: 9;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-10 {
    order: 10;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-11 {
    order: 11;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-sm-12 {
    order: 12;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-first {
    order: -1;
  }
  /* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-last {
    order: 13;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-0 {
    order: 0;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-1 {
    order: 1;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-2 {
    order: 2;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-3 {
    order: 3;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-4 {
    order: 4;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-5 {
    order: 5;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-6 {
    order: 6;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-7 {
    order: 7;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-8 {
    order: 8;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-9 {
    order: 9;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-10 {
    order: 10;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-11 {
    order: 11;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-md-12 {
    order: 12;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-first {
    order: -1;
  }
  /* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-last {
    order: 13;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-0 {
    order: 0;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-1 {
    order: 1;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-2 {
    order: 2;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-3 {
    order: 3;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-4 {
    order: 4;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-5 {
    order: 5;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-6 {
    order: 6;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-7 {
    order: 7;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-8 {
    order: 8;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-9 {
    order: 9;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-10 {
    order: 10;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-11 {
    order: 11;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-lg-12 {
    order: 12;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-first {
    order: -1;
  }
  /* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-last {
    order: 13;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-0 {
    order: 0;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-1 {
    order: 1;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-2 {
    order: 2;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-3 {
    order: 3;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-4 {
    order: 4;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-5 {
    order: 5;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-6 {
    order: 6;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-7 {
    order: 7;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-8 {
    order: 8;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-9 {
    order: 9;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-10 {
    order: 10;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-11 {
    order: 11;
  }
  /* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .order-xl-12 {
    order: 12;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  /* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table .table {
  background-color: #fff;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered {
  border: 1px solid #dee2e6;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

/* line 65, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

/* line 78, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-info:hover {
  background-color: #abdde5;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-light:hover {
  background-color: #ececf6;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_table-row.scss */
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

/* line 124, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 132, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-dark {
  color: #fff;
  background-color: #212529;
}

/* line 136, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

/* line 142, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-dark.table-bordered {
  border: 0;
}

/* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  /* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

/* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tables.scss */
.table-responsive > .table-bordered {
  border: 0;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-control {
    transition: none;
  }
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 61, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

/* line 86, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 101, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 114, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

/* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 149, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 159, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
select.form-control[size], select.form-control[multiple] {
  height: auto;
}

/* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 175, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-group {
  margin-bottom: 1rem;
}

/* line 179, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 189, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 195, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 207, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

/* line 213, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

/* line 218, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

/* line 223, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check-label {
  margin-bottom: 0;
}

/* line 227, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

/* line 234, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}

/* line 58, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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: #28a745;
}

/* line 83, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 91, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}

/* line 110, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 120, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}

/* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 131, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

/* line 58, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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: #dc3545;
}

/* line 83, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 91, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

/* line 110, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 120, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}

/* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 131, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_forms.scss */
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* line 262, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 270, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 276, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  /* line 284, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  /* line 293, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 300, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  /* line 304, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  /* line 311, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  /* line 318, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  /* line 325, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  /* line 329, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_forms.scss */
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
  .btn {
    transition: none;
  }
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn:hover, .btn:focus {
  text-decoration: none;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary.active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.active:not(:disabled):not(.disabled):focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary.active:not(:disabled):not(.disabled), .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary.active:not(:disabled):not(.disabled):focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active, .btn-success.active:not(:disabled):not(.disabled), .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success.active:not(:disabled):not(.disabled):focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active, .btn-info.active:not(:disabled):not(.disabled), .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info.active:not(:disabled):not(.disabled):focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning.active:not(:disabled):not(.disabled), .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning.active:not(:disabled):not(.disabled):focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger.active:not(:disabled):not(.disabled), .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger.active:not(:disabled):not(.disabled):focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active, .btn-light.active:not(:disabled):not(.disabled), .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light.active:not(:disabled):not(.disabled):focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark.active:not(:disabled):not(.disabled), .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark.active:not(:disabled):not(.disabled):focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.active:not(:disabled):not(.disabled), .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary.active:not(:disabled):not(.disabled), .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success.active:not(:disabled):not(.disabled), .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info.active:not(:disabled):not(.disabled), .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning.active:not(:disabled):not(.disabled), .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger.active:not(:disabled):not(.disabled), .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light.active:not(:disabled):not(.disabled), .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark.active:not(:disabled):not(.disabled), .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark.active:not(:disabled):not(.disabled):focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 117, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 131, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 140, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_buttons.scss */
input.btn-block[type="submit"],
input.btn-block[type="reset"],
input.btn-block[type="button"] {
  width: 100%;
}

/* line 3, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.fade {
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 3, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
  .fade {
    transition: none;
  }
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.fade:not(.show) {
  opacity: 0;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.collapse:not(.show) {
  display: none;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_transitions.scss */
  .collapsing {
    transition: none;
  }
}

/* line 2, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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 62, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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 62, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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 62, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: none;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  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 62, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_caret.scss */
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 93, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* line 111, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 129, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

/* line 136, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

/* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-menu.show {
  display: block;
}

/* line 152, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* line 162, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_dropdown.scss */
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 85, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 90, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 95, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 117, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}

/* line 127, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 136, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

/* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_button-group.scss */
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

/* line 24, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file {
  display: flex;
  align-items: center;
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 68, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend,
.input-group-append {
  display: flex;
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-prepend {
  margin-right: -1px;
}

/* line 89, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-append {
  margin-left: -1px;
}

/* line 97, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

/* line 125, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 157, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 166, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_input-group.scss */
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

/* line 64, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

/* line 107, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}

/* line 117, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

/* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

/* line 142, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

/* line 151, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

/* line 164, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 183, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}

/* line 192, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 203, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

/* line 210, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

/* line 216, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select::-ms-expand {
  opacity: 0;
}

/* line 221, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

/* line 228, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

/* line 240, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

/* line 248, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

/* line 256, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 260, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}

/* line 265, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

/* line 270, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/* line 276, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 291, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* line 315, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* line 321, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus {
  outline: none;
}

/* line 326, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 327, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 328, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 331, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-focus-outer {
  border: 0;
}

/* line 335, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  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 screen and (prefers-reduced-motion: reduce) {
  /* line 335, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

/* line 346, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

/* line 351, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 362, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  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 screen and (prefers-reduced-motion: reduce) {
  /* line 362, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

/* line 372, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

/* line 377, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

/* line 388, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 388, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

/* line 401, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

/* line 406, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

/* line 417, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 422, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 429, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 429, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_custom-forms.scss */
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

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

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-link.disabled {
  color: #6c757d;
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

/* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-item {
  margin-bottom: -1px;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

/* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

/* line 54, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 61, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 75, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link {
  border-radius: 0.25rem;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 112, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 115, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_nav.scss */
.tab-content > .active {
  display: block;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

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

/* line 68, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* line 108, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

/* line 121, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 128, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  /* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  /* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

/* line 147, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

/* line 158, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 172, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

/* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 199, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 208, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

/* line 215, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 220, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

/* line 228, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 233, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 237, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 239, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 251, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-brand {
  color: #fff;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

/* line 260, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

/* line 267, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 272, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

/* line 280, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 285, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* line 289, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 291, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_navbar.scss */
.navbar-dark .navbar-text a {
  color: #fff;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-title {
  margin-bottom: 0.75rem;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.card-link:hover {
  text-decoration: none;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 68, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

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

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

/* line 85, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

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

/* line 100, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 107, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

/* line 128, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 133, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-deck {
  display: flex;
  flex-direction: column;
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 154, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* line 171, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-group {
  display: flex;
  flex-direction: column;
}

/* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 171, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group {
    flex-flow: row wrap;
  }
  /* line 185, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  /* line 190, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 197, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 200, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:first-child .card-img-top,
.card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  /* line 204, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:first-child .card-img-bottom,
.card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  /* line 210, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 213, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:last-child .card-img-top,
.card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  /* line 217, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:last-child .card-img-bottom,
.card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  /* line 223, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  /* line 226, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:only-child .card-img-top,
.card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  /* line 230, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:only-child .card-img-bottom,
.card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  /* line 236, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  /* line 239, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

/* line 257, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 256, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  /* line 267, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 280, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

/* line 286, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

/* line 291, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 297, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_card.scss */
.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_breadcrumb.scss */
.breadcrumb-item.active {
  color: #6c757d;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_pagination.scss */
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_pagination.scss */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge:empty {
  display: none;
}

/* line 24, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-primary {
  color: #fff;
  background-color: #007bff;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-success {
  color: #fff;
  background-color: #28a745;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_badge.scss */
.badge-dark {
  color: #fff;
  background-color: #343a40;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  /* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_jumbotron.scss */
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_jumbotron.scss */
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-heading {
  color: inherit;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-link {
  font-weight: 700;
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible {
  padding-right: 4rem;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-primary hr {
  border-top-color: #9fcdff;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-primary .alert-link {
  color: #002752;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-secondary hr {
  border-top-color: #c8cbcf;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-secondary .alert-link {
  color: #202326;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-success hr {
  border-top-color: #b1dfbb;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-success .alert-link {
  color: #0b2e13;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-info hr {
  border-top-color: #abdde5;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-info .alert-link {
  color: #062c33;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-warning hr {
  border-top-color: #ffe8a1;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-warning .alert-link {
  color: #533f03;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-danger hr {
  border-top-color: #f1b0b7;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-danger .alert-link {
  color: #491217;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-light hr {
  border-top-color: #ececf6;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-light .alert-link {
  color: #686868;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_alert.scss */
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-dark hr {
  border-top-color: #b9bbbe;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_alert.scss */
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_progress.scss */
  .progress-bar {
    transition: none;
  }
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_progress.scss */
.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_media.scss */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_media.scss */
.media-body {
  flex: 1;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 56, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

/* line 66, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

/* line 95, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

/* line 101, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_list-group.scss */
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_list-group.scss */
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_close.scss */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_close.scss */
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_close.scss */
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-open {
  overflow: hidden;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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 84, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 95, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 100, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

/* line 108, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

/* line 132, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

/* line 140, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 156, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  /* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  /* line 164, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  /* line 174, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 179, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_modal.scss */
  .modal-lg {
    max-width: 800px;
  }
}

/* line 2, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip.show {
  opacity: 0.9;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 54, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

/* line 62, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 65, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 68, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

/* line 76, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_tooltip.scss */
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

/* line 108, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.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, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

/* line 61, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

/* line 64, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

/* line 76, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 81, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

/* line 90, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

/* line 110, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

/* line 125, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 132, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 142, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

/* line 165, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 175, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-header:empty {
  display: none;
}

/* line 180, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_popover.scss */
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel {
  position: relative;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  perspective: 1000px;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    transition: none;
  }
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  /* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}

@supports (transform-style: preserve-3d) {
  /* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item-next,
.active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}

/* line 61, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}

@supports (transform-style: preserve-3d) {
  /* line 61, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-item-prev,
.active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}

/* line 76, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

/* line 82, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

/* line 93, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {
  /* line 93, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
  .carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}

/* line 111, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

/* line 135, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev {
  left: 0;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next {
  right: 0;
}

/* line 149, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

/* line 157, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

/* line 160, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* line 170, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 184, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

/* line 196, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 205, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

/* line 216, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-indicators .active {
  background-color: #fff;
}

/* line 226, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_carousel.scss */
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* line 3, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-top {
  vertical-align: top !important;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 8, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_align.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #007bff !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-secondary {
  background-color: #6c757d !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #28a745 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #17a2b8 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #ffc107 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #dc3545 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-light {
  background-color: #f8f9fa !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_background-variant.scss */
.bg-dark {
  background-color: #343a40 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_background.scss */
.bg-white {
  background-color: #fff !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_background.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 8, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 9, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-left {
  border-left: 1px solid #dee2e6 !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-0 {
  border: 0 !important;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-right-0 {
  border-right: 0 !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-left-0 {
  border-left: 0 !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-primary {
  border-color: #007bff !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-secondary {
  border-color: #6c757d !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-success {
  border-color: #28a745 !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-info {
  border-color: #17a2b8 !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-warning {
  border-color: #ffc107 !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-danger {
  border-color: #dc3545 !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-light {
  border-color: #f8f9fa !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-dark {
  border-color: #343a40 !important;
}

/* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.border-white {
  border-color: #fff !important;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_borders.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 2, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-none {
  display: none !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline {
  display: inline !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-block {
  display: block !important;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table {
  display: table !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table-row {
  display: table-row !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-flex {
  display: flex !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-none {
    display: none !important;
  }
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline {
    display: inline !important;
  }
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-block {
    display: block !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table {
    display: table !important;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-flex {
    display: flex !important;
  }
  /* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_display.scss */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

/* line 3, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive::before {
  display: block;
  content: "";
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_embed.scss */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-center {
  align-items: center !important;
}

/* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-center {
  align-content: center !important;
}

/* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-center {
  align-self: center !important;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 26, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 27, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 32, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 40, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 41, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 45, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 46, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 47, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_flex.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-left {
  float: left !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-right {
  float: right !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-left {
    float: left !important;
  }
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-right {
    float: right !important;
  }
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-left {
    float: left !important;
  }
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-right {
    float: right !important;
  }
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-left {
    float: left !important;
  }
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-right {
    float: right !important;
  }
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-left {
    float: left !important;
  }
  /* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-right {
    float: right !important;
  }
  /* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_float.scss */
  .float-xl-none {
    float: none !important;
  }
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-static {
  position: static !important;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-relative {
  position: relative !important;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-absolute {
  position: absolute !important;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-fixed {
  position: fixed !important;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.position-sticky {
  position: sticky !important;
}

/* line 15, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_position.scss */
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_screenreaders.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 24, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_screen-reader.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* line 3, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_shadows.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-25 {
  width: 25% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-50 {
  width: 50% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-75 {
  width: 75% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-100 {
  width: 100% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.w-auto {
  width: auto !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-25 {
  height: 25% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-50 {
  height: 50% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-75 {
  height: 75% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-100 {
  height: 100% !important;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.h-auto {
  height: auto !important;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_sizing.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-0 {
  margin: 0 !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-0 {
  padding: 0 !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.m-auto {
  margin: auto !important;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 16, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }
  /* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }
  /* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 39, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_spacing.scss */
  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 11, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-justify {
  text-align: justify !important;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-left {
  text-align: left !important;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-right {
  text-align: right !important;
}

/* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-left {
    text-align: left !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-right {
    text-align: right !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-left {
    text-align: left !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-right {
    text-align: right !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-left {
    text-align: left !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-right {
    text-align: right !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 21, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-left {
    text-align: left !important;
  }
  /* line 22, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-right {
    text-align: right !important;
  }
  /* line 23, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

/* line 29, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 30, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 35, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-normal {
  font-weight: 400 !important;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-weight-bold {
  font-weight: 700 !important;
}

/* line 38, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.font-italic {
  font-style: italic !important;
}

/* line 42, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-white {
  color: #fff !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #007bff !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-secondary {
  color: #6c757d !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #28a745 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #17a2b8 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #ffc107 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #dc3545 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-light {
  color: #f8f9fa !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

/* line 6, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss */
.text-dark {
  color: #343a40 !important;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/mixins/_hover.scss */
a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

/* line 48, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-body {
  color: #212529 !important;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-muted {
  color: #6c757d !important;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 56, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_text.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 5, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_visibility.scss */
.visible {
  visibility: visible !important;
}

/* line 9, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/utilities/_visibility.scss */
.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 13, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 24, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  a:not(.btn) {
    text-decoration: underline;
  }
  /* line 34, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /* line 49, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  pre {
    white-space: pre-wrap !important;
  }
  /* line 52, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  /* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 67, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  tr,
img {
    page-break-inside: avoid;
  }
  /* line 72, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 79, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  h2,
h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  /* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  body {
    min-width: 992px !important;
  }
  /* line 95, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .container {
    min-width: 992px !important;
  }
  /* line 100, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .navbar {
    display: none;
  }
  /* line 103, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .badge {
    border: 1px solid #000;
  }
  /* line 107, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 110, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table td,
.table th {
    background-color: #fff !important;
  }
  /* line 117, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  /* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table-dark {
    color: inherit;
  }
  /* line 126, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  /* line 134, .bundle/cache/ruby/3.4.0/gems/bootstrap-4.1.3/assets/stylesheets/bootstrap/_print.scss */
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-basic.css */
.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-basic.css */
.tether-element {
  position: absolute;
  display: none;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-basic.css */
.tether-element.tether-open {
  display: block;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-basic.css */
.tether-element.tether-theme-basic {
  max-width: 100%;
  max-height: 100%;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-basic.css */
.tether-element.tether-theme-basic .tether-content {
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: inherit;
  background: #fff;
  color: inherit;
  padding: 1em;
  font-size: 1.1em;
  line-height: 1.5em;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element {
  position: absolute;
  display: none;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-open {
  display: block;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows {
  max-width: 100%;
  max-height: 100%;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows .tether-content {
  border-radius: 5px;
  position: relative;
  font-family: inherit;
  background: #fff;
  color: inherit;
  padding: 1em;
  font-size: 1.1em;
  line-height: 1.5em;
  transform: translateZ(0);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

/* line 26, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows .tether-content:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-width: 16px;
  border-style: solid;
}

/* line 35, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content {
  margin-bottom: 16px;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-center .tether-content:before {
  top: 100%;
  left: 50%;
  margin-left: -16px;
  border-top-color: #fff;
  border-bottom: 0;
}

/* line 43, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content {
  margin-top: 16px;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-center .tether-content:before {
  bottom: 100%;
  left: 50%;
  margin-left: -16px;
  border-bottom-color: #fff;
  border-top: 0;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content {
  margin-right: 16px;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-right.tether-element-attached-middle .tether-content:before {
  left: 100%;
  top: 50%;
  margin-top: -16px;
  border-left-color: #fff;
  border-right: 0;
}

/* line 59, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content {
  margin-left: 16px;
}

/* line 61, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-left.tether-element-attached-middle .tether-content:before {
  right: 100%;
  top: 50%;
  margin-top: -16px;
  border-right-color: #fff;
  border-left: 0;
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-left.tether-target-attached-center .tether-content {
  left: -32px;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-right.tether-target-attached-center .tether-content {
  left: 32px;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content {
  margin-top: 16px;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
  bottom: 100%;
  left: 16px;
  border-bottom-color: #fff;
  border-top: 0;
}

/* line 78, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content {
  margin-top: 16px;
}

/* line 80, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
  bottom: 100%;
  right: 16px;
  border-bottom-color: #fff;
  border-top: 0;
}

/* line 85, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content {
  margin-bottom: 16px;
}

/* line 87, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
  top: 100%;
  left: 16px;
  border-top-color: #fff;
  border-bottom: 0;
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content {
  margin-bottom: 16px;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
  top: 100%;
  right: 16px;
  border-top-color: #fff;
  border-bottom: 0;
}

/* line 99, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content {
  margin-top: 16px;
}

/* line 101, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before {
  bottom: 100%;
  left: 16px;
  border-bottom-color: #fff;
  border-top: 0;
}

/* line 106, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content {
  margin-top: 16px;
}

/* line 108, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before {
  bottom: 100%;
  right: 16px;
  border-bottom-color: #fff;
  border-top: 0;
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content {
  margin-bottom: 16px;
}

/* line 115, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before {
  top: 100%;
  left: 16px;
  border-top-color: #fff;
  border-bottom: 0;
}

/* line 120, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content {
  margin-bottom: 16px;
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before {
  top: 100%;
  right: 16px;
  border-top-color: #fff;
  border-bottom: 0;
}

/* line 127, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content {
  margin-right: 16px;
}

/* line 129, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before {
  top: 16px;
  left: 100%;
  border-left-color: #fff;
  border-right: 0;
}

/* line 134, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content {
  margin-left: 16px;
}

/* line 136, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before {
  top: 16px;
  right: 100%;
  border-right-color: #fff;
  border-left: 0;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content {
  margin-right: 16px;
}

/* line 143, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before {
  bottom: 16px;
  left: 100%;
  border-left-color: #fff;
  border-right: 0;
}

/* line 148, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content {
  margin-left: 16px;
}

/* line 150, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows.css */
.tether-element.tether-theme-arrows.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before {
  bottom: 16px;
  right: 100%;
  border-right-color: #fff;
  border-left: 0;
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element, .tether-element:after, .tether-element:before, .tether-element *, .tether-element *:after, .tether-element *:before {
  box-sizing: border-box;
}

/* line 4, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element {
  position: absolute;
  display: none;
}

/* line 7, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-open {
  display: block;
}

/* line 10, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark {
  max-width: 100%;
  max-height: 100%;
}

/* line 13, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark .tether-content {
  border-radius: 5px;
  position: relative;
  font-family: inherit;
  background: #000;
  color: #fff;
  padding: 1em;
  font-size: 1.1em;
  line-height: 1.5em;
}

/* line 22, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark .tether-content:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-width: 16px;
  border-style: solid;
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content {
  margin-bottom: 16px;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-center .tether-content:before {
  top: 100%;
  left: 50%;
  margin-left: -16px;
  border-top-color: #000;
  border-bottom: 0;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content {
  margin-top: 16px;
}

/* line 41, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-center .tether-content:before {
  bottom: 100%;
  left: 50%;
  margin-left: -16px;
  border-bottom-color: #000;
  border-top: 0;
}

/* line 47, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content {
  margin-right: 16px;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-element-attached-middle .tether-content:before {
  left: 100%;
  top: 50%;
  margin-top: -16px;
  border-left-color: #000;
  border-right: 0;
}

/* line 55, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content {
  margin-left: 16px;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-element-attached-middle .tether-content:before {
  right: 100%;
  top: 50%;
  margin-top: -16px;
  border-right-color: #000;
  border-left: 0;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-left.tether-target-attached-center .tether-content {
  left: -32px;
}

/* line 65, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-right.tether-target-attached-center .tether-content {
  left: 32px;
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content {
  margin-top: 16px;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
  bottom: 100%;
  left: 16px;
  border-bottom-color: #000;
  border-top: 0;
}

/* line 74, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content {
  margin-top: 16px;
}

/* line 76, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
  bottom: 100%;
  right: 16px;
  border-bottom-color: #000;
  border-top: 0;
}

/* line 81, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content {
  margin-bottom: 16px;
}

/* line 83, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-middle .tether-content:before {
  top: 100%;
  left: 16px;
  border-top-color: #000;
  border-bottom: 0;
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content {
  margin-bottom: 16px;
}

/* line 90, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-middle .tether-content:before {
  top: 100%;
  right: 16px;
  border-top-color: #000;
  border-bottom: 0;
}

/* line 95, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content {
  margin-top: 16px;
}

/* line 97, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-bottom .tether-content:before {
  bottom: 100%;
  left: 16px;
  border-bottom-color: #000;
  border-top: 0;
}

/* line 102, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content {
  margin-top: 16px;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-bottom .tether-content:before {
  bottom: 100%;
  right: 16px;
  border-bottom-color: #000;
  border-top: 0;
}

/* line 109, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content {
  margin-bottom: 16px;
}

/* line 111, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-top .tether-content:before {
  top: 100%;
  left: 16px;
  border-top-color: #000;
  border-bottom: 0;
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content {
  margin-bottom: 16px;
}

/* line 118, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-top .tether-content:before {
  top: 100%;
  right: 16px;
  border-top-color: #000;
  border-bottom: 0;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content {
  margin-right: 16px;
}

/* line 125, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-right.tether-target-attached-left .tether-content:before {
  top: 16px;
  left: 100%;
  border-left-color: #000;
  border-right: 0;
}

/* line 130, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content {
  margin-left: 16px;
}

/* line 132, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-top.tether-element-attached-left.tether-target-attached-right .tether-content:before {
  top: 16px;
  right: 100%;
  border-right-color: #000;
  border-left: 0;
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content {
  margin-right: 16px;
}

/* line 139, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-right.tether-target-attached-left .tether-content:before {
  bottom: 16px;
  left: 100%;
  border-left-color: #000;
  border-right: 0;
}

/* line 144, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content {
  margin-left: 16px;
}

/* line 146, .bundle/cache/ruby/3.4.0/gems/tether-rails-1.4.0/vendor/assets/stylesheets/tether-theme-arrows-dark.css */
.tether-element.tether-theme-arrows-dark.tether-element-attached-bottom.tether-element-attached-left.tether-target-attached-right .tether-content:before {
  bottom: 16px;
  right: 100%;
  border-right-color: #000;
  border-left: 0;
}

/*@preserve
 * Tempus Dominus Bootstrap4 v5.1.2 (https://tempusdominus.github.io/bootstrap-4/)
 * Copyright 2016-2018 Jonathan Peterson
 * Licensed under MIT (https://github.com/tempusdominus/bootstrap-3/blob/master/LICENSE)
 */
/* line 7, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.sr-only, .bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after, .bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after, .bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after, .bootstrap-datetimepicker-widget .btn[data-action="clear"]::after, .bootstrap-datetimepicker-widget .btn[data-action="today"]::after, .bootstrap-datetimepicker-widget .picker-switch::after, .bootstrap-datetimepicker-widget table th.prev::after, .bootstrap-datetimepicker-widget table th.next::after {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 17, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget {
  list-style: none;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 14rem;
}

@media (min-width: 576px) {
  /* line 25, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 768px) {
  /* line 28, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

@media (min-width: 992px) {
  /* line 31, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
    width: 38em;
  }
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu:before, .bootstrap-datetimepicker-widget.dropdown-menu:after {
  content: '';
  display: inline-block;
  position: absolute;
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  top: -7px;
  left: 7px;
}

/* line 44, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  top: -6px;
  left: 8px;
}

/* line 50, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  bottom: -7px;
  left: 6px;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
  bottom: -6px;
  left: 7px;
}

/* line 63, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
  left: auto;
  right: 6px;
}

/* line 66, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
  left: auto;
  right: 7px;
}

/* line 69, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.dropdown-menu.wider {
  width: 16rem;
}

/* line 71, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .list-unstyled {
  margin: 0;
}

/* line 73, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action] {
  padding: 6px 0;
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget a[data-action]:active {
  box-shadow: none;
}

/* line 77, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .timepicker-hour, .bootstrap-datetimepicker-widget .timepicker-minute, .bootstrap-datetimepicker-widget .timepicker-second {
  width: 54px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}

/* line 82, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 6px;
}

/* line 84, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
  content: "Increment Hours";
}

/* line 86, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
  content: "Increment Minutes";
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
  content: "Decrement Hours";
}

/* line 90, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
  content: "Decrement Minutes";
}

/* line 92, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
  content: "Show Hours";
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
  content: "Show Minutes";
}

/* line 96, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
  content: "Toggle AM/PM";
}

/* line 98, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
  content: "Clear the picker";
}

/* line 100, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
  content: "Set the date to today";
}

/* line 102, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch::after {
  content: "Toggle Date and Time Screens";
}

/* line 106, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  line-height: inherit;
}

/* line 112, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget .picker-switch td span {
  line-height: 2.5;
  height: 2.5em;
  width: 100%;
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}

/* line 119, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border-radius: 0.25rem;
}

/* line 123, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 127, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}

/* line 129, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 133, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "Previous Month";
}

/* line 135, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table th.next::after {
  content: "Next Month";
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}

/* line 139, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #e9ecef;
}

/* line 141, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td {
  height: 54px;
  line-height: 54px;
  width: 54px;
}

/* line 145, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.cw {
  font-size: .8em;
  height: 20px;
  line-height: 20px;
  color: #6c757d;
}

/* line 150, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day {
  height: 20px;
  line-height: 20px;
  width: 20px;
}

/* line 154, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #e9ecef;
  cursor: pointer;
}

/* line 157, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #6c757d;
}

/* line 159, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today {
  position: relative;
}

/* line 161, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.today:before {
  content: '';
  display: inline-block;
  border: solid transparent;
  border-width: 0 0 7px 7px;
  border-bottom-color: #007bff;
  border-top-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* line 171, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 175, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.active.today:before {
  border-bottom-color: #fff;
}

/* line 177, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 181, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  margin: 2px 1.5px;
  cursor: pointer;
  border-radius: 0.25rem;
}

/* line 189, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span:hover {
  background: #e9ecef;
}

/* line 191, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #007bff;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 195, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.old {
  color: #6c757d;
}

/* line 197, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget table td span.disabled, .bootstrap-datetimepicker-widget table td span.disabled:hover {
  background: none;
  color: #6c757d;
  cursor: not-allowed;
}

/* line 201, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
  height: 27px;
  line-height: 27px;
}

/* line 205, .bundle/cache/ruby/3.4.0/gems/bootstrap4-datetime-picker-rails-0.3.1/vendor/assets/stylesheets/tempusdominus-bootstrap-4.css */
.input-group [data-toggle="datetimepicker"] {
  cursor: pointer;
}

/* 1) Font Awesome Icons -------------------------------------------------------------------------------------------- */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("http://localhost:3000/assets/fontawesome-webfont-f2b6582c6a604efee7faee12edcaee749e02c39efabc724e47623d80bada1f90.eot");
  src: url("http://localhost:3000/assets/fontawesome-webfont-f2b6582c6a604efee7faee12edcaee749e02c39efabc724e47623d80bada1f90.eot?#iefix") format("embedded-opentype"), url("http://localhost:3000/assets/fontawesome-webfont-84e45737ae2e55563bbcfaef55f42ae809597f8ef6eb864694bebffb8981c9b7.woff2") format("woff2"), url("http://localhost:3000/assets/fontawesome-webfont-8ec4524b2c90577d411e79b6a0c629157d2a7eda3982964bb6eab87477e4afe2.woff") format("woff"), url("http://localhost:3000/assets/fontawesome-webfont-30bc847ccbb81e37562cf2989b9f2d208e078a4c1a81eb2a5a0627c12f68ae28.ttf") format("truetype"), url("http://localhost:3000/assets/fontawesome-webfont-a97381711a2c9e3c018e4ac1987833428e3e50412b7d7b8eed56a09a58510600.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 19, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
/* line 28, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

/* line 33, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-2x {
  font-size: 2em;
}

/* line 36, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-3x {
  font-size: 3em;
}

/* line 39, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-4x {
  font-size: 4em;
}

/* line 42, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-5x {
  font-size: 5em;
}

/* line 45, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

/* line 49, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

/* line 54, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ul > li {
  position: relative;
}

/* line 57, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

/* line 64, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-li.fa-lg {
  left: -1.85714286em;
}

/* line 67, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

/* line 72, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-left {
  float: left;
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pull-right {
  float: right;
}

/* line 78, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-left {
  margin-right: .3em;
}

/* line 81, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
/* line 85, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-right {
  float: right;
}

/* line 88, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.pull-left {
  float: left;
}

/* line 91, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-left {
  margin-right: .3em;
}

/* line 94, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa.pull-right {
  margin-left: .3em;
}

/* line 97, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

/* line 101, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

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

/* line 125, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

/* line 131, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

/* line 143, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

/* line 149, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

/* line 155, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

/* line 162, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

/* line 170, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 177, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-1x {
  line-height: inherit;
}

/* line 180, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-2x {
  font-size: 2em;
}

/* line 183, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* line 188, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glass:before {
  content: "\f000";
}

/* line 191, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-music:before {
  content: "\f001";
}

/* line 194, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search:before {
  content: "\f002";
}

/* line 197, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-o:before {
  content: "\f003";
}

/* line 200, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart:before {
  content: "\f004";
}

/* line 203, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star:before {
  content: "\f005";
}

/* line 206, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-o:before {
  content: "\f006";
}

/* line 209, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user:before {
  content: "\f007";
}

/* line 212, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-film:before {
  content: "\f008";
}

/* line 215, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-large:before {
  content: "\f009";
}

/* line 218, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th:before {
  content: "\f00a";
}

/* line 221, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-th-list:before {
  content: "\f00b";
}

/* line 224, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check:before {
  content: "\f00c";
}

/* line 227, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

/* line 232, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-plus:before {
  content: "\f00e";
}

/* line 235, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-search-minus:before {
  content: "\f010";
}

/* line 238, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-power-off:before {
  content: "\f011";
}

/* line 241, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signal:before {
  content: "\f012";
}

/* line 244, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

/* line 248, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash-o:before {
  content: "\f014";
}

/* line 251, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-home:before {
  content: "\f015";
}

/* line 254, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-o:before {
  content: "\f016";
}

/* line 257, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clock-o:before {
  content: "\f017";
}

/* line 260, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-road:before {
  content: "\f018";
}

/* line 263, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-download:before {
  content: "\f019";
}

/* line 266, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

/* line 269, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

/* line 272, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-inbox:before {
  content: "\f01c";
}

/* line 275, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle-o:before {
  content: "\f01d";
}

/* line 278, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

/* line 282, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-refresh:before {
  content: "\f021";
}

/* line 285, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-alt:before {
  content: "\f022";
}

/* line 288, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lock:before {
  content: "\f023";
}

/* line 291, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag:before {
  content: "\f024";
}

/* line 294, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-headphones:before {
  content: "\f025";
}

/* line 297, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-off:before {
  content: "\f026";
}

/* line 300, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-down:before {
  content: "\f027";
}

/* line 303, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-up:before {
  content: "\f028";
}

/* line 306, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qrcode:before {
  content: "\f029";
}

/* line 309, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-barcode:before {
  content: "\f02a";
}

/* line 312, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tag:before {
  content: "\f02b";
}

/* line 315, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tags:before {
  content: "\f02c";
}

/* line 318, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-book:before {
  content: "\f02d";
}

/* line 321, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark:before {
  content: "\f02e";
}

/* line 324, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-print:before {
  content: "\f02f";
}

/* line 327, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera:before {
  content: "\f030";
}

/* line 330, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-font:before {
  content: "\f031";
}

/* line 333, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bold:before {
  content: "\f032";
}

/* line 336, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-italic:before {
  content: "\f033";
}

/* line 339, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-height:before {
  content: "\f034";
}

/* line 342, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-text-width:before {
  content: "\f035";
}

/* line 345, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-left:before {
  content: "\f036";
}

/* line 348, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-center:before {
  content: "\f037";
}

/* line 351, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-right:before {
  content: "\f038";
}

/* line 354, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-align-justify:before {
  content: "\f039";
}

/* line 357, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list:before {
  content: "\f03a";
}

/* line 360, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

/* line 364, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-indent:before {
  content: "\f03c";
}

/* line 367, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-video-camera:before {
  content: "\f03d";
}

/* line 370, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

/* line 375, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil:before {
  content: "\f040";
}

/* line 378, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-marker:before {
  content: "\f041";
}

/* line 381, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adjust:before {
  content: "\f042";
}

/* line 384, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tint:before {
  content: "\f043";
}

/* line 387, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

/* line 391, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square-o:before {
  content: "\f045";
}

/* line 394, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square-o:before {
  content: "\f046";
}

/* line 397, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows:before {
  content: "\f047";
}

/* line 400, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-backward:before {
  content: "\f048";
}

/* line 403, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-backward:before {
  content: "\f049";
}

/* line 406, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-backward:before {
  content: "\f04a";
}

/* line 409, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play:before {
  content: "\f04b";
}

/* line 412, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause:before {
  content: "\f04c";
}

/* line 415, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop:before {
  content: "\f04d";
}

/* line 418, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forward:before {
  content: "\f04e";
}

/* line 421, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fast-forward:before {
  content: "\f050";
}

/* line 424, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-step-forward:before {
  content: "\f051";
}

/* line 427, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eject:before {
  content: "\f052";
}

/* line 430, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-left:before {
  content: "\f053";
}

/* line 433, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-right:before {
  content: "\f054";
}

/* line 436, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-circle:before {
  content: "\f055";
}

/* line 439, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-circle:before {
  content: "\f056";
}

/* line 442, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle:before {
  content: "\f057";
}

/* line 445, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle:before {
  content: "\f058";
}

/* line 448, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle:before {
  content: "\f059";
}

/* line 451, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info-circle:before {
  content: "\f05a";
}

/* line 454, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crosshairs:before {
  content: "\f05b";
}

/* line 457, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-circle-o:before {
  content: "\f05c";
}

/* line 460, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-circle-o:before {
  content: "\f05d";
}

/* line 463, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ban:before {
  content: "\f05e";
}

/* line 466, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-left:before {
  content: "\f060";
}

/* line 469, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-right:before {
  content: "\f061";
}

/* line 472, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-up:before {
  content: "\f062";
}

/* line 475, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-down:before {
  content: "\f063";
}

/* line 478, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

/* line 482, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expand:before {
  content: "\f065";
}

/* line 485, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compress:before {
  content: "\f066";
}

/* line 488, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus:before {
  content: "\f067";
}

/* line 491, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus:before {
  content: "\f068";
}

/* line 494, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asterisk:before {
  content: "\f069";
}

/* line 497, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* line 500, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gift:before {
  content: "\f06b";
}

/* line 503, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leaf:before {
  content: "\f06c";
}

/* line 506, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire:before {
  content: "\f06d";
}

/* line 509, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye:before {
  content: "\f06e";
}

/* line 512, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eye-slash:before {
  content: "\f070";
}

/* line 515, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

/* line 519, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plane:before {
  content: "\f072";
}

/* line 522, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar:before {
  content: "\f073";
}

/* line 525, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-random:before {
  content: "\f074";
}

/* line 528, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment:before {
  content: "\f075";
}

/* line 531, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magnet:before {
  content: "\f076";
}

/* line 534, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-up:before {
  content: "\f077";
}

/* line 537, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-down:before {
  content: "\f078";
}

/* line 540, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-retweet:before {
  content: "\f079";
}

/* line 543, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-cart:before {
  content: "\f07a";
}

/* line 546, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder:before {
  content: "\f07b";
}

/* line 549, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open:before {
  content: "\f07c";
}

/* line 552, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-v:before {
  content: "\f07d";
}

/* line 555, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-h:before {
  content: "\f07e";
}

/* line 558, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

/* line 562, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter-square:before {
  content: "\f081";
}

/* line 565, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-square:before {
  content: "\f082";
}

/* line 568, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-camera-retro:before {
  content: "\f083";
}

/* line 571, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-key:before {
  content: "\f084";
}

/* line 574, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

/* line 578, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments:before {
  content: "\f086";
}

/* line 581, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-up:before {
  content: "\f087";
}

/* line 584, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-o-down:before {
  content: "\f088";
}

/* line 587, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half:before {
  content: "\f089";
}

/* line 590, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heart-o:before {
  content: "\f08a";
}

/* line 593, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-out:before {
  content: "\f08b";
}

/* line 596, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin-square:before {
  content: "\f08c";
}

/* line 599, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumb-tack:before {
  content: "\f08d";
}

/* line 602, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link:before {
  content: "\f08e";
}

/* line 605, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sign-in:before {
  content: "\f090";
}

/* line 608, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trophy:before {
  content: "\f091";
}

/* line 611, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-square:before {
  content: "\f092";
}

/* line 614, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-upload:before {
  content: "\f093";
}

/* line 617, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lemon-o:before {
  content: "\f094";
}

/* line 620, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone:before {
  content: "\f095";
}

/* line 623, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square-o:before {
  content: "\f096";
}

/* line 626, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bookmark-o:before {
  content: "\f097";
}

/* line 629, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-phone-square:before {
  content: "\f098";
}

/* line 632, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitter:before {
  content: "\f099";
}

/* line 635, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

/* line 639, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github:before {
  content: "\f09b";
}

/* line 642, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock:before {
  content: "\f09c";
}

/* line 645, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card:before {
  content: "\f09d";
}

/* line 648, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

/* line 652, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hdd-o:before {
  content: "\f0a0";
}

/* line 655, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullhorn:before {
  content: "\f0a1";
}

/* line 658, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell:before {
  content: "\f0f3";
}

/* line 661, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-certificate:before {
  content: "\f0a3";
}

/* line 664, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-right:before {
  content: "\f0a4";
}

/* line 667, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-left:before {
  content: "\f0a5";
}

/* line 670, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-up:before {
  content: "\f0a6";
}

/* line 673, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-o-down:before {
  content: "\f0a7";
}

/* line 676, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-left:before {
  content: "\f0a8";
}

/* line 679, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-right:before {
  content: "\f0a9";
}

/* line 682, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-up:before {
  content: "\f0aa";
}

/* line 685, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-down:before {
  content: "\f0ab";
}

/* line 688, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-globe:before {
  content: "\f0ac";
}

/* line 691, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wrench:before {
  content: "\f0ad";
}

/* line 694, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tasks:before {
  content: "\f0ae";
}

/* line 697, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-filter:before {
  content: "\f0b0";
}

/* line 700, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-briefcase:before {
  content: "\f0b1";
}

/* line 703, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrows-alt:before {
  content: "\f0b2";
}

/* line 706, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

/* line 710, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

/* line 714, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud:before {
  content: "\f0c2";
}

/* line 717, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flask:before {
  content: "\f0c3";
}

/* line 720, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

/* line 724, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

/* line 728, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paperclip:before {
  content: "\f0c6";
}

/* line 731, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

/* line 735, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-square:before {
  content: "\f0c8";
}

/* line 738, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

/* line 743, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ul:before {
  content: "\f0ca";
}

/* line 746, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-list-ol:before {
  content: "\f0cb";
}

/* line 749, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-strikethrough:before {
  content: "\f0cc";
}

/* line 752, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-underline:before {
  content: "\f0cd";
}

/* line 755, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-table:before {
  content: "\f0ce";
}

/* line 758, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-magic:before {
  content: "\f0d0";
}

/* line 761, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-truck:before {
  content: "\f0d1";
}

/* line 764, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest:before {
  content: "\f0d2";
}

/* line 767, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-square:before {
  content: "\f0d3";
}

/* line 770, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-square:before {
  content: "\f0d4";
}

/* line 773, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus:before {
  content: "\f0d5";
}

/* line 776, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-money:before {
  content: "\f0d6";
}

/* line 779, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-down:before {
  content: "\f0d7";
}

/* line 782, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-up:before {
  content: "\f0d8";
}

/* line 785, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-left:before {
  content: "\f0d9";
}

/* line 788, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-caret-right:before {
  content: "\f0da";
}

/* line 791, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-columns:before {
  content: "\f0db";
}

/* line 794, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

/* line 798, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

/* line 802, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

/* line 806, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope:before {
  content: "\f0e0";
}

/* line 809, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linkedin:before {
  content: "\f0e1";
}

/* line 812, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

/* line 816, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

/* line 820, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

/* line 824, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comment-o:before {
  content: "\f0e5";
}

/* line 827, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-comments-o:before {
  content: "\f0e6";
}

/* line 830, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

/* line 834, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sitemap:before {
  content: "\f0e8";
}

/* line 837, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-umbrella:before {
  content: "\f0e9";
}

/* line 840, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

/* line 844, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lightbulb-o:before {
  content: "\f0eb";
}

/* line 847, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exchange:before {
  content: "\f0ec";
}

/* line 850, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-download:before {
  content: "\f0ed";
}

/* line 853, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cloud-upload:before {
  content: "\f0ee";
}

/* line 856, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-md:before {
  content: "\f0f0";
}

/* line 859, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stethoscope:before {
  content: "\f0f1";
}

/* line 862, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-suitcase:before {
  content: "\f0f2";
}

/* line 865, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-o:before {
  content: "\f0a2";
}

/* line 868, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-coffee:before {
  content: "\f0f4";
}

/* line 871, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cutlery:before {
  content: "\f0f5";
}

/* line 874, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text-o:before {
  content: "\f0f6";
}

/* line 877, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building-o:before {
  content: "\f0f7";
}

/* line 880, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hospital-o:before {
  content: "\f0f8";
}

/* line 883, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ambulance:before {
  content: "\f0f9";
}

/* line 886, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medkit:before {
  content: "\f0fa";
}

/* line 889, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fighter-jet:before {
  content: "\f0fb";
}

/* line 892, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-beer:before {
  content: "\f0fc";
}

/* line 895, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-h-square:before {
  content: "\f0fd";
}

/* line 898, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square:before {
  content: "\f0fe";
}

/* line 901, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-left:before {
  content: "\f100";
}

/* line 904, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-right:before {
  content: "\f101";
}

/* line 907, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-up:before {
  content: "\f102";
}

/* line 910, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-double-down:before {
  content: "\f103";
}

/* line 913, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-left:before {
  content: "\f104";
}

/* line 916, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-right:before {
  content: "\f105";
}

/* line 919, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-up:before {
  content: "\f106";
}

/* line 922, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angle-down:before {
  content: "\f107";
}

/* line 925, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-desktop:before {
  content: "\f108";
}

/* line 928, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-laptop:before {
  content: "\f109";
}

/* line 931, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tablet:before {
  content: "\f10a";
}

/* line 934, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

/* line 938, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o:before {
  content: "\f10c";
}

/* line 941, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-left:before {
  content: "\f10d";
}

/* line 944, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quote-right:before {
  content: "\f10e";
}

/* line 947, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spinner:before {
  content: "\f110";
}

/* line 950, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle:before {
  content: "\f111";
}

/* line 953, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

/* line 957, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-github-alt:before {
  content: "\f113";
}

/* line 960, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-o:before {
  content: "\f114";
}

/* line 963, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-folder-open-o:before {
  content: "\f115";
}

/* line 966, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-smile-o:before {
  content: "\f118";
}

/* line 969, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-frown-o:before {
  content: "\f119";
}

/* line 972, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meh-o:before {
  content: "\f11a";
}

/* line 975, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gamepad:before {
  content: "\f11b";
}

/* line 978, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-keyboard-o:before {
  content: "\f11c";
}

/* line 981, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-o:before {
  content: "\f11d";
}

/* line 984, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flag-checkered:before {
  content: "\f11e";
}

/* line 987, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-terminal:before {
  content: "\f120";
}

/* line 990, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code:before {
  content: "\f121";
}

/* line 993, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

/* line 997, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

/* line 1002, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-location-arrow:before {
  content: "\f124";
}

/* line 1005, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-crop:before {
  content: "\f125";
}

/* line 1008, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-code-fork:before {
  content: "\f126";
}

/* line 1011, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

/* line 1015, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question:before {
  content: "\f128";
}

/* line 1018, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-info:before {
  content: "\f129";
}

/* line 1021, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-exclamation:before {
  content: "\f12a";
}

/* line 1024, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superscript:before {
  content: "\f12b";
}

/* line 1027, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subscript:before {
  content: "\f12c";
}

/* line 1030, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eraser:before {
  content: "\f12d";
}

/* line 1033, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-puzzle-piece:before {
  content: "\f12e";
}

/* line 1036, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone:before {
  content: "\f130";
}

/* line 1039, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microphone-slash:before {
  content: "\f131";
}

/* line 1042, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shield:before {
  content: "\f132";
}

/* line 1045, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-o:before {
  content: "\f133";
}

/* line 1048, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fire-extinguisher:before {
  content: "\f134";
}

/* line 1051, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rocket:before {
  content: "\f135";
}

/* line 1054, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-maxcdn:before {
  content: "\f136";
}

/* line 1057, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-left:before {
  content: "\f137";
}

/* line 1060, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-right:before {
  content: "\f138";
}

/* line 1063, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-up:before {
  content: "\f139";
}

/* line 1066, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chevron-circle-down:before {
  content: "\f13a";
}

/* line 1069, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-html5:before {
  content: "\f13b";
}

/* line 1072, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-css3:before {
  content: "\f13c";
}

/* line 1075, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-anchor:before {
  content: "\f13d";
}

/* line 1078, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-unlock-alt:before {
  content: "\f13e";
}

/* line 1081, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bullseye:before {
  content: "\f140";
}

/* line 1084, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-h:before {
  content: "\f141";
}

/* line 1087, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ellipsis-v:before {
  content: "\f142";
}

/* line 1090, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rss-square:before {
  content: "\f143";
}

/* line 1093, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-play-circle:before {
  content: "\f144";
}

/* line 1096, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ticket:before {
  content: "\f145";
}

/* line 1099, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square:before {
  content: "\f146";
}

/* line 1102, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-minus-square-o:before {
  content: "\f147";
}

/* line 1105, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-up:before {
  content: "\f148";
}

/* line 1108, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-level-down:before {
  content: "\f149";
}

/* line 1111, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-check-square:before {
  content: "\f14a";
}

/* line 1114, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pencil-square:before {
  content: "\f14b";
}

/* line 1117, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-external-link-square:before {
  content: "\f14c";
}

/* line 1120, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-square:before {
  content: "\f14d";
}

/* line 1123, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-compass:before {
  content: "\f14e";
}

/* line 1126, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

/* line 1130, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

/* line 1134, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

/* line 1138, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

/* line 1142, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gbp:before {
  content: "\f154";
}

/* line 1145, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

/* line 1149, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

/* line 1153, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

/* line 1159, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

/* line 1164, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

/* line 1168, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

/* line 1172, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file:before {
  content: "\f15b";
}

/* line 1175, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-text:before {
  content: "\f15c";
}

/* line 1178, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-asc:before {
  content: "\f15d";
}

/* line 1181, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-alpha-desc:before {
  content: "\f15e";
}

/* line 1184, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-asc:before {
  content: "\f160";
}

/* line 1187, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-amount-desc:before {
  content: "\f161";
}

/* line 1190, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-asc:before {
  content: "\f162";
}

/* line 1193, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sort-numeric-desc:before {
  content: "\f163";
}

/* line 1196, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-up:before {
  content: "\f164";
}

/* line 1199, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thumbs-down:before {
  content: "\f165";
}

/* line 1202, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-square:before {
  content: "\f166";
}

/* line 1205, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube:before {
  content: "\f167";
}

/* line 1208, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing:before {
  content: "\f168";
}

/* line 1211, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-xing-square:before {
  content: "\f169";
}

/* line 1214, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-youtube-play:before {
  content: "\f16a";
}

/* line 1217, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dropbox:before {
  content: "\f16b";
}

/* line 1220, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-overflow:before {
  content: "\f16c";
}

/* line 1223, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-instagram:before {
  content: "\f16d";
}

/* line 1226, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-flickr:before {
  content: "\f16e";
}

/* line 1229, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-adn:before {
  content: "\f170";
}

/* line 1232, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket:before {
  content: "\f171";
}

/* line 1235, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bitbucket-square:before {
  content: "\f172";
}

/* line 1238, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr:before {
  content: "\f173";
}

/* line 1241, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tumblr-square:before {
  content: "\f174";
}

/* line 1244, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-down:before {
  content: "\f175";
}

/* line 1247, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-up:before {
  content: "\f176";
}

/* line 1250, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-left:before {
  content: "\f177";
}

/* line 1253, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-long-arrow-right:before {
  content: "\f178";
}

/* line 1256, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-apple:before {
  content: "\f179";
}

/* line 1259, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-windows:before {
  content: "\f17a";
}

/* line 1262, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-android:before {
  content: "\f17b";
}

/* line 1265, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linux:before {
  content: "\f17c";
}

/* line 1268, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dribbble:before {
  content: "\f17d";
}

/* line 1271, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skype:before {
  content: "\f17e";
}

/* line 1274, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-foursquare:before {
  content: "\f180";
}

/* line 1277, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trello:before {
  content: "\f181";
}

/* line 1280, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-female:before {
  content: "\f182";
}

/* line 1283, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-male:before {
  content: "\f183";
}

/* line 1286, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

/* line 1290, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sun-o:before {
  content: "\f185";
}

/* line 1293, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-moon-o:before {
  content: "\f186";
}

/* line 1296, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-archive:before {
  content: "\f187";
}

/* line 1299, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bug:before {
  content: "\f188";
}

/* line 1302, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vk:before {
  content: "\f189";
}

/* line 1305, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-weibo:before {
  content: "\f18a";
}

/* line 1308, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-renren:before {
  content: "\f18b";
}

/* line 1311, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pagelines:before {
  content: "\f18c";
}

/* line 1314, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stack-exchange:before {
  content: "\f18d";
}

/* line 1317, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

/* line 1320, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-arrow-circle-o-left:before {
  content: "\f190";
}

/* line 1323, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

/* line 1327, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dot-circle-o:before {
  content: "\f192";
}

/* line 1330, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair:before {
  content: "\f193";
}

/* line 1333, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo-square:before {
  content: "\f194";
}

/* line 1336, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

/* line 1340, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plus-square-o:before {
  content: "\f196";
}

/* line 1343, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-space-shuttle:before {
  content: "\f197";
}

/* line 1346, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slack:before {
  content: "\f198";
}

/* line 1349, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-square:before {
  content: "\f199";
}

/* line 1352, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wordpress:before {
  content: "\f19a";
}

/* line 1355, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-openid:before {
  content: "\f19b";
}

/* line 1358, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

/* line 1363, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

/* line 1367, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yahoo:before {
  content: "\f19e";
}

/* line 1370, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google:before {
  content: "\f1a0";
}

/* line 1373, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit:before {
  content: "\f1a1";
}

/* line 1376, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-square:before {
  content: "\f1a2";
}

/* line 1379, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

/* line 1382, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stumbleupon:before {
  content: "\f1a4";
}

/* line 1385, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-delicious:before {
  content: "\f1a5";
}

/* line 1388, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-digg:before {
  content: "\f1a6";
}

/* line 1391, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-pp:before {
  content: "\f1a7";
}

/* line 1394, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper-alt:before {
  content: "\f1a8";
}

/* line 1397, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drupal:before {
  content: "\f1a9";
}

/* line 1400, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-joomla:before {
  content: "\f1aa";
}

/* line 1403, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-language:before {
  content: "\f1ab";
}

/* line 1406, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fax:before {
  content: "\f1ac";
}

/* line 1409, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-building:before {
  content: "\f1ad";
}

/* line 1412, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-child:before {
  content: "\f1ae";
}

/* line 1415, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paw:before {
  content: "\f1b0";
}

/* line 1418, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spoon:before {
  content: "\f1b1";
}

/* line 1421, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cube:before {
  content: "\f1b2";
}

/* line 1424, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cubes:before {
  content: "\f1b3";
}

/* line 1427, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance:before {
  content: "\f1b4";
}

/* line 1430, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-behance-square:before {
  content: "\f1b5";
}

/* line 1433, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam:before {
  content: "\f1b6";
}

/* line 1436, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-steam-square:before {
  content: "\f1b7";
}

/* line 1439, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-recycle:before {
  content: "\f1b8";
}

/* line 1442, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

/* line 1446, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

/* line 1450, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tree:before {
  content: "\f1bb";
}

/* line 1453, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-spotify:before {
  content: "\f1bc";
}

/* line 1456, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deviantart:before {
  content: "\f1bd";
}

/* line 1459, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soundcloud:before {
  content: "\f1be";
}

/* line 1462, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-database:before {
  content: "\f1c0";
}

/* line 1465, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-pdf-o:before {
  content: "\f1c1";
}

/* line 1468, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-word-o:before {
  content: "\f1c2";
}

/* line 1471, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-excel-o:before {
  content: "\f1c3";
}

/* line 1474, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

/* line 1477, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

/* line 1482, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

/* line 1486, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

/* line 1490, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

/* line 1494, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-file-code-o:before {
  content: "\f1c9";
}

/* line 1497, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vine:before {
  content: "\f1ca";
}

/* line 1500, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codepen:before {
  content: "\f1cb";
}

/* line 1503, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-jsfiddle:before {
  content: "\f1cc";
}

/* line 1506, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

/* line 1513, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-o-notch:before {
  content: "\f1ce";
}

/* line 1516, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

/* line 1521, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

/* line 1525, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git-square:before {
  content: "\f1d2";
}

/* line 1528, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-git:before {
  content: "\f1d3";
}

/* line 1531, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

/* line 1536, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tencent-weibo:before {
  content: "\f1d5";
}

/* line 1539, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-qq:before {
  content: "\f1d6";
}

/* line 1542, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

/* line 1546, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

/* line 1550, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

/* line 1554, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-history:before {
  content: "\f1da";
}

/* line 1557, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-circle-thin:before {
  content: "\f1db";
}

/* line 1560, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-header:before {
  content: "\f1dc";
}

/* line 1563, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paragraph:before {
  content: "\f1dd";
}

/* line 1566, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sliders:before {
  content: "\f1de";
}

/* line 1569, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt:before {
  content: "\f1e0";
}

/* line 1572, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-share-alt-square:before {
  content: "\f1e1";
}

/* line 1575, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bomb:before {
  content: "\f1e2";
}

/* line 1578, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

/* line 1582, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tty:before {
  content: "\f1e4";
}

/* line 1585, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-binoculars:before {
  content: "\f1e5";
}

/* line 1588, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-plug:before {
  content: "\f1e6";
}

/* line 1591, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-slideshare:before {
  content: "\f1e7";
}

/* line 1594, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-twitch:before {
  content: "\f1e8";
}

/* line 1597, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yelp:before {
  content: "\f1e9";
}

/* line 1600, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-newspaper-o:before {
  content: "\f1ea";
}

/* line 1603, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wifi:before {
  content: "\f1eb";
}

/* line 1606, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calculator:before {
  content: "\f1ec";
}

/* line 1609, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paypal:before {
  content: "\f1ed";
}

/* line 1612, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-wallet:before {
  content: "\f1ee";
}

/* line 1615, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-visa:before {
  content: "\f1f0";
}

/* line 1618, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-mastercard:before {
  content: "\f1f1";
}

/* line 1621, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-discover:before {
  content: "\f1f2";
}

/* line 1624, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-amex:before {
  content: "\f1f3";
}

/* line 1627, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-paypal:before {
  content: "\f1f4";
}

/* line 1630, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-stripe:before {
  content: "\f1f5";
}

/* line 1633, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash:before {
  content: "\f1f6";
}

/* line 1636, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bell-slash-o:before {
  content: "\f1f7";
}

/* line 1639, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trash:before {
  content: "\f1f8";
}

/* line 1642, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-copyright:before {
  content: "\f1f9";
}

/* line 1645, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-at:before {
  content: "\f1fa";
}

/* line 1648, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eyedropper:before {
  content: "\f1fb";
}

/* line 1651, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-paint-brush:before {
  content: "\f1fc";
}

/* line 1654, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-birthday-cake:before {
  content: "\f1fd";
}

/* line 1657, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-area-chart:before {
  content: "\f1fe";
}

/* line 1660, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pie-chart:before {
  content: "\f200";
}

/* line 1663, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-line-chart:before {
  content: "\f201";
}

/* line 1666, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm:before {
  content: "\f202";
}

/* line 1669, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-lastfm-square:before {
  content: "\f203";
}

/* line 1672, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-off:before {
  content: "\f204";
}

/* line 1675, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-toggle-on:before {
  content: "\f205";
}

/* line 1678, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bicycle:before {
  content: "\f206";
}

/* line 1681, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bus:before {
  content: "\f207";
}

/* line 1684, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ioxhost:before {
  content: "\f208";
}

/* line 1687, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-angellist:before {
  content: "\f209";
}

/* line 1690, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc:before {
  content: "\f20a";
}

/* line 1693, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

/* line 1698, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meanpath:before {
  content: "\f20c";
}

/* line 1701, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-buysellads:before {
  content: "\f20d";
}

/* line 1704, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-connectdevelop:before {
  content: "\f20e";
}

/* line 1707, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-dashcube:before {
  content: "\f210";
}

/* line 1710, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-forumbee:before {
  content: "\f211";
}

/* line 1713, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-leanpub:before {
  content: "\f212";
}

/* line 1716, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sellsy:before {
  content: "\f213";
}

/* line 1719, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shirtsinbulk:before {
  content: "\f214";
}

/* line 1722, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-simplybuilt:before {
  content: "\f215";
}

/* line 1725, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-skyatlas:before {
  content: "\f216";
}

/* line 1728, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-plus:before {
  content: "\f217";
}

/* line 1731, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cart-arrow-down:before {
  content: "\f218";
}

/* line 1734, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-diamond:before {
  content: "\f219";
}

/* line 1737, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ship:before {
  content: "\f21a";
}

/* line 1740, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-secret:before {
  content: "\f21b";
}

/* line 1743, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-motorcycle:before {
  content: "\f21c";
}

/* line 1746, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-street-view:before {
  content: "\f21d";
}

/* line 1749, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-heartbeat:before {
  content: "\f21e";
}

/* line 1752, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus:before {
  content: "\f221";
}

/* line 1755, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars:before {
  content: "\f222";
}

/* line 1758, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mercury:before {
  content: "\f223";
}

/* line 1761, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

/* line 1765, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-transgender-alt:before {
  content: "\f225";
}

/* line 1768, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-double:before {
  content: "\f226";
}

/* line 1771, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-double:before {
  content: "\f227";
}

/* line 1774, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-venus-mars:before {
  content: "\f228";
}

/* line 1777, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke:before {
  content: "\f229";
}

/* line 1780, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-v:before {
  content: "\f22a";
}

/* line 1783, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mars-stroke-h:before {
  content: "\f22b";
}

/* line 1786, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-neuter:before {
  content: "\f22c";
}

/* line 1789, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-genderless:before {
  content: "\f22d";
}

/* line 1792, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-facebook-official:before {
  content: "\f230";
}

/* line 1795, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pinterest-p:before {
  content: "\f231";
}

/* line 1798, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-whatsapp:before {
  content: "\f232";
}

/* line 1801, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-server:before {
  content: "\f233";
}

/* line 1804, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-plus:before {
  content: "\f234";
}

/* line 1807, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-times:before {
  content: "\f235";
}

/* line 1810, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

/* line 1814, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viacoin:before {
  content: "\f237";
}

/* line 1817, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-train:before {
  content: "\f238";
}

/* line 1820, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-subway:before {
  content: "\f239";
}

/* line 1823, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-medium:before {
  content: "\f23a";
}

/* line 1826, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

/* line 1830, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-optin-monster:before {
  content: "\f23c";
}

/* line 1833, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opencart:before {
  content: "\f23d";
}

/* line 1836, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-expeditedssl:before {
  content: "\f23e";
}

/* line 1839, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

/* line 1844, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

/* line 1848, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

/* line 1852, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

/* line 1856, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

/* line 1860, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mouse-pointer:before {
  content: "\f245";
}

/* line 1863, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-i-cursor:before {
  content: "\f246";
}

/* line 1866, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-group:before {
  content: "\f247";
}

/* line 1869, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-object-ungroup:before {
  content: "\f248";
}

/* line 1872, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note:before {
  content: "\f249";
}

/* line 1875, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-sticky-note-o:before {
  content: "\f24a";
}

/* line 1878, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-jcb:before {
  content: "\f24b";
}

/* line 1881, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-cc-diners-club:before {
  content: "\f24c";
}

/* line 1884, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-clone:before {
  content: "\f24d";
}

/* line 1887, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-balance-scale:before {
  content: "\f24e";
}

/* line 1890, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-o:before {
  content: "\f250";
}

/* line 1893, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

/* line 1897, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

/* line 1901, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

/* line 1905, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hourglass:before {
  content: "\f254";
}

/* line 1908, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

/* line 1912, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

/* line 1916, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-scissors-o:before {
  content: "\f257";
}

/* line 1919, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-lizard-o:before {
  content: "\f258";
}

/* line 1922, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-spock-o:before {
  content: "\f259";
}

/* line 1925, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-pointer-o:before {
  content: "\f25a";
}

/* line 1928, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hand-peace-o:before {
  content: "\f25b";
}

/* line 1931, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-trademark:before {
  content: "\f25c";
}

/* line 1934, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-registered:before {
  content: "\f25d";
}

/* line 1937, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-creative-commons:before {
  content: "\f25e";
}

/* line 1940, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg:before {
  content: "\f260";
}

/* line 1943, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gg-circle:before {
  content: "\f261";
}

/* line 1946, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tripadvisor:before {
  content: "\f262";
}

/* line 1949, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki:before {
  content: "\f263";
}

/* line 1952, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-odnoklassniki-square:before {
  content: "\f264";
}

/* line 1955, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-get-pocket:before {
  content: "\f265";
}

/* line 1958, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wikipedia-w:before {
  content: "\f266";
}

/* line 1961, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-safari:before {
  content: "\f267";
}

/* line 1964, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-chrome:before {
  content: "\f268";
}

/* line 1967, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-firefox:before {
  content: "\f269";
}

/* line 1970, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-opera:before {
  content: "\f26a";
}

/* line 1973, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-internet-explorer:before {
  content: "\f26b";
}

/* line 1976, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

/* line 1980, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-contao:before {
  content: "\f26d";
}

/* line 1983, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-500px:before {
  content: "\f26e";
}

/* line 1986, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-amazon:before {
  content: "\f270";
}

/* line 1989, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-plus-o:before {
  content: "\f271";
}

/* line 1992, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-minus-o:before {
  content: "\f272";
}

/* line 1995, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-times-o:before {
  content: "\f273";
}

/* line 1998, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-calendar-check-o:before {
  content: "\f274";
}

/* line 2001, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-industry:before {
  content: "\f275";
}

/* line 2004, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-pin:before {
  content: "\f276";
}

/* line 2007, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-signs:before {
  content: "\f277";
}

/* line 2010, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map-o:before {
  content: "\f278";
}

/* line 2013, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-map:before {
  content: "\f279";
}

/* line 2016, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting:before {
  content: "\f27a";
}

/* line 2019, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-commenting-o:before {
  content: "\f27b";
}

/* line 2022, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-houzz:before {
  content: "\f27c";
}

/* line 2025, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vimeo:before {
  content: "\f27d";
}

/* line 2028, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-black-tie:before {
  content: "\f27e";
}

/* line 2031, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fonticons:before {
  content: "\f280";
}

/* line 2034, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-reddit-alien:before {
  content: "\f281";
}

/* line 2037, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-edge:before {
  content: "\f282";
}

/* line 2040, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-credit-card-alt:before {
  content: "\f283";
}

/* line 2043, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-codiepie:before {
  content: "\f284";
}

/* line 2046, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-modx:before {
  content: "\f285";
}

/* line 2049, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fort-awesome:before {
  content: "\f286";
}

/* line 2052, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-usb:before {
  content: "\f287";
}

/* line 2055, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-product-hunt:before {
  content: "\f288";
}

/* line 2058, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-mixcloud:before {
  content: "\f289";
}

/* line 2061, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-scribd:before {
  content: "\f28a";
}

/* line 2064, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle:before {
  content: "\f28b";
}

/* line 2067, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pause-circle-o:before {
  content: "\f28c";
}

/* line 2070, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle:before {
  content: "\f28d";
}

/* line 2073, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-stop-circle-o:before {
  content: "\f28e";
}

/* line 2076, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-bag:before {
  content: "\f290";
}

/* line 2079, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shopping-basket:before {
  content: "\f291";
}

/* line 2082, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-hashtag:before {
  content: "\f292";
}

/* line 2085, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth:before {
  content: "\f293";
}

/* line 2088, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bluetooth-b:before {
  content: "\f294";
}

/* line 2091, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-percent:before {
  content: "\f295";
}

/* line 2094, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-gitlab:before {
  content: "\f296";
}

/* line 2097, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpbeginner:before {
  content: "\f297";
}

/* line 2100, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpforms:before {
  content: "\f298";
}

/* line 2103, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envira:before {
  content: "\f299";
}

/* line 2106, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-universal-access:before {
  content: "\f29a";
}

/* line 2109, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wheelchair-alt:before {
  content: "\f29b";
}

/* line 2112, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-question-circle-o:before {
  content: "\f29c";
}

/* line 2115, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-blind:before {
  content: "\f29d";
}

/* line 2118, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-audio-description:before {
  content: "\f29e";
}

/* line 2121, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-volume-control-phone:before {
  content: "\f2a0";
}

/* line 2124, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-braille:before {
  content: "\f2a1";
}

/* line 2127, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

/* line 2130, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

/* line 2134, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

/* line 2139, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide:before {
  content: "\f2a5";
}

/* line 2142, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-glide-g:before {
  content: "\f2a6";
}

/* line 2145, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

/* line 2149, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-low-vision:before {
  content: "\f2a8";
}

/* line 2152, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo:before {
  content: "\f2a9";
}

/* line 2155, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-viadeo-square:before {
  content: "\f2aa";
}

/* line 2158, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat:before {
  content: "\f2ab";
}

/* line 2161, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-ghost:before {
  content: "\f2ac";
}

/* line 2164, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snapchat-square:before {
  content: "\f2ad";
}

/* line 2167, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-pied-piper:before {
  content: "\f2ae";
}

/* line 2170, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-first-order:before {
  content: "\f2b0";
}

/* line 2173, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-yoast:before {
  content: "\f2b1";
}

/* line 2176, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-themeisle:before {
  content: "\f2b2";
}

/* line 2179, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

/* line 2183, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

/* line 2187, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-handshake-o:before {
  content: "\f2b5";
}

/* line 2190, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open:before {
  content: "\f2b6";
}

/* line 2193, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-envelope-open-o:before {
  content: "\f2b7";
}

/* line 2196, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-linode:before {
  content: "\f2b8";
}

/* line 2199, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book:before {
  content: "\f2b9";
}

/* line 2202, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-address-book-o:before {
  content: "\f2ba";
}

/* line 2205, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

/* line 2209, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

/* line 2213, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle:before {
  content: "\f2bd";
}

/* line 2216, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-circle-o:before {
  content: "\f2be";
}

/* line 2219, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-user-o:before {
  content: "\f2c0";
}

/* line 2222, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-id-badge:before {
  content: "\f2c1";
}

/* line 2225, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

/* line 2229, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

/* line 2233, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-quora:before {
  content: "\f2c4";
}

/* line 2236, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-free-code-camp:before {
  content: "\f2c5";
}

/* line 2239, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-telegram:before {
  content: "\f2c6";
}

/* line 2242, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

/* line 2247, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

/* line 2251, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

/* line 2255, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

/* line 2259, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

/* line 2263, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-shower:before {
  content: "\f2cc";
}

/* line 2266, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

/* line 2271, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-podcast:before {
  content: "\f2ce";
}

/* line 2274, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-maximize:before {
  content: "\f2d0";
}

/* line 2277, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-minimize:before {
  content: "\f2d1";
}

/* line 2280, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-window-restore:before {
  content: "\f2d2";
}

/* line 2283, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

/* line 2287, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

/* line 2291, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-bandcamp:before {
  content: "\f2d5";
}

/* line 2294, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-grav:before {
  content: "\f2d6";
}

/* line 2297, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-etsy:before {
  content: "\f2d7";
}

/* line 2300, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-imdb:before {
  content: "\f2d8";
}

/* line 2303, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-ravelry:before {
  content: "\f2d9";
}

/* line 2306, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-eercast:before {
  content: "\f2da";
}

/* line 2309, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-microchip:before {
  content: "\f2db";
}

/* line 2312, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-snowflake-o:before {
  content: "\f2dc";
}

/* line 2315, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-superpowers:before {
  content: "\f2dd";
}

/* line 2318, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-wpexplorer:before {
  content: "\f2de";
}

/* line 2321, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.fa-meetup:before {
  content: "\f2e0";
}

/* line 2324, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 2334, .bundle/cache/ruby/3.4.0/gems/font-awesome-rails-4.7.0.8/app/assets/stylesheets/font-awesome.css.erb */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* 7) Variables ----------------------------------------------------------------------------------------------------- */
/* and -------------------------------------------------------------------------------------------------------------- */
/* 8) Helpers, Mixins and Placeholders  ----------------------------------------------------------------------------- */
/* >>>>> NEEDS TO BE FIRST <<<<< ------------------------------------------------------------------------------------ */
/* 7) Variables ----------------------------------------------------------------------------------------------------- */
/* Color Variables -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Warning Text --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 26, app/assets/stylesheets/global/7--sv-variables.scss */
.warning-text {
  color: #d32f2f;
}

/* Typography Adjustments ----------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* monospaced font for clock on streaming interface */
@font-face {
  font-family: "Score-Regular";
  /* path is relative to app/assets/fonts */
  src: url(http://localhost:3000/assets/Score-Regular-829b4c5436e53784f42ad9955e968da69be943528ef4f456f7a079d24c8e462f.otf) format("truetype");
}

/* line 40, app/assets/stylesheets/global/7--sv-variables.scss */
body {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #18516e;
}

/* line 48, app/assets/stylesheets/global/7--sv-variables.scss */
.display, .headline, .title, .subhead, .body, .label-1, .label-2, .menu, .text-button, a {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin-bottom: 0.35em;
}

/* Typography Classes --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 59, app/assets/stylesheets/global/7--sv-variables.scss */
.display {
  font-size: 34px;
  line-height: 1.20588em;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: inherit;
  color: #ffffff;
}

/* line 68, app/assets/stylesheets/global/7--sv-variables.scss */
.headline {
  font-size: 26px;
  line-height: 1.35417em;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  color: #0f3950;
}

/* line 77, app/assets/stylesheets/global/7--sv-variables.scss */
.title {
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 86, app/assets/stylesheets/global/7--sv-variables.scss */
.subhead {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 95, app/assets/stylesheets/global/7--sv-variables.scss */
.body {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 104, app/assets/stylesheets/global/7--sv-variables.scss */
.label-1 {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 113, app/assets/stylesheets/global/7--sv-variables.scss */
.label-2 {
  font-size: 11px;
  line-height: 1.71429em;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #18516e;
}

/* Mobile Typography ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /* line 127, app/assets/stylesheets/global/7--sv-variables.scss */
  .display {
    font-size: 26px;
  }
  /* line 131, app/assets/stylesheets/global/7--sv-variables.scss */
  .headline {
    font-size: 22px;
  }
  /* line 135, app/assets/stylesheets/global/7--sv-variables.scss */
  .title {
    font-size: 18px;
  }
  /* line 139, app/assets/stylesheets/global/7--sv-variables.scss */
  .subhead {
    font-size: 14px;
  }
  /* line 143, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-1 {
    font-size: 11px;
  }
  /* line 147, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-2 {
    font-size: 10px;
  }
}

/* 8) Helpers, Mixins and Placeholders  ----------------------------------------------------------------------------- */
/* Helpers -------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Margins and Padding ---------------------------------------------------------------------------------------------- */
/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-0 {
  margin-top: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-0 {
  padding-top: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-0 {
  margin-bottom: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-0 {
  padding-bottom: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-0 {
  margin-left: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-0 {
  padding-left: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-0 {
  margin-right: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-0 {
  padding-right: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-1 {
  margin-top: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-1 {
  padding-top: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-1 {
  margin-bottom: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-1 {
  padding-bottom: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-1 {
  margin-left: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-1 {
  padding-left: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-1 {
  margin-right: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-1 {
  padding-right: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-2 {
  margin-top: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-2 {
  padding-top: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-2 {
  margin-bottom: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-2 {
  padding-bottom: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-2 {
  margin-left: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-2 {
  padding-left: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-2 {
  margin-right: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-2 {
  padding-right: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-3 {
  margin-top: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-3 {
  padding-top: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-3 {
  margin-bottom: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-3 {
  padding-bottom: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-3 {
  margin-left: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-3 {
  padding-left: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-3 {
  margin-right: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-3 {
  padding-right: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-4 {
  margin-top: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-4 {
  padding-top: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-4 {
  margin-bottom: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-4 {
  padding-bottom: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-4 {
  margin-left: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-4 {
  padding-left: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-4 {
  margin-right: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-4 {
  padding-right: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-5 {
  margin-top: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-5 {
  padding-top: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-5 {
  margin-bottom: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-5 {
  padding-bottom: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-5 {
  margin-left: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-5 {
  padding-left: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-5 {
  margin-right: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-5 {
  padding-right: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-6 {
  margin-top: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-6 {
  padding-top: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-6 {
  margin-bottom: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-6 {
  padding-bottom: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-6 {
  margin-left: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-6 {
  padding-left: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-6 {
  margin-right: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-6 {
  padding-right: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-7 {
  margin-top: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-7 {
  padding-top: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-7 {
  margin-bottom: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-7 {
  padding-bottom: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-7 {
  margin-left: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-7 {
  padding-left: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-7 {
  margin-right: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-7 {
  padding-right: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-8 {
  margin-top: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-8 {
  padding-top: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-8 {
  margin-bottom: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-8 {
  padding-bottom: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-8 {
  margin-left: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-8 {
  padding-left: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-8 {
  margin-right: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-8 {
  padding-right: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-9 {
  margin-top: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-9 {
  padding-top: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-9 {
  margin-bottom: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-9 {
  padding-bottom: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-9 {
  margin-left: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-9 {
  padding-left: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-9 {
  margin-right: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-9 {
  padding-right: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-10 {
  margin-top: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-10 {
  padding-top: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-10 {
  padding-bottom: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-10 {
  margin-left: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-10 {
  padding-left: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-10 {
  margin-right: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-10 {
  padding-right: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-15 {
  margin-top: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-15 {
  padding-top: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-15 {
  margin-bottom: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-15 {
  padding-bottom: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-15 {
  margin-left: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-15 {
  padding-left: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-15 {
  margin-right: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-15 {
  padding-right: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-20 {
  margin-top: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-20 {
  padding-top: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-20 {
  margin-bottom: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-20 {
  padding-bottom: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-20 {
  margin-left: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-20 {
  padding-left: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-20 {
  margin-right: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-20 {
  padding-right: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-25 {
  margin-top: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-25 {
  padding-top: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-25 {
  margin-bottom: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-25 {
  padding-bottom: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-25 {
  margin-left: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-25 {
  padding-left: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-25 {
  margin-right: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-25 {
  padding-right: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-30 {
  margin-top: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-30 {
  padding-top: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-30 {
  margin-bottom: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-30 {
  padding-bottom: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-30 {
  margin-left: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-30 {
  padding-left: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-30 {
  margin-right: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-30 {
  padding-right: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-35 {
  margin-top: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-35 {
  padding-top: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-35 {
  margin-bottom: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-35 {
  padding-bottom: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-35 {
  margin-left: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-35 {
  padding-left: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-35 {
  margin-right: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-35 {
  padding-right: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-40 {
  margin-top: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-40 {
  padding-top: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-40 {
  margin-bottom: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-40 {
  padding-bottom: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-40 {
  margin-left: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-40 {
  padding-left: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-40 {
  margin-right: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-40 {
  padding-right: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-45 {
  margin-top: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-45 {
  padding-top: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-45 {
  margin-bottom: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-45 {
  padding-bottom: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-45 {
  margin-left: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-45 {
  padding-left: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-45 {
  margin-right: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-45 {
  padding-right: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-50 {
  margin-top: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-50 {
  padding-top: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-50 {
  margin-bottom: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-50 {
  padding-bottom: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-50 {
  margin-left: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-50 {
  padding-left: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-50 {
  margin-right: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-50 {
  padding-right: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-75 {
  margin-top: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-75 {
  padding-top: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-75 {
  margin-bottom: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-75 {
  padding-bottom: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-75 {
  margin-left: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-75 {
  padding-left: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-75 {
  margin-right: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-75 {
  padding-right: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-85 {
  margin-top: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-85 {
  padding-top: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-85 {
  margin-bottom: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-85 {
  padding-bottom: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-85 {
  margin-left: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-85 {
  padding-left: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-85 {
  margin-right: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-85 {
  padding-right: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-100 {
  margin-top: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-100 {
  padding-top: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-100 {
  margin-bottom: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-100 {
  padding-bottom: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-100 {
  margin-left: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-100 {
  padding-left: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-100 {
  margin-right: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-100 {
  padding-right: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-115 {
  margin-top: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-115 {
  padding-top: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-115 {
  margin-bottom: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-115 {
  padding-bottom: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-115 {
  margin-left: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-115 {
  padding-left: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-115 {
  margin-right: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-115 {
  padding-right: 115px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-0 {
  margin: 0px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-0 {
  padding: 0px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-1 {
  margin: 1px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-1 {
  padding: 1px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-2 {
  margin: 2px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-2 {
  padding: 2px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-3 {
  margin: 3px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-3 {
  padding: 3px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-4 {
  margin: 4px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-4 {
  padding: 4px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-5 {
  margin: 5px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-5 {
  padding: 5px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-6 {
  margin: 6px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-6 {
  padding: 6px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-7 {
  margin: 7px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-7 {
  padding: 7px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-8 {
  margin: 8px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-8 {
  padding: 8px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-9 {
  margin: 9px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-9 {
  padding: 9px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-10 {
  margin: 10px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-10 {
  padding: 10px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-15 {
  margin: 15px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-15 {
  padding: 15px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-20 {
  margin: 20px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-20 {
  padding: 20px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-25 {
  margin: 25px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-25 {
  padding: 25px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-30 {
  margin: 30px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-30 {
  padding: 30px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-35 {
  margin: 35px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-35 {
  padding: 35px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-40 {
  margin: 40px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-40 {
  padding: 40px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-45 {
  margin: 45px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-45 {
  padding: 45px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-50 {
  margin: 50px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-50 {
  padding: 50px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-75 {
  margin: 75px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-75 {
  padding: 75px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-85 {
  margin: 85px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-85 {
  padding: 85px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-100 {
  margin: 100px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-100 {
  padding: 100px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-115 {
  margin: 115px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-115 {
  padding: 115px !important;
}

/* Mixins --------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* table column width generator ------------------------------------------------------------------------------------- */
/* Object Positioning ----------------------------------------------------------------------------------------------- */
/* Transitions ------------------------------------------------------------------------------------------------------ */
/* Opacity ---------------------------------------------------------------------------------------------------------- */
/* Centerer --------------------------------------------------------------------------------------------------------- */
/* Placeholders ----------------------------------------------------------------------------------------------------- */
/* Box Shadow ------------------------------------------------------------------------------------------------------- */
/* line 129, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.customer-checklist-body .content-wrap, .interior-bin, #subheader-bin #season-bin, .sv-dropdown-menu, .sv-dropdown-bin, #header-bin #profile-bin #profile-slider {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* line 133, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .jumbotron, body.media-performance-reports-body .jumbotron, .bootstrap-datetimepicker-widget.dropdown-menu, .dropdown-menu.filter-dropdown-1, .number-bin-button, .card-header a.btn.btn-delete, .card-header a.btn.btn-main, .tooltip-inner, .card.player-card .card-body .feature-image, .card.team-card .card-body .feature-image, .card.meet-card .card-body .feature-image, .card.season-card .card-body .feature-image, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.practice-app-card .team-matchup-bin img.team-logo, .card .checkmark, .card .card-header.large .feature-image, .card, .filter__search-select__dropdown-bin, .close-btn, .popover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14), 0 2px 3px rgba(0, 0, 0, 0.17);
}

/* line 137, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#sidebar-navpanel {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 2px 13px rgba(0, 0, 0, 0.25);
}

/* Border Radius ---------------------------------------------------------------------------------------------------- */
/* line 144, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.data-header {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-border-top-left-radius: 7px;
  -webkit-border-top-left-radius: 7px;
  -moz-border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -khtml-border-top-left-radius: 7px;
  -khtml-border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 172, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.practices-body #user-warning-bin .warning-content, body.moments-body .active-media-info-container .approval-module, body.moments-body .active-media-info-container .clip-preview-bin .video-preview, body.moments-body ul#preview-clips li .preview-image img, body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image, body.devise-two-factor-authentication-body .access-denied-tag, body.devise-two-factor-authentication-body .content-container, body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file, .manage-carousel-bin > div a.btn-file, .col-av-support-image-cards .card.add-card a.btn-file.card-link, pre, .card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin .status-indicator, .card.sequence-media-card .card-body .media-type .group-name, .card.sequence-media-card .card-body .media-type .media-pool-indicator, .card.sequence-media-card .card-body .media-type .sequence-indicator, .col-media-cards .card.add-card a.btn-file.card-link, .card, #upcoming-games-carousel.carousel .carousel-inner, .notification-bin, .close-btn, .alert-primary, .alert-secondary, .alert-success, .alert-danger, .alert-warning, .alert-info, .alert-light, .alert-dark, #subheader-bin #season-bin {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 7px;
}

/* line 182, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, .btn-file-upload {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50px;
}

/* line 192, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.stream-body .left-panel .org-logo, .practices-upload-media-body .card-number, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn, body.customer-checklist-body .content-wrap .customer-checklist li .content-container .amount-indicator, body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin, .status-notice-active, .status-notice-none, .number-bin-button, .card-header a.btn.btn-delete, .card-header a.btn.btn-main, .card.rma-card .card-body .card-footer .url-status-indicator, .card.team-card .card-body ul .team-color-bin, .col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main, .card.meet-card .card-footer .game-options-bin a.btn.btn-main, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.media-card .card-footer .url-status-indicator, .card.practice-app-card .practice-options-bin a.btn.btn-main, .card.event-card .card-body .event-options-bin a.btn.btn-main, .card .checkmark {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50%;
}

/* Buttons Base ----------------------------------------------------------------------------------------------------- */
/* line 209, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, .btn-file-upload {
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 12px 20px 10px 20px;
  font-size: 11px;
  line-height: 10px;
  letter-spacing: 0.75px;
  font-weight: 900;
  text-transform: uppercase;
}

/* "Add" Cards Link Wrapper ----------------------------------------------------------------------------------------- */
/* "Add" Cards Icon ------------------------------------------------------------------------------------------------- */
/* Cards Feature Image Sizing --------------------------------------------------------------------------------------- */
/* line 260, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods td .media-scroll img, .card.sequence-media-card .card-body .feature-image-bin .feature-image, .card .card-media-scroll img, .card .card-hero-image, .slider-bin .feature-bin .media-preview-image {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0f3950;
  background-position: center;
  position: relative;
}

/* Underline Button Styles ------------------------------------------------------------------------------------------ */
/* line 271, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline, body.organization-settings-body a.btn.btn-underline, body.organization-reports-body .media-reports-info-table .btn.btn-reports, body.organization-reports-body .btn.btn-underline, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports, body.games-body .game-stats-info-content .btn-underline, a.btn.btn-underline, body.admin-scorekeepers-body .interior-bin a, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-display-apps-body .interior-bin a, body.admin-dashboard-index-body #admin-forcast-table a, body.admin-dashboard-index-body #admin-closed-games-table a, body.admin-dashboard-index-body #admin-games-not-started-table a, body.admin-dashboard-index-body #admin-current-games-table a, body.admin-dashboard-index-body #delayed-jobs-table a, body.admin-dashboard-index-body #admin-school-alerts-table a, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a, body.admin-dashboard-game-support-body .card.game-support-card .season-name a, body.admin-dashboard-game-support-body .card.game-support-card .game-number a, body.admin-dashboard-game-support-body .card.game-support-card .game-date a, body.admin-dashboard-game-support-body .card.game-support-card .team-name a, body.admin-dashboard-game-support-body .card.game-support-card .team-number a, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-av-presets-body a.btn.btn-underline, body.admin-av-presets-body button.btn.btn-underline, body.admin-app-versions-body .btn.btn-underline, body.admin-api-clients-body .admin-api-clients-table a, body.admin-advanced-av-presets-body .btn.btn-underline, a.btn.btn-help-modal, .btn.btn-underline, .filter-bin a.btn.btn-secondary, .filter-bin button.btn.btn-secondary {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline;
  color: #0f3950;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 288, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline:hover, body.organization-settings-body a.btn.btn-underline:hover, body.organization-reports-body .media-reports-info-table .btn.btn-reports:hover, body.organization-reports-body .btn.btn-underline:hover, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports:hover, body.games-body .game-stats-info-content .btn-underline:hover, body.admin-scorekeepers-body .interior-bin a:hover, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-display-apps-body .interior-bin a:hover, body.admin-dashboard-index-body #admin-forcast-table a:hover, body.admin-dashboard-index-body #admin-closed-games-table a:hover, body.admin-dashboard-index-body #admin-games-not-started-table a:hover, body.admin-dashboard-index-body #admin-current-games-table a:hover, body.admin-dashboard-index-body #delayed-jobs-table a:hover, body.admin-dashboard-index-body #admin-school-alerts-table a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a:hover, body.admin-dashboard-game-support-body .card.game-support-card .season-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-date a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-number a:hover, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-av-presets-body a.btn.btn-underline:hover, body.admin-av-presets-body button.btn.btn-underline:hover, body.admin-app-versions-body .btn.btn-underline:hover, body.admin-api-clients-body .admin-api-clients-table a:hover, body.admin-advanced-av-presets-body .btn.btn-underline:hover, a.btn.btn-help-modal:hover, .btn.btn-underline:hover, .filter-bin a.btn.btn-secondary:hover, .filter-bin button.btn.btn-secondary:hover {
  background-image: none !important;
  background-color: transparent !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* line 296, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete, .btn.btn-underline-delete, .filter-bin a.btn.btn-delete, .filter-bin button.btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
  border: 0;
}

/* line 313, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete:hover, .btn.btn-underline-delete:hover, .filter-bin a.btn.btn-delete:hover, .filter-bin button.btn.btn-delete:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* 2) Custom Theme >>>>> OBSOLETE <<<<< ----------------------------------------------------------------------------- */
/* 3) Navigation ---------------------------------------------------------------------------------------------------- */
/* System Default Overrides --------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* removes shadow on panel */
/* line 8, app/assets/stylesheets/global/3--sv-navigation.scss */
.panel {
  box-shadow: none;
}

/* removes list attribute */
/* line 13, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin.panel.panel-clear.pre-scrollable ul ul {
  display: none;
}

/* removes system list attribute */
/* line 18, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin.panel.panel-clear.pre-scrollable li {
  list-style-type: none;
}

/* Entire Navigation ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* bin transparent background */
/* line 26, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin.panel.panel-clear.pre-scrollable {
  background-color: transparent !important;
  overflow-x: hidden !important;
}

/* removes padding on scroll bin */
/* line 32, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin.panel.panel-clear.pre-scrollable ul {
  padding-left: 0 !important;
}

/* nav bin */
/* line 37, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel {
  top: 0;
  left: 0;
  position: fixed;
  transition: width 0.5s ease;
  height: 100%;
  width: 297px;
  padding-right: 8px;
  background: #ebeef1 url(http://localhost:3000/assets/navigation_background_BB-b4024b53418955987a0aa3b762293e839b4560373432b0dda8e113d7d671bdda.png) repeat-y center right;
  display: block;
  z-index: 1041;
  /* sidebar nav logo */
  /* sidebar nav logo */
  /* condensed side bar navigation */
  /* hamburger icon on mobile navigation */
  /* transparent background on hamburger icon */
  /* hamburger menu */
}

/* line 49, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel .environ-status-bin {
  position: absolute;
  left: 0;
  top: 75px;
  height: 25px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 65, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel .environ-status-bin.dev {
  background-color: #7cb342;
  border-color: #4b830d;
}

/* line 69, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel .environ-status-bin.prod {
  background-color: #e53935;
  border-color: #c62828;
}

/* line 75, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel #sv-logo {
  position: relative;
  width: 100%;
  /* hamburger icon on desktop*/
  /* large side bar navigation */
}

/* line 80, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel #sv-logo #sidebar-tab-toggle {
  top: 25px;
  right: -25px;
  position: absolute;
  height: auto;
  width: 25px;
  cursor: pointer;
}

/* line 101, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel #nav-toggle {
  top: 10px;
  right: 10px;
  position: absolute;
}

/* line 106, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel .btn.btn-plain {
  background-color: transparent !important;
  background-image: none;
  padding-top: 10px;
}

/* line 113, app/assets/stylesheets/global/3--sv-navigation.scss */
#sidebar-navpanel .fa.fa-bars {
  transition: all 0.4s;
  color: #18516e;
  font-size: 23px;
}

/* Top Logo Image Bin ---------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* line 123, app/assets/stylesheets/global/3--sv-navigation.scss */
#sv-logo .non-mobile {
  height: 100px !important;
  position: relative;
}

@media (min-width: 768px) {
  /* line 128, app/assets/stylesheets/global/3--sv-navigation.scss */
  #sv-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* line 133, app/assets/stylesheets/global/3--sv-navigation.scss */
#sv-logo .small-sidebar {
  display: none;
}

/* Page Link Button Bins ---------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* line 141, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin h4.active {
  color: #ffffff !important;
  background-color: #0f3950 !important;
  margin-bottom: 0 !important;
}

/* entire link bin */
/* line 148, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin h4 {
  margin: 5px 0 0 0;
  color: #18516e;
  font-family: Nunito Sans, sans-serif;
  font-weight: 700;
  font-size: 16px !important;
  line-height: 18px !important;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 25px 10px 25px 20px;
  cursor: pointer;
  background-color: rgba(69, 121, 151, 0.15);
  /* icon */
  /* carrot icon */
}

/* line 162, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin h4 i {
  color: #539ec2;
  width: 25px;
  font-size: 16px;
  line-height: 18px;
}

/* line 170, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin h4 .careticon.fa {
  float: right;
  font-size: 20px;
  line-height: 18px;
}

/* hover */
/* line 178, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin h4:hover {
  transition: all 0.45s ease;
  color: #ffffff;
  background-color: #0f3950;
}

/* active */
/* line 186, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin .active {
  color: #ffffff !important;
  background-color: #0f3950 !important;
  margin-bottom: 0 !important;
}

/* line 191, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin .active span {
  color: #ffffff !important;
}

/* 1st tier drop down bins -------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* navigation background */
/* line 201, app/assets/stylesheets/global/3--sv-navigation.scss */
.btn-sidebar-subnav {
  background-color: #18516e;
  /* separator */
}

/* line 204, app/assets/stylesheets/global/3--sv-navigation.scss */
.btn-sidebar-subnav .section-label {
  text-align: left;
  font-size: 11px;
  line-height: 9px;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 11px 10px 10px 10px;
  color: #539ec2;
}

/* line 216, app/assets/stylesheets/global/3--sv-navigation.scss */
.btn-sidebar-subnav .hr {
  margin: 0;
  width: 100%;
  opacity: 0.3;
}

/* line 223, app/assets/stylesheets/global/3--sv-navigation.scss */
.popover {
  font-weight: 600;
  left: 60px !important;
  border: 0px !important;
  color: #18516e !important;
}

/* line 230, app/assets/stylesheets/global/3--sv-navigation.scss */
.popover .arrow {
  display: none !important;
}

/* drop down links */
/* line 235, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin ul li a {
  transition: all 0.4s ease;
  background-color: #18516e;
  color: #ffffff;
  font-size: 13px;
  line-height: 45px;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  display: block;
  padding: 0 0 0 10px;
  margin: 0 10px 0 10px;
}

/* hover */
/* line 250, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin ul li a:hover {
  background-color: rgba(28, 68, 94, 0.7) !important;
  cursor: pointer !important;
}

/* active */
/* line 256, app/assets/stylesheets/global/3--sv-navigation.scss */
.btn-at {
  text-decoration: none;
  background-color: #0f3950;
  color: #cddb3e !important;
  letter-spacing: 0.5px;
}

/* current season bin */
/* line 264, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin .current-season a {
  background-color: #ffffff !important;
  padding: 10px;
  margin: 0 10px 0 10px;
  color: #0f3950 !important;
  text-align: left;
  font-size: 12px;
  line-height: 1.71429em;
  font-weight: 700;
  text-transform: inherit;
}

/* line 275, app/assets/stylesheets/global/3--sv-navigation.scss */
#nav-scrollbin .current-season a:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
  color: #0f3950 !important;
  text-decoration: underline;
}

/* 2nd tier sub nav dropdowns ----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* enter white dropdown */
/* line 286, app/assets/stylesheets/global/3--sv-navigation.scss */
.subnav-dropdown {
  width: 280px;
  padding: 5px 0 5px 0;
  /* link list */
}

/* line 291, app/assets/stylesheets/global/3--sv-navigation.scss */
.subnav-dropdown a.dropdown-item {
  background-color: #ffffff !important;
  color: #cddb3e !important;
  margin: 0 !important;
}

/* link list hover */
/* line 299, app/assets/stylesheets/global/3--sv-navigation.scss */
.subnav-dropdown a.dropdown-item:hover {
  background-color: #e6ebf0 !important;
}

/* Footer Bin --------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* bin */
/* line 307, app/assets/stylesheets/global/3--sv-navigation.scss */
#sv-footer {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  /* app version number */
}

/* line 313, app/assets/stylesheets/global/3--sv-navigation.scss */
#sv-footer #sv-footer-text {
  right: 0;
  bottom: 20px;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 9px;
  color: #18516e;
}

/* Mobile Media Query ----------------------------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* Mobile Top Bar Navigation -------------------------------------------------------------------------------------- */
  /* fixed position and width */
  /* line 331, app/assets/stylesheets/global/3--sv-navigation.scss */
  #sidebar-navpanel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  /* line 340, app/assets/stylesheets/global/3--sv-navigation.scss */
  #sidebar-navpanel .environ-status-bin {
    position: absolute;
    left: 30%;
    right: 30%;
    top: 15px;
    width: 40%;
    font-size: 14px;
  }
  /* line 349, app/assets/stylesheets/global/3--sv-navigation.scss */
  #sidebar-navpanel #sv-footer {
    display: none !important;
  }
  /* fixed position and width */
  /* line 355, app/assets/stylesheets/global/3--sv-navigation.scss */
  #nav-scrollbin {
    margin-bottom: 0;
    display: none;
    overflow-y: scroll !important;
    /* link font size */
  }
  /* line 361, app/assets/stylesheets/global/3--sv-navigation.scss */
  #nav-scrollbin .btn-sidebar {
    font-size: 18px;
  }
  /* panel width */
  /* line 367, app/assets/stylesheets/global/3--sv-navigation.scss */
  .panel {
    width: 100%;
  }
  /* Hamburger Menu Animation --------------------------------------------------------------------------------------- */
  /* close button */
  /* line 374, app/assets/stylesheets/global/3--sv-navigation.scss */
  #nav-toggle-icon.fa-times {
    font-size: 20px !important;
    color: #18516e;
    transition: all 0.4s;
  }
  /* hamburger button padding */
  /* line 381, app/assets/stylesheets/global/3--sv-navigation.scss */
  #nav-toggle {
    padding-right: 5px;
  }
}

/* 4) Layouts ------------------------------------------------------------------------------------------------------- */
/* Global Background & Viewports ---------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* blue pattern background image */
/* line 7, app/assets/stylesheets/global/4--sv-layouts.scss */
body {
  background: url(http://localhost:3000/assets/blue_background_pattern_bb-aec44080c8361aabb00a80ba505c9a38d77f483212dc6ea955e27db098fd291b.jpg) center fixed;
  background-size: 100% 100% !important;
  padding-top: 0 !important;
}

/* bootstrap responsive container */
/* line 14, app/assets/stylesheets/global/4--sv-layouts.scss */
#maxcontainer {
  position: relative;
  margin: 0;
  padding: 0;
}

/* viewport - responsive bin for header and subheader contents */
/* line 21, app/assets/stylesheets/global/4--sv-layouts.scss */
.viewport-bin {
  transition: width 0.4s ease;
  float: right;
  width: calc(100% - 320px);
}

/* full height content bin */
/* line 28, app/assets/stylesheets/global/4--sv-layouts.scss */
.vh-100 {
  height: 100vh;
}

/* content viewport - responsive bin for content (gray background) */
/* line 33, app/assets/stylesheets/global/4--sv-layouts.scss */
#content-bin.viewport-bin {
  background-color: #eceff1;
  position: relative;
  padding: 20px;
  min-height: calc(100% - 70px);
}

@media (min-width: 768px) {
  /* line 33, app/assets/stylesheets/global/4--sv-layouts.scss */
  #content-bin.viewport-bin {
    margin-top: 70px;
  }
}

/* line 45, app/assets/stylesheets/global/4--sv-layouts.scss */
#content-bin.viewport-bin #org-messages-bin #org-messages-bin-list {
  height: 200px;
  overflow-y: scroll;
  padding: 0 16px 0 16px;
  margin-bottom: 8px;
}

/* line 51, app/assets/stylesheets/global/4--sv-layouts.scss */
#content-bin.viewport-bin #org-messages-bin #org-messages-bin-list .btn-flex-row {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 60, app/assets/stylesheets/global/4--sv-layouts.scss */
#content-bin.viewport-bin #org-messages-bin #org-messages-bin-list .btn-flex-row .btn {
  width: 125px;
  margin-right: 16px;
}

/* Global Header Bin ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* header bin */
/* line 81, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin {
  text-align: left;
  height: 70px;
  border-left: 10px solid #cddb3e;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: #0f3950;
  /* Page Title Bin - displays name of page in header - edit in application helper file */
  /* Profile Bin - right side of header bin ------------------------------------------------------------------------- */
  /* bin containing elements */
}

@media (min-width: 768px) {
  /* line 81, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin {
    background-color: rgba(15, 57, 80, 0.95);
    position: fixed;
    top: 0;
    z-index: 1030;
    right: 0;
  }
}

/* line 108, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #title-bin {
  text-align: left;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* line 116, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #title-bin .display {
  font-size: 1.75rem !important;
  line-height: 1.1 !important;
  width: 100%;
}

/* line 123, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #title-bin .body {
  line-height: 1.6 !important;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  /* line 129, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin #title-bin .display {
    margin-left: 10px;
  }
}

/* line 138, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin {
  display: flex;
  align-items: center;
  margin-left: auto;
  z-index: 1021;
  /* login name bin */
  /* user icon - only displayed on mobile */
  /* profile toggle - activates drop down */
  /* profile slider drop down bin */
  /* dropdown org name */
  /* dropdown links */
}

/* line 146, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-org-btn {
  margin-right: 16px;
  height: 30px;
  width: 110px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0f3950;
}

/* line 160, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs {
  width: 500px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  color: #0f3950;
}

/* line 168, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row {
  min-height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
}

/* line 177, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .left-bin {
  width: 334px;
  margin-right: 16px;
  padding-left: 16px;
}

/* line 182, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .left-bin .body {
  margin-top: -2px;
}

/* line 186, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .left-bin a.btn.btn-underline.help-link {
  margin-right: 2px;
  margin-bottom: 0;
  margin-top: -2px;
}

/* line 191, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .left-bin a.btn.btn-underline.help-link .fa {
  font-size: 20px;
}

/* line 197, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .right-bin {
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* line 204, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .right-bin label {
  padding: 0;
}

/* line 208, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row .right-bin input {
  margin-bottom: 2px;
}

/* line 213, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row input:hover {
  cursor: pointer;
}

/* line 219, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li:last-child {
  border-bottom: 0;
}

/* line 224, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row.selection-row:hover {
  background-color: #f6f8fb;
  cursor: pointer !important;
}

/* line 229, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row.selection-row:hover .left-bin label {
  text-decoration: underline;
  cursor: pointer !important;
}

/* line 237, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #svle-org-dropdown #svle-orgs li.content-row.selection-row.selected {
  background-color: rgba(35, 175, 242, 0.16);
}

/* line 244, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #login-name {
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

/* line 249, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #login-name .body {
  line-height: 1.4;
}

/* line 253, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #login-name .label-2 {
  color: #cddb3e;
  font-size: 9px;
  line-height: 1.6;
}

/* line 259, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #login-name .subhead-2 {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  /* line 267, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin #profile-bin #login-name {
    display: none;
  }
}

/* line 273, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin i.fa.fa-user {
  font-size: 32px;
  color: #18516e;
  margin-right: -5px;
}

/* line 280, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #profile-slider-toggle {
  background-color: #cddb3e;
  border-color: #cddb3e;
  margin: 0 15px 0 15px;
}

/* line 285, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #profile-slider-toggle :before {
  color: #0f3950;
}

@media only screen and (max-width: 768px) {
  /* line 291, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin #profile-bin #profile-slider-toggle {
    margin: 0 10px 0 15px;
  }
}

/* line 297, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin #profile-slider {
  top: 60px;
  right: 10px;
  position: absolute;
  width: 300px;
  display: none;
}

/* line 305, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin .dropdown-btn-toggle {
  padding: 8px 0 8px 8px;
}

/* line 310, app/assets/stylesheets/global/4--sv-layouts.scss */
#header-bin #profile-bin a.btn-dropdown {
  margin: 5px 0 5px 0;
}

/* Profile Drop Down ------------------------------------------------------------------------------------------------ */
/* arrow above drop down */
/* line 319, app/assets/stylesheets/global/4--sv-layouts.scss */
.arrow-indicator {
  top: -14px;
  right: 10px;
  position: absolute;
}

/* drop down menu base */
/* line 324, app/assets/stylesheets/global/4--sv-layouts.scss */
.sv-dropdown-menu, .sv-dropdown-bin {
  position: absolute;
  z-index: 1000;
  padding: 0;
  font-weight: 600;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
}

/* line 334, app/assets/stylesheets/global/4--sv-layouts.scss */
.sv-dropdown-menu .form-group.col-12, .sv-dropdown-bin .form-group.col-12 {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* drop down links */
/* line 341, app/assets/stylesheets/global/4--sv-layouts.scss */
.sv-dropdown-menu a {
  transition: background-color 0.4s ease;
  position: relative;
  display: block;
  margin-bottom: 5px;
  padding: 5px 0 5px 15px;
  text-align: left;
  width: 100%;
  color: #18516e;
}

/* organization drop down inside profile bin */
/* line 353, app/assets/stylesheets/global/4--sv-layouts.scss */
.dropdown-btn-toggle {
  background-color: #18516e;
  padding: 10px 0 10px 0;
  color: #ffffff !important;
}

/* links within organization drop down */
/* line 360, app/assets/stylesheets/global/4--sv-layouts.scss */
.dropdown-btn-entity.selected {
  background-color: #cddb3e;
  color: #0f3950 !important;
}

/* Impersonating Bin ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 368, app/assets/stylesheets/global/4--sv-layouts.scss */
#impersonating-bin {
  text-align: left;
  padding: 2px 12px 2px 12px;
  width: 100%;
  position: relative;
  margin-top: -10px;
  margin-bottom: 10px;
  background-color: #0f3950;
  border-left: 0;
}

@media (min-width: 768px) {
  /* line 368, app/assets/stylesheets/global/4--sv-layouts.scss */
  #impersonating-bin {
    width: calc(100% - 320px);
    background-color: #0f3950;
    position: fixed;
    margin-top: 0;
    top: 70px;
    z-index: 1000;
    border-top: 1px solid #18516e !important;
    right: 0;
  }
}

/* line 394, app/assets/stylesheets/global/4--sv-layouts.scss */
#impersonating-bin label {
  color: #ffffff;
  font-size: 13px;
}

/* line 399, app/assets/stylesheets/global/4--sv-layouts.scss */
#impersonating-bin .btn.btn-underline {
  color: #539ec2;
  margin-top: -2px;
}

/* line 404, app/assets/stylesheets/global/4--sv-layouts.scss */
#impersonating-bin .btn.btn-underline:hover {
  color: #539ec2 !important;
}

/* Button Main - File Upload ---------------------------------------------------------------------------------------- */
/* line 410, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload {
  transition: all 0.3s ease;
  color: #ffffff;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  height: 32px;
  width: 130px;
  padding: 0 !important;
  position: relative;
}

/* line 424, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload input {
  position: absolute;
  font-size: 32px;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  right: 0;
  top: 0;
}

/* line 434, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload .form-group.col-12 {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 439, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload .form-control {
  position: absolute !important;
}

/* line 444, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload::after {
  content: "Choose Media";
  display: block;
  height: 32px;
  width: 100%;
  padding-top: 11px;
}

/* line 452, app/assets/stylesheets/global/4--sv-layouts.scss */
.btn-file-upload:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
}

/* Orglist Modal -------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* only display all orgs when modal is active */
/* line 467, app/assets/stylesheets/global/4--sv-layouts.scss */
#orglist-modal {
  /* org list items bin in pop-up modal */
}

/* line 468, app/assets/stylesheets/global/4--sv-layouts.scss */
#orglist-modal .viewall {
  display: none;
}

/* line 473, app/assets/stylesheets/global/4--sv-layouts.scss */
#orglist-modal .orglist-item {
  border-bottom: 2px dotted #d6e0e6 !important;
}

/* Global Subheader ----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* subheader bin */
/* line 482, app/assets/stylesheets/global/4--sv-layouts.scss */
#subheader-bin {
  padding: 10px 20px 10px 20px;
  height: 120px;
  background-color: #d6e0e6;
  /* season dropdown button bin displaying the current season */
  /* "add new season" button */
}

/* line 488, app/assets/stylesheets/global/4--sv-layouts.scss */
#subheader-bin #season-bin {
  background-color: #ffffff;
  padding: 22px 0 17px 15px;
  margin: 11px 15px 0 0;
  position: relative;
  width: 400px;
  float: left;
}

/* line 500, app/assets/stylesheets/global/4--sv-layouts.scss */
#subheader-bin a.btn.btn-main.subheader-button {
  margin: 33px 0 33px 0;
}

/* Season Slider Bin ------------------------------------------------------------------------------------------------ */
/* slider bin */
/* line 508, app/assets/stylesheets/global/4--sv-layouts.scss */
#season-slider {
  transition: width 0.4s ease;
  position: relative;
  background-color: #ffffff;
  float: right;
  width: calc(100% - 310px);
  padding: 0;
  text-align: left;
  display: none;
  /* bin shadows */
  /* displays all season list on pop up modal only */
}

/* line 519, app/assets/stylesheets/global/4--sv-layouts.scss */
#season-slider .topshdw {
  top: 0;
  right: 0;
  left: 0;
  position: absolute;
  opacity: 0.3;
  filter: alpha(opacity=30);
  width: 100%;
  height: 39px;
  background-image: url(http://localhost:3000/assets/topbar-shdw-a4d84ba7c4a22ba2a4253f13a9f495bb9f1885b79013338cd986d08f9af41a08.png);
  background-repeat: repeat-x;
}

/* line 528, app/assets/stylesheets/global/4--sv-layouts.scss */
#season-slider .bottomshdw {
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  opacity: 0.3;
  filter: alpha(opacity=30);
  width: 100%;
  height: 39px;
  background-image: url(http://localhost:3000/assets/btmbar-shdw-b47b8c359a411f5b617b6887d83f50ab039ce02ead3a877c0f88f8fd48a37dba.png);
  background-repeat: repeat-x;
}

/* line 538, app/assets/stylesheets/global/4--sv-layouts.scss */
#season-slider .extralist {
  display: none;
}

/* drop down list bin containing links */
/* line 544, app/assets/stylesheets/global/4--sv-layouts.scss */
.season-dropdown-bin {
  text-align: left;
  padding: 22px 20px 25px 20px;
}

/* drop down list bin items */
/* line 550, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item, .seasonlist-btn {
  transition: background-color 0.4s ease;
  position: relative;
  padding: 10px 20px 10px 10px;
  text-decoration: none;
  display: block;
  width: 100%;
  line-height: 1.5;
  color: #18516e;
  background-color: transparent;
  /* checkbox icon */
  /* season name */
  /* view all button */
}

/* line 562, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item i, .seasonlist-btn i {
  top: 10px;
  left: 15px;
  position: absolute;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 24px;
  color: #539ec2;
}

/* line 570, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item span, .seasonlist-btn span {
  position: relative;
  margin-left: 35px;
  font-size: 16px;
  font-weight: bold;
}

/* line 578, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item .viewall, .seasonlist-btn .viewall {
  display: block;
}

/* drop down list bin items hover */
/* line 584, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item:hover, .seasonlist-btn:hover {
  background-color: #f6f8fb;
  color: #18516e;
  text-decoration: none;
  width: 100%;
}

/* drop down list bin items selected */
/* line 592, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item.selected {
  background-color: #18516e;
  /* checkbox selected icon */
  /* season name */
}

/* line 596, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item.selected i {
  color: #cddb3e !important;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* line 602, app/assets/stylesheets/global/4--sv-layouts.scss */
.seasonlist-item.selected span {
  color: #ffffff;
}

/* Global Alert Bar ----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* add margin class for alert bar used with season name sticky element */
/* line 610, app/assets/stylesheets/global/4--sv-layouts.scss */
.sticky_element--spacer {
  height: 40px;
  width: 100%;
  display: block;
}

/* alert bar interior pages */
/* line 617, app/assets/stylesheets/global/4--sv-layouts.scss */
.alertbar {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
}

/* line 623, app/assets/stylesheets/global/4--sv-layouts.scss */
.alert-primary, .alert-secondary, .alert-success, .alert-danger, .alert-warning, .alert-info, .alert-light, .alert-dark {
  padding: 8px 10px 6px 10px;
  margin-bottom: 5px;
}

/* alert bar login page */
/* line 631, app/assets/stylesheets/global/4--sv-layouts.scss */
.alertbar-login {
  position: relative;
  padding: 15px;
  width: 100%;
  background-color: #18516e;
  color: #ffffff;
}

/* alert bar "X" button */
/* line 640, app/assets/stylesheets/global/4--sv-layouts.scss */
.close-btn {
  top: 6px;
  right: 6px;
  position: absolute;
  transition: all 0.2s ease;
  cursor: pointer;
  color: #18516e !important;
  background-color: #ffffff;
  padding: 0 3px 0 3px;
}

/* alert bar "X" button - hover */
/* line 652, app/assets/stylesheets/global/4--sv-layouts.scss */
.close-btn:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* Global Content Bins -------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* main interior bin */
/* line 660, app/assets/stylesheets/global/4--sv-layouts.scss */
.interior-bin {
  border-radius: 7px;
  margin: 5px 0 20px 0;
  padding: 0 20px 0 20px;
  background-color: #ffffff;
}

/* meta data gray header bin */
/* line 672, app/assets/stylesheets/global/4--sv-layouts.scss */
.data-header {
  padding: 10px;
  margin-left: -20px;
  margin-right: -20px;
  background-color: #d6e0e6;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-align: center;
  text-transform: inherit;
  color: #0f3950;
  font-family: Nunito Sans, Helevetica, sans-serif;
}

/* line 688, app/assets/stylesheets/global/4--sv-layouts.scss */
.notification-bin {
  font-size: 12px;
  opacity: 0.75;
  background-color: #d6e0e6;
  letter-spacing: 0.4px;
  text-align: center;
  font-weight: 700;
  padding: 2px 0;
  width: 100px;
}

/* contents bin with max width */
/* line 701, app/assets/stylesheets/global/4--sv-layouts.scss */
.content {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 5px 30px 5px;
}

/* notifications - number of info in content bin */
/* line 709, app/assets/stylesheets/global/4--sv-layouts.scss */
.notification-bin {
  font-size: 12px;
  opacity: 0.75;
  background-color: #d6e0e6;
  letter-spacing: 0.4px;
  text-align: center;
  font-weight: 700;
  padding: 2px 0;
  width: 100px;
}

/* header module headline columns */
/* line 722, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-module.headline {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 722, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.headline {
    flex: 0 0 75%;
    max-width: 75%;
  }
}

@media (max-width: 767.98px) {
  /* line 722, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.headline {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* header module input field columns */
/* line 734, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-module.input {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 734, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.input {
    flex: 0 0 75%;
    max-width: 75%;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 734, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.input {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* header module button columns */
/* line 748, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-module.button {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 748, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.button {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 0;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 748, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-module.button {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    margin-top: 5px;
  }
}

/* line 762, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-module.button .btn {
  display: block;
  width: 100%;
}

/* gray headline bin ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 772, app/assets/stylesheets/global/4--sv-layouts.scss */
.gray-headline-bin {
  background-color: #f6f8fb;
  margin-bottom: 15px;
  padding: 10px 15px 10px 15px;
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 784, app/assets/stylesheets/global/4--sv-layouts.scss */
.gray-headline-bin.headline-btn-bin {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

/* line 790, app/assets/stylesheets/global/4--sv-layouts.scss */
.gray-headline-bin.headline-btn-bin .btn.btn-main {
  margin-bottom: 0;
  width: 125px !important;
  margin-left: auto;
}

/* Global Slider Bin ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* overall bin column */
/* line 802, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  /* headline section of container */
  /* seperater */
  /* feature section of container */
  /* interior contents in slider bin */
}

/* line 809, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .meta-bin {
  width: 100%;
}

/* line 812, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .meta-bin label {
  margin-bottom: 5px;
}

/* line 816, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .meta-bin a.btn.btn-underline-delete {
  padding-top: 5px;
  float: right;
}

/* line 822, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .sb-img-bin {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 10px;
  background-color: #e6ebf0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* line 831, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .sb-img-bin img {
  height: 80px;
  margin-right: 10px;
}

/* line 837, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .sb-img-bin:hover {
  cursor: pointer;
  opacity: 0.8;
}

/* line 843, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin {
  display: flex;
  /* headline */
  /* buttons */
}

@media (max-width: 767.98px) {
  /* line 843, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin {
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  /* line 843, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin {
    flex-wrap: nowrap;
    align-items: center;
  }
}

/* line 854, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin .headline-description-bin {
  width: calc(100% - 150px);
}

/* line 859, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin .headline {
  margin-bottom: 5px;
  /* full width on mobile */
  /* auto width & right desktop */
}

@media (max-width: 767.98px) {
  /* line 859, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin .headline {
    flex-basis: 100%;
    width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 859, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin .headline {
    width: calc(100% - 135px);
    flex-basis: auto;
  }
}

/* line 874, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin .headline .help-modal-toggle {
  margin-bottom: 5px;
  font-size: 23px;
}

/* line 882, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin a.btn.btn-main, .slider-bin .header-bin a.btn.btn-secondary {
  /* full width on mobile */
  /* auto width & right desktop */
}

/* line 883, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin a.btn.btn-main label.control-label, .slider-bin .header-bin a.btn.btn-secondary label.control-label {
  font-weight: 900;
}

@media (max-width: 767.98px) {
  /* line 882, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin a.btn.btn-main, .slider-bin .header-bin a.btn.btn-secondary {
    flex-basis: 100%;
    float: none;
  }
}

@media (min-width: 768px) {
  /* line 882, app/assets/stylesheets/global/4--sv-layouts.scss */
  .slider-bin .header-bin a.btn.btn-main, .slider-bin .header-bin a.btn.btn-secondary {
    width: 125px;
    height: 32px;
    margin-left: auto;
    flex-basis: auto;
    padding: 11px 5px 10px 5px;
  }
}

/* line 902, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin a.btn.btn-main input, .slider-bin .header-bin a.btn.btn-secondary input {
  font-size: 0;
  cursor: pointer;
  margin-top: -15px;
  padding: 0;
}

/* line 909, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin a.btn.btn-main .form-group, .slider-bin .header-bin a.btn.btn-secondary .form-group {
  margin-bottom: 0;
}

/* line 912, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .header-bin a.btn.btn-main .form-group label.control-label, .slider-bin .header-bin a.btn.btn-secondary .form-group label.control-label {
  margin-bottom: 0;
}

/* line 920, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .hr {
  display: block;
  margin: 5px 0 8px 0;
  height: 1px;
  width: 100%;
}

/* line 928, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin {
  /* preview images size*/
  /* preview images number count */
  /* button */
}

/* line 931, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin .media-preview-image {
  background-color: transparent !important;
  margin-right: 3px;
  height: 45px;
  width: 90px;
  display: inline-block;
  overflow: hidden;
}

/* line 940, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin .media-preview-image img {
  -o-object-fit: fill;
     object-fit: fill;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 949, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin .media-preview-number {
  position: relative;
  height: 45px;
  width: auto;
  display: inline-block;
}

/* line 955, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin .media-preview-number .body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  font-weight: bold;
  margin-left: 12px;
}

/* line 964, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .feature-bin a.btn.btn-main {
  width: 125px;
  margin-top: 7px;
  float: right;
  color: #ffffff;
}

/* line 973, app/assets/stylesheets/global/4--sv-layouts.scss */
.slider-bin .slider-body, .slider-bin .slider-body-2 {
  padding: 15px 0 0 0;
}

/* Global Sticky Bar ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* sticky module */
/* line 982, app/assets/stylesheets/global/4--sv-layouts.scss */
.stick {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 70px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #d6e0e6;
  margin-bottom: 25px;
  padding: 15px;
  /* mobile */
}

@media (max-width: 767.98px) {
  /* line 982, app/assets/stylesheets/global/4--sv-layouts.scss */
  .stick {
    top: 60px;
  }
}

/* line 998, app/assets/stylesheets/global/4--sv-layouts.scss */
.no-stick {
  position: relative;
  padding: 0 15px 15px 15px;
}

/* line 1003, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar {
  width: 100%;
  /* content - form area */
}

/* line 1007, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  /* mobile */
  /* headline / input field bin */
  /* buttons module */
}

@media (max-width: 767.98px) {
  /* line 1007, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin {
    flex-direction: column;
  }
}

/* line 1021, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin form {
  display: flex;
  flex-direction: row;
  width: 100% !important;
  align-items: center;
  /* mobile */
}

@media (max-width: 767.98px) {
  /* line 1021, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin form {
    flex-direction: column;
  }
}

/* line 1035, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .headline {
  margin-bottom: 0;
  text-align: left;
  width: auto;
  /* mobile */
}

@media (max-width: 767.98px) {
  /* line 1035, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin .headline {
    margin-bottom: 15px;
    width: 100%;
  }
}

/* line 1047, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .form-group.col-12 {
  padding: 0 !important;
  margin-bottom: 0;
  flex: none !important;
  width: calc(100% - 330px);
  /* mobile */
}

@media (max-width: 767.98px) {
  /* line 1047, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin .form-group.col-12 {
    margin-bottom: 15px;
    width: 100% !important;
  }
}

/* line 1059, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .form-group.col-12 label.control-label {
  display: none;
}

/* line 1064, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin a.help-link {
  text-decoration: none;
}

/* line 1067, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin a.help-link .fa {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  font-size: 24px;
}

/* line 1078, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .buttons-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  /* buttons */
}

@media (max-width: 767.98px) {
  /* line 1078, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin .buttons-bin {
    flex-direction: column;
    margin-left: 0;
    width: 100%;
  }
}

/* line 1091, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .buttons-bin .form-buttons {
  margin-top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 1100, app/assets/stylesheets/global/4--sv-layouts.scss */
.header-bar .content-bin .buttons-bin .btn.btn-secondary, .header-bar .content-bin .buttons-bin a.btn.btn-secondary, .header-bar .content-bin .buttons-bin button.btn.btn-secondary, .header-bar .content-bin .buttons-bin .btn.btn-main, .header-bar .content-bin .buttons-bin a.btn.btn-main, .header-bar .content-bin .buttons-bin button.btn.btn-main {
  min-width: 100px;
  height: 34px !important;
  margin-right: 0;
  margin-left: 10px;
}

@media (max-width: 767.98px) {
  /* line 1108, app/assets/stylesheets/global/4--sv-layouts.scss */
  .header-bar .content-bin .buttons-bin .btn.btn-secondary, .header-bar .content-bin .buttons-bin a.btn.btn-secondary, .header-bar .content-bin .buttons-bin button.btn.btn-secondary, .header-bar .content-bin .buttons-bin .btn.btn-main, .header-bar .content-bin .buttons-bin a.btn.btn-main, .header-bar .content-bin .buttons-bin button.btn.btn-main {
    margin-bottom: 10px;
    margin-left: 0;
    display: block;
    width: 100%;
  }
}

/* line 1119, app/assets/stylesheets/global/4--sv-layouts.scss */
.content-bin.errors-for {
  width: 100%;
}

/* line 1122, app/assets/stylesheets/global/4--sv-layouts.scss */
.content-bin.errors-for .alert {
  width: 100%;
}

/* Mobile Media Query --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* Background & Viewports ----------------------------------------------------------------------------------------- */
  /* viewport bin */
  /* line 1135, app/assets/stylesheets/global/4--sv-layouts.scss */
  .viewport-bin {
    float: none;
    width: 100% !important;
  }
  /* content viewport - responsive bin for content (gray background) */
  /* line 1141, app/assets/stylesheets/global/4--sv-layouts.scss */
  #content-bin.viewport-bin {
    padding-left: 10px;
    padding-right: 10px;
    min-height: calc(100% - 160px);
  }
  /* Global Header -------------------------------------------------------------------------------------------------- */
  /* header bin */
  /* line 1150, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin {
    margin-top: 90px;
    border-left: none;
    /* title bin */
    /* profile bin */
  }
  /* line 1155, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin #title-bin {
    left: 10px;
    margin-top: 5px;
  }
  /* line 1161, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin #profile-bin {
    right: 10px;
  }
  /* Global Subheader ----------------------------------------------------------------------------------------------- */
  /* subheader bin */
  /* line 1169, app/assets/stylesheets/global/4--sv-layouts.scss */
  #subheader-bin {
    padding-right: 10px !important;
    padding-left: 10px !important;
    height: 150px;
    /* season bin dropdown button */
    /* add new season button */
  }
  /* line 1175, app/assets/stylesheets/global/4--sv-layouts.scss */
  #subheader-bin #season-bin {
    padding: 15px 0 15px 10px;
    width: 100%;
    display: block;
  }
  /* line 1182, app/assets/stylesheets/global/4--sv-layouts.scss */
  #subheader-bin a.btn.btn-main.subheader-button {
    margin: 15px 0 0 0;
  }
  /* Season Slider -------------------------------------------------------------------------------------------------- */
  /* season slider bin */
  /* line 1190, app/assets/stylesheets/global/4--sv-layouts.scss */
  #season-slider {
    float: none !important;
    width: 100% !important;
  }
  /* drop down bin padding */
  /* line 1196, app/assets/stylesheets/global/4--sv-layouts.scss */
  .season-dropdown-bin {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* list items */
  /* line 1202, app/assets/stylesheets/global/4--sv-layouts.scss */
  .seasonlist-item.selected, .seasonlist-item, .seasonlist-btn.more {
    padding: 5px 0 5px 0;
    display: block;
    line-height: 2;
    width: 100%;
  }
  /* checkbox - icons */
  /* line 1210, app/assets/stylesheets/global/4--sv-layouts.scss */
  .seasonlist-item.selected span, .seasonlist-item span, .viewall span {
    font-size: 14px;
    margin-left: 30px;
  }
  /* season pop-up modal */
  /* line 1216, app/assets/stylesheets/global/4--sv-layouts.scss */
  .seasonlist-item i, .seasonlist-btn i {
    left: 5px;
    font-size: 20px;
    margin-top: -1px;
  }
  /* Global Content Bins -------------------------------------------------------------------------------------------- */
  /* line 1224, app/assets/stylesheets/global/4--sv-layouts.scss */
  .interior-bin {
    padding: 0 10px 0 10px;
  }
  /* line 1228, app/assets/stylesheets/global/4--sv-layouts.scss */
  .data-header {
    margin-left: -10px;
    margin-right: -10px;
  }
  /* line 1233, app/assets/stylesheets/global/4--sv-layouts.scss */
  .content {
    padding: 20px 5px 20px 5px;
  }
  /* sticky-bar  ---------------------------------------------------------------------------------------------------- */
  /* line 1238, app/assets/stylesheets/global/4--sv-layouts.scss */
  .sticky-top {
    top: 60px !important;
  }
}

/* Print Media ------------------------------------------------------------------------------------------------------ */
@media print {
  /* line 1246, app/assets/stylesheets/global/4--sv-layouts.scss */
  #header-bin, #sidebar-navpanel, .alertbar, a.btn-up,
button.btn.btn-secondary.dropdown-toggle, .small-sidebar, .btn.btn-underline,
.media-filter-panel-bin, .form-group {
    display: none !important;
  }
  /* line 1252, app/assets/stylesheets/global/4--sv-layouts.scss */
  #content-bin.viewport-bin {
    padding: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    float: left;
    overflow: visible;
    position: static;
  }
  /* line 1262, app/assets/stylesheets/global/4--sv-layouts.scss */
  .interior-bin {
    padding-top: 0 !important;
    margin-left: auto;
    margin-right: auto;
  }
  /* line 1268, app/assets/stylesheets/global/4--sv-layouts.scss */
  .interior-bin-header {
    margin-top: 20px !important;
  }
}

@page {
  margin: 1cm;
  padding: 0;
}

/* fixed meta info bin right below header bin ----------------------------------------------------------------------- */
/* line 1280, app/assets/stylesheets/global/4--sv-layouts.scss */
.sticky-tag-info-bin {
  width: calc(100% - 320px);
  padding: 8px 12px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
  right: 0;
  top: 70px;
  z-index: 999;
}

@media only screen and (max-width: 768px) {
  /* line 1280, app/assets/stylesheets/global/4--sv-layouts.scss */
  .sticky-tag-info-bin {
    position: relative;
    top: 0;
    width: 100%;
    border: 1px solid #d6e0e6;
    z-index: 1;
  }
}

/* margin on interior bin above for fixed meta info header */
/* line 1301, app/assets/stylesheets/global/4--sv-layouts.scss */
.sticky-tag-info-content-bin {
  margin-top: 36px;
}

@media only screen and (max-width: 768px) {
  /* line 1301, app/assets/stylesheets/global/4--sv-layouts.scss */
  .sticky-tag-info-content-bin {
    margin-top: 16px;
  }
}

/* patent number text */
/* line 1310, app/assets/stylesheets/global/4--sv-layouts.scss */
.patent_number_text {
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 24px;
  color: #7eaec8 !important;
  padding: 8px 16px;
  width: 300px;
  z-index: 2;
  border-radius: 4px;
}

/* 5) Objects ------------------------------------------------------------------------------------------------------- */
/* 7) Variables ----------------------------------------------------------------------------------------------------- */
/* Color Variables -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Warning Text --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 26, app/assets/stylesheets/global/7--sv-variables.scss */
.warning-text {
  color: #d32f2f;
}

/* Typography Adjustments ----------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* monospaced font for clock on streaming interface */
@font-face {
  font-family: "Score-Regular";
  /* path is relative to app/assets/fonts */
  src: url(http://localhost:3000/assets/Score-Regular-829b4c5436e53784f42ad9955e968da69be943528ef4f456f7a079d24c8e462f.otf) format("truetype");
}

/* line 40, app/assets/stylesheets/global/7--sv-variables.scss */
body {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #18516e;
}

/* line 48, app/assets/stylesheets/global/7--sv-variables.scss */
.display, .headline, .title, .subhead, .body, .label-1, .label-2, .menu, .text-button, a {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin-bottom: 0.35em;
}

/* Typography Classes --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 59, app/assets/stylesheets/global/7--sv-variables.scss */
.display {
  font-size: 34px;
  line-height: 1.20588em;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: inherit;
  color: #ffffff;
}

/* line 68, app/assets/stylesheets/global/7--sv-variables.scss */
.headline {
  font-size: 26px;
  line-height: 1.35417em;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  color: #0f3950;
}

/* line 77, app/assets/stylesheets/global/7--sv-variables.scss */
.title {
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 86, app/assets/stylesheets/global/7--sv-variables.scss */
.subhead {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 95, app/assets/stylesheets/global/7--sv-variables.scss */
.body {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 104, app/assets/stylesheets/global/7--sv-variables.scss */
.label-1 {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 113, app/assets/stylesheets/global/7--sv-variables.scss */
.label-2 {
  font-size: 11px;
  line-height: 1.71429em;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #18516e;
}

/* Mobile Typography ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /* line 127, app/assets/stylesheets/global/7--sv-variables.scss */
  .display {
    font-size: 26px;
  }
  /* line 131, app/assets/stylesheets/global/7--sv-variables.scss */
  .headline {
    font-size: 22px;
  }
  /* line 135, app/assets/stylesheets/global/7--sv-variables.scss */
  .title {
    font-size: 18px;
  }
  /* line 139, app/assets/stylesheets/global/7--sv-variables.scss */
  .subhead {
    font-size: 14px;
  }
  /* line 143, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-1 {
    font-size: 11px;
  }
  /* line 147, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-2 {
    font-size: 10px;
  }
}

/* 8) Helpers, Mixins and Placeholders  ----------------------------------------------------------------------------- */
/* Helpers -------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Margins and Padding ---------------------------------------------------------------------------------------------- */
/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-0 {
  margin-top: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-0 {
  padding-top: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-0 {
  margin-bottom: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-0 {
  padding-bottom: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-0 {
  margin-left: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-0 {
  padding-left: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-0 {
  margin-right: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-0 {
  padding-right: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-1 {
  margin-top: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-1 {
  padding-top: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-1 {
  margin-bottom: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-1 {
  padding-bottom: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-1 {
  margin-left: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-1 {
  padding-left: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-1 {
  margin-right: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-1 {
  padding-right: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-2 {
  margin-top: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-2 {
  padding-top: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-2 {
  margin-bottom: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-2 {
  padding-bottom: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-2 {
  margin-left: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-2 {
  padding-left: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-2 {
  margin-right: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-2 {
  padding-right: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-3 {
  margin-top: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-3 {
  padding-top: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-3 {
  margin-bottom: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-3 {
  padding-bottom: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-3 {
  margin-left: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-3 {
  padding-left: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-3 {
  margin-right: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-3 {
  padding-right: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-4 {
  margin-top: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-4 {
  padding-top: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-4 {
  margin-bottom: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-4 {
  padding-bottom: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-4 {
  margin-left: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-4 {
  padding-left: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-4 {
  margin-right: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-4 {
  padding-right: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-5 {
  margin-top: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-5 {
  padding-top: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-5 {
  margin-bottom: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-5 {
  padding-bottom: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-5 {
  margin-left: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-5 {
  padding-left: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-5 {
  margin-right: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-5 {
  padding-right: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-6 {
  margin-top: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-6 {
  padding-top: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-6 {
  margin-bottom: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-6 {
  padding-bottom: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-6 {
  margin-left: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-6 {
  padding-left: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-6 {
  margin-right: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-6 {
  padding-right: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-7 {
  margin-top: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-7 {
  padding-top: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-7 {
  margin-bottom: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-7 {
  padding-bottom: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-7 {
  margin-left: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-7 {
  padding-left: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-7 {
  margin-right: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-7 {
  padding-right: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-8 {
  margin-top: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-8 {
  padding-top: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-8 {
  margin-bottom: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-8 {
  padding-bottom: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-8 {
  margin-left: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-8 {
  padding-left: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-8 {
  margin-right: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-8 {
  padding-right: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-9 {
  margin-top: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-9 {
  padding-top: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-9 {
  margin-bottom: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-9 {
  padding-bottom: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-9 {
  margin-left: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-9 {
  padding-left: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-9 {
  margin-right: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-9 {
  padding-right: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-10 {
  margin-top: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-10 {
  padding-top: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-10 {
  padding-bottom: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-10 {
  margin-left: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-10 {
  padding-left: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-10 {
  margin-right: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-10 {
  padding-right: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-15 {
  margin-top: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-15 {
  padding-top: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-15 {
  margin-bottom: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-15 {
  padding-bottom: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-15 {
  margin-left: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-15 {
  padding-left: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-15 {
  margin-right: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-15 {
  padding-right: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-20 {
  margin-top: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-20 {
  padding-top: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-20 {
  margin-bottom: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-20 {
  padding-bottom: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-20 {
  margin-left: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-20 {
  padding-left: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-20 {
  margin-right: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-20 {
  padding-right: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-25 {
  margin-top: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-25 {
  padding-top: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-25 {
  margin-bottom: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-25 {
  padding-bottom: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-25 {
  margin-left: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-25 {
  padding-left: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-25 {
  margin-right: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-25 {
  padding-right: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-30 {
  margin-top: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-30 {
  padding-top: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-30 {
  margin-bottom: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-30 {
  padding-bottom: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-30 {
  margin-left: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-30 {
  padding-left: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-30 {
  margin-right: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-30 {
  padding-right: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-35 {
  margin-top: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-35 {
  padding-top: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-35 {
  margin-bottom: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-35 {
  padding-bottom: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-35 {
  margin-left: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-35 {
  padding-left: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-35 {
  margin-right: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-35 {
  padding-right: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-40 {
  margin-top: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-40 {
  padding-top: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-40 {
  margin-bottom: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-40 {
  padding-bottom: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-40 {
  margin-left: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-40 {
  padding-left: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-40 {
  margin-right: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-40 {
  padding-right: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-45 {
  margin-top: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-45 {
  padding-top: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-45 {
  margin-bottom: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-45 {
  padding-bottom: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-45 {
  margin-left: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-45 {
  padding-left: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-45 {
  margin-right: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-45 {
  padding-right: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-50 {
  margin-top: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-50 {
  padding-top: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-50 {
  margin-bottom: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-50 {
  padding-bottom: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-50 {
  margin-left: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-50 {
  padding-left: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-50 {
  margin-right: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-50 {
  padding-right: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-75 {
  margin-top: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-75 {
  padding-top: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-75 {
  margin-bottom: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-75 {
  padding-bottom: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-75 {
  margin-left: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-75 {
  padding-left: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-75 {
  margin-right: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-75 {
  padding-right: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-85 {
  margin-top: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-85 {
  padding-top: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-85 {
  margin-bottom: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-85 {
  padding-bottom: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-85 {
  margin-left: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-85 {
  padding-left: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-85 {
  margin-right: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-85 {
  padding-right: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-100 {
  margin-top: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-100 {
  padding-top: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-100 {
  margin-bottom: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-100 {
  padding-bottom: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-100 {
  margin-left: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-100 {
  padding-left: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-100 {
  margin-right: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-100 {
  padding-right: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-115 {
  margin-top: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-115 {
  padding-top: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-115 {
  margin-bottom: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-115 {
  padding-bottom: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-115 {
  margin-left: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-115 {
  padding-left: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-115 {
  margin-right: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-115 {
  padding-right: 115px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-0 {
  margin: 0px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-0 {
  padding: 0px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-1 {
  margin: 1px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-1 {
  padding: 1px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-2 {
  margin: 2px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-2 {
  padding: 2px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-3 {
  margin: 3px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-3 {
  padding: 3px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-4 {
  margin: 4px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-4 {
  padding: 4px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-5 {
  margin: 5px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-5 {
  padding: 5px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-6 {
  margin: 6px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-6 {
  padding: 6px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-7 {
  margin: 7px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-7 {
  padding: 7px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-8 {
  margin: 8px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-8 {
  padding: 8px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-9 {
  margin: 9px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-9 {
  padding: 9px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-10 {
  margin: 10px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-10 {
  padding: 10px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-15 {
  margin: 15px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-15 {
  padding: 15px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-20 {
  margin: 20px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-20 {
  padding: 20px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-25 {
  margin: 25px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-25 {
  padding: 25px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-30 {
  margin: 30px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-30 {
  padding: 30px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-35 {
  margin: 35px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-35 {
  padding: 35px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-40 {
  margin: 40px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-40 {
  padding: 40px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-45 {
  margin: 45px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-45 {
  padding: 45px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-50 {
  margin: 50px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-50 {
  padding: 50px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-75 {
  margin: 75px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-75 {
  padding: 75px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-85 {
  margin: 85px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-85 {
  padding: 85px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-100 {
  margin: 100px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-100 {
  padding: 100px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-115 {
  margin: 115px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-115 {
  padding: 115px !important;
}

/* Mixins --------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* table column width generator ------------------------------------------------------------------------------------- */
/* Object Positioning ----------------------------------------------------------------------------------------------- */
/* Transitions ------------------------------------------------------------------------------------------------------ */
/* Opacity ---------------------------------------------------------------------------------------------------------- */
/* Centerer --------------------------------------------------------------------------------------------------------- */
/* Placeholders ----------------------------------------------------------------------------------------------------- */
/* Box Shadow ------------------------------------------------------------------------------------------------------- */
/* line 129, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.customer-checklist-body .content-wrap, #header-bin #profile-bin #profile-slider, .sv-dropdown-menu, .sv-dropdown-bin, #subheader-bin #season-bin, .interior-bin {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* line 133, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .jumbotron, body.media-performance-reports-body .jumbotron, .bootstrap-datetimepicker-widget.dropdown-menu, .dropdown-menu.filter-dropdown-1, .number-bin-button, .card-header a.btn.btn-delete, .card-header a.btn.btn-main, .tooltip-inner, .card.player-card .card-body .feature-image, .card.team-card .card-body .feature-image, .card.meet-card .card-body .feature-image, .card.season-card .card-body .feature-image, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.practice-app-card .team-matchup-bin img.team-logo, .card .checkmark, .card .card-header.large .feature-image, .card, .filter__search-select__dropdown-bin, .popover, .close-btn {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14), 0 2px 3px rgba(0, 0, 0, 0.17);
}

/* line 137, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#sidebar-navpanel {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 2px 13px rgba(0, 0, 0, 0.25);
}

/* Border Radius ---------------------------------------------------------------------------------------------------- */
/* line 144, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.data-header {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-border-top-left-radius: 7px;
  -webkit-border-top-left-radius: 7px;
  -moz-border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -khtml-border-top-left-radius: 7px;
  -khtml-border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 172, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.practices-body #user-warning-bin .warning-content, body.moments-body .active-media-info-container .approval-module, body.moments-body .active-media-info-container .clip-preview-bin .video-preview, body.moments-body ul#preview-clips li .preview-image img, body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image, body.devise-two-factor-authentication-body .access-denied-tag, body.devise-two-factor-authentication-body .content-container, body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file, .manage-carousel-bin > div a.btn-file, .col-av-support-image-cards .card.add-card a.btn-file.card-link, pre, .card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin .status-indicator, .card.sequence-media-card .card-body .media-type .group-name, .card.sequence-media-card .card-body .media-type .media-pool-indicator, .card.sequence-media-card .card-body .media-type .sequence-indicator, .col-media-cards .card.add-card a.btn-file.card-link, .card, #upcoming-games-carousel.carousel .carousel-inner, #subheader-bin #season-bin, .alert-primary, .alert-secondary, .alert-success, .alert-danger, .alert-warning, .alert-info, .alert-light, .alert-dark, .close-btn, .notification-bin {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 7px;
}

/* line 182, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, .btn-file-upload {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50px;
}

/* line 192, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.stream-body .left-panel .org-logo, .practices-upload-media-body .card-number, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn, body.customer-checklist-body .content-wrap .customer-checklist li .content-container .amount-indicator, body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin, .status-notice-active, .status-notice-none, .number-bin-button, .card-header a.btn.btn-delete, .card-header a.btn.btn-main, .card.rma-card .card-body .card-footer .url-status-indicator, .card.team-card .card-body ul .team-color-bin, .col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main, .card.meet-card .card-footer .game-options-bin a.btn.btn-main, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.media-card .card-footer .url-status-indicator, .card.practice-app-card .practice-options-bin a.btn.btn-main, .card.event-card .card-body .event-options-bin a.btn.btn-main, .card .checkmark {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50%;
}

/* Buttons Base ----------------------------------------------------------------------------------------------------- */
/* line 209, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, .btn-file-upload {
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 12px 20px 10px 20px;
  font-size: 11px;
  line-height: 10px;
  letter-spacing: 0.75px;
  font-weight: 900;
  text-transform: uppercase;
}

/* "Add" Cards Link Wrapper ----------------------------------------------------------------------------------------- */
/* "Add" Cards Icon ------------------------------------------------------------------------------------------------- */
/* Cards Feature Image Sizing --------------------------------------------------------------------------------------- */
/* line 260, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods td .media-scroll img, .card.sequence-media-card .card-body .feature-image-bin .feature-image, .card .card-media-scroll img, .card .card-hero-image, .slider-bin .feature-bin .media-preview-image {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0f3950;
  background-position: center;
  position: relative;
}

/* Underline Button Styles ------------------------------------------------------------------------------------------ */
/* line 271, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline, body.organization-settings-body a.btn.btn-underline, body.organization-reports-body .media-reports-info-table .btn.btn-reports, body.organization-reports-body .btn.btn-underline, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports, body.games-body .game-stats-info-content .btn-underline, a.btn.btn-underline, body.admin-scorekeepers-body .interior-bin a, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-display-apps-body .interior-bin a, body.admin-dashboard-index-body #admin-forcast-table a, body.admin-dashboard-index-body #admin-closed-games-table a, body.admin-dashboard-index-body #admin-games-not-started-table a, body.admin-dashboard-index-body #admin-current-games-table a, body.admin-dashboard-index-body #delayed-jobs-table a, body.admin-dashboard-index-body #admin-school-alerts-table a, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a, body.admin-dashboard-game-support-body .card.game-support-card .season-name a, body.admin-dashboard-game-support-body .card.game-support-card .game-number a, body.admin-dashboard-game-support-body .card.game-support-card .game-date a, body.admin-dashboard-game-support-body .card.game-support-card .team-name a, body.admin-dashboard-game-support-body .card.game-support-card .team-number a, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-av-presets-body a.btn.btn-underline, body.admin-av-presets-body button.btn.btn-underline, body.admin-app-versions-body .btn.btn-underline, body.admin-api-clients-body .admin-api-clients-table a, body.admin-advanced-av-presets-body .btn.btn-underline, a.btn.btn-help-modal, .btn.btn-underline, .filter-bin a.btn.btn-secondary, .filter-bin button.btn.btn-secondary {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline;
  color: #0f3950;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 288, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline:hover, body.organization-settings-body a.btn.btn-underline:hover, body.organization-reports-body .media-reports-info-table .btn.btn-reports:hover, body.organization-reports-body .btn.btn-underline:hover, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports:hover, body.games-body .game-stats-info-content .btn-underline:hover, body.admin-scorekeepers-body .interior-bin a:hover, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-display-apps-body .interior-bin a:hover, body.admin-dashboard-index-body #admin-forcast-table a:hover, body.admin-dashboard-index-body #admin-closed-games-table a:hover, body.admin-dashboard-index-body #admin-games-not-started-table a:hover, body.admin-dashboard-index-body #admin-current-games-table a:hover, body.admin-dashboard-index-body #delayed-jobs-table a:hover, body.admin-dashboard-index-body #admin-school-alerts-table a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a:hover, body.admin-dashboard-game-support-body .card.game-support-card .season-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-date a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-number a:hover, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-av-presets-body a.btn.btn-underline:hover, body.admin-av-presets-body button.btn.btn-underline:hover, body.admin-app-versions-body .btn.btn-underline:hover, body.admin-api-clients-body .admin-api-clients-table a:hover, body.admin-advanced-av-presets-body .btn.btn-underline:hover, a.btn.btn-help-modal:hover, .btn.btn-underline:hover, .filter-bin a.btn.btn-secondary:hover, .filter-bin button.btn.btn-secondary:hover {
  background-image: none !important;
  background-color: transparent !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* line 296, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete, .btn.btn-underline-delete, .filter-bin a.btn.btn-delete, .filter-bin button.btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
  border: 0;
}

/* line 313, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete:hover, .btn.btn-underline-delete:hover, .filter-bin a.btn.btn-delete:hover, .filter-bin button.btn.btn-delete:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* Filters Dropdown Search / Selection Field ---------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 10, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  color: #0f3950;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  overflow: hidden;
  font-weight: 600;
}

/* line 26, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__btn.filter__search-select__btn--small {
  height: calc(1.8125rem + 2px);
  font-size: 0.875rem;
}

/* line 32, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transform: translate3d(5px, 39px, 0) !important;
  z-index: 999999999;
}

@media (min-width: 576px) {
  /* line 32, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter__search-select__dropdown-bin {
    width: 100%;
  }
}

@media (min-width: 992px) {
  /* line 32, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter__search-select__dropdown-bin {
    width: 110%;
  }
}

@media (min-width: 1200px) {
  /* line 32, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter__search-select__dropdown-bin {
    width: 175%;
    max-width: 750px;
  }
}

/* line 52, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__search-bin {
  padding: 10px 16px 16px 16px;
}

/* line 56, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__search-bin .filter__search-select__search {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* line 60, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__search-bin .filter__search-select__search label {
  color: #0f3950;
  margin-bottom: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

/* line 70, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin {
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
  border-top: 1px solid #d6e0e6;
}

/* line 78, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__section-label {
  color: rgba(15, 57, 80, 0.72);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 6px !important;
  font-weight: 700;
  margin-top: 12px;
  background-color: #e6ebf0;
  padding: 4px 8px;
  border-radius: 4px;
  position: relative;
}

/* line 91, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__section-label:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 40px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-top: solid 6px #e6ebf0;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}

/* line 105, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__headline {
  font-size: 16px;
  color: #0f3950;
  width: 100%;
}

/* line 112, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__description {
  font-size: 15px;
  color: #18516e;
  width: 100%;
}

/* line 119, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__text--bold {
  font-weight: 800;
}

/* line 124, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__text--muted {
  opacity: 0.8 !important;
}

/* line 129, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__text--separator {
  opacity: 0.48 !important;
  font-weight: 500 !important;
}

/* line 135, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__text--link {
  color: #007bff !important;
  display: block;
  width: 100% !important;
}

/* line 141, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .filter__search-select__text--link:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* line 147, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .dropdown-item {
  padding: 0.5rem 1rem;
  color: #0f3950;
  font-weight: 600;
  border-bottom: 1px solid #e6ebf0;
  margin-bottom: 0;
}

/* line 155, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .dropdown-item:last-child {
  border-bottom: 0 solid #e6ebf0;
}

/* line 159, app/assets/stylesheets/global/5--sv-objects.scss */
.filter__search-select__dropdown-bin .filter__search-select__content-scrollbin .dropdown-item:hover {
  background-color: #ffffff;
  cursor: default;
}

/* TinyMCE Plugin for doc site styles */
/* line 169, app/assets/stylesheets/global/5--sv-objects.scss */
.content-documentation .img-responsive {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* Popup Modal Styling -------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* overlay color */
/* line 183, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-backdrop {
  background-color: #0f3950 !important;
}

/* modal box */
/* line 188, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-backdrop.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* line 192, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main {
  margin-left: 0;
  /* modal size */
  /* modal header */
  /* modal content */
}

@media (min-width: 768px) {
  /* line 192, app/assets/stylesheets/global/5--sv-objects.scss */
  .modal-main {
    margin-left: 320px;
  }
}

@media (max-width: 575.98px) {
  /* line 200, app/assets/stylesheets/global/5--sv-objects.scss */
  .modal-main .modal-dialog {
    width: 97vw !important;
  }
}

/* line 208, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main .modal-header .fa {
  color: #ffffff;
}

/* line 213, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main .pre-scrollable {
  min-height: 60vh;
  max-height: 80vh;
}

/* line 218, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main a.seasonlist-item {
  margin-bottom: 0;
}

/* line 223, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main .modal-dialog {
  width: 720px;
}

/* line 228, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main .modal-header {
  background-color: #0f3950;
  border-left: 6px solid #cddb3e;
  font-size: 22px;
  color: #ffffff;
}

/* line 236, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-main .modal-content {
  background-color: #ffffff;
  text-align: left;
  border: 0 !important;
  box-shadow: none !important;
}

/* Slideout Modal ------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 576px) {
  /* line 247, app/assets/stylesheets/global/5--sv-objects.scss */
  .modal-dialog.modal-dialog-slideout {
    width: 65% !important;
  }
}

/* line 252, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout {
  min-height: 100vh;
  margin: 0 0 0 auto;
  background: #ffffff;
}

/* line 257, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-header {
  border-radius: 0 !important;
}

/* line 261, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-content {
  min-height: 100vh;
  border: 0;
}

/* line 265, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-content a {
  color: #279ed5 !important;
}

/* line 269, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-content a.btn.btn-main {
  color: #fff !important;
}

/* line 273, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-content .pre-scrollable {
  height: calc(100vh - 270px) !important;
}

/* line 277, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-content .pre-scrollable.full-height-scroll {
  min-height: calc(100vh - 97px);
  max-height: calc(100vh - 97px);
}

/* line 283, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .modal-feature-bin {
  background-color: #e6ebf0;
  padding: 10px;
  margin-top: 15px;
}

/* line 289, app/assets/stylesheets/global/5--sv-objects.scss */
.modal-dialog-slideout .user-guides {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 10px 16px 0 16px;
  background-color: #ffffff;
  border-top: 1px solid #d6e0e6;
  width: 100%;
}

/* line 300, app/assets/stylesheets/global/5--sv-objects.scss */
.modal.fade .modal-dialog.modal-dialog-slideout {
  transform: translate(100%, 0);
}

/* line 305, app/assets/stylesheets/global/5--sv-objects.scss */
.modal.fade.show .modal-dialog.modal-dialog-slideout {
  transform: translate(0, 0);
  flex-flow: column;
}

/* Toast Alert Module --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 313, app/assets/stylesheets/global/5--sv-objects.scss */
.toast {
  margin-left: 0;
  top: 170px;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08), 0 2px 20px rgba(0, 0, 0, 0.13);
  box-sizing: border-box;
  position: fixed;
  width: 400px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: none;
}

@media (min-width: 768px) {
  /* line 313, app/assets/stylesheets/global/5--sv-objects.scss */
  .toast {
    margin-left: 160px;
    top: 80px;
  }
}

/* line 331, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-header {
  background-color: rgba(15, 57, 80, 0.95);
  padding: 8px 10px;
  align-items: center;
  display: flex;
  box-sizing: border-box;
  border-left: 8px solid #cddb3e;
}

/* line 339, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-header .subhead {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 500;
}

/* line 346, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-header .close-toast {
  margin-left: auto;
  align-items: center;
  display: flex;
}

/* line 351, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-header .close-toast .fa {
  color: #ffffff;
  font-size: 18px;
}

/* line 357, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-header .close-toast:hover {
  cursor: pointer;
}

/* line 362, app/assets/stylesheets/global/5--sv-objects.scss */
.toast .toast-message {
  padding: 15px 10px;
  color: #0f3950;
  background-color: #ffffff;
}

/* Image Preview Lightbox Modal ----------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 374, app/assets/stylesheets/global/5--sv-objects.scss */
.lightbox-modal .modal-dialog {
  max-width: 1000px;
  width: 97vw;
}

@media (min-width: 768px) {
  /* line 374, app/assets/stylesheets/global/5--sv-objects.scss */
  .lightbox-modal .modal-dialog {
    width: 50vw;
  }
}

/* line 385, app/assets/stylesheets/global/5--sv-objects.scss */
.lightbox-modal label {
  margin-top: 10px;
}

/* line 389, app/assets/stylesheets/global/5--sv-objects.scss */
.lightbox-modal button.btn.btn-underline.close {
  float: none;
  text-align: center;
  opacity: 1;
  margin-top: 15px;
}

/* line 396, app/assets/stylesheets/global/5--sv-objects.scss */
.lightbox-modal button.btn.btn-underline.close:hover {
  text-decoration: underline;
}

/* line 400, app/assets/stylesheets/global/5--sv-objects.scss */
.lightbox-modal img {
  width: 100%;
}

/* Practice App Media Settings Modal -----------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 407, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal {
  /* media column */
  /* fixed footer with save button */
}

/* line 409, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .modal-dialog {
  width: 950px;
  max-width: 950px;
}

/* line 414, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .modal-body {
  padding-top: 0;
  padding-bottom: 0;
  height: 700px;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* line 423, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 65px;
  height: 700px;
  overflow-y: scroll;
  overflow-x: hidden;
  /* media drag and drop bin */
  /* practice filter dropdown */
  /* separator column */
  /* media type filter dropdown */
}

/* line 432, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .col-media-cards {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 436, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .col-media-cards .card.add-card {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  margin-bottom: 10px;
}

/* line 443, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .practice-filter {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

/* line 451, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .practice-filter label {
  margin-right: 8px;
  font-size: 0.85rem;
}

/* line 456, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .practice-filter .form-control {
  padding: 0;
  width: calc(100% - 85px);
}

/* line 463, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .separator {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

/* line 469, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .media-filter {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
}

/* line 478, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .media-filter label {
  margin-right: 8px;
  font-size: 0.85rem;
}

/* line 483, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column .media-filter .form-control {
  padding: 0;
  width: calc(100% - 75px);
}

/* line 489, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table {
  table-layout: fixed;
  width: 100%;
  /* border around selected media row */
  /* checkbox table column */
  /* media preview column */
  /* settings form column */
  /* row action button column */
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.media_settings-modal .media-column table#practice-app-media-table th:nth-child(1) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.media_settings-modal .media-column table#practice-app-media-table th:nth-child(2) {
  width: 18%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.media_settings-modal .media-column table#practice-app-media-table th:nth-child(3) {
  width: 63%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.media_settings-modal .media-column table#practice-app-media-table th:nth-child(4) {
  width: 14%;
}

/* line 493, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table .selected-media {
  outline: 2px solid #007bff;
  outline-offset: -3px;
}

/* line 498, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table th {
  text-align: center;
}

/* line 502, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table tr:hover {
  background-color: #e6ebf0;
}

/* line 507, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.selection-tab {
  border: 1px solid #d6e0e6;
  text-align: center;
}

/* line 511, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.selection-tab .form-check {
  margin-right: 0;
}

/* line 515, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.selection-tab label.checkbox-container {
  font-size: 2em;
}

/* line 519, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.selection-tab input {
  margin-right: 0;
}

/* line 525, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-preview-info {
  font-size: 0.8em;
}

/* line 528, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-preview-info .preview-image-bin {
  display: flex;
  flex-direction: column;
}

/* line 532, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-preview-info .preview-image-bin .preview-image {
  height: 80px;
  width: 100%;
  overflow: hidden;
  border: 1px solid #d6e0e6;
}

/* line 538, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-preview-info .preview-image-bin .preview-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 545, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-preview-info .preview-image-bin .media-name {
  margin-bottom: 8px;
}

/* line 552, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings {
  padding-bottom: 4px;
}

/* line 555, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .media-settings-form {
  display: flex;
  flex-direction: column;
}

/* line 559, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .media-settings-form .radio-buttons {
  margin-top: auto;
}

/* line 562, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .media-settings-form .radio-buttons .btn-group {
  display: block;
  width: 100%;
}

/* line 567, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .media-settings-form .radio-buttons a.btn.btn-tab {
  background-color: #cee2ed;
  color: #539ec2;
  font-size: 13px;
  width: 49.5%;
  font-weight: 600;
  padding: 1px 10px;
  margin-bottom: 10px;
}

/* line 577, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .media-settings-form .radio-buttons a.btn.btn-tab.active {
  background-color: #539EC6 !important;
  color: #ffffff !important;
}

/* line 585, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .settings-form .form-row {
  margin-left: -5px;
  margin-right: -5px;
}

/* line 590, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .settings-form .form-group {
  padding: 0 5px 0 5px;
  margin-bottom: 5px;
}

/* line 594, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.media-settings .settings-form .form-group label {
  font-size: 12px;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* line 604, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-column table#practice-app-media-table td.action-buttons {
  border: 1px solid #d6e0e6;
  text-align: center;
}

/* line 612, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  padding: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid #d6e0e6;
}

/* line 623, app/assets/stylesheets/global/5--sv-objects.scss */
.media_settings-modal .media-modal-footer .btn.btn-secondary {
  margin-right: 10px;
  height: 35px;
  width: 150px;
}

/* Preview Media Modal -------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 634, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .modal-title, #dms-preview-media-modal .modal-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

/* line 641, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .modal-title .btn.btn-main, #dms-preview-media-modal .modal-title .btn.btn-main {
  margin-right: 8px;
  width: 28px;
  aspect-ratio: 1/1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* line 651, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .modal-title .btn.btn-main .fa, #dms-preview-media-modal .modal-title .btn.btn-main .fa {
  font-size: 16px;
}

/* line 657, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal #preview-media-body, #dms-preview-media-modal #preview-media-body {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}

/* line 664, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin, #dms-preview-media-modal .carousel-content-bin {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  min-height: 300px;
  padding: 16px;
}

/* line 676, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin #sequenceCarousel, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel {
  display: block;
  width: 75%;
}

/* line 680, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin #sequenceCarousel a.carousel-control-prev, #preview-media-modal .carousel-content-bin #sequenceCarousel a.carousel-control-next, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel a.carousel-control-prev, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel a.carousel-control-next {
  z-index: 4;
}

/* line 684, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin #sequenceCarousel .carousel-inner, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel .carousel-inner {
  height: 100%;
  width: 100%;
}

/* line 690, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin #sequenceCarousel .carousel-item, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel .carousel-item {
  background-image: none !important;
}

/* line 694, app/assets/stylesheets/global/5--sv-objects.scss */
#preview-media-modal .carousel-content-bin #sequenceCarousel img, #dms-preview-media-modal .carousel-content-bin #sequenceCarousel img {
  height: 100%;
  width: 100%;
}

/* Twitter User Connection Form Module ----------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Global Carousel -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 824, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel {
  /* whole inner carousel */
  /* slides padding */
  /* team logo */
  /* headline */
  /* contents */
}

/* line 826, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .carousel-inner {
  width: 100%;
  background-color: #0f3950;
}

/* line 833, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .carousel-item {
  height: 215px;
  text-align: center;
  padding: 0;
  background-image: url(http://localhost:3000/assets/carousel_background_11-04f6340d484d0b6ef6f816348c14edddce676c061a572b332252990c4b7bd4a3.jpg);
  background-repeat: no-repeat;
  background-position: center;
}

/* line 843, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel a.carousel-control-prev, #upcoming-games-carousel.carousel a.carousel-control-next {
  width: 8%;
}

/* line 848, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .team-logo-carousel {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  height: 100px;
}

/* line 856, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .carousel-caption.games {
  padding-bottom: 5px;
}

/* line 861, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .title {
  color: #ffffff;
  text-shadow: 1px 1px #222222;
  font-weight: bold;
}

/* line 868, app/assets/stylesheets/global/5--sv-objects.scss */
#upcoming-games-carousel.carousel .body {
  color: #ffffff;
  text-shadow: 1px 1px #222222;
  font-weight: 600;
}

/* Global Filter Bin ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* column */
/* line 879, app/assets/stylesheets/global/5--sv-objects.scss */
.col-filter-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
}

/* container base */
/* line 886, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 auto;
  background-color: #f6f8fb;
  padding-top: 12px;
  padding-bottom: 10px;
}

/* line 894, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .buttons-bin {
  display: flex;
  align-items: center;
}

/* line 898, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .buttons-bin .add-new-button-bin {
  display: flex;
  flex-direction: row;
}

/* line 903, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .buttons-bin .add-new-button-bin li a {
  display: block;
}

/* line 908, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .buttons-bin .my-team-bin {
  margin-left: auto;
}

/* line 913, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .buttons-bin .actions-button-bin {
  margin-left: auto;
}

/* line 918, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin a.btn.btn-secondary, .filter-bin button.btn.btn-secondary {
  width: auto !important;
}

/* line 923, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin a.btn.btn-delete, .filter-bin button.btn.btn-delete {
  width: auto !important;
}

/* line 928, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .hr {
  margin-top: 8px;
  margin-bottom: 4px;
}

/* line 933, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-row {
  align-items: flex-end;
  -webkit-box-align: end;
}

@media (max-width: 767.98px) {
  /* line 933, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter-bin .form-row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (min-width: 768px) {
  /* line 933, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter-bin .form-row {
    margin-left: -7px;
    margin-right: -7px;
  }
}

/* line 947, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-group {
  margin-bottom: 0;
  text-align: left !important;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  /* line 947, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter-bin .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px 5px 15px !important;
  }
}

@media (min-width: 768px) {
  /* line 947, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter-bin .form-group {
    padding: 0 8px 5px 8px !important;
  }
}

/* line 962, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-group label {
  font-size: 13px;
  margin-bottom: 3px !important;
}

/* line 967, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-group .form-control {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 977, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-group input, .filter-bin .form-group select, .filter-bin .form-group option {
  font-size: 14px !important;
}

/* line 981, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .form-group .form-control.datetimepicker {
  height: auto !important;
  font-size: 14px !important;
}

/* line 1001, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .apply-filters-button-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 10px;
  display: -moz-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center !important;
}

@media (max-width: 767.98px) {
  /* line 1001, app/assets/stylesheets/global/5--sv-objects.scss */
  .filter-bin .apply-filters-button-bin {
    margin-top: 10px;
  }
}

/* line 1021, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .apply-filters-button-bin a, .filter-bin .apply-filters-button-bin .btn {
  width: auto !important;
  margin: 0 8px;
}

/* line 1026, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .apply-filters-button-bin a.btn.btn-clear {
  border-radius: 0;
  opacity: 0.55;
  filter: alpha(opacity=55);
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  color: #18516e;
  padding: 0;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  font-size: 13px;
  line-height: 12px;
  font-weight: 600;
  text-transform: capitalize;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 1044, app/assets/stylesheets/global/5--sv-objects.scss */
.filter-bin .apply-filters-button-bin a.btn.btn-clear:hover {
  text-decoration: underline;
}

/* Global Cards Base and Assets ----------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Override bootstrap's .card styles */
/* https://getbootstrap.com/docs/4.0/components/card/ */
/* card base -------------------------------------------------------------------------------------------------------- */
/* line 1058, app/assets/stylesheets/global/5--sv-objects.scss */
.card {
  position: relative;
  background-color: #f6f8fb;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border: 0 !important;
  display: flex !important;
  /* small card header bar ------------------------------------------------------------------------------------------ */
  /* large header bar ----------------------------------------------------------------------------------------------- */
  /* card feature image overlay ------------------------------------------------------------------------------------- */
  /* blue overlay over half the feature image */
  /* red overlay over half the feature image when all images are missing */
  /* yellow overlay over half the feature image when some images are missing */
  /* card feature image --------------------------------------------------------------------------------------------- */
  /* large top hero image */
  /* small top hero image */
  /* feature image hover overlay for preview modal ------------------------------------------------------------------ */
  /* no feature image available indicator --------------------------------------------------------------------------- */
  /* card checkbox -------------------------------------------------------------------------------------------------- */
  /* checkbox container */
  /* create a custom checkbox */
  /* when the checkbox is hovered, add a green background */
  /* create the checkmark/indicator (gray when not checked) */
  /* don't show checkmark on hover */
  /* card content bin ----------------------------------------------------------------------------------------------- */
  /* Card Image Slider ---------------------------------------------------------------------------------------------- */
  /* feature slider */
  /* Card list Group ------------------------------------------------------------------------------------------------ */
  /* list group */
  /* card footer bin ------------------------------------------------------------------------------------------------ */
}

/* line 1070, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.small {
  min-height: 26px;
  padding: 6px 16px 4px 16px;
  background-color: #18516e;
  margin-bottom: 15px;
  color: #ffffff;
  border-bottom: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 1083, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.small a {
  color: #ffffff;
  margin-bottom: 0;
}

/* line 1088, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.small a:hover {
  color: #ffffff;
  cursor: pointer;
}

/* line 1095, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.large {
  background-color: #18516e;
  position: relative;
  height: 50px;
  margin-bottom: 45px;
  /* feature image */
}

/* line 1102, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.large .feature-image {
  top: 0;
  position: relative;
  height: 80px;
  width: 80px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border-radius: 50%;
}

/* line 1114, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-header.large .feature-image img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}

/* line 1129, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay {
  background-color: rgba(15, 57, 80, 0.9);
  position: absolute;
  right: 0;
  height: inherit;
  width: 40% !important;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  /* number */
  /* items subtitle */
}

/* line 1140, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay .title {
  color: #ffffff;
  margin-bottom: 0;
}

/* line 1146, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay .subtitle {
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #cddb3e;
}

/* line 1157, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-red {
  background-color: rgba(255, 0, 0, 0.9);
  position: absolute;
  right: 0;
  height: inherit;
  width: 40% !important;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  /* number */
  /* items subtitle */
}

/* line 1168, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-red .title {
  color: #ffffff;
  margin-bottom: 0;
}

/* line 1174, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-red .subtitle {
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

/* line 1185, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-yellow {
  background-color: rgba(255, 200, 0, 0.9);
  position: absolute;
  right: 0;
  height: inherit;
  width: 40% !important;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  /* number */
  /* items subtitle */
}

/* line 1196, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-yellow .title {
  color: #0f3950;
  margin-bottom: 0;
}

/* line 1202, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image-overlay-yellow .subtitle {
  font-size: 11px;
  line-height: 11px;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f3950;
}

/* line 1214, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image {
  position: relative;
}

/* line 1218, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image img, .card .card-hero-image video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 125px;
}

/* line 1227, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image.large {
  height: 125px;
}

/* line 1230, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image.large img, .card .card-hero-image.large video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 1238, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image.small {
  height: 70px;
}

/* line 1241, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image.small img, .card .card-hero-image.small video {
  height: 70px;
}

/* line 1246, app/assets/stylesheets/global/5--sv-objects.scss */
.card a.feature_image_link {
  width: 100%;
  height: 100%;
  color: #ffffff;
  margin-bottom: 0;
}

/* line 1253, app/assets/stylesheets/global/5--sv-objects.scss */
.card a.feature_image_link:hover {
  cursor: pointer;
}

/* line 1260, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image .preview-img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(15, 57, 80, 0.75);
}

/* line 1272, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image .preview-img-overlay .label-2 {
  text-align: center;
  color: #ffffff;
  margin-top: 58px;
  margin-bottom: 0;
}

/* line 1281, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-hero-image.large:hover .preview-img-overlay {
  opacity: 1;
  cursor: zoom-in;
}

/* line 1287, app/assets/stylesheets/global/5--sv-objects.scss */
.card .no-preview-alert {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}

/* line 1292, app/assets/stylesheets/global/5--sv-objects.scss */
.card .no-preview-alert .subtitle {
  width: 98%;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

/* line 1306, app/assets/stylesheets/global/5--sv-objects.scss */
.card .form-check {
  position: absolute;
  display: block;
  text-align: right;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* hide the browser's default checkbox */
  /* show the checkmark when checked */
  /* style the checkmark/indicator */
}

/* line 1317, app/assets/stylesheets/global/5--sv-objects.scss */
.card .form-check input {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 1324, app/assets/stylesheets/global/5--sv-objects.scss */
.card .form-check input:checked ~ .checkmark:after {
  display: block;
  border-color: #ffffff;
}

/* line 1332, app/assets/stylesheets/global/5--sv-objects.scss */
.card .form-check .checkmark:after {
  top: 6px;
  left: 9px;
  position: absolute;
  border-style: solid;
  height: 10px;
  width: 5px;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* line 1345, app/assets/stylesheets/global/5--sv-objects.scss */
.card .checkmark {
  transition: all 0.3s ease;
  top: 0;
  position: absolute;
  border: 2px solid #d6e0e6;
  height: 26px;
  width: 26px;
  cursor: pointer;
  background-color: #ffffff;
}

/* line 1358, app/assets/stylesheets/global/5--sv-objects.scss */
.card .checkmark:hover,
.card .form-check input:checked ~ .checkmark {
  background-color: #cddb3e !important;
  border: 2px solid #cddb3e;
}

/* line 1365, app/assets/stylesheets/global/5--sv-objects.scss */
.card .checkmark:after {
  content: "";
  display: block;
  border-color: #d6e0e6;
}

/* line 1372, app/assets/stylesheets/global/5--sv-objects.scss */
.card input:hover ~ .checkmark:after {
  border-color: rgba(255, 255, 255, 0.4);
}

/* line 1377, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-body {
  padding: 0 1rem 0 1rem;
}

/* line 1380, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-body a {
  color: #18516e;
  margin-bottom: 0;
}

/* line 1385, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-body a:hover {
  cursor: pointer;
  text-decoration: none;
}

/* line 1394, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-media-scroll {
  margin: 0;
  height: 48px;
  background: #f6f8fb;
  overflow: auto;
  white-space: nowrap;
  /* feature images margins */
}

/* line 1402, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-media-scroll img {
  border: 1px solid #d6e0e6;
  height: 33px;
  width: auto;
  margin: 2px 2px 0 2px;
}

/* line 1414, app/assets/stylesheets/global/5--sv-objects.scss */
.card ul {
  margin: 10px 0 10px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

/* line 1423, app/assets/stylesheets/global/5--sv-objects.scss */
.card ul li {
  display: flex;
  align-items: center;
  width: 100%;
  -webkit-box-align: center;
  justify-content: space-between;
  padding: 5px 10px 5px 10px;
  position: relative;
  margin-bottom: -1px;
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
  font-size: 12px;
  color: #18516e;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* line 1441, app/assets/stylesheets/global/5--sv-objects.scss */
.card ul li .list-label-right {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
  text-align: right;
}

/* line 1451, app/assets/stylesheets/global/5--sv-objects.scss */
.card ul li a {
  text-decoration: underline;
}

/* line 1455, app/assets/stylesheets/global/5--sv-objects.scss */
.card ul li a:hover {
  opacity: 0.7;
}

/* line 1462, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-footer {
  border: 0;
  padding: 8px 16px 8px 16px;
  background-color: #e6ebf0;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
  width: 100%;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
  min-height: 26px;
}

/* line 1479, app/assets/stylesheets/global/5--sv-objects.scss */
.card .card-footer .form-group {
  margin-bottom: 0;
}

/* Global Add Card -----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* line 1488, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card {
  /* link wrapper */
}

/* line 1491, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.card-link {
  display: flex !important;
  align-items: center !important;
  cursor: pointer;
  height: 100%;
  padding: 1rem;
  margin-bottom: 0;
  /* icon and headline bin */
}

/* line 1501, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.card-link .headline-icon-bin {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1em;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
  /* icon */
}

/* line 1512, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.card-link .headline-icon-bin .fa {
  display: block;
  color: #18516e;
  font-size: 1.625em;
}

/* Add Card with file button */
/* line 1524, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.btn-file {
  padding: 0;
}

/* line 1527, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.btn-file .form-group {
  height: 100% !important;
  width: 100% !important;
  padding: 0;
  margin-bottom: 0;
}

/* line 1533, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.btn-file .form-group input {
  z-index: 2;
  padding: 0;
  height: 250px !important;
  margin-top: -100px;
  font-size: 0;
  cursor: pointer;
}

/* line 1543, app/assets/stylesheets/global/5--sv-objects.scss */
.card.add-card a.btn-file .headline-icon-bin {
  position: absolute;
  top: 33%;
  width: 100%;
}

/* Game Card -----------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 1555, app/assets/stylesheets/global/5--sv-objects.scss */
.col-game-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 1555, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-game-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 1555, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-game-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 1555, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-game-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 1577, app/assets/stylesheets/global/5--sv-objects.scss */
.col-game-cards .card.add-card {
  min-height: 242.625px;
}

/* line 1582, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card {
  min-height: 242.625px;
  /* makes header red when game is over */
  /* checkbox location */
}

/* line 1585, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-header.small {
  padding-right: 40px;
}

/* line 1590, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-header.final {
  padding-right: 40px;
  background-color: #d32f2f !important;
}

/* line 1596, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .form-check {
  right: 22px;
  top: 5%;
}

/* line 1601, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body {
  /* border below team names and scores */
  /* game options button bin */
}

/* line 1604, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .team-name-score {
  border-bottom: 1px solid #d6e0e6;
}

/* line 1609, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .game-options-bin {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 10px;
  /* location bin */
}

/* line 1615, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .game-options-bin .location {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 1648, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8px;
  margin-top: 8px;
}

/* line 1655, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 2px;
  box-sizing: border-box;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #d6e0e6;
  min-height: 32px;
}

/* line 1667, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn .game-card-btn__content-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* line 1675, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn .game-card-btn__icon-bin {
  height: 24px;
  width: 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 1683, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn .game-card-btn__icon-bin .fa {
  font-size: 14px;
  color: #0f3950;
}

/* line 1689, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn .game-card-btn__label-bin {
  padding-left: 2px;
  box-sizing: border-box;
  flex: 1;
  width: calc(100% - 24px);
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  color: #0f3950;
}

/* line 1703, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn {
  width: calc(50% - 4px);
  margin: 2px;
}

/* line 1708, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-media-override-btn {
  width: calc(100% - 4px);
  margin: 2px;
}

/* line 1713, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn:hover, .card.game-card .card-body .action-btns-bin .game-media-override-btn:hover {
  border: 1px solid #007bff;
}

/* line 1716, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn:hover .fa, .card.game-card .card-body .action-btns-bin .game-media-override-btn:hover .fa {
  color: #007bff;
}

/* line 1720, app/assets/stylesheets/global/5--sv-objects.scss */
.card.game-card .card-body .action-btns-bin .game-card-btn:hover .game-card-btn__label-bin, .card.game-card .card-body .action-btns-bin .game-media-override-btn:hover .game-card-btn__label-bin {
  color: #007bff;
}

/* OrgMessage Card -----------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 1732, app/assets/stylesheets/global/5--sv-objects.scss */
.col-org-message-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 1732, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-message-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 1732, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-message-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 1732, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-message-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 1754, app/assets/stylesheets/global/5--sv-objects.scss */
.col-org-message-cards .card.add-card {
  min-height: 275px;
}

/* line 1759, app/assets/stylesheets/global/5--sv-objects.scss */
.card.org-message-card {
  min-height: 275px;
  overflow: visible !important;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  /* checkbox location */
}

/* line 1765, app/assets/stylesheets/global/5--sv-objects.scss */
.card.org-message-card .card-header.small {
  padding-right: 40px;
}

/* line 1770, app/assets/stylesheets/global/5--sv-objects.scss */
.card.org-message-card .form-check {
  right: 22px;
  top: 5%;
}

/* Event Card -----------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 1783, app/assets/stylesheets/global/5--sv-objects.scss */
.col-event-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 1783, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-event-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 1783, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-event-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 1783, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-event-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 1805, app/assets/stylesheets/global/5--sv-objects.scss */
.col-event-cards .card.add-card {
  min-height: 200px;
}

/* line 1810, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card {
  /* makes header red when event is over */
  /* checkbox location */
}

/* line 1813, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-header.small {
  padding-right: 40px;
}

/* line 1818, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-header.final {
  padding-right: 40px;
  background-color: #d32f2f !important;
}

/* line 1824, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .form-check {
  right: 22px;
  top: 12px;
}

/* line 1829, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body {
  /* border below team names and scores */
  /* event options button bin */
}

/* line 1830, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .event-description {
  font-weight: 600;
}

/* line 1835, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .team-name-score {
  border-bottom: 1px solid #d6e0e6;
}

/* line 1840, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .event-options-bin {
  text-align: center;
  margin-bottom: 5px;
  /* location bin */
}

/* line 1845, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .event-options-bin .location {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 1854, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .event-options-bin a.btn.btn-main {
  margin-left: 3px;
  margin-right: 3px;
  height: 38px !important;
  width: 38px !important;
  padding: 12px !important;
  background-image: linear-gradient(to right, #498fb2 0%, #498fb2 100%);
  background-color: #539ec2;
  display: inline-block !important;
}

/* line 1864, app/assets/stylesheets/global/5--sv-objects.scss */
.card.event-card .card-body .event-options-bin a.btn.btn-main .fa {
  font-size: 15px;
  text-align: center;
  color: #ffffff !important;
}

/* Practice App Card ---------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* line 1882, app/assets/stylesheets/global/5--sv-objects.scss */
.col-practice-app-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 1882, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-practice-app-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 1882, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-practice-app-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 1882, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-practice-app-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 1902, app/assets/stylesheets/global/5--sv-objects.scss */
.col-practice-app-cards .card.add-card {
  min-height: 231px;
}

/* line 1907, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card {
  min-height: 231px;
  /* header */
  /* checkbox location */
  /* media name */
  /* content padding */
}

/* line 1912, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .card-header.small {
  margin-bottom: 0;
}

/* line 1916, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .card-hero-image-overlay {
  background-color: rgba(0, 0, 0, 0);
  width: 70px !important;
  border-left: 1px solid #18516e;
}

/* line 1922, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .team-matchup-bin {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: calc(100% - 70px);
}

/* line 1930, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .team-matchup-bin img.team-logo {
  width: 55px;
  height: auto;
  background-color: #18516e;
  border-radius: 50px;
  padding: 5px;
}

/* line 1939, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .team-matchup-bin label {
  width: 24px;
  color: #cddb3e;
  text-align: center;
}

/* line 1946, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .fallback-img-bin {
  width: calc(100% - 70px);
  height: 125px;
  margin-right: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 1954, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .fallback-img-bin img {
  width: auto;
  max-height: 100px;
  height: 80%;
}

/* line 1962, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .form-check {
  right: 35px;
  top: 89%;
}

/* line 1968, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .description {
  font-size: 14px;
  padding: 0.625rem 1rem 0.625rem 1rem;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 1978, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .practice-options-bin {
  text-align: center;
  padding: 0 1rem 0.625rem 1rem;
}

/* line 1982, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .practice-options-bin a.btn.btn-main {
  margin-left: 3px;
  margin-right: 3px;
  height: 38px !important;
  width: 38px !important;
  padding: 12px !important;
  background-image: linear-gradient(to right, #498fb2 0%, #498fb2 100%);
  background-color: #539ec2;
  display: inline-block !important;
}

/* line 1992, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .practice-options-bin a.btn.btn-main .fa {
  font-size: 15px;
  text-align: center;
  color: #ffffff !important;
}

/* line 2005, app/assets/stylesheets/global/5--sv-objects.scss */
.card.practice-app-card .card-body {
  padding: unset;
}

/* Media Group Card ----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 2014, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-group-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2014, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-group-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2014, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-group-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 2014, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-group-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2035, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card {
  min-height: 231px;
  /* header */
  /* media name */
  /* content padding */
}

/* line 2040, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .card-header.small {
  margin-bottom: 0;
}

/* line 2044, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .sv-capture-header {
  background-color: #cddb3e;
  color: #18516e;
}

/* line 2050, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .description {
  font-size: 14px;
  padding: 0.625rem 1rem 1rem 1rem;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 2061, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .card-body {
  padding: unset;
}

/* line 2065, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .card-footer {
  position: relative;
}

/* line 2069, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-group-card .usage-state-bin {
  background-color: #d6e0e6 !important;
  border-radius: 4px;
  color: rgba(15, 57, 80, 0.7) !important;
  width: 57px;
  text-align: center;
  box-sizing: border-box;
  padding: 4px 0 4px 0;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

/* Individual Media Card -----------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 2089, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2089, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2089, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 2089, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2112, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-cards .card.add-card {
  min-height: 199px;
  padding: 7px;
}

/* line 2116, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-cards .card.add-card a.btn-file.card-link {
  border: 2px dashed #d6e0e6;
}

/* line 2121, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-cards .card.add-card label.control-label {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1em !important;
  text-transform: capitalize !important;
  line-height: 1.3em;
  font-weight: 700 !important;
  color: #18516e !important;
}

/* line 2132, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-cards .card.add-card .body {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
}

/* line 2140, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card {
  min-height: 199px;
  /* checkbox location */
  /* card body */
}

/* line 2143, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-hero-image.large {
  transition: opacity 0.3s;
}

/* line 2149, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .form-check {
  right: 22px;
  top: 89%;
}

/* line 2155, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body {
  padding: 1.35rem 0.7rem 1.35rem 0.7rem;
  /* media name */
}

/* line 2159, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 2167, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body .description .update_name_sponsor_image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 2176, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body .description .form-group {
  padding: 0;
  width: calc(100% - 60px) !important;
  margin-bottom: 0;
}

/* line 2181, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body .description .form-group .form-control {
  font-size: 0.85rem;
  height: auto !important;
  padding: 5px 12px 5px 12px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 2190, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body .description input.btn.btn-main {
  width: 55px !important;
  font-size: 9.5px;
  margin-left: 0;
  padding: 12px 0 10px 0;
  border-radius: 0 0.25rem 0.25rem 0 !important;
}

/* line 2200, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body ul.list-group.starter-pack-resource-group li {
  height: 40px;
  display: flex;
  align-items: center;
}

/* line 2205, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body ul.list-group.starter-pack-resource-group li input.form-check-input {
  top: 2px;
}

/* line 2209, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-body ul.list-group.starter-pack-resource-group li .btn.btn-underline:hover {
  text-decoration: underline !important;
}

/* line 2218, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-footer .url-status-indicator {
  height: 12px;
  width: 12px;
  margin-left: -8px;
  margin-right: 5px;
}

/* line 2226, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-footer .assigned {
  background-color: #8bc34a;
}

/* line 2230, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-card .card-footer .not-assigned {
  background-color: #b0bec5;
  opacity: 0.6;
}

/* Sponsored Organizations Sequence Card -------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* line 2240, app/assets/stylesheets/global/5--sv-objects.scss */
.col-sponsored-organizations-sequence-card {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2240, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-sponsored-organizations-sequence-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2240, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-sponsored-organizations-sequence-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 2240, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-sponsored-organizations-sequence-card {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2261, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card {
  /* content padding */
}

/* line 2263, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card .card-header.small {
  margin-bottom: 0;
}

/* line 2268, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card .card-body {
  padding: 0.625rem 1rem 1rem 1rem;
  /* description */
}

/* line 2272, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 2281, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card .card-body .form-group {
  margin: 0 auto;
}

/* line 2287, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sponsored-organizations-sequence-card .card-footer .btn.btn-main, .card.sponsored-organizations-sequence-card .card-footer .btn.btn-delete {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Media Sequence Card -------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 2298, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-sequence-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2298, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-sequence-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2298, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-sequence-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 2298, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-sequence-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2320, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-sequence-cards .card.add-card {
  min-height: 201px;
}

/* line 2325, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-sequence-card {
  min-height: 201px;
  /* checkbox */
  /* content padding */
}

/* line 2328, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-sequence-card .card-header.small {
  margin-bottom: 0;
}

/* line 2333, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-sequence-card .form-check {
  right: 22px;
  top: 89%;
  z-index: 1;
}

/* line 2340, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-sequence-card .card-body {
  padding: unset;
  /* description */
}

/* line 2344, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-sequence-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* Sequence Builder Cards ----------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* preview image hover */
/* line 2360, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .preview-img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(15, 57, 80, 0.75);
}

/* line 2372, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .preview-img-overlay .label-2 {
  text-align: center;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 0;
}

/* line 2382, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .feature-image-bin:hover .preview-img-overlay {
  opacity: 1;
  cursor: zoom-in;
}

/* line 2389, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column {
  border: 1px dashed #539ec2 !important;
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  /* line 2389, app/assets/stylesheets/global/5--sv-objects.scss */
  .available-media-column {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
}

/* Filter Bin */
/* line 2406, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .slider-bin, .selected-media-column .slider-bin {
  margin-bottom: 8px;
  border-bottom: 1px solid #d6e0e6;
  border-top: 1px solid #d6e0e6;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #f6f8fb;
  height: auto;
}

/* line 2415, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .slider-bin a.btn.btn-main.expand-btn, .selected-media-column .slider-bin a.btn.btn-main.expand-btn {
  margin-bottom: 0 !important;
}

/* line 2419, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .slider-bin .slider-body, .selected-media-column .slider-bin .slider-body {
  padding-top: 2px;
}

/* line 2423, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .slider-bin .slider-body-2, .selected-media-column .slider-bin .slider-body-2 {
  padding-top: 10px;
}

/* line 2427, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .slider-bin .filter-bin, .selected-media-column .slider-bin .filter-bin {
  padding: 0;
}

/* line 2433, app/assets/stylesheets/global/5--sv-objects.scss */
.selected-media-column {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  /* line 2433, app/assets/stylesheets/global/5--sv-objects.scss */
  .selected-media-column {
    flex: 0 0 100%;
    max-width: 100%;
    float: none;
    border-top: 0 dashed #539ec2 !important;
    border-right: 1px dashed #539ec2 !important;
    border-bottom: 1px dashed #539ec2 !important;
    border-left: 1px dashed #539ec2 !important;
  }
}

@media (min-width: 768px) {
  /* line 2433, app/assets/stylesheets/global/5--sv-objects.scss */
  .selected-media-column {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
    float: right;
    border-top: 1px dashed #539ec2 !important;
    border-right: 1px dashed #539ec2 !important;
    border-bottom: 1px dashed #539ec2 !important;
    border-left: 0;
  }
}

/* line 2455, app/assets/stylesheets/global/5--sv-objects.scss */
.selected-media-column .row {
  height: 100%;
}

/* line 2459, app/assets/stylesheets/global/5--sv-objects.scss */
.selected-media-column #selected-media-collection {
  width: 100%;
  height: calc(100% - 43px);
  min-height: 400px;
}

/* line 2465, app/assets/stylesheets/global/5--sv-objects.scss */
.selected-media-column #selected-media-collection.ui-droppable-active {
  background-color: rgba(176, 189, 28, 0.25);
}

/* line 2471, app/assets/stylesheets/global/5--sv-objects.scss */
.available-media-column .gray-headline-bin, .selected-media-column .gray-headline-bin {
  margin-left: -15px;
  margin-bottom: 0;
  margin-right: -15px;
}

/* line 2478, app/assets/stylesheets/global/5--sv-objects.scss */
.sponsor-image, .available-images {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 576px) {
  /* line 2478, app/assets/stylesheets/global/5--sv-objects.scss */
  .sponsor-image, .available-images {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2478, app/assets/stylesheets/global/5--sv-objects.scss */
  .sponsor-image, .available-images {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 2478, app/assets/stylesheets/global/5--sv-objects.scss */
  .sponsor-image, .available-images {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2501, app/assets/stylesheets/global/5--sv-objects.scss */
.available-images .ui-draggable-dragging, .sponsor-image .ui-draggable-dragging {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

/* line 2506, app/assets/stylesheets/global/5--sv-objects.scss */
.available-images .ui-draggable-dragging .card-body, .sponsor-image .ui-draggable-dragging .card-body {
  background-color: #cddb3e !important;
}

/* line 2514, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection .sequence-media-card .card-body {
  background-color: #f6f8fb;
}

/* line 2519, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection .col-available-media-cards.ui-draggable-dragging {
  padding-left: 8px;
  padding-right: 8px;
}

@media (min-width: 576px) {
  /* line 2519, app/assets/stylesheets/global/5--sv-objects.scss */
  #selected-media-collection .col-available-media-cards.ui-draggable-dragging {
    width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2519, app/assets/stylesheets/global/5--sv-objects.scss */
  #selected-media-collection .col-available-media-cards.ui-draggable-dragging {
    width: 35.5%;
  }
}

@media (min-width: 1200px) {
  /* line 2519, app/assets/stylesheets/global/5--sv-objects.scss */
  #selected-media-collection .col-available-media-cards.ui-draggable-dragging {
    width: 24%;
  }
}

/* line 2533, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection .col-available-media-cards.ui-draggable-dragging .card-body {
  background-color: #cddb3e !important;
}

/* line 2541, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection.ui-sortable .col-selected-media-cards.ui-sortable-helper {
  width: 90% !important;
}

/* line 2544, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection.ui-sortable .col-selected-media-cards.ui-sortable-helper .selected-media-actions-bin {
  display: none;
}

/* line 2548, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection.ui-sortable .col-selected-media-cards.ui-sortable-helper .card-body {
  background-color: #cddb3e !important;
}

/* line 2552, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection.ui-sortable .col-selected-media-cards.ui-sortable-helper table tr {
  background-color: #cddb3e;
  border: 1px solid #18516e;
}

/* line 2557, app/assets/stylesheets/global/5--sv-objects.scss */
#selected-media-collection.ui-sortable .col-selected-media-cards.ui-sortable-helper .form-control {
  border: 1px solid #18516e;
}

/* column setup  for available media side*/
/* line 2565, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card {
  /* overall card padding */
}

/* line 2567, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body {
  padding: 5px;
  min-height: 108px;
  /* make feature bin full width */
  /* media name and info bin full width */
  /* hides selected media actions bin */
}

/* line 2571, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .number-bin-button {
  visibility: visible;
  z-index: 1;
  text-align: center;
  background-color: #18516e;
  left: 10px;
  padding: 5px 0 3px 0;
  height: 20px;
  width: 20px;
  margin-top: -9px;
}

/* line 2584, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .feature-image-bin {
  flex: 0 0 100%;
  max-width: 100%;
  /* image bin height */
}

/* line 2588, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .feature-image-bin .feature-image {
  height: 60px;
  /* image max height */
}

/* line 2592, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .feature-image-bin .feature-image img {
  max-height: 60px;
}

/* line 2599, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .media-content-bin {
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: 5px;
  padding-left: 0;
  /* media name font size */
  /* hides separator */
  /* hides media group name */
  /* hides media type label */
}

/* line 2605, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .media-content-bin .media-name {
  font-size: 11px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 2615, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .media-content-bin .hr {
  display: none !important;
}

/* line 2620, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .media-content-bin .media-group {
  display: none !important;
}

/* line 2625, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .media-content-bin .media-type {
  display: none !important;
}

/* line 2631, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .selected-media-actions-bin {
  display: none !important;
  /* hides selected media options dropdown */
}

/* line 2635, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body .selected-media-actions-bin .selected-media-options.collapse {
  display: none !important;
}

/* column setup  for selected media side*/
/* line 2644, app/assets/stylesheets/global/5--sv-objects.scss */
.col-selected-media-cards {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* remove overflow hidden for calendar pickers */
/* line 2653, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card {
  overflow: visible !important;
  margin-bottom: 5px;
  /* remove margins */
  /* content padding */
  /* options dropdwon content */
}

/* line 2658, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .row {
  margin: 0;
}

/* line 2663, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 10px;
  background-color: #ffffff;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 7px;
  /* image content bin */
  /* media type indicator */
  /* media and group name content bin */
}

/* line 2676, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .number-bin-button {
  visibility: hidden;
}

/* line 2682, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .feature-image-bin {
  flex: 0 0 25%;
  max-width: 25%;
  padding: unset;
  background-color: #f6f8fb;
  overflow: hidden;
  position: relative;
  /* feature image bin */
  /* media number bin */
}

/* line 2692, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .feature-image-bin .feature-image {
  width: 100%;
  height: 80px;
  overflow: hidden;
  /* image */
}

/* line 2699, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .feature-image-bin .feature-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 2707, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .feature-image-bin .count-bin {
  background-color: #18516e;
  padding: 4px;
  font-size: 13px;
  line-height: 12px;
  letter-spacing: 0.7px;
  font-weight: 600;
  color: #ffffff;
  width: calc(100% - 2px);
  margin-left: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

/* line 2725, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-type {
  width: 100%;
}

/* line 2728, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-type .group-name, .card.sequence-media-card .card-body .media-type .media-pool-indicator, .card.sequence-media-card .card-body .media-type .sequence-indicator {
  display: inline-block;
  padding: 4px 8px;
  opacity: 0.75;
  font-size: 12px;
  background-color: #d6e0e6;
  line-height: 14px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

/* line 2742, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* media name */
  /* separator */
  /* media group name */
  /* action bin when media is selected */
  /* delete button */
  /* hover style */
  /* dropdown toggle */
}

/* line 2752, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin .media-name {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: inherit;
  color: #18516e;
  line-height: 1.3em;
  margin-bottom: 0.1em;
  font-weight: bold;
}

/* line 2763, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin .hr {
  margin: 3px 0 3px 0;
}

/* line 2768, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin .media-group {
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
  margin-bottom: 0.3em;
  line-height: 1.5em;
}

/* line 2779, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin {
  display: flex;
  width: 100%;
  justify-content: flex-end !important;
  align-items: center !important;
  -webkit-box-align: center !important;
  margin-top: auto;
}

/* line 2787, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin .status-indicator {
  margin-right: 10px;
  padding: 2px 8px;
  opacity: 0.75;
  font-size: 12px;
  background-color: #d6e0e6;
  letter-spacing: 0.4px;
  font-weight: 700;
}

/* line 2800, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin a.btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 8px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 2818, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin a.btn.btn-delete:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* line 2823, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin a.btn.btn-main {
  height: 30px !important;
  width: 30px !important;
  padding: 0;
  z-index: 900;
}

/* line 2831, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .card-body .media-content-bin a.btn.btn-main i.fa {
  line-height: 30px;
  font-size: 18px;
}

/* line 2840, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 10px;
  /* form input sizing */
}

/* line 2847, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options .form-control {
  padding: 0 5px;
  height: calc(1.75rem + 2px);
  font-size: 0.75rem;
  line-height: 1;
}

/* line 2854, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table {
  word-wrap: break-word;
  /* table label size */
}

/* line 2857, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table .form-control.datetimepicker {
  height: calc(1.75rem + 2px);
  text-align: center;
  font-size: 12px !important;
  padding: 3px;
}

/* line 2865, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table .sequences-period-help .fa {
  font-size: 22px;
  margin-right: 3px;
}

/* line 2871, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table input[type="radio"] {
  bottom: -2px;
}

/* line 2875, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table label.form-check-label {
  font-weight: bolder;
}

/* line 2880, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table td {
  vertical-align: middle;
  font-size: 12px;
  line-height: 12px;
}

/* line 2886, app/assets/stylesheets/global/5--sv-objects.scss */
.card.sequence-media-card .selected-media-options table .form-group {
  margin-bottom: 0 !important;
}

/* Video Collection / Playlist Card ------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 2897, app/assets/stylesheets/global/5--sv-objects.scss */
.col-video-collection-cards, .col-playlist-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2897, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-video-collection-cards, .col-playlist-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 2897, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-video-collection-cards, .col-playlist-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 2913, app/assets/stylesheets/global/5--sv-objects.scss */
.col-video-collection-cards .card.add-card {
  min-height: 201px;
}

/* line 2919, app/assets/stylesheets/global/5--sv-objects.scss */
.col-playlist-cards .card.add-card {
  min-height: 201px;
}

/* line 2924, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card, .card.playlist-card, .card.media-default-card {
  min-height: 201px;
  /* checkbox */
}

/* line 2927, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .card-header.small, .card.playlist-card .card-header.small, .card.media-default-card .card-header.small {
  margin-bottom: 0;
}

/* line 2931, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .card-header.media-rep-header, .card.playlist-card .card-header.media-rep-header, .card.media-default-card .card-header.media-rep-header {
  background-color: #279ed5;
}

/* line 2936, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .form-check, .card.playlist-card .form-check, .card.media-default-card .form-check {
  right: 22px;
  top: 89%;
  z-index: 1;
}

/* Starter Pack Resource Cards - Custom Items */
/* line 2944, app/assets/stylesheets/global/5--sv-objects.scss */
.starter-pack-resources-body .card.media-card .card-header.media-rep-header,
.admin-starter-packs-manager-body .card.media-card .card-header.media-rep-header {
  background-color: #279ed5;
  color: #ffffff;
}

/* line 2950, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card, .card.playlist-card {
  /* content padding */
}

/* line 2952, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .card-body, .card.playlist-card .card-body {
  padding: 0 !important;
}

/* Sequence Builder Card List View Functionality -----------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 2959, app/assets/stylesheets/global/5--sv-objects.scss */
.list-view-col:first-child {
  margin-top: 5px;
}

/* line 2963, app/assets/stylesheets/global/5--sv-objects.scss */
.list-view-col:last-child {
  margin-bottom: 5px;
}

/* line 2967, app/assets/stylesheets/global/5--sv-objects.scss */
.list-view-col {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

/* Make card appear as a list item */
/* line 2980, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card {
  margin: -1px 0 0 0 !important;
  box-shadow: none;
  min-height: 30px;
}

/* line 2985, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body {
  min-height: 30px;
  border: 1px solid #d6e0e6 !important;
  border-radius: 0;
  padding-bottom: 0;
  padding-top: 0;
}

/* line 2992, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .number-bin-button {
  right: 3px;
  left: auto;
  padding: 5px 0 3px 0;
  height: 20px;
  width: 20px;
  margin-top: 4px;
}

/* line 3003, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .feature-image-bin .count-bin {
  min-height: 100%;
  width: 70px;
  top: 0;
  left: 0;
  padding-top: 8px;
}

/* line 3011, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .feature-image-bin .feature-image {
  display: none !important;
}

/* line 3014, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .feature-image-bin .feature-image img {
  display: none !important;
}

/* line 3020, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .media-content-bin {
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: 5px;
  padding-left: 0;
}

/* line 3025, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .media-content-bin .media-name {
  padding-top: 3px;
  margin-right: 27px;
  font-size: 11px;
  word-break: break-all;
}

/* line 3032, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .media-content-bin .hr {
  display: none !important;
}

/* line 3036, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .media-content-bin .media-group {
  display: none !important;
}

/* line 3040, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .media-content-bin .media-type {
  display: none !important;
}

/* line 3045, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .selected-media-actions-bin {
  display: none !important;
}

/* line 3048, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card.list-view-card .card-body .selected-media-actions-bin .selected-media-options.collapse {
  display: none !important;
}

/* line 3058, app/assets/stylesheets/global/5--sv-objects.scss */
.available-images.list-view-col .card-body .media-name {
  margin-left: 5px !important;
}

/* line 3066, app/assets/stylesheets/global/5--sv-objects.scss */
.col-available-media-cards .card.sequence-media-card .card-body.ready-to-drag {
  background-color: #cddb3e !important;
}

/* line 3074, app/assets/stylesheets/global/5--sv-objects.scss */
.col-selected-media-cards .card.sequence-media-card .card-body.ready-to-drag {
  background-color: #cddb3e !important;
}

/* Video Collection / Playlist Card ------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3084, app/assets/stylesheets/global/5--sv-objects.scss */
.col-video-collection-cards, .col-playlist-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3084, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-video-collection-cards, .col-playlist-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3084, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-video-collection-cards, .col-playlist-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3100, app/assets/stylesheets/global/5--sv-objects.scss */
.col-video-collection-cards .card.add-card {
  min-height: 201px;
}

/* line 3106, app/assets/stylesheets/global/5--sv-objects.scss */
.col-playlist-cards .card.add-card {
  min-height: 201px;
}

/* line 3111, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card, .card.playlist-card {
  min-height: 201px;
  /* checkbox */
  /* content padding */
}

/* line 3115, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .form-check, .card.playlist-card .form-check {
  right: 22px;
  top: 89%;
}

/* line 3121, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .card-body, .card.playlist-card .card-body {
  padding: 0.625rem 1rem 1rem 1rem;
  /* description */
}

/* line 3125, app/assets/stylesheets/global/5--sv-objects.scss */
.card.video-collection-card .card-body .description, .card.playlist-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* Season Card ---------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3140, app/assets/stylesheets/global/5--sv-objects.scss */
.col-season-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3140, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-season-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3140, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-season-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 3140, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-season-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3158, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card {
  /* content padding */
}

/* line 3161, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body {
  padding: 0 0.6rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  /* feature image */
  /* list width for display flex */
}

/* line 3167, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body .feature-image {
  margin-right: 7px;
  position: relative;
  height: 60px;
  width: 60px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 50%;
}

/* line 3177, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body .feature-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* line 3185, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body ul {
  width: calc(100% - 67px);
  margin-top: 0;
  margin-bottom: 0;
}

/* line 3190, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body ul li {
  padding-left: 7px;
  padding-right: 7px;
}

/* line 3195, app/assets/stylesheets/global/5--sv-objects.scss */
.card.season-card .card-body ul span.list-label-right {
  right: 5px;
  line-height: 1.6em;
}

/* Meet Card (adapted from Season Card and Game Card) ------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3207, app/assets/stylesheets/global/5--sv-objects.scss */
.col-meet-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3207, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-meet-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3207, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-meet-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 3207, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-meet-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3224, app/assets/stylesheets/global/5--sv-objects.scss */
.col-meet-cards .card.add-card {
  min-height: 149px;
}

/* line 3229, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card {
  /* content padding */
}

/* line 3230, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-header.small {
  /* checkbox location */
}

/* line 3232, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-header.small .form-check {
  right: 22px;
  top: 5%;
}

/* line 3238, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-header.final {
  padding-right: 40px;
  background-color: #d32f2f !important;
}

/* line 3244, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body {
  padding: 0 0.6rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  /* feature image */
  /* list width for display flex */
}

/* line 3250, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body .feature-image {
  margin-right: 7px;
  position: relative;
  height: 60px;
  width: 60px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 50%;
}

/* line 3260, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body .feature-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* line 3268, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body ul {
  width: calc(100% - 67px);
  margin-top: 0;
  margin-bottom: 0;
}

/* line 3273, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body ul li {
  padding-left: 7px;
  padding-right: 7px;
}

/* line 3278, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-body ul span.list-label-right {
  right: 5px;
  line-height: 1.6em;
}

/* line 3285, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-footer {
  flex-direction: row;
  justify-content: space-between;
  /* game options button bin */
}

/* line 3290, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-footer .game-options-bin {
  /* location bin */
}

/* line 3293, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-footer .game-options-bin .location {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 3304, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-footer .game-options-bin a.btn.btn-main {
  margin-right: 6px;
  height: 38px !important;
  width: 38px !important;
  padding: 12px !important;
  background-image: linear-gradient(to right, #498fb2 0%, #498fb2 100%);
  background-color: #539ec2;
  display: inline-block !important;
}

/* line 3313, app/assets/stylesheets/global/5--sv-objects.scss */
.card.meet-card .card-footer .game-options-bin a.btn.btn-main .fa {
  font-size: 15px;
  text-align: center;
  color: #ffffff !important;
}

/* Tennis Match Card ---------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* line 3330, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 3338, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  margin-bottom: 15px;
  width: 100%;
}

/* line 3344, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .date-info-header, .col-tennis-match-cards .tennis-match-card .match-scores-header, .col-tennis-match-cards .tennis-match-card .spacer-header {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #d6e0e6;
  color: #0f3950;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 30px;
}

/* line 3358, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .date-info-header {
  width: calc(100% - 205px);
  border-right: 1px solid #d6e0e6;
  padding: 0 8px 0 8px;
}

@media (max-width: 991.98px) {
  /* line 3358, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-tennis-match-cards .tennis-match-card .date-info-header {
    width: calc(100% - 85px);
  }
}

/* line 3367, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-scores-header {
  width: 120px;
}

@media (max-width: 991.98px) {
  /* line 3367, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-tennis-match-cards .tennis-match-card .match-scores-header {
    display: none;
  }
}

/* line 3373, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-scores-header .set-label {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid #d6e0e6;
}

/* line 3385, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .spacer-header {
  width: 85px;
}

/* line 3389, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin {
  display: flex;
  width: 100%;
  align-items: center;
}

/* line 3394, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin {
  display: flex;
  flex-direction: column;
  width: 30px;
  box-sizing: border-box;
  border-right: 1px solid #d6e0e6;
}

/* line 3401, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin .home-team-logo, .col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin .away-team-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #18516e;
}

/* line 3410, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin .home-team-logo img, .col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin .away-team-logo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 30px;
  height: auto;
}

/* line 3417, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .team-logos-bin .home-team-logo {
  border-bottom: 1px solid #d6e0e6;
}

/* line 3422, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .player-names-bin {
  display: flex;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  width: calc(100% - 235px);
  border-right: 1px solid #d6e0e6;
}

@media (max-width: 991.98px) {
  /* line 3422, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-tennis-match-cards .tennis-match-card .match-info-bin .player-names-bin {
    width: calc(100% - 115px);
  }
}

/* line 3433, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .player-names-bin .home-player-name, .col-tennis-match-cards .tennis-match-card .match-info-bin .player-names-bin .away-player-name {
  display: flex;
  align-items: center;
  padding: 0 8px 0 8px;
  width: 100%;
  height: 30px;
  font-size: 14px;
  line-height: 0.8;
  color: #0f3950;
}

/* line 3444, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .player-names-bin .home-player-name {
  border-bottom: 1px solid #d6e0e6;
  box-sizing: border-box;
}

/* line 3450, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores {
  display: flex;
  align-items: center;
  height: 30px;
  width: 120px;
}

@media (max-width: 991.98px) {
  /* line 3450, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores {
    display: none;
  }
}

/* line 3459, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores .set, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores .set {
  height: 30px;
  width: 40px;
  box-sizing: border-box;
  border-right: 1px solid #d6e0e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 3469, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores .game-score, .col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores .home-1, .col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores .home-2, .col-tennis-match-cards .tennis-match-card .match-info-bin .home-scores .home-3, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores .game-score, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores .home-1, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores .home-2, .col-tennis-match-cards .tennis-match-card .match-info-bin .away-scores .home-3 {
  border-bottom: 1px solid #d6e0e6;
}

/* line 3474, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin {
  width: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 3480, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main {
  padding: 0;
  height: 30px !important;
  width: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* line 3490, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main i {
  font-size: 14px;
}

/* line 3495, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin .toggle-events {
  font-size: small;
  font-weight: bold;
  cursor: pointer;
}

/* line 3501, app/assets/stylesheets/global/5--sv-objects.scss */
.col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main.delete-btn {
  background-color: #d32f2f !important;
  background-image: none !important;
  margin-left: 8px;
}

/* Team Card -----------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3515, app/assets/stylesheets/global/5--sv-objects.scss */
.col-team-cards, .col-team-template-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3515, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-team-cards, .col-team-template-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3515, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-team-cards, .col-team-template-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3515, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-team-cards, .col-team-template-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3537, app/assets/stylesheets/global/5--sv-objects.scss */
.col-team-cards .card.add-card {
  min-height: 152px;
}

/* line 3543, app/assets/stylesheets/global/5--sv-objects.scss */
.col-team-template-cards .card.add-card {
  min-height: 152px;
}

/* line 3548, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card {
  min-height: 152px;
  /* checkbox location */
}

/* line 3551, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-header.small {
  padding-right: 40px;
}

/* line 3556, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .form-check {
  right: 22px;
  top: 9px;
}

/* line 3561, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body {
  padding: 0 0.6rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  /* feature image */
  /* list width for display flex */
}

/* line 3567, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body .feature-image {
  margin-right: 7px;
  position: relative;
  height: 60px;
  width: 60px;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 50%;
}

/* line 3577, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body .feature-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* line 3585, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body ul {
  width: calc(100% - 67px);
  margin-top: 0;
  margin-bottom: 0;
  /* color bin in content field */
}

/* line 3590, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body ul li {
  padding-left: 5px;
  padding-right: 5px;
}

/* line 3596, app/assets/stylesheets/global/5--sv-objects.scss */
.card.team-card .card-body ul .team-color-bin {
  display: inline-block;
  height: 22px !important;
  width: 22px !important;
  background-color: red;
}

/* PLayer Card ---------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3611, app/assets/stylesheets/global/5--sv-objects.scss */
.col-player-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3611, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-player-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3611, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-player-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3611, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-player-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3633, app/assets/stylesheets/global/5--sv-objects.scss */
.col-player-cards .card.add-card {
  min-height: 152px;
}

/* line 3638, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card {
  min-height: 152px;
  /* content padding */
}

/* line 3642, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body {
  padding: 0 0.6rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  /* feature image */
  /* list width for display flex */
}

/* line 3648, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body .feature-image {
  margin-right: 7px;
  position: relative;
  height: 75px;
  width: 50px;
  overflow: hidden;
  background-color: #18516e;
  border-radius: 2px;
}

/* line 3658, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body .feature-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* line 3666, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body ul {
  width: calc(100% - 67px);
  margin-top: 0;
  margin-bottom: 0;
}

/* line 3671, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body ul li {
  padding-left: 5px;
  padding-right: 5px;
}

/* line 3676, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body ul .active-indicator {
  width: 100%;
}

/* line 3679, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body ul .active-indicator label.status-text {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* line 3684, app/assets/stylesheets/global/5--sv-objects.scss */
.card.player-card .card-body ul .active-indicator label.switch {
  float: right;
}

/* Media Default Card --------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3696, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-default-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3696, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-default-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3696, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-default-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3696, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-media-default-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3718, app/assets/stylesheets/global/5--sv-objects.scss */
.col-media-default-cards .card.add-card {
  min-height: 311px;
}

/* line 3723, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card {
  min-height: 311px;
  /* content padding */
}

/* line 3726, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-header.small {
  position: relative;
  padding-right: 16px;
  margin-bottom: 0;
  z-index: 1000;
  /* expand button position */
}

/* line 3733, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-header.small a.btn.btn-main {
  right: 10px;
  top: 10px;
}

/* line 3739, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-media-scroll {
  margin-bottom: 0;
}

/* line 3744, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-body {
  padding: 0.625rem 1rem 1rem 1rem;
  /* media name */
}

/* line 3747, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-body .no-sequences-alert {
  height: 100%;
  width: 100%;
}

/* line 3751, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-body .no-sequences-alert .body {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
}

/* line 3760, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-body .media-info {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
  /* list group content */
}

/* line 3769, app/assets/stylesheets/global/5--sv-objects.scss */
.card.media-default-card .card-body .media-info .list-group {
  margin-bottom: 0;
}

/* Organization Background Card ----------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3780, app/assets/stylesheets/global/5--sv-objects.scss */
.col-organization-background-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3780, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-organization-background-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3780, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-organization-background-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 3795, app/assets/stylesheets/global/5--sv-objects.scss */
.card.organization-background-card {
  /* content padding */
}

/* line 3797, app/assets/stylesheets/global/5--sv-objects.scss */
.card.organization-background-card .card-header.small {
  position: relative;
  padding-right: 50px;
  margin-bottom: 0;
  z-index: 1000;
}

/* line 3805, app/assets/stylesheets/global/5--sv-objects.scss */
.card.organization-background-card .card-body {
  padding: 0.625rem 1rem 1rem 1rem;
  /* media name */
}

/* line 3809, app/assets/stylesheets/global/5--sv-objects.scss */
.card.organization-background-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* Overtime Rule Card --------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------*/
/* column setup */
/* line 3824, app/assets/stylesheets/global/5--sv-objects.scss */
.col-overtime-rule-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3824, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-overtime-rule-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3824, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-overtime-rule-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3824, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-overtime-rule-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3846, app/assets/stylesheets/global/5--sv-objects.scss */
.col-overtime-rule-cards .card.add-card {
  min-height: 213px;
}

/* line 3851, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card {
  min-height: 213px;
  /* content padding */
  /* footer padding */
}

/* line 3854, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card .card-header.small {
  margin-bottom: 0;
  /* delete button position */
}

/* line 3858, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card .card-header.small a.btn.btn-delete {
  right: 10px;
  top: 10px;
}

/* line 3865, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card .card-body {
  padding: 1rem;
  /* dropdown margin */
}

/* line 3869, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card .card-body .form-group {
  margin-bottom: 5px;
}

/* line 3875, app/assets/stylesheets/global/5--sv-objects.scss */
.card.overtime-rule-card .card-footer {
  padding-top: 6px;
  align-items: center;
}

/* Sports Card ---------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* column setup */
/* line 3885, app/assets/stylesheets/global/5--sv-objects.scss */
.col-org-sport-card {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3885, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-sport-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3885, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-sport-card {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 992px) {
  /* line 3885, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-org-sport-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* apps Card ---------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* column setup */
/* line 3910, app/assets/stylesheets/global/5--sv-objects.scss */
.col-myapp-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3910, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-myapp-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3910, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-myapp-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3910, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-myapp-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 3931, app/assets/stylesheets/global/5--sv-objects.scss */
.col-myapp-cards .card.myapp-card .card-body {
  padding: 10px 30px 15px 30px;
}

/* line 3934, app/assets/stylesheets/global/5--sv-objects.scss */
.col-myapp-cards .card.myapp-card .card-body .btn.btn-main {
  display: block;
}

/* line 3938, app/assets/stylesheets/global/5--sv-objects.scss */
.col-myapp-cards .card.myapp-card .card-body .btn.btn-secondary {
  display: block;
  margin-top: 10px;
  width: 100%;
}

/* Scorevision Template Download Card ----------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 3949, app/assets/stylesheets/global/5--sv-objects.scss */
.col-template-download-card {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3949, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-template-download-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 3949, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-template-download-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3949, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-template-download-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 3971, app/assets/stylesheets/global/5--sv-objects.scss */
.col-template-download-card .card.template-download-card .card-body {
  padding-bottom: 15px;
}

/* line 3975, app/assets/stylesheets/global/5--sv-objects.scss */
.col-template-download-card .card.template-download-card label {
  display: block;
}

/* Scorer's Table Mode Toggle Card -------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 3983, app/assets/stylesheets/global/5--sv-objects.scss */
.col-scorers-table-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3983, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-scorers-table-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3983, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-scorers-table-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3983, app/assets/stylesheets/global/5--sv-objects.scss */
  .col-scorers-table-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 4004, app/assets/stylesheets/global/5--sv-objects.scss */
.col-scorers-table-cards .card.scorers-table .card-header.small {
  margin-bottom: 0;
}

/* line 4008, app/assets/stylesheets/global/5--sv-objects.scss */
.col-scorers-table-cards .card.scorers-table .card-body {
  padding: 24px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* line 4016, app/assets/stylesheets/global/5--sv-objects.scss */
.col-scorers-table-cards .card.scorers-table .card-body .divider {
  height: auto;
  width: auto;
  margin: 0 16px 0 16px;
}

/* line 4022, app/assets/stylesheets/global/5--sv-objects.scss */
.col-scorers-table-cards .card.scorers-table .card-body label.form-check-label {
  margin-left: 5px;
}

/* Game Info Card - Will be removed eventually to individual page css - not really a card ------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 4035, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .display-2 {
  font-weight: 700;
}

/* line 4039, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .home-score, .game-info-card .away-score, .game-info-card .game-time {
  color: #0f3950;
}

/* line 4043, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .game-time {
  text-align: center;
}

/* line 4048, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .vs-icon img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  height: 33px;
}

/* line 4056, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .team-logo-bin {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  height: 45px;
  overflow: hidden;
}

/* line 4062, app/assets/stylesheets/global/5--sv-objects.scss */
.game-info-card .team-logo-bin img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* Admin / Cloud Resources Table & Content -----------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 4075, app/assets/stylesheets/global/5--sv-objects.scss */
.sticky-bar.resources-form-header input.btn.btn-main {
  margin-right: 0;
}

/* line 4080, app/assets/stylesheets/global/5--sv-objects.scss */
table.resources-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
table.resources-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
table.resources-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
table.resources-table th:nth-child(3) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
table.resources-table th:nth-child(4) {
  width: 10%;
}

/* line 4083, app/assets/stylesheets/global/5--sv-objects.scss */
table.resources-table tr:hover {
  background-color: #e6ebf0;
  cursor: pointer;
}

/* line 4089, app/assets/stylesheets/global/5--sv-objects.scss */
table.resources-table .form-group label {
  display: none;
}

/* line 4094, app/assets/stylesheets/global/5--sv-objects.scss */
table.resources-table .action-buttons-bin {
  text-align: right;
}

/* line 4097, app/assets/stylesheets/global/5--sv-objects.scss */
table.resources-table .action-buttons-bin .fa {
  font-size: 18px;
}

/* line 4103, app/assets/stylesheets/global/5--sv-objects.scss */
a.knowledge-base-link {
  text-decoration: underline;
  color: inherit;
}

/* line 4108, app/assets/stylesheets/global/5--sv-objects.scss */
.starter-pack-body .card.media-card .description {
  font-weight: 600 !important;
}

/* RMA cards -----------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 4115, app/assets/stylesheets/global/5--sv-objects.scss */
.col-rma-cards {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 4119, app/assets/stylesheets/global/5--sv-objects.scss */
.col-rma-cards .card.add-card {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  margin-bottom: 10px;
}

/* line 4125, app/assets/stylesheets/global/5--sv-objects.scss */
.card.rma-card {
  min-height: 199px;
  /* card body */
}

/* line 4128, app/assets/stylesheets/global/5--sv-objects.scss */
.card.rma-card .card-body {
  padding: 1.35rem 0.7rem 1.35rem 0.7rem;
  /* media name */
}

/* line 4132, app/assets/stylesheets/global/5--sv-objects.scss */
.card.rma-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 4142, app/assets/stylesheets/global/5--sv-objects.scss */
.card.rma-card .card-body .card-footer .url-status-indicator {
  height: 12px;
  width: 12px;
  margin-left: -8px;
  margin-right: 5px;
}

/* ai studio link card -------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------- */
/* line 4155, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card {
  background-image: url(http://localhost:3000/assets/sponsors/creator-studio-card-bg-f25d7acfc87adcc7a8c28724ea80147f6c8b73f81020e44727ca8def971dd9c7.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* line 4160, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__header {
  padding: 8px 10px 6px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* line 4166, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__header img {
  width: 60%;
}

/* line 4169, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__header a.btn.btn-help {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  margin-bottom: 0px;
}

/* line 4177, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__header a.btn.btn-help .fa {
  color: rgba(255, 255, 255, 0.5);
  font-size: 26px;
}

/* line 4183, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__header .btn.btn-help:hover .fa {
  color: rgba(255, 255, 255, 0.75);
}

/* line 4188, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__content {
  padding: 0px 16px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* line 4201, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__footer {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding: 16px;
}

/* line 4206, app/assets/stylesheets/global/5--sv-objects.scss */
.card.creator-studio-card .creator-studio-card__footer .btn.btn-creator-studio {
  background-color: #cddb3e;
  color: #0f3950;
  font-weight: 700;
}

/*  Playlist Radio Button Cards ----------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 4217, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group--stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 4223, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group--row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  align-items: stretch;
}

/* line 4235, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card--w50 {
  width: 50%;
}

/* line 4239, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card--w100 {
  width: 100%;
}

/* line 4244, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card {
  position: relative;
  padding: 12px 16px 16px 16px;
  border: 1px solid #d6e0e6;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}

/* line 4253, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card .radio-input-card_header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

/* line 4262, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card .radio-input-card_header .radio-input-card_headline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 700;
}

/* line 4272, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card .radio-input-card_description {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

/* line 4284, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card:hover, .radio-input-card-group .radio-input-card.selected:hover {
  cursor: pointer;
}

/* line 4289, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card.selected {
  background-color: #F0F6FF;
  border-color: #0d6efd;
}

/* line 4293, app/assets/stylesheets/global/5--sv-objects.scss */
.radio-input-card-group .radio-input-card.selected .radio-input-card_headline {
  color: #0a58ca;
}

/* Mobile Media Query --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* Global Carousel ------------------------------------------------------------------------------------------------ */
  /* carousel height */
  /* line 4306, app/assets/stylesheets/global/5--sv-objects.scss */
  #myCarousel {
    height: 175px !important;
    /* content positioning */
    /* navigation arrows position */
  }
  /* line 4310, app/assets/stylesheets/global/5--sv-objects.scss */
  #myCarousel .carousel-caption.games {
    top: 0 !important;
    left: 0;
    /* team logo size */
    /* matchup headline */
  }
  /* line 4315, app/assets/stylesheets/global/5--sv-objects.scss */
  #myCarousel .carousel-caption.games img.team-logo {
    width: 100px !important;
    margin-bottom: 8px !important;
  }
  /* line 4321, app/assets/stylesheets/global/5--sv-objects.scss */
  #myCarousel .carousel-caption.games .title {
    font-size: 16px !important;
    line-height: 1.1;
  }
  /* line 4328, app/assets/stylesheets/global/5--sv-objects.scss */
  #myCarousel .fa.fa-caret-right, #myCarousel .fa.fa-caret-left {
    padding-top: 140px !important;
  }
  /* Game List Table  ----------------------------------------------------------------------------------------------- */
  /* line 4335, app/assets/stylesheets/global/5--sv-objects.scss */
  .status-notice-none, .status-notice-active {
    width: 17px;
    height: 17px;
  }
}

/* 6) Assets -------------------------------------------------------------------------------------------------------- */
/* System Default Overrides --------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* remove default browser outer glow on click */
/* line 9, app/assets/stylesheets/global/6--sv-assets.scss */
textarea:focus, select:focus, input:focus, button:focus, .btn:focus, button:focus, a:focus .btn.btn-secondary:focus, .btn.btn-main:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.3) !important;
}

/* line 14, app/assets/stylesheets/global/6--sv-assets.scss */
textarea:active, select:active, input:active, button:active, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}

/* changes border color on input field selection */
/* line 20, app/assets/stylesheets/global/6--sv-assets.scss */
input:focus {
  border: 1px solid #279ed5 !important;
  border-radius: 4px !important;
}

/* Global Responsive Classes -------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 28, app/assets/stylesheets/global/6--sv-assets.scss */
.non-mobile {
  display: block;
}

/* line 32, app/assets/stylesheets/global/6--sv-assets.scss */
.mobile {
  display: none;
}

/* Global Alignment Classes --------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 39, app/assets/stylesheets/global/6--sv-assets.scss */
.alignr {
  text-align: right;
}

/* line 43, app/assets/stylesheets/global/6--sv-assets.scss */
.alignl {
  text-align: left;
}

/* line 47, app/assets/stylesheets/global/6--sv-assets.scss */
.alignc {
  text-align: center;
}

/* line 51, app/assets/stylesheets/global/6--sv-assets.scss */
.floatr {
  float: right;
}

/* line 55, app/assets/stylesheets/global/6--sv-assets.scss */
.floatl {
  float: left;
}

/* line 59, app/assets/stylesheets/global/6--sv-assets.scss */
.center-flex {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  display: flex;
  width: 100%;
}

/* Global Divider Classes ----------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 70, app/assets/stylesheets/global/6--sv-assets.scss */
.hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-top: 1.2px solid #d6e0e6;
}

/* vertical divider */
/* line 77, app/assets/stylesheets/global/6--sv-assets.scss */
.vrt-divider {
  height: auto;
  width: 5px;
  display: inline-block;
}

/* Global Tooltips -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 86, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip-inner {
  background-color: #ffffff;
  padding: 10px !important;
  font-weight: 500;
  color: #18516e;
  letter-spacing: 0.4px;
  opacity: 1 !important;
}

/* line 96, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.show {
  opacity: 1 !important;
}

/* line 100, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.in {
  opacity: 1 !important;
}

/* line 104, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .tooltip.bs-tooltip-bottom .arrow::before {
  border-bottom-color: #b0bec5 !important;
}

/* line 108, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before, .tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #b0bec5 !important;
}

/* line 112, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before, .tooltip.bs-tooltip-right .arrow::before {
  border-right-color: #b0bec5 !important;
}

/* line 116, app/assets/stylesheets/global/6--sv-assets.scss */
.tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before, .tooltip.bs-tooltip-left .arrow::before {
  border-left-color: #b0bec5 !important;
}

/* Global Buttons & Toggles --------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 122, app/assets/stylesheets/global/6--sv-assets.scss */
li a {
  color: #18516e;
}

/* line 126, app/assets/stylesheets/global/6--sv-assets.scss */
li a:hover {
  color: #18516e;
}

/* line 130, app/assets/stylesheets/global/6--sv-assets.scss */
a, button, .btn, .btn.btn-primary, .btn.btn-secondary {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* Button Main (full width and fixed width) ------------------------------------------------------------------------- */
/* button style */
/* line 138, app/assets/stylesheets/global/6--sv-assets.scss */
a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main {
  transition: all 0.3s ease;
  color: #ffffff;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0px;
}

/* button hover style */
/* line 150, app/assets/stylesheets/global/6--sv-assets.scss */
a.btn.btn-main:hover, button.btn.btn-main:hover, span.btn.btn-main:hover, a#new-term-btn.btn.btn-main:hover, .btn.btn-main:hover,
a.btn.btn-main:active, button.btn.btn-main:active, span.btn.btn-main:active, a#new-term-btn.btn.btn-main:active, .btn.btn-main:active {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0px;
}

/* Button Secondary (full width and fixed width) -------------------------------------------------------------------- */
/* button style */
/* line 164, app/assets/stylesheets/global/6--sv-assets.scss */
a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary {
  transition: all 0.3s ease;
  color: #539ec2;
  background-color: transparent;
  border: 1.5px solid #cee2ed;
}

/* button hover style */
/* line 173, app/assets/stylesheets/global/6--sv-assets.scss */
a.btn.btn-secondary:hover, button.btn.btn-secondary:hover,
.btn.btn-secondary:hover, a.btn.btn-secondary:active, button.btn.btn-secondary:active, .btn.btn-secondary:active {
  background-color: #cee2ed !important;
  color: #539ec2 !important;
  border: 1.5px solid #cee2ed !important;
}

/* line 181, app/assets/stylesheets/global/6--sv-assets.scss */
.filter-bin a.btn.btn-secondary:hover, .filter-bin button.btn.btn-secondary:hover, .filter-bin .btn.btn-secondary:hover, .filter-bin a.btn.btn-secondary:active, .filter-bin button.btn.btn-secondary:active, .filter-bin .btn.btn-secondary:active {
  background-color: transparent !important;
  color: #18516e !important;
  border: 0px !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* line 187, app/assets/stylesheets/global/6--sv-assets.scss */
.filter-bin .btn.btn-main.btn-file {
  position: relative;
}

/* line 190, app/assets/stylesheets/global/6--sv-assets.scss */
.filter-bin .btn.btn-main.btn-file .col-12, .filter-bin .btn.btn-main.btn-file .form-control, .filter-bin .btn.btn-main.btn-file .form-group {
  width: auto !important;
  flex: none !important;
  padding: 0px !important;
}

/* line 195, app/assets/stylesheets/global/6--sv-assets.scss */
.filter-bin .btn.btn-main.btn-file input {
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -12px;
}

/* Button Underline ------------------------------------------------------------------------------------------------- */
/* Help Modal Button ------------------------------------------------------------------------------------------------ */
/* line 217, app/assets/stylesheets/global/6--sv-assets.scss */
a.btn.btn-help-modal {
  font-size: 20px !important;
  margin-right: 5px;
}

/* Button Main - Card Header ---------------------------------------------------------------------------------------- */
/* button style */
/* line 227, app/assets/stylesheets/global/6--sv-assets.scss */
.card-header a.btn.btn-main {
  height: 35px !important;
  width: 35px !important;
  padding: 10px !important;
  background-image: linear-gradient(to right, #498fb2 0%, #498fb2 100%);
  background-color: #539ec2;
  position: absolute;
}

/* line 237, app/assets/stylesheets/global/6--sv-assets.scss */
.card-header a.btn.btn-main .fa {
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff !important;
}

/* Delete Button - Card Header -------------------------------------------------------------------------------------- */
/* line 248, app/assets/stylesheets/global/6--sv-assets.scss */
.card-header a.btn.btn-delete {
  transition: all 0.3s ease;
  height: 35px !important;
  width: 35px !important;
  padding: 10px !important;
  background-color: #d32f2f;
  position: absolute;
}

/* line 258, app/assets/stylesheets/global/6--sv-assets.scss */
.card-header a.btn.btn-delete .fa {
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff !important;
}

/* line 267, app/assets/stylesheets/global/6--sv-assets.scss */
.card-header a.btn.btn-delete:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* Button Main - Card Footer ---------------------------------------------------------------------------------------- */
/* button style */
/* line 276, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn.btn-main, .card-footer a.btn.btn-main.url-btn {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #0f3950 !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0px !important;
  width: auto !important;
}

/* hover style */
/* line 297, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn.btn-main:hover, .card-footer a.btn.btn-main:active, .card-footer button.btn.btn-main:hover, .card-footer a.btn.btn-main:active {
  background-color: transparent !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* Delete Button - Card Footer -------------------------------------------------------------------------------------- */
/* button style */
/* line 308, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn.btn-delete, .card-footer a.btn-replace, .card-footer .btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 324, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn.btn-delete, .card-footer .btn.btn-delete {
  margin-left: auto;
}

/* line 328, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn-replace {
  margin-left: 0px;
}

/* hover style */
/* line 335, app/assets/stylesheets/global/6--sv-assets.scss */
.card-footer a.btn.btn-delete:hover, .card-footer a.btn.btn-replace:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* Button Main - Table ---------------------------------------------------------------------------------------------- */
/* button style */
/* line 344, app/assets/stylesheets/global/6--sv-assets.scss */
table .btn.btn-main, table a.btn.btn-main, table button.btn.btn-main {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #0f3950;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  /* line 344, app/assets/stylesheets/global/6--sv-assets.scss */
  table .btn.btn-main, table a.btn.btn-main, table button.btn.btn-main {
    font-size: 0.8em;
  }
}

/* hover style */
/* line 366, app/assets/stylesheets/global/6--sv-assets.scss */
table a.btn.btn-main:hover, table button.btn.btn-main:hover, table a.btn.btn-main:active, table button.btn.btn-main:active {
  background-color: transparent !important;
  background-image: none !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* Delete Button - Table -------------------------------------------------------------------------------------------- */
/* button style */
/* line 378, app/assets/stylesheets/global/6--sv-assets.scss */
table a.btn.btn-delete, table button.btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  /* line 378, app/assets/stylesheets/global/6--sv-assets.scss */
  table a.btn.btn-delete, table button.btn.btn-delete {
    font-size: 0.8em;
  }
}

/* hover style */
/* line 400, app/assets/stylesheets/global/6--sv-assets.scss */
table a.btn.btn-delete:hover, table button.btn.btn-delete:hover, table a.btn.btn-delete:active, table button.btn.btn-delete:active {
  background-color: transparent !important;
  background-image: none !important;
  color: #d32f2f !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* File Field Button ------------------------------------------------------------------------------------------------ */
/* line 410, app/assets/stylesheets/global/6--sv-assets.scss */
.btn-file {
  position: relative;
  overflow: hidden;
}

/* line 415, app/assets/stylesheets/global/6--sv-assets.scss */
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

/* Global save and cancel buttons ----------------------------------------------------------------------------------- */
@media (min-width: 768px) {
  /* line 434, app/assets/stylesheets/global/6--sv-assets.scss */
  .form-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  /* line 442, app/assets/stylesheets/global/6--sv-assets.scss */
  .form-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
  }
  /* line 448, app/assets/stylesheets/global/6--sv-assets.scss */
  .btn-secondary {
    margin-bottom: 10px;
  }
}

/* Season-Teams-Games Interior Pages Navigation Arrow Buttons ----------------------------------------------------- */
/* Pagination Buttons ----------------------------------------------------------------------------------------------- */
/* line 458, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination {
  margin-top: 2rem;
  justify-content: flex-end;
}

/* line 462, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li a {
  border: 1px solid #d6e0e6;
  padding: 8px 16px 8px 16px;
}

/* line 467, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li a:hover {
  text-decoration: none !important;
  background-color: #e6ebf0;
}

/* line 472, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li:not(:first-child) a {
  margin-left: -1px;
}

/* line 476, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li:first-child a {
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}

/* line 481, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li:last-child a {
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

/* line 486, app/assets/stylesheets/global/6--sv-assets.scss */
ul.pagination li.page.active a {
  background-color: #539ec2;
  color: #ffffff;
}

/* Season-Teams-Games Interior Pages Navigation Arrow Buttons ------------------------------------------------------- */
/* button bin */
/* line 495, app/assets/stylesheets/global/6--sv-assets.scss */
.arrow-buttons-navigation {
  text-align: center;
  margin: 20px auto 15px;
}

/* red circle on top of button */
/* line 501, app/assets/stylesheets/global/6--sv-assets.scss */
.number-bin-button {
  top: 0%;
  right: 7%;
  position: absolute;
  padding-top: 8px;
  margin-top: -15px;
  background-color: #539ec2;
  height: 28px;
  width: 28px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

/* number inside red circle */
/* line 518, app/assets/stylesheets/global/6--sv-assets.scss */
.number-bin-button.label-2 {
  color: #ffffff;
  font-size: 11px;
  line-height: 30px;
}

/* text inside blue buttons */
/* line 525, app/assets/stylesheets/global/6--sv-assets.scss */
.btn-arrow-right span, .btn-arrow-left span, .btn-arrow-middle span {
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

/* blue buttons */
/* line 534, app/assets/stylesheets/global/6--sv-assets.scss */
.btn-arrow-right, .btn-arrow-left {
  position: relative;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  border: 0;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 9px;
  height: 32px;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

/* blue buttons arrow base */
/* line 550, app/assets/stylesheets/global/6--sv-assets.scss */
.btn.btn-arrow-left:after, .btn.btn-arrow-right:before {
  top: 5px;
  position: absolute;
  content: "";
  height: 22px;
  width: 23px;
  background: inherit;
  border: inherit;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 4px 0 0;
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

/* left button arrow */
/* line 570, app/assets/stylesheets/global/6--sv-assets.scss */
.btn.btn-arrow-left:after {
  z-index: 1;
  right: -9px;
  background-image: linear-gradient(to right, #498fb2 0%, #498fb2 100%);
}

/* right button arrow */
/* line 577, app/assets/stylesheets/global/6--sv-assets.scss */
.btn.btn-arrow-right:before {
  left: -11px;
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 100%);
}

/* Content Tabs --------------------------------------------------------------------------------------------------- */
/* pill spacing */
/* line 585, app/assets/stylesheets/global/6--sv-assets.scss */
li.nav-item {
  margin-right: 5px;
}

/* active pill color */
/* line 590, app/assets/stylesheets/global/6--sv-assets.scss */
.nav-pills .nav-link.active {
  background: #539ec2 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* inactive pill color */
/* line 597, app/assets/stylesheets/global/6--sv-assets.scss */
ul.nav-pills > li > a,
.nav-pills .nav-link {
  transition: all 0.3s ease;
  background: #cee2ed;
  color: #539ec2;
  font-weight: 600;
}

/* pill hover color */
/* line 606, app/assets/stylesheets/global/6--sv-assets.scss */
ul.nav-pills > li > a:hover,
.nav-pills .nav-link:hover {
  background: #539ec2;
  color: #ffffff;
  font-weight: 600;
}

/* code snippet box styling */
/* line 614, app/assets/stylesheets/global/6--sv-assets.scss */
pre {
  border: 1px solid #e6ebf0;
  background: #f6f8fb;
  padding: 10px;
}

/* nav tabs */
/* line 622, app/assets/stylesheets/global/6--sv-assets.scss */
.nav.nav-tabs {
  border-bottom-color: #d6e0e6;
  margin-bottom: 10px;
}

/* line 625, app/assets/stylesheets/global/6--sv-assets.scss */
.nav.nav-tabs .nav-link {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

/* line 630, app/assets/stylesheets/global/6--sv-assets.scss */
.nav.nav-tabs .nav-link.active {
  background-color: #f6f8fb;
  color: #18516e;
  border-bottom-color: #f6f8fb;
}

/* The switch - the box around the slider */
/* line 640, app/assets/stylesheets/global/6--sv-assets.scss */
.switch {
  position: relative;
  display: inline-block;
  width: 52px !important;
  height: 30px !important;
}

/* Hide default HTML checkbox */
/* line 648, app/assets/stylesheets/global/6--sv-assets.scss */
.switch input {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

/* The slider */
/* line 657, app/assets/stylesheets/global/6--sv-assets.scss */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d6e0e6;
  transition: .4s;
}

/* line 669, app/assets/stylesheets/global/6--sv-assets.scss */
.slider:before {
  position: absolute;
  content: "";
  height: 22px !important;
  width: 22px !important;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

/* line 681, app/assets/stylesheets/global/6--sv-assets.scss */
input.default:checked + .slider {
  background-color: #444;
}

/* line 684, app/assets/stylesheets/global/6--sv-assets.scss */
input.primary:checked + .slider {
  background-color: #8bc34a;
}

/* line 687, app/assets/stylesheets/global/6--sv-assets.scss */
input.success:checked + .slider {
  background-color: #8bc34a;
}

/* line 690, app/assets/stylesheets/global/6--sv-assets.scss */
input:focus + .slider {
  box-shadow: none;
}

/* line 694, app/assets/stylesheets/global/6--sv-assets.scss */
input:checked + .slider:before {
  transform: translateX(22px);
}

/* Rounded sliders */
/* line 701, app/assets/stylesheets/global/6--sv-assets.scss */
.slider.round {
  border-radius: 30px;
}

/* line 705, app/assets/stylesheets/global/6--sv-assets.scss */
.slider.round:before {
  border-radius: 50%;
}

/* Forms Styles --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 711, app/assets/stylesheets/global/6--sv-assets.scss */
.form-btn-row {
  background-color: #f6f8fb;
  padding: 5px 0px 5px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

/* line 721, app/assets/stylesheets/global/6--sv-assets.scss */
.form-btn-row .btn.btn-main, .form-btn-row .btn.btn-secondary {
  min-width: 110px;
  height: 32px;
  margin: 5px;
}

/* line 726, app/assets/stylesheets/global/6--sv-assets.scss */
.form-btn-row .btn.btn-secondary {
  padding-top: 11px;
}

/* line 731, app/assets/stylesheets/global/6--sv-assets.scss */
.resource-file-buttons-row {
  margin: 0px 0px 20px 0px;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
}

/* field base */
/* line 739, app/assets/stylesheets/global/6--sv-assets.scss */
.form-control-lg, .form-control, .form-control-sm, .form-control-file, .form-control[readonly] {
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
  font-family: Nunito Sans, Helevetica, sans-serif;
  font-weight: 600;
  color: #0f3950 !important;
}

/* line 747, app/assets/stylesheets/global/6--sv-assets.scss */
.form-row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 753, app/assets/stylesheets/global/6--sv-assets.scss */
.form-row > [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* line 759, app/assets/stylesheets/global/6--sv-assets.scss */
.form-group input#team_color, .form-group input#team_template_color {
  height: auto !important;
}

/* line 764, app/assets/stylesheets/global/6--sv-assets.scss */
.form-check-input {
  position: relative;
  margin-left: 0;
  margin-top: 0;
}

/* image input */
/* line 771, app/assets/stylesheets/global/6--sv-assets.scss */
input.form-control-file {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  border-radius: 4px;
}

/* line 777, app/assets/stylesheets/global/6--sv-assets.scss */
.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

/* line 783, app/assets/stylesheets/global/6--sv-assets.scss */
label {
  margin-bottom: 0;
  font-weight: 600;
}

/* line 788, app/assets/stylesheets/global/6--sv-assets.scss */
.form-buttons {
  text-align: center;
  margin-top: 20px;
}

/* filter bin dropdown bin toggle */
/* line 795, app/assets/stylesheets/global/6--sv-assets.scss */
.btn.btn-default.dropdown-toggle {
  border-color: #d6e0e6 !important;
  margin-right: -5px;
}

/* filter bin dropdown */
/* line 801, app/assets/stylesheets/global/6--sv-assets.scss */
.dropdown-menu.filter-dropdown-1 {
  padding: 15px;
}

/* line 805, app/assets/stylesheets/global/6--sv-assets.scss */
.dropdown-menu.filter-dropdown-1 label {
  color: #18516e !important;
}

/* calendar picker */
/* line 811, app/assets/stylesheets/global/6--sv-assets.scss */
.bootstrap-datetimepicker-widget.dropdown-menu {
  border: 0 !important;
  color: #18516e;
}

/* line 816, app/assets/stylesheets/global/6--sv-assets.scss */
.bootstrap-datetimepicker-widget.dropdown-menu table {
  word-break: normal !important;
  table-layout: auto !important;
}

/* line 820, app/assets/stylesheets/global/6--sv-assets.scss */
.bootstrap-datetimepicker-widget.dropdown-menu th {
  background-color: #ffffff !important;
  color: #18516e;
  width: auto !important;
}

/* line 829, app/assets/stylesheets/global/6--sv-assets.scss */
.form-buttons .gray-headline-bin .btn {
  width: 130px;
}

@media (max-width: 767.98px) {
  /* line 832, app/assets/stylesheets/global/6--sv-assets.scss */
  .form-buttons .gray-headline-bin .btn.btn-secondary, .form-buttons .gray-headline-bin .btn.btn-main {
    margin-bottom: 10px;
  }
}

/* line 840, app/assets/stylesheets/global/6--sv-assets.scss */
input[type="submit" i] {
  overflow: hidden;
  border-radius: 50px !important;
  border-width: 0px !important;
}

/* line 851, app/assets/stylesheets/global/6--sv-assets.scss */
.input-group.my-team span label.control-label {
  position: relative;
  height: 31px;
  margin-right: -2px;
  z-index: 1010;
  background-color: #18516e;
  padding: 3px 8px;
  color: #ffffff;
  border-bottom-left-radius: 0.2rem;
  -webkit-border-bottom-left-radius: 0.2rem;
  -moz-border-top-left-radius: 0.2rem;
  -webkit-border-top-left-radius: 0.2rem;
  -khtml-border-bottom-left-radius: 0.2rem;
  -khtml-border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
}

/* line 871, app/assets/stylesheets/global/6--sv-assets.scss */
.input-group.color-picker {
  text-align: center;
}

/* Form Color Picker */
/* line 877, app/assets/stylesheets/global/6--sv-assets.scss */
.sp-replacer.sp-light {
  padding-left: 15px;
  height: 38px;
  border: 1px solid #d6e0e6;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.25rem;
  background-color: #ffffff;
}

/* line 887, app/assets/stylesheets/global/6--sv-assets.scss */
.sp-container {
  border-top: 0px;
  border-left: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  background-color: #f6f8fb;
  margin-top: 5px;
}

/* line 896, app/assets/stylesheets/global/6--sv-assets.scss */
.sp-input {
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
}

/* line 900, app/assets/stylesheets/global/6--sv-assets.scss */
.sp-picker-container {
  border: 0px;
}

/* Tables Styling ----------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------- */
/* line 906, app/assets/stylesheets/global/6--sv-assets.scss */
table {
  border: 1px solid #d6e0e6;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

/* line 913, app/assets/stylesheets/global/6--sv-assets.scss */
table .form-group {
  padding: 0px;
  margin: 0px;
}

/* line 919, app/assets/stylesheets/global/6--sv-assets.scss */
table tr {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  padding: .1em;
}

/* line 926, app/assets/stylesheets/global/6--sv-assets.scss */
table th,
table td {
  padding: .6em;
  text-align: left;
}

/* line 932, app/assets/stylesheets/global/6--sv-assets.scss */
table td {
  font-size: 0.9em;
}

/* line 936, app/assets/stylesheets/global/6--sv-assets.scss */
table th {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #18516e;
}

/* line 944, app/assets/stylesheets/global/6--sv-assets.scss */
.status-notice-none {
  background: #e6ebf0;
  width: 25px;
  height: 25px;
}

/* notification active */
/* line 952, app/assets/stylesheets/global/6--sv-assets.scss */
.status-notice-active {
  background-color: #d32f2f;
  width: 25px;
  height: 25px;
}

/* line 959, app/assets/stylesheets/global/6--sv-assets.scss */
.status-notice-active:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "!";
  font-weight: 900 !important;
  color: #ffffff;
}

/* makes table fixed and scolling on mobile */
@media (max-width: 767.98px) {
  /* line 967, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-scroll {
    overflow-x: scroll !important;
    display: flex;
    flex-wrap: wrap;
  }
  /* line 973, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-scroll table {
    min-width: 700px;
  }
  /* line 976, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-scroll table td {
    font-size: .8em;
  }
}

/* makes table collapse into cards on mobile */
@media (max-width: 767.98px) {
  /* line 986, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table {
    border: 0;
  }
  /* line 990, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table .header-row {
    display: none;
  }
  /* line 994, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table tr {
    display: block;
    margin-bottom: .625em;
  }
  /* line 999, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table td {
    border-bottom: 1px solid #d6e0e6;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  /* line 1006, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table td::before {
    content: attr(data-label);
    float: left;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
  }
  /* line 1014, app/assets/stylesheets/global/6--sv-assets.scss */
  .table-responsive-cards table td:last-child {
    border-bottom: 0;
  }
}

/* Custom Tables  --------------------------------------------------------------------------------------------------- */
/* line 1022, app/assets/stylesheets/global/6--sv-assets.scss */
#roster-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#roster-table th:nth-child(1) {
  width: 7%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#roster-table th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#roster-table th:nth-child(3) {
  width: 33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#roster-table th:nth-child(4) {
  width: 20%;
}

/* line 1026, app/assets/stylesheets/global/6--sv-assets.scss */
#roster-table td .active-indicator {
  width: 100%;
  text-align: right;
}

/* line 1030, app/assets/stylesheets/global/6--sv-assets.scss */
#roster-table td .active-indicator label.status-text {
  padding-top: 5px;
  margin-right: 5px;
  padding-bottom: 5px;
}

/* line 1036, app/assets/stylesheets/global/6--sv-assets.scss */
#roster-table td .active-indicator label.switch {
  float: right;
}

/* line 1040, app/assets/stylesheets/global/6--sv-assets.scss */
#roster-table td a {
  color: #18516e;
}

/* line 1046, app/assets/stylesheets/global/6--sv-assets.scss */
#media-overrides-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#media-overrides-table th:nth-child(1) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#media-overrides-table th:nth-child(2) {
  width: 50%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#media-overrides-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#media-overrides-table th:nth-child(4) {
  width: 22%;
}

/* line 1050, app/assets/stylesheets/global/6--sv-assets.scss */
.game-settings-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.game-settings-table th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.game-settings-table th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.game-settings-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.game-settings-table th:nth-child(4) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.game-settings-table th:nth-child(5) {
  width: 10%;
}

/* line 1054, app/assets/stylesheets/global/6--sv-assets.scss */
th.table-sortable {
  cursor: pointer;
}

/* Mobile Media Query --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  /* Global Responsive Classes -------------------------------------------------------------------------------------- */
  /* hides element */
  /* line 1066, app/assets/stylesheets/global/6--sv-assets.scss */
  .non-mobile {
    display: none;
  }
  /* shows mobile element */
  /* line 1071, app/assets/stylesheets/global/6--sv-assets.scss */
  .mobile {
    display: block;
  }
  /* line 1075, app/assets/stylesheets/global/6--sv-assets.scss */
  .vrt-divider {
    display: none;
  }
  /* Global Buttons ------------------------------------------------------------------------------------------------- */
  /* buttons full width on mobile */
  /* line 1082, app/assets/stylesheets/global/6--sv-assets.scss */
  a.btn.btn-main, a.btn.btn-secondary, .btn.btn-main.group-media-slider-toggle, .btn.btn-main, .btn.btn-secondary,
button.btn.btn-main, button.btn.btn-secondary,
input.form-submit {
    display: block;
    width: 100% !important;
  }
  /* Button Main - Card Header -------------------------------------------------------------------------------------- */
  /* line 1091, app/assets/stylesheets/global/6--sv-assets.scss */
  .card-header a.btn.btn-main {
    height: 35px !important;
    width: 35px !important;
    display: inline-block !important;
  }
  /* Delete Button - Card Header ------------------------------------------------------------------------------------ */
  /* line 1101, app/assets/stylesheets/global/6--sv-assets.scss */
  .card-header a.btn.btn-delete {
    height: 35px !important;
    width: 35px !important;
    display: inline-block !important;
  }
  /* Button Main - Card Footer -------------------------------------------------------------------------------------- */
  /* button style */
  /* line 1113, app/assets/stylesheets/global/6--sv-assets.scss */
  .card-footer a.btn.btn-main {
    display: inline-block !important;
    width: auto !important;
  }
  /* Delete Button - Card Footer ------------------------------------------------------------------------------------ */
  /* button style */
  /* line 1123, app/assets/stylesheets/global/6--sv-assets.scss */
  .card-footer a.btn.btn-delete {
    display: inline-block !important;
    width: auto !important;
  }
  /* Button Main - Table -------------------------------------------------------------------------------------------- */
  /* button style */
  /* line 1133, app/assets/stylesheets/global/6--sv-assets.scss */
  table a.btn.btn-main {
    display: inline-block !important;
    width: auto !important;
  }
  /* line 1140, app/assets/stylesheets/global/6--sv-assets.scss */
  table a {
    border-radius: 0;
    transition: all 0.3s ease;
    background-image: none;
    background-color: transparent !important;
    text-decoration: underline;
    color: #0f3950;
    padding: 0;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.4px;
    font-weight: 700;
    text-transform: uppercase;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0;
  }
  /* line 1157, app/assets/stylesheets/global/6--sv-assets.scss */
  table a:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }
  /* Delete Button - Table ------------------------------------------------------------------------------------------ */
  /* button style */
  /* line 1167, app/assets/stylesheets/global/6--sv-assets.scss */
  table a.btn.btn-delete {
    display: inline-block !important;
    width: auto !important;
  }
  /* Form Rows ------------------------------------------------------------------------------------------------------ */
  /* line 1174, app/assets/stylesheets/global/6--sv-assets.scss */
  .form-row {
    display: block;
  }
}

/* line 1, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor {
  border: 1px solid #bbb;
  border-radius: 3px;
  margin: 0;
  padding: 0.4em 0.6em;
  min-height: 5em;
  outline: none;
}

/* line 9, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar * {
  box-sizing: border-box;
}

/* line 12, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow-x: auto;
}

/* line 18, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group {
  display: flex;
  margin-bottom: 10px;
  border: 1px solid #bbb;
  border-top-color: #ccc;
  border-bottom-color: #888;
  border-radius: 3px;
}

/* line 25, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group:not(:first-child) {
  margin-left: 1.5vw;
}

@media (max-width: 768px) {
  /* line 28, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group:not(:first-child) {
    margin-left: 0;
  }
}

/* line 31, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button-group-spacer {
  flex-grow: 1;
}

@media (max-width: 768px) {
  /* line 34, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button-group-spacer {
    display: none;
  }
}

/* line 37, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button {
  position: relative;
  float: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75em;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5em;
  margin: 0;
  outline: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: transparent;
}

/* line 51, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 53, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button.trix-active {
  background: #cbeefa;
  color: black;
}

/* line 56, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 58, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button:disabled {
  color: rgba(0, 0, 0, 0.125);
}

@media (max-width: 768px) {
  /* line 61, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button {
    letter-spacing: -0.01em;
    padding: 0 0.3em;
  }
}

/* line 65, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon {
  font-size: inherit;
  width: 2.6em;
  height: 1.6em;
  max-width: calc(0.8em + 4vw);
  text-indent: -9999px;
}

@media (max-width: 768px) {
  /* line 72, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon {
    height: 2em;
    max-width: calc(0.8em + 3.5vw);
  }
}

/* line 75, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 768px) {
  /* line 88, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
  trix-toolbar .trix-button--icon::before {
    right: 6%;
    left: 6%;
  }
}

/* line 91, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon.trix-active::before {
  opacity: 1;
}

/* line 93, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon:disabled::before {
  opacity: 0.125;
}

/* line 96, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-attach::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M10.5%2018V7.5c0-2.25%203-2.25%203%200V18c0%204.125-6%204.125-6%200V7.5c0-6.375%209-6.375%209%200V18%22%20stroke%3D%22%23000%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  top: 8%;
  bottom: 4%;
}

/* line 101, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bold::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6.522%2019.242a.5.5%200%200%201-.5-.5V5.35a.5.5%200%200%201%20.5-.5h5.783c1.347%200%202.46.345%203.24.982.783.64%201.216%201.562%201.216%202.683%200%201.13-.587%202.129-1.476%202.71a.35.35%200%200%200%20.049.613c1.259.56%202.101%201.742%202.101%203.22%200%201.282-.483%202.334-1.363%203.063-.876.726-2.132%201.12-3.66%201.12h-5.89ZM9.27%207.347v3.362h1.97c.766%200%201.347-.17%201.733-.464.38-.291.587-.716.587-1.27%200-.53-.183-.928-.513-1.198-.334-.273-.838-.43-1.505-.43H9.27Zm0%205.606v3.791h2.389c.832%200%201.448-.177%201.853-.497.399-.315.614-.786.614-1.423%200-.62-.22-1.077-.63-1.385-.418-.313-1.053-.486-1.905-.486H9.27Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 104, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-italic::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9%205h6.5v2h-2.23l-2.31%2010H13v2H6v-2h2.461l2.306-10H9V5Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 107, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M18.948%205.258a4.337%204.337%200%200%200-6.108%200L11.217%206.87a.993.993%200%200%200%200%201.41c.392.39%201.027.39%201.418%200l1.623-1.613a2.323%202.323%200%200%201%203.271%200%202.29%202.29%200%200%201%200%203.251l-2.393%202.38a3.021%203.021%200%200%201-4.255%200l-.05-.049a1.007%201.007%200%200%200-1.418%200%20.993.993%200%200%200%200%201.41l.05.049a5.036%205.036%200%200%200%207.091%200l2.394-2.38a4.275%204.275%200%200%200%200-6.072Zm-13.683%2013.6a4.337%204.337%200%200%200%206.108%200l1.262-1.255a.993.993%200%200%200%200-1.41%201.007%201.007%200%200%200-1.418%200L9.954%2017.45a2.323%202.323%200%200%201-3.27%200%202.29%202.29%200%200%201%200-3.251l2.344-2.331a2.579%202.579%200%200%201%203.631%200c.392.39%201.027.39%201.419%200a.993.993%200%200%200%200-1.41%204.593%204.593%200%200%200-6.468%200l-2.345%202.33a4.275%204.275%200%200%200%200%206.072Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 110, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-strike::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M6%2014.986c.088%202.647%202.246%204.258%205.635%204.258%203.496%200%205.713-1.728%205.713-4.463%200-.275-.02-.536-.062-.781h-3.461c.398.293.573.654.573%201.123%200%201.035-1.074%201.787-2.646%201.787-1.563%200-2.773-.762-2.91-1.924H6ZM6.432%2010h3.763c-.632-.314-.914-.715-.914-1.273%200-1.045.977-1.739%202.432-1.739%201.475%200%202.52.723%202.617%201.914h2.764c-.05-2.548-2.11-4.238-5.39-4.238-3.145%200-5.392%201.719-5.392%204.316%200%20.363.04.703.12%201.02ZM4%2011a1%201%200%201%200%200%202h15a1%201%200%201%200%200-2H4Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 113, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-quote::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.581%208.471c.44-.5%201.056-.834%201.758-.995C8.074%207.17%209.201%207.822%2010%208.752c1.354%201.578%201.33%203.555.394%205.277-.941%201.731-2.788%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.121-.49.16-.764.294-.286.567-.566.791-.835.222-.266.413-.54.524-.815.113-.28.156-.597.026-.908-.128-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.674-2.7c0-.905.283-1.59.72-2.088Zm9.419%200c.44-.5%201.055-.834%201.758-.995%201.734-.306%202.862.346%203.66%201.276%201.355%201.578%201.33%203.555.395%205.277-.941%201.731-2.789%203.163-4.988%203.56a.622.622%200%200%201-.653-.317c-.113-.205-.122-.49.16-.764.294-.286.567-.566.791-.835.222-.266.412-.54.523-.815.114-.28.157-.597.026-.908-.127-.303-.39-.524-.72-.69a3.02%203.02%200%200%201-1.672-2.701c0-.905.283-1.59.72-2.088Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 116, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-heading-1::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.5%207.5v-3h-12v3H14v13h3v-13h4.5ZM9%2013.5h3.5v-3h-10v3H6v7h3v-7Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 119, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-code::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.293%2011.293a1%201%200%200%200%200%201.414l4%204a1%201%200%201%200%201.414-1.414L5.414%2012l3.293-3.293a1%201%200%200%200-1.414-1.414l-4%204Zm13.414%205.414%204-4a1%201%200%200%200%200-1.414l-4-4a1%201%200%201%200-1.414%201.414L18.586%2012l-3.293%203.293a1%201%200%200%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 122, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-bullet-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%207.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203ZM8%206a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-2.5-5a1.5%201.5%200%201%201-3%200%201.5%201.5%200%200%201%203%200ZM5%2019.5a1.5%201.5%200%201%200%200-3%201.5%201.5%200%200%200%200%203Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 125, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-number-list::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%204h2v4H4V5H3V4Zm5%202a1%201%200%200%201%201-1h11a1%201%200%201%201%200%202H9a1%201%200%200%201-1-1Zm1%205a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm0%206a1%201%200%201%200%200%202h11a1%201%200%201%200%200-2H9Zm-3.5-7H6v1l-1.5%202H6v1H3v-1l1.667-2H3v-1h2.5ZM3%2017v-1h3v4H3v-1h2v-.5H4v-1h1V17H3Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 128, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-undo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3%2014a1%201%200%200%200%201%201h6a1%201%200%201%200%200-2H6.257c2.247-2.764%205.151-3.668%207.579-3.264%202.589.432%204.739%202.356%205.174%205.405a1%201%200%200%200%201.98-.283c-.564-3.95-3.415-6.526-6.825-7.095C11.084%207.25%207.63%208.377%205%2011.39V8a1%201%200%200%200-2%200v6Zm2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 131, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-redo::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21%2014a1%201%200%200%201-1%201h-6a1%201%200%201%201%200-2h3.743c-2.247-2.764-5.151-3.668-7.579-3.264-2.589.432-4.739%202.356-5.174%205.405a1%201%200%200%201-1.98-.283c.564-3.95%203.415-6.526%206.826-7.095%203.08-.513%206.534.614%209.164%203.626V8a1%201%200%201%201%202%200v6Zm-2-1Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 134, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-decrease-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-3.707-5.707a1%201%200%200%200%200%201.414l2%202a1%201%200%201%200%201.414-1.414L4.414%2012l1.293-1.293a1%201%200%200%200-1.414-1.414l-2%202Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 137, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--icon-increase-nesting-level::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M5%206a1%201%200%200%201%201-1h12a1%201%200%201%201%200%202H6a1%201%200%200%201-1-1Zm4%205a1%201%200%201%200%200%202h9a1%201%200%201%200%200-2H9Zm-3%206a1%201%200%201%200%200%202h12a1%201%200%201%200%200-2H6Zm-2.293-2.293%202-2a1%201%200%200%200%200-1.414l-2-2a1%201%200%201%200-1.414%201.414L3.586%2012l-1.293%201.293a1%201%200%201%200%201.414%201.414Z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fsvg%3E");
}

/* line 140, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialogs {
  position: relative;
}

/* line 143, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0.75em;
  padding: 15px 10px;
  background: #fff;
  box-shadow: 0 0.3em 1em #ccc;
  border-top: 2px solid #888;
  border-radius: 5px;
  z-index: 5;
}

/* line 156, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog {
  font-size: inherit;
  font-weight: normal;
  padding: 0.5em 0.8em;
  margin: 0 10px 0 0;
  border-radius: 3px;
  border: 1px solid #bbb;
  background-color: #fff;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 168, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-input--dialog.validate:invalid {
  box-shadow: #F00 0px 0px 1.5px 1px;
}

/* line 171, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-button--dialog {
  font-size: inherit;
  padding: 0.5em;
  border-bottom: none;
}

/* line 176, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog--link {
  max-width: 600px;
}

/* line 179, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields {
  display: flex;
  align-items: baseline;
}

/* line 182, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-input {
  flex: 1;
}

/* line 184, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-toolbar .trix-dialog__link-fields .trix-button-group {
  flex: 0 0 content;
  margin: 0;
}

/* line 188, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]:not(.attachment__caption-editor) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 194, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]::-moz-selection,
trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}

/* line 198, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor [data-trix-mutable]::-moz-selection, trix-editor [data-trix-cursor-target]::-moz-selection, trix-editor [data-trix-mutable] ::-moz-selection {
  background: none;
}
trix-editor [data-trix-mutable]::selection,
trix-editor [data-trix-cursor-target]::selection, trix-editor [data-trix-mutable] ::selection {
  background: none;
}

/* line 202, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}

/* line 205, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::-moz-selection {
  background: highlight;
}
trix-editor .attachment__caption-editor[data-trix-mutable]:focus::selection {
  background: highlight;
}

/* line 208, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment.attachment--file[data-trix-mutable] {
  box-shadow: 0 0 0 2px highlight;
  border-color: transparent;
}

/* line 212, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment[data-trix-mutable] img {
  box-shadow: 0 0 0 2px highlight;
}

/* line 215, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment {
  position: relative;
}

/* line 217, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment:hover {
  cursor: default;
}

/* line 220, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment--preview .attachment__caption:hover {
  cursor: text;
}

/* line 223, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__progress {
  position: absolute;
  z-index: 1;
  height: 20px;
  top: calc(50% - 10px);
  left: 5%;
  width: 90%;
  opacity: 0.9;
  transition: opacity 200ms ease-in;
}

/* line 232, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__progress[value="100"] {
  opacity: 0;
}

/* line 235, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__caption-editor {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  vertical-align: top;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* line 251, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__toolbar {
  position: absolute;
  z-index: 1;
  top: -0.9em;
  left: 0;
  width: 100%;
  text-align: center;
}

/* line 259, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button-group {
  display: inline-flex;
}

/* line 262, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button {
  position: relative;
  float: left;
  color: #666;
  white-space: nowrap;
  font-size: 80%;
  padding: 0 0.8em;
  margin: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* line 274, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:first-child) {
  border-left: 1px solid #ccc;
}

/* line 276, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button.trix-active {
  background: #cbeefa;
}

/* line 278, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button:not(:disabled) {
  cursor: pointer;
}

/* line 281, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove {
  text-indent: -9999px;
  display: inline-block;
  padding: 0;
  outline: none;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid highlight;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

/* line 293, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove::before {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20height%3D%2224%22%20width%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90%;
}

/* line 306, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover {
  border-color: #333;
}

/* line 308, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .trix-button--remove:hover::before {
  opacity: 1;
}

/* line 311, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata-container {
  position: relative;
}

/* line 314, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata {
  position: absolute;
  left: 50%;
  top: 2em;
  transform: translate(-50%, 0);
  max-width: 90%;
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
}

/* line 325, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__name {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 332, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
trix-editor .attachment__metadata .attachment__size {
  margin-left: 0.2em;
  white-space: nowrap;
}

/* line 336, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content {
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* line 340, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 344, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

/* line 347, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

/* line 352, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

/* line 358, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content li {
  margin-left: 1em;
}

/* line 360, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content [dir=rtl] li {
  margin-right: 1em;
}

/* line 362, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

/* line 372, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content img {
  max-width: 100%;
  height: auto;
}

/* line 375, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

/* line 379, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

/* line 382, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

/* line 384, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment__caption {
  text-align: center;
}

/* line 386, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: ' \2022 ';
}

/* line 388, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

/* line 391, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

/* line 395, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

/* line 402, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* line 406, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 410, .bundle/cache/ruby/3.4.0/gems/actiontext-7.2.2.1/app/assets/stylesheets/trix.css */
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 1, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body {
  /* scrollable on desktop */
}

/* line 2, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body .row.table-tooltip {
  margin-top: 47px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1300px) {
  /* line 8, app/assets/stylesheets/admin_admin_reports.scss */
  body.admin-reports-body .table-responsive-scroll.reports-table-wrapper {
    overflow-x: scroll !important;
  }
  /* line 11, app/assets/stylesheets/admin_admin_reports.scss */
  body.admin-reports-body table#usage-report-1, body.admin-reports-body table#usage-report-2, body.admin-reports-body table#winners-report {
    table-layout: fixed;
    min-width: 1100px !important;
  }
}

/* line 17, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th, body.admin-reports-body table#usage-report-2 th, body.admin-reports-body table#winners-report th {
  position: relative;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  padding: 8px;
  letter-spacing: 0.4px;
  border: 1px solid #0f3950;
}

/* line 26, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th .top-badge, body.admin-reports-body table#usage-report-2 th .top-badge, body.admin-reports-body table#winners-report th .top-badge {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  font-weight: 800;
  height: 39px;
  left: 0;
  top: -47px;
  background-color: #cddb3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f3950;
  border: 1px solid #8f923e;
}

/* line 41, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th .top-badge:after, body.admin-reports-body table#usage-report-2 th .top-badge:after, body.admin-reports-body table#winners-report th .top-badge:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  height: 0;
  border-top: solid 5px #8f923e;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
}

/* line 53, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th .top-badge.red, body.admin-reports-body table#usage-report-2 th .top-badge.red, body.admin-reports-body table#winners-report th .top-badge.red {
  background-color: #d32f2f;
  border: 1px solid #AC1616;
  color: #ffffff;
}

/* line 58, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th .top-badge.red:after, body.admin-reports-body table#usage-report-2 th .top-badge.red:after, body.admin-reports-body table#winners-report th .top-badge.red:after {
  border-top: solid 5px #AC1616;
}

/* line 62, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 th:first-child, body.admin-reports-body table#usage-report-2 th:first-child, body.admin-reports-body table#winners-report th:first-child {
  border-bottom: 1px solid #d6e0e6;
  border-right: 1px solid #0f3950;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  background-color: #ffffff;
}

/* line 69, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 td, body.admin-reports-body table#usage-report-2 td, body.admin-reports-body table#winners-report td {
  border: 1px solid #d6e0e6;
  vertical-align: middle;
}

/* line 73, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 .sml-txt, body.admin-reports-body table#usage-report-2 .sml-txt, body.admin-reports-body table#winners-report .sml-txt {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
}

/* line 78, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 .med-txt, body.admin-reports-body table#usage-report-2 .med-txt, body.admin-reports-body table#winners-report .med-txt {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

/* line 83, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#usage-report-1 .med-strong-txt, body.admin-reports-body table#usage-report-2 .med-strong-txt, body.admin-reports-body table#winners-report .med-strong-txt {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

/* line 89, app/assets/stylesheets/admin_admin_reports.scss */
body.admin-reports-body table#winners-report {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-reports-body table#winners-report th:nth-child(1) {
  width: 4%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-reports-body table#winners-report th:nth-child(2) {
  width: 24%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-reports-body table#winners-report th:nth-child(3) {
  width: 24%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-reports-body table#winners-report th:nth-child(4) {
  width: 24%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-reports-body table#winners-report th:nth-child(5) {
  width: 24%;
}

/* line 7, app/assets/stylesheets/admin_advanced_av_presets.scss */
body.admin-advanced-av-presets-body .btn.btn-main.btn-submit {
  display: block;
  width: 100%;
}

/* line 11, app/assets/stylesheets/admin_advanced_av_presets.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(3) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(4) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(5) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(6) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(7) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th:nth-child(8) {
  width: 10%;
}

/* line 13, app/assets/stylesheets/admin_advanced_av_presets.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table th {
  font-size: 10px;
}

/* line 16, app/assets/stylesheets/admin_advanced_av_presets.scss */
body.admin-advanced-av-presets-body .admin-advanced-av-table td {
  border: 1px solid #d6e0e6;
}

/* line 2, app/assets/stylesheets/admin_agreements.scss */
body.admin-agreements-body .icon-bin {
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #e6ebf0;
  border: 1px solid #d6e0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  box-sizing: border-box;
}

/* line 12, app/assets/stylesheets/admin_agreements.scss */
body.admin-agreements-body .icon-bin .fa {
  font-size: 24px;
  color: #18516e;
}

/* line 18, app/assets/stylesheets/admin_agreements.scss */
body.admin-agreements-body .preview-agreement-bin {
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
}

/* line 23, app/assets/stylesheets/admin_agreements.scss */
body.admin-agreements-body .action-btn-bin {
  background-color: #f6f8fb;
}

/* line 4, app/assets/stylesheets/admin_api_clients.scss */
body.admin-api-clients-body .admin-api-clients-table {
  table-layout: fixed;
  width: 100%;
  word-break: break-all;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-clients-body .admin-api-clients-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-clients-body .admin-api-clients-table th:nth-child(2) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-clients-body .admin-api-clients-table th:nth-child(3) {
  width: 33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-clients-body .admin-api-clients-table th:nth-child(4) {
  width: 20%;
}

/* line 12, app/assets/stylesheets/admin_api_clients.scss */
body.admin-api-clients-body .admin-api-clients-table td {
  border: 1px solid #d6e0e6;
  font-size: 0.85em;
}

/* line 17, app/assets/stylesheets/admin_api_clients.scss */
body.admin-api-clients-body .admin-api-clients-table td:first-child {
  background-color: #f6f8fb;
}

/* line 21, app/assets/stylesheets/admin_api_clients.scss */
body.admin-api-clients-body .admin-api-clients-table tr {
  background-color: #ffffff;
}

/* line 2, app/assets/stylesheets/admin_api_logs_index.scss */
body.admin-api-logs-index-body #api-log-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-logs-index-body #api-log-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-logs-index-body #api-log-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-logs-index-body #api-log-table th:nth-child(3) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-logs-index-body #api-log-table th:nth-child(4) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-logs-index-body #api-log-table th:nth-child(5) {
  width: 10%;
}

/* line 6, app/assets/stylesheets/admin_api_logs_index.scss */
body.admin-api-logs-index-body td {
  word-break: break-all;
}

/* line 10, app/assets/stylesheets/admin_api_logs_index.scss */
body.admin-api-logs-index-body #api-log-search-text {
  visibility: collapse;
  font-weight: bold;
  background: green;
  color: white;
}

/* line 2, app/assets/stylesheets/admin_api_test_run.scss */
body.admin-api-test-run-body table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-test-run-body table th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-api-test-run-body table th:nth-child(2) {
  width: 75%;
}

/* line 6, app/assets/stylesheets/admin_api_test_run.scss */
body.admin-api-test-run-body th, body.admin-api-test-run-body td {
  vertical-align: top;
}

/* line 10, app/assets/stylesheets/admin_api_test_run.scss */
body.admin-api-test-run-body th.section-header {
  font-size: larger;
}

/* line 4, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .col-app-info {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  /* line 4, app/assets/stylesheets/admin_app_versions.scss */
  body.admin-app-versions-body .col-app-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 4, app/assets/stylesheets/admin_app_versions.scss */
  body.admin-app-versions-body .col-app-info {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 17, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-info-bin {
  border: 1px solid #d6e0e6;
}

/* line 20, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-info-bin .selection-bin {
  padding: 15px 15px 0 15px;
}

/* line 24, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-info-bin .add-bin {
  padding: 15px 15px 0 15px;
  border-top: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 31, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-info-bin .form-group label {
  margin: 0;
  padding-top: 0;
}

/* line 38, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .col-app-compatible-bin {
  word-wrap: break-word;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 45, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .col-app-version-checklist-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  /* line 45, app/assets/stylesheets/admin_app_versions.scss */
  body.admin-app-versions-body .col-app-version-checklist-bin {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 45, app/assets/stylesheets/admin_app_versions.scss */
  body.admin-app-versions-body .col-app-version-checklist-bin {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 54, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .col-app-version-checklist-bin .selection {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 58, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .col-app-version-checklist-bin .subhead {
  font-size: 13px;
}

/* line 63, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-info-selection-bin {
  padding: 15px 15px 0 15px;
}

/* line 67, app/assets/stylesheets/admin_app_versions.scss */
body.admin-app-versions-body .app-version-checklist-bin {
  border: 1px solid #d6e0e6;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #f6f8fb;
}

/* line 1, app/assets/stylesheets/admin_av_edit_av.scss */
.col-av-support-image-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 1, app/assets/stylesheets/admin_av_edit_av.scss */
  .col-av-support-image-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 1, app/assets/stylesheets/admin_av_edit_av.scss */
  .col-av-support-image-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 1, app/assets/stylesheets/admin_av_edit_av.scss */
  .col-av-support-image-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 23, app/assets/stylesheets/admin_av_edit_av.scss */
.col-av-support-image-cards .card.add-card {
  min-height: 199px;
  padding: 7px;
}

/* line 27, app/assets/stylesheets/admin_av_edit_av.scss */
.col-av-support-image-cards .card.add-card a.btn-file.card-link {
  border: 2px dashed #d6e0e6;
}

/* line 32, app/assets/stylesheets/admin_av_edit_av.scss */
.col-av-support-image-cards .card.add-card label.control-label {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1em !important;
  text-transform: capitalize !important;
  line-height: 1.3em;
  font-weight: 700 !important;
  color: #18516e !important;
}

/* line 43, app/assets/stylesheets/admin_av_edit_av.scss */
.col-av-support-image-cards .card.add-card .body {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
}

/* line 51, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card {
  min-height: 199px;
  /* checkbox location */
  /* card body */
}

/* line 54, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-hero-image.large {
  transition: opacity 0.3s;
}

/* line 60, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .form-check {
  right: 22px;
  top: 89%;
}

/* line 66, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body {
  padding: 1.35rem 0.7rem 1rem 0.7rem;
  /* media name */
}

/* line 70, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body .description {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: bold;
  text-transform: inherit;
  color: #18516e;
}

/* line 78, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body .description .update_name_sponsor_image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 87, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body .description .form-group {
  padding: 0;
  width: 100% !important;
  margin-bottom: 0;
}

/* line 92, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body .description .form-group .form-control {
  font-size: 0.85rem;
  height: auto !important;
  padding: 5px 12px 5px 12px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 101, app/assets/stylesheets/admin_av_edit_av.scss */
.card.av-support-image-card .card-body .description input.btn.btn-main {
  width: 55px !important;
  font-size: 9.5px;
  margin-left: 0;
  padding: 12px 0 10px 0;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* line 1, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body {
  /* fixed content */
  /* modules font size */
  /* modules padding */
  /* dropdown menu */
}

@keyframes pulse-warning {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* line 13, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #edit-device-bin {
  position: absolute;
  top: 24px;
}

/* line 23, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .row.av-mapping-io {
  max-width: 950px;
}

/* line 27, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .row.av-mapping {
  max-width: 1100px;
}

/* line 32, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .device {
  font-size: 0.8em;
}

/* line 37, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .device-list {
  padding-left: 5px;
  padding-right: 5px;
}

/* line 43, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .dropdown-menu {
  transform: translate3d(-10px, 35px, 0) !important;
}

/* line 48, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #add-device-buttons button {
  display: block;
  transition: all 0.3s ease;
  color: #18516e;
  border: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #ffffff;
  text-align: left;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
}

/* line 61, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #add-device-buttons button:hover {
  background-color: #e6ebf0;
}

/* line 66, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #technical-notes {
  margin: 0 auto 10px auto;
  text-align: center;
}

/* line 71, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .device-form {
  display: none;
}

/* line 75, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .highlighted-field {
  border: 2px solid #13ad13;
}

/* line 78, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .red-highlighted-field {
  border: 2px solid #cc3333;
}

/* line 86, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .cascading-av-switcher-connection, body.admin-av-index-body .video-source-downstream-connection, body.admin-av-index-body .video-source-major-display-box-connection, body.admin-av-index-body .atem-macro, body.admin-av-index-body .teranex-preset {
  border-top: 2px solid #000000;
  padding-top: 10px;
}

/* line 91, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #cascading-av-switcher-connection-fields, body.admin-av-index-body #video-source-downstream-connection-fields, body.admin-av-index-body #video-source-major-display-connection-fields {
  border-bottom: 2px solid #000000;
  margin-bottom: 10px;
}

/* line 96, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #atem-macro-fields, body.admin-av-index-body #teranex-preset-fields {
  margin-top: 10px;
}

/* line 100, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .av-group.row {
  margin-left: 0;
  margin-right: 0;
}

/* line 105, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .av-group-hub.device.power-switch.block {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 111, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body, body.admin-av-index-body #io-panel .nested-av-groups, body.admin-av-index-body #power-panel .se-section-body, body.admin-av-index-body #power-panel .nested-av-groups, body.admin-av-index-body #network-panel .se-section-body, body.admin-av-index-body #network-panel .nested-av-groups, body.admin-av-index-body #other-panel .se-section-body, body.admin-av-index-body #other-panel .nested-av-groups {
  border-spacing: 10px;
  border-collapse: separate;
}

/* line 115, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group, body.admin-av-index-body #io-panel .nested-av-groups .av-group, body.admin-av-index-body #power-panel .se-section-body .av-group, body.admin-av-index-body #power-panel .nested-av-groups .av-group, body.admin-av-index-body #network-panel .se-section-body .av-group, body.admin-av-index-body #network-panel .nested-av-groups .av-group, body.admin-av-index-body #other-panel .se-section-body .av-group, body.admin-av-index-body #other-panel .nested-av-groups .av-group {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  padding: 5px;
}

/* line 121, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device, body.admin-av-index-body #power-panel .se-section-body .av-group .device, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device, body.admin-av-index-body #network-panel .se-section-body .av-group .device, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device, body.admin-av-index-body #other-panel .se-section-body .av-group .device, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device {
  background: #CCCCCC;
  color: #000000;
  border-radius: 10px;
  text-align: left;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  border: 3px solid #FFFFFF;
}

/* line 132, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.av-switcher, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.av-switcher, body.admin-av-index-body #power-panel .se-section-body .av-group .device.av-switcher, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.av-switcher, body.admin-av-index-body #network-panel .se-section-body .av-group .device.av-switcher, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.av-switcher, body.admin-av-index-body #other-panel .se-section-body .av-group .device.av-switcher, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.av-switcher {
  background: #CCCCCC;
  position: relative;
  overflow: visible !important;
}

/* line 138, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #power-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #network-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #other-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs {
  border-color: #ff5722 !important;
  border-width: 3px;
  box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

/* line 144, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #power-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #network-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #other-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff !important;
  background: #ff5722 !important;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  box-shadow: 0 3px 10px rgba(255, 87, 34, 0.6), 0 0 0 3px #fff !important;
  animation: pulse-warning 2s infinite;
  z-index: 100;
  border: 2px solid #fff !important;
  font-weight: bold !important;
  pointer-events: none;
}

/* line 166, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.power-switch, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.power-switch, body.admin-av-index-body #power-panel .se-section-body .av-group .device.power-switch, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.power-switch, body.admin-av-index-body #network-panel .se-section-body .av-group .device.power-switch, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.power-switch, body.admin-av-index-body #other-panel .se-section-body .av-group .device.power-switch, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.power-switch {
  background: #99FF99;
}

/* line 170, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.matrix-display, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.matrix-display, body.admin-av-index-body #power-panel .se-section-body .av-group .device.matrix-display, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.matrix-display, body.admin-av-index-body #network-panel .se-section-body .av-group .device.matrix-display, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.matrix-display, body.admin-av-index-body #other-panel .se-section-body .av-group .device.matrix-display, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.matrix-display {
  background: #99CCCC;
}

/* line 174, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.screen, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.screen, body.admin-av-index-body #power-panel .se-section-body .av-group .device.screen, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.screen, body.admin-av-index-body #network-panel .se-section-body .av-group .device.screen, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.screen, body.admin-av-index-body #other-panel .se-section-body .av-group .device.screen, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.screen {
  background: #9999FF;
}

/* line 178, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.capture-device, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.capture-device, body.admin-av-index-body #power-panel .se-section-body .av-group .device.capture-device, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.capture-device, body.admin-av-index-body #network-panel .se-section-body .av-group .device.capture-device, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.capture-device, body.admin-av-index-body #other-panel .se-section-body .av-group .device.capture-device, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.capture-device {
  background: #FFFF99;
}

/* line 182, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.video-source, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.video-source, body.admin-av-index-body #power-panel .se-section-body .av-group .device.video-source, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.video-source, body.admin-av-index-body #network-panel .se-section-body .av-group .device.video-source, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.video-source, body.admin-av-index-body #other-panel .se-section-body .av-group .device.video-source, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.video-source {
  background: #BBBBFF;
}

/* line 186, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.led-board, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.led-board, body.admin-av-index-body #power-panel .se-section-body .av-group .device.led-board, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.led-board, body.admin-av-index-body #network-panel .se-section-body .av-group .device.led-board, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.led-board, body.admin-av-index-body #other-panel .se-section-body .av-group .device.led-board, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.led-board {
  background: #FFBBBB;
}

/* line 190, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.powered-device, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.powered-device, body.admin-av-index-body #power-panel .se-section-body .av-group .device.powered-device, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.powered-device, body.admin-av-index-body #network-panel .se-section-body .av-group .device.powered-device, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.powered-device, body.admin-av-index-body #other-panel .se-section-body .av-group .device.powered-device, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.powered-device {
  background: #99CCCC;
}

/* line 194, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.network-switch, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.network-switch, body.admin-av-index-body #power-panel .se-section-body .av-group .device.network-switch, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.network-switch, body.admin-av-index-body #network-panel .se-section-body .av-group .device.network-switch, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.network-switch, body.admin-av-index-body #other-panel .se-section-body .av-group .device.network-switch, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.network-switch {
  background: #FFCC99;
}

/* line 198, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.network-wap, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.network-wap, body.admin-av-index-body #power-panel .se-section-body .av-group .device.network-wap, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.network-wap, body.admin-av-index-body #network-panel .se-section-body .av-group .device.network-wap, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.network-wap, body.admin-av-index-body #other-panel .se-section-body .av-group .device.network-wap, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.network-wap {
  background: #FFBB66;
}

/* line 202, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.scorebot, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.scorebot, body.admin-av-index-body #power-panel .se-section-body .av-group .device.scorebot, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.scorebot, body.admin-av-index-body #network-panel .se-section-body .av-group .device.scorebot, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.scorebot, body.admin-av-index-body #other-panel .se-section-body .av-group .device.scorebot, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.scorebot {
  background: #FFBBEE;
}

/* line 206, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.router, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.router, body.admin-av-index-body #power-panel .se-section-body .av-group .device.router, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.router, body.admin-av-index-body #network-panel .se-section-body .av-group .device.router, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.router, body.admin-av-index-body #other-panel .se-section-body .av-group .device.router, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.router {
  background: #99FFFF;
}

/* line 210, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.major-display-box, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.major-display-box, body.admin-av-index-body #power-panel .se-section-body .av-group .device.major-display-box, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.major-display-box, body.admin-av-index-body #network-panel .se-section-body .av-group .device.major-display-box, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.major-display-box, body.admin-av-index-body #other-panel .se-section-body .av-group .device.major-display-box, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.major-display-box {
  background: #ADBA23;
}

/* line 214, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.major-display-board, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.major-display-board, body.admin-av-index-body #power-panel .se-section-body .av-group .device.major-display-board, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.major-display-board, body.admin-av-index-body #network-panel .se-section-body .av-group .device.major-display-board, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.major-display-board, body.admin-av-index-body #other-panel .se-section-body .av-group .device.major-display-board, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.major-display-board {
  background: #CCFF99;
}

/* line 218, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.shot-clock, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.shot-clock, body.admin-av-index-body #power-panel .se-section-body .av-group .device.shot-clock, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.shot-clock, body.admin-av-index-body #network-panel .se-section-body .av-group .device.shot-clock, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.shot-clock, body.admin-av-index-body #other-panel .se-section-body .av-group .device.shot-clock, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.shot-clock {
  background: #AACCFF;
}

/* line 222, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.precision-control-unit, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-av-index-body #power-panel .se-section-body .av-group .device.precision-control-unit, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-av-index-body #network-panel .se-section-body .av-group .device.precision-control-unit, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-av-index-body #other-panel .se-section-body .av-group .device.precision-control-unit, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.precision-control-unit {
  background: #BFF442;
}

/* line 226, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-av-index-body #power-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-av-index-body #network-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-av-index-body #other-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.oes-rack-unit {
  background: #BA9EBA;
}

/* line 230, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.aux-clock-display, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-av-index-body #power-panel .se-section-body .av-group .device.aux-clock-display, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-av-index-body #network-panel .se-section-body .av-group .device.aux-clock-display, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-av-index-body #other-panel .se-section-body .av-group .device.aux-clock-display, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.aux-clock-display {
  background: #E5D7C0;
}

/* line 234, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.handheld-device, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.handheld-device, body.admin-av-index-body #power-panel .se-section-body .av-group .device.handheld-device, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.handheld-device, body.admin-av-index-body #network-panel .se-section-body .av-group .device.handheld-device, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.handheld-device, body.admin-av-index-body #other-panel .se-section-body .av-group .device.handheld-device, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.handheld-device {
  background: #1BD3BE;
}

/* line 238, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body #io-panel .se-section-body .av-group .device.camera, body.admin-av-index-body #io-panel .nested-av-groups .av-group .device.camera, body.admin-av-index-body #power-panel .se-section-body .av-group .device.camera, body.admin-av-index-body #power-panel .nested-av-groups .av-group .device.camera, body.admin-av-index-body #network-panel .se-section-body .av-group .device.camera, body.admin-av-index-body #network-panel .nested-av-groups .av-group .device.camera, body.admin-av-index-body #other-panel .se-section-body .av-group .device.camera, body.admin-av-index-body #other-panel .nested-av-groups .av-group .device.camera {
  background: #94BF67;
}

/* line 249, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .collapse-content {
  padding-top: 15px;
  padding-bottom: 5px;
}

/* line 253, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .slider-container {
  border-top: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -1px;
}

/* line 260, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .header-btn-bin {
  display: flex;
  align-items: center;
}

/* line 263, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .header-btn-bin .subhead {
  margin-bottom: 0px;
}

/* line 266, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .header-btn-bin .btn-bin {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* line 270, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .header-btn-bin .btn-bin a.btn.btn-main {
  width: 100px !important;
  margin-bottom: 0px;
  margin-left: 10px;
}

/* line 275, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .header-btn-bin .btn-bin a.btn.btn-underline {
  text-decoration: underline;
  width: auto !important;
}

/* line 282, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .overflow-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: scroll;
  background: #f6f8fb;
  padding: 15px;
  margin-bottom: 15px;
}

/* line 290, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body .overflow-container img {
  max-width: 400px;
  max-height: 400px;
}

/* line 296, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body table.hubspot-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-index-body table.hubspot-table th:nth-child(1) {
  width: 80%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-index-body table.hubspot-table th:nth-child(2) {
  width: 20%;
}

/* line 299, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body table.hubspot-table .fa {
  font-size: 18px;
}

/* line 302, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body table.hubspot-table .form-group {
  width: 60%;
}

/* line 305, app/assets/stylesheets/admin_av_index.scss */
body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link {
  text-decoration: none !important;
  width: 100px !important;
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%) !important;
  background-color: #539ec2 !important;
  background-position: right center !important;
  background-size: cover !important;
  border: 0px !important;
}

/* line 7, app/assets/stylesheets/admin_av_presets.scss */
body.admin-av-presets-body .admin-av-presets-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(2) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(3) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(4) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(5) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(6) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(7) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(8) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(9) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(10) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-av-presets-body .admin-av-presets-table th:nth-child(11) {
  width: 10%;
}

/* line 9, app/assets/stylesheets/admin_av_presets.scss */
body.admin-av-presets-body .admin-av-presets-table th {
  font-size: 10px;
}

/* line 12, app/assets/stylesheets/admin_av_presets.scss */
body.admin-av-presets-body .admin-av-presets-table td {
  border: 1px solid #d6e0e6;
}

/* line 4, app/assets/stylesheets/admin_av_switcher_models.scss */
body.admin-av-switcher-models-body #admin-av-switcher-models-table th {
  text-align: center;
}

/* line 8, app/assets/stylesheets/admin_av_switcher_models.scss */
body.admin-av-switcher-models-body #admin-av-switcher-models-table td {
  border: 1px solid #d6e0e6;
  text-align: center;
}

/* line 2, app/assets/stylesheets/admin_board_layout_staging.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table th:nth-child(2) {
  width: 22%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table th:nth-child(3) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table th:nth-child(4) {
  width: 12%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table th:nth-child(5) {
  width: 16%;
}

/* line 4, app/assets/stylesheets/admin_board_layout_staging.scss */
body.admin-board-layout-staging-body .admin-layout-staging-table td {
  border: 1px solid #d6e0e6;
}

/* line 9, app/assets/stylesheets/admin_board_layout_staging.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(3) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(4) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(5) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(6) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th:nth-child(7) {
  width: 20%;
}

/* line 11, app/assets/stylesheets/admin_board_layout_staging.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts td {
  border: 1px solid #d6e0e6;
}

/* line 14, app/assets/stylesheets/admin_board_layout_staging.scss */
body.admin-board-layout-staging-body .admin-staging-org-layouts th {
  font-size: 11px;
}

/* line 1, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body {
  /* Tag dropdown styles */
  /* Upward positioning when there's not enough space below */
  /* Default downward positioning */
  /* Handle light colored tags */
  /* Selected count styling */
  /* Mass tagging button styling */
  /* Mass tag selection buttons */
  /* Handle light colored tags for mass selection */
}

/* line 3, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-section {
  position: relative;
}

/* line 7, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-panel {
  position: absolute;
  left: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-width: 350px;
  max-width: 450px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}

/* line 22, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-panel.dropdown-fixed {
  position: fixed !important;
  z-index: 9999 !important;
}

/* line 29, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-panel.dropdown-up {
  bottom: 100%;
  margin-bottom: 5px;
}

/* line 35, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-panel.dropdown-down {
  top: 100%;
  margin-top: 5px;
}

/* line 40, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-header {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
}

/* line 46, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-header .clear-tags {
  padding: 0;
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 52, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-header .clear-tags:hover {
  color: #dc3545;
  text-decoration: none;
}

/* line 57, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-group {
  margin-bottom: 15px;
}

/* line 61, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-group:last-child {
  margin-bottom: 0;
}

/* line 65, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-group h6 {
  font-size: 0.75rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 72, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* line 78, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button {
  position: relative;
  padding: 3px 10px;
  border-radius: 12px;
  color: white;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  background-image: none;
  outline: none;
}

/* line 93, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* line 98, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button.active {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* line 103, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button .selected-indicator {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* line 123, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button.active .selected-indicator {
  opacity: 1;
  transform: scale(1);
}

/* line 129, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button[style*="background-color: #fff"],
body.admin-board-layout-staging-show-body .tag-select-button[style*="background-color: #ffffff"],
body.admin-board-layout-staging-show-body .tag-select-button[style*="background-color: #yellow"],
body.admin-board-layout-staging-show-body .tag-select-button[style*="background-color: #ffff"] {
  color: #333 !important;
  text-shadow: none;
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 138, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #fff"],
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #ffffff"],
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #yellow"],
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #ffff"] {
  border-color: #007bff !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* line 146, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #fff"] .selected-indicator,
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #ffffff"] .selected-indicator,
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #yellow"] .selected-indicator,
body.admin-board-layout-staging-show-body .tag-select-button.active[style*="background-color: #ffff"] .selected-indicator {
  background-color: #007bff;
}

/* line 154, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .tag-dropdown-toggle .selected-count {
  font-weight: bold;
  margin-left: 2px;
}

/* line 160, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body #mass-tagging-section {
  margin-left: 10px;
}

/* line 164, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body #selected-layouts-count {
  font-weight: bold;
}

/* line 169, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 175, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button {
  position: relative;
  padding: 5px 15px;
  border-radius: 15px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  background-image: none;
  outline: none;
}

/* line 190, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 195, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button.active {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
}

/* line 200, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button .selected-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 220, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button.active .selected-indicator {
  opacity: 1;
  transform: scale(1);
}

/* line 226, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button[style*="background-color: #fff"],
body.admin-board-layout-staging-show-body .mass-tag-select-button[style*="background-color: #ffffff"],
body.admin-board-layout-staging-show-body .mass-tag-select-button[style*="background-color: #yellow"],
body.admin-board-layout-staging-show-body .mass-tag-select-button[style*="background-color: #ffff"] {
  color: #333 !important;
  text-shadow: none;
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 235, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #fff"],
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #ffffff"],
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #yellow"],
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #ffff"] {
  border-color: #007bff !important;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

/* line 243, app/assets/stylesheets/admin_board_layout_staging_show.scss */
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #fff"] .selected-indicator,
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #ffffff"] .selected-indicator,
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #yellow"] .selected-indicator,
body.admin-board-layout-staging-show-body .mass-tag-select-button.active[style*="background-color: #ffff"] .selected-indicator {
  background-color: #007bff;
}

/* line 1, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body {
  /* top buttons bin */
}

/* line 4, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .top-buttons-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  margin-bottom: 20px;
  /* add button */
  /* underline button */
}

@media (min-width: 768px) {
  /* line 4, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .top-buttons-bin {
    align-items: center !important;
    flex-wrap: nowrap;
  }
}

@media (max-width: 767.98px) {
  /* line 4, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .top-buttons-bin {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  /* line 19, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .top-buttons-bin .add-button {
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  /* line 25, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .top-buttons-bin a.btn.btn-main {
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
  }
}

/* line 34, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  /* line 34, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline {
    display: block;
    width: 100%;
  }
}

/* line 47, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .interior-bin ul {
  border-bottom: 0;
  margin-bottom: 0px;
}

/* line 52, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .interior-bin .nav-item a {
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: #cee2ed;
  padding: 5px 20px;
  color: #539ec2;
}

@media (max-width: 767.98px) {
  /* line 52, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .interior-bin .nav-item a {
    display: block;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  /* line 65, app/assets/stylesheets/admin_board_layouts.scss */
  body.admin-board-layouts-body .interior-bin li {
    display: block;
    width: 100%;
  }
}

/* line 72, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .interior-bin .nav-item a:hover {
  text-decoration: none;
  background-color: #539ec2;
  color: #ffffff;
}

/* line 78, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .interior-bin .nav-item a.active.show {
  text-decoration: none;
  background-color: #539ec2;
  color: #ffffff;
}

/* line 86, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts, body.admin-board-layouts-body .admin-board-layouts-unused-layouts {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts th:nth-child(1), body.admin-board-layouts-body .admin-board-layouts-unused-layouts th:nth-child(1) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts th:nth-child(2), body.admin-board-layouts-body .admin-board-layouts-unused-layouts th:nth-child(2) {
  width: 45%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts th:nth-child(3), body.admin-board-layouts-body .admin-board-layouts-unused-layouts th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts th:nth-child(4), body.admin-board-layouts-body .admin-board-layouts-unused-layouts th:nth-child(4) {
  width: 20%;
}

/* line 89, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts th, body.admin-board-layouts-body .admin-board-layouts-unused-layouts th {
  font-size: 0.6em;
  text-align: center;
}

/* line 94, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts td, body.admin-board-layouts-body .admin-board-layouts-unused-layouts td {
  word-break: break-all;
  border: 1px solid #d6e0e6;
}

/* line 99, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts button.btn.btn-main, body.admin-board-layouts-body .admin-board-layouts-unused-layouts button.btn.btn-main {
  width: auto;
}

/* line 106, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts th:nth-child(1) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts th:nth-child(2) {
  width: 55%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts th:nth-child(3) {
  width: 25%;
}

/* line 109, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts th {
  font-size: 0.6em;
  text-align: center;
}

/* line 114, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts td {
  word-break: break-all;
  border: 1px solid #d6e0e6;
}

/* line 119, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-unsupported-layouts button.btn.btn-main {
  width: auto;
}

/* line 124, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .tag-button-table {
  padding: 2px 4px;
  margin-bottom: 2px;
  border-radius: 10px;
  color: white;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

/* line 136, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .tag-button-table:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 142, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .tags-selection-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

/* line 150, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

/* line 156, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 162, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag.selected {
  border: 3px solid #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* line 166, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag.selected .selected-indicator {
  opacity: 1;
  transform: scale(1);
}

/* line 173, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag .selected-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 196, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag[style*="background-color: #fff"], body.admin-board-layouts-body .selectable-tag[style*="background-color: #ffffff"], body.admin-board-layouts-body .selectable-tag[style*="background-color: #yellow"], body.admin-board-layouts-body .selectable-tag[style*="background-color: #ffff"] {
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 205, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #fff"], body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #ffffff"], body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #yellow"], body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #ffff"] {
  border-color: #007bff !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* line 212, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #fff"] .selected-indicator, body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #ffffff"] .selected-indicator, body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #yellow"] .selected-indicator, body.admin-board-layouts-body .selectable-tag.selected[style*="background-color: #ffff"] .selected-indicator {
  background-color: #007bff;
}

/* line 218, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .admin-board-layouts-available-layouts .layout-table-header,
body.admin-board-layouts-body .admin-board-layouts-unused-layouts .layout-table-header {
  text-align: center;
  background-color: #539ec2;
  font-size: 16px !important;
  padding: 10px;
  font-weight: bold;
}

/* line 227, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .subhead {
  background-color: #cddb3e;
  text-align: center;
  padding: 15px;
  margin-bottom: 0;
  border-radius: 4px;
  color: #ffffff;
}

/* line 235, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .subhead .subhead-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 8px;
}

/* line 241, app/assets/stylesheets/admin_board_layouts.scss */
body.admin-board-layouts-body .subhead .subhead-boards {
  font-size: 22px;
  opacity: 0.9;
}

/* line 1, app/assets/stylesheets/admin_carousel_items_form.scss */
.carousel-item-image {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  width: 1200px;
  text-align: center;
  padding: 8px;
  margin-bottom: 16px;
}

/* line 9, app/assets/stylesheets/admin_carousel_items_form.scss */
.carousel-item-image img {
  max-width: 100%;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

/* line 19, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div {
  width: 100%;
}

/* line 21, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div .card.add-card {
  height: 128px;
  width: 100%;
  background-color: #cee2ed;
  box-shadow: none !important;
}

/* line 27, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div a.btn-file {
  box-sizing: border-box;
  border: 1px dashed #279ed5;
}

/* line 32, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div a.btn-file .headline-icon-bin {
  position: relative !important;
  top: 0 !important;
}

/* line 36, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div a.btn-file .headline-icon-bin .body {
  margin-bottom: 0px;
}

/* line 41, app/assets/stylesheets/admin_carousel_items_form.scss */
.manage-carousel-bin > div #carousel_item_media {
  height: 180px !important;
}

/* line 3, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .interior-bin {
  min-height: 90vh;
}

/* line 8, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .manage-carousel-bin > div {
  width: 100%;
}

/* line 10, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .manage-carousel-bin > div .card.add-card {
  height: 128px;
  width: 100%;
  background-color: #cee2ed;
  box-shadow: none !important;
}

/* line 16, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file {
  box-sizing: border-box;
  border: 1px dashed #279ed5;
}

/* line 21, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file .headline-icon-bin {
  position: relative !important;
  top: 0 !important;
}

/* line 25, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file .headline-icon-bin .body {
  margin-bottom: 0px;
}

/* line 33, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body .carousel-media-filters {
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
}

/* line 40, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body ul.pagination a {
  font-size: 14px;
}

/* line 46, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(1) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(2) {
  width: 12%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(3) {
  width: 21%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(4) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(5) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-carousel-items-index-body #manage-carousel-table th:nth-child(6) {
  width: 4%;
}

/* line 50, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table label {
  font-size: 12px !important;
}

/* line 53, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table .filter-bin {
  padding: 0px !important;
}

/* line 55, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table .filter-bin .form-group {
  padding: 0px !important;
}

/* line 59, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  vertical-align: top !important;
}

/* line 63, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td .content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 70, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table tr:nth-child(even) {
  background-color: white !important;
}

/* line 76, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.media-bin .content-wrapper {
  flex-direction: column;
  text-align: center;
  margin: auto;
}

/* line 80, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.media-bin .content-wrapper .img-bin {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  width: 100%;
  aspect-ratio: 4/1;
  margin-right: 6px;
  background-color: #e6ebf0;
  border-radius: 4px;
}

/* line 91, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.media-bin .content-wrapper .img-bin img {
  width: 90%;
}

/* line 95, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.media-bin .content-wrapper label {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 105, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.show-for-bin .content-wrapper {
  flex-direction: column;
}

/* line 107, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.show-for-bin .content-wrapper .filter-bin {
  flex: 0 0 calc(100% - 30px);
  margin: 0px !important;
}

/* line 111, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.show-for-bin .content-wrapper label {
  margin-left: 6px !important;
  width: 24px;
}

/* line 119, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.start-end-date-bin .content-wrapper {
  flex-direction: row;
}

/* line 121, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.start-end-date-bin .content-wrapper .filter-bin {
  flex: 0 0 calc(100% - 40px);
  margin: 0px !important;
}

/* line 125, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.start-end-date-bin .content-wrapper label {
  margin-right: 6px !important;
  text-align: right;
  width: 34px;
}

/* line 134, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.url-bin .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: anywhere;
}

/* line 147, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.assign-to-bin .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
}

/* line 150, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.assign-to-bin .content-wrapper .checkbox-container {
  margin-bottom: 4px;
}

/* line 156, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.action-btn-bin {
  text-align: center;
}

/* line 158, app/assets/stylesheets/admin_carousel_items_index.scss */
body.admin-carousel-items-index-body #manage-carousel-table td.action-btn-bin a {
  font-size: 30px;
}

/* line 167, app/assets/stylesheets/admin_carousel_items_index.scss */
.red-assign {
  color: #c80000;
}

/* line 171, app/assets/stylesheets/admin_carousel_items_index.scss */
.green-assign {
  color: #1d7c46;
}

/* line 3, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table.checklists {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-checklists-body table.checklists th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-checklists-body table.checklists th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-checklists-body table.checklists th:nth-child(3) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-checklists-body table.checklists th:nth-child(4) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-checklists-body table.checklists th:nth-child(5) {
  width: 20%;
}

/* line 6, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table.checklists tr:hover {
  background-color: #e6ebf0;
}

/* line 10, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table.checklists td.btns-bin {
  text-align: right;
}

/* line 13, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table.checklists td.btns-bin .btn.btn-underline-delete {
  margin-left: 8px;
}

/* line 19, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body .gray-headline-bin.btn-headline-bin {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px !important;
  padding-top: 0;
  padding-bottom: 0;
}

/* line 27, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body .gray-headline-bin.btn-headline-bin .btn.btn-main {
  margin-left: auto;
  margin-bottom: 0;
  width: auto !important;
}

/* line 35, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table#install-checklist-items td, body.admin-checklists-body table#checklist td {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
}

/* line 41, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body table#install-checklist-items input, body.admin-checklists-body table#checklist input {
  margin-right: 16px;
  width: 20px;
  height: 20px;
}

/* line 48, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body .hardware-row {
  border: 0;
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  /* line 48, app/assets/stylesheets/admin_checklists.scss */
  body.admin-checklists-body .hardware-row {
    border: 1px solid #d6e0e6;
  }
}

/* line 57, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body .hardware-col {
  box-sizing: border-box;
  border-right: 0;
}

@media (min-width: 992px) {
  /* line 57, app/assets/stylesheets/admin_checklists.scss */
  body.admin-checklists-body .hardware-col {
    border-right: 1px solid #d6e0e6;
  }
}

/* line 67, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body ul.list-group.checklist-info .list-group-item {
  display: flex;
  align-items: center;
}

/* line 71, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body ul.list-group.checklist-info .list-group-item .label-bin {
  width: 35%;
}

/* line 75, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body ul.list-group.checklist-info .list-group-item .info-bin {
  width: 65%;
  margin-left: auto;
  text-align: right;
  font-weight: 700;
}

/* line 83, app/assets/stylesheets/admin_checklists.scss */
body.admin-checklists-body ul.list-group.checklist-info .list-group-item:hover {
  background-color: #f6f8fb;
}

/* line 90, app/assets/stylesheets/admin_checklists.scss */
.completed-tag {
  display: flex;
  margin-left: auto;
  width: 25%;
}

/* line 95, app/assets/stylesheets/admin_checklists.scss */
.checklist-content {
  display: flex;
  width: 75%;
  padding-left: 10px;
}

/* line 2, app/assets/stylesheets/admin_cloudstream_accounts.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table th:nth-child(3) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table th:nth-child(4) {
  width: 10%;
}

/* line 5, app/assets/stylesheets/admin_cloudstream_accounts.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table td.action-btns {
  text-align: right;
}

/* line 8, app/assets/stylesheets/admin_cloudstream_accounts.scss */
body.admin-cloudstream-accounts-body table.cloudstream-accounts-table td.action-btns .fa {
  font-size: 20px;
}

/* line 4, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table a {
  color: #18516e;
}

/* line 10, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .filter-bin {
  margin-bottom: 20px;
}

/* line 15, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table th:nth-child(3) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-all-display-app-versions-body .display-app-versions-table th:nth-child(4) {
  width: 10%;
}

/* line 20, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .locked-row-style td {
  position: relative;
  background-color: #fff3e0 !important;
}

/* line 23, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin {
  height: 30px;
  width: 30px;
  background-color: #ff6f00;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 31, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin .alert-icon {
  color: #ffffff;
  font-size: 20px;
}

/* line 36, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .locked-row-style td .alert-text {
  color: #ff6f00;
}

/* line 41, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body td:first-child {
  background-color: #f6f8fb;
  position: relative;
}

/* line 46, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body td {
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
}

/* line 51, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .filter-bin-form-group-half {
  width: 48% !important;
  display: inline-block !important;
  margin-right: 2% !important;
}

/* line 57, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .filter-bin-form-group-half:nth-child(even) {
  margin-right: 0 !important;
}

/* line 61, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .filter-divider {
  border: 0 !important;
  border-top: 1px solid #ddd !important;
  margin: 15px 0 !important;
  width: 100% !important;
}

/* line 68, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .btn.btn-clear {
  border-radius: 0;
  opacity: 0.55;
  filter: alpha(opacity=55);
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  color: #18516e;
  padding: 0;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  font-size: 13px;
  line-height: 12px;
  font-weight: 600;
  text-transform: capitalize;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 86, app/assets/stylesheets/admin_dashboard_all_display_app_versions.scss */
body.admin-dashboard-all-display-app-versions-body .btn.btn-clear:hover {
  text-decoration: underline;
}

/* line 1, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body {
  /* Game Support Card -------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* game support card column setup */
}

/* line 3, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body #refresh-error {
  background: red;
  color: white;
  font-weight: bold;
  padding: 12px;
}

/* line 14, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .col-game-support-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 14, app/assets/stylesheets/admin_dashboard_game_support.scss */
  body.admin-dashboard-game-support-body .col-game-support-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 29, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card {
  /* bold font info */
  /* regular font info */
  /* info spacing */
  /* 2 column team bins */
  /* apps - network - indicators */
}

/* line 32, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .sport-term, body.admin-dashboard-game-support-body .card.game-support-card .game-title {
  font-size: 14px;
  line-height: 1.3em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 42, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .season-name, body.admin-dashboard-game-support-body .card.game-support-card .game-number, body.admin-dashboard-game-support-body .card.game-support-card .game-date, body.admin-dashboard-game-support-body .card.game-support-card .team-name, body.admin-dashboard-game-support-body .card.game-support-card .team-number {
  font-size: 14px;
  line-height: 1.3em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 55, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .team-bin, body.admin-dashboard-game-support-body .card.game-support-card .game-number {
  margin-top: 8px;
}

/* line 63, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .team-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 69, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators {
  margin-bottom: 4px;
}

/* line 72, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .scorekeeper-bin, body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .producer-bin, body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .display-app-bin, body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .display-server-bin, body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .network-bin, body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .rack-bin {
  width: calc(50% - 4px);
  background-color: #e6ebf0;
  text-align: center;
  font-size: 10px;
  line-height: 1.2em;
  letter-spacing: 0.75px;
  padding: 10px 5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #18516e;
  margin: 2px;
}

/* line 86, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .missing {
  background-color: pink;
}

/* line 90, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .all-clear {
  background-color: #13ad13;
}

/* line 94, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .yellow-alert {
  background-color: yellow;
}

/* line 98, app/assets/stylesheets/admin_dashboard_game_support.scss */
body.admin-dashboard-game-support-body .card.game-support-card .status-indicators .red-alert {
  background-color: red;
}

/* line 1, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body {
  /* General Table Settings --------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Samsung Alert Info ------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Alert Section Table -----------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Weekly Briefing Content -------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Long Running Jobs Table -------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Games Section Table -----------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Games Not Started -------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Recently Closed Games ---------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Forcast Section Table ---------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Pending Orgs Table */
}

/* line 3, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body .scrollable-content-list {
  max-height: 300px;
  overflow-y: scroll;
  width: auto;
}

/* line 9, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body .scrollable-content-list::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
}

/* line 14, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body .scrollable-content-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

/* line 22, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body tbody {
  vertical-align: top;
}

/* line 26, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body td {
  line-height: 1.4em;
  font-weight: 400;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
}

/* line 33, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body td:first-child {
  border-left: none;
  background-color: #f6f8fb;
}

/* line 38, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body td:last-child {
  border-right: none;
}

/* line 42, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body tr {
  background-color: #ffffff;
}

/* line 49, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body .samsung-alert-row {
  padding-top: 0;
  padding-bottom: 16px;
}

/* line 53, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body .samsung-alert-row .samsung-alert-bar {
  width: 100%;
  margin-bottom: 0;
}

/* line 61, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-school-alerts-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-school-alerts-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-school-alerts-table th:nth-child(2) {
  width: 60%;
}

/* line 68, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-school-alerts-table .alerts {
  margin-top: 3px;
  color: #d32f2f;
  font-weight: 600;
}

/* line 77, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #weekly-briefing-content {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border: 1px solid #d6e0e6;
  min-height: 150px;
  max-height: 300px;
  border-radius: 8px;
  overflow-y: scroll;
}

/* line 87, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #weekly-briefing-content label {
  width: 100%;
  text-align: center;
}

/* line 94, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #save-weekly-briefing-bin {
  width: 100%;
  display: flex;
  padding: 8px;
  box-sizing: border-box;
  background-color: #f6f8fb;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 12px;
}

/* line 105, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #save-weekly-briefing-bin .btn {
  box-sizing: border-box !important;
  margin: 0 4px;
  height: 35px;
}

/* line 115, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #delayed-jobs-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #delayed-jobs-table th:nth-child(1) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #delayed-jobs-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #delayed-jobs-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #delayed-jobs-table th:nth-child(4) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #delayed-jobs-table th:nth-child(5) {
  width: 25%;
}

/* line 122, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #delayed-jobs-table td {
  word-break: break-all;
}

/* line 129, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-current-games-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-current-games-table th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-current-games-table th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-current-games-table th:nth-child(3) {
  width: 50%;
}

/* line 139, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-games-not-started-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-games-not-started-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-games-not-started-table th:nth-child(2) {
  width: 60%;
}

/* line 149, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-closed-games-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-closed-games-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-closed-games-table th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-closed-games-table th:nth-child(3) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-closed-games-table th:nth-child(4) {
  width: 10%;
}

/* line 160, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body #admin-forcast-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-forcast-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-dashboard-index-body #admin-forcast-table th:nth-child(2) {
  width: 60%;
}

/* line 170, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table tr {
  background-color: #f6f8fb;
}

/* line 173, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 176, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td {
  border: 0px !important;
  vertical-align: middle;
  font-size: 13px;
  background-color: transparent !important;
}

/* line 182, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td:first-child {
  background-color: white;
  font-size: 14px;
}

/* line 187, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td.client .img-text-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* line 192, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td.client .img-text-bin .img-bin {
  height: 24px;
  width: 24px;
  overflow: hidden;
  background-color: #e6ebf0;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  border-radius: 4px;
  display: flex;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
}

/* line 204, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td.client .img-text-bin .img-bin img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

/* line 210, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td.client .img-text-bin .text-bin {
  margin: 0px;
}

/* line 211, app/assets/stylesheets/admin_dashboard_index.scss */
body.admin-dashboard-index-body table#pending-orgs-table td.client .img-text-bin .text-bin label {
  font-weight: 700;
}

/* line 1, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body {
  font-size: 0.85em;
}

/* line 2, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #org-support-btn {
  margin-right: 10px;
  margin-bottom: 10px;
  color: white !important;
}

/* line 8, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body .indicator-row {
  margin-top: 5px !important;
}

/* line 14, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body .form-group label {
  font-size: 1rem;
}

/* line 25, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container {
  width: 100%;
  position: relative;
  color: #0f3950;
}

/* line 30, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container a {
  text-decoration: none;
  color: inherit;
}

/* line 35, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .btn-plain {
  color: white;
}

/* line 39, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .old-info {
  opacity: 0.5;
}

/* line 45, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info {
  background-color: #fff;
  border: 4px solid #d6e0e6;
  padding: 10px 15px;
}

/* line 50, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-header {
  font-size: 1.5em;
  color: #18516e;
  border-bottom: 2px solid #d6e0e6;
  margin: 0 -15px;
  padding: 0 15px 10px;
}

/* line 58, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin {
  position: relative;
  border-bottom: 1px solid #e6ebf0;
  margin: 5px 0 20px;
  padding: 5px 0;
  width: 100%;
}

/* line 65, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin .osup-bin-header {
  position: relative;
  font-weight: bold;
  height: 20px;
  line-height: 22px;
}

/* line 72, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin .osup-bin-header-rev {
  position: relative;
  font-weight: 500;
  height: 30px;
  line-height: 22px;
  padding: 5px 10px;
  background-color: #18516e;
  color: #fff;
}

/* line 82, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin .osup-border-bin-black {
  position: relative;
  border: 4px solid #0f3950;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  padding: 5px;
}

/* line 91, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin .osup-border-bin-green {
  position: relative;
  border: 4px solid #4caf50;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  padding: 5px;
}

/* line 100, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-col .osup-info .osup-bin .osup-border-bin-red {
  position: relative;
  border: 4px solid #c62828;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  padding: 5px;
}

/* line 126, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-dark-gray-bin {
  background-color: #777;
  color: #fff;
  padding: 5px;
  text-shadow: none;
}

/* line 133, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-white-bin {
  background-color: #fff;
  padding: 5px;
}

/* line 138, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-app-icon-bin {
  width: 20%;
  height: 100px;
}

/* line 142, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-app-icon-bin .osup-app-icon {
  line-height: 100px;
  margin: -5px;
}

/* line 148, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-app-info-bin {
  width: 78%;
  height: 100px;
}

/* line 153, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-icon-bin {
  width: 20%;
  height: 40px;
}

/* line 157, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-icon-bin .osup-icon {
  height: 40px;
  line-height: 40px;
  margin: -5px;
}

/* line 164, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-info-bin {
  width: 78%;
  height: 40px;
}

/* line 169, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-bin-extension {
  border-top: 0 !important;
}

/* line 174, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-connection-label {
  width: 25%;
}

/* line 178, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-connection-icon-bin {
  width: 20%;
}

/* line 181, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-connection-icon-bin .osup-connection-icon {
  height: 40px;
  line-height: 40px;
  margin: -5px;
}

/* line 188, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-light-gray-text {
  font-weight: 500;
  font-size: 1em;
  color: #e6ebf0;
}

/* line 194, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-gray-text {
  font-weight: 700;
  font-size: 0.8em;
  color: #539ec2;
}

/* line 200, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-light-gray-color {
  color: #d6e0e6;
}

/* line 204, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-red-color {
  color: #c62828;
}

/* line 208, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-red-bin {
  background-color: #c62828;
  color: #fff;
  padding: 5px;
}

/* line 215, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-orange-bin {
  background-color: #ffad13;
  color: #fff;
  padding: 5px;
}

/* line 222, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-green-bin {
  background-color: #4caf50;
  color: #fff;
  padding: 5px;
}

/* line 229, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-gray-bin {
  background-color: #d6e0e6;
  color: #fff;
  padding: 5px;
}

/* line 237, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-tools .row {
  border: 1px solid #e6ebf0;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* line 243, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-tools .row:nth-child(odd) {
  background-color: #e6ebf0;
}

/* line 248, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .osup-av-action-btn {
  border-radius: 5px;
  background: #4caf50;
}

/* line 255, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .camera-image img {
  width: 100%;
}

/* line 260, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .modal-dialog {
  width: 1200px;
}

/* line 265, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .image-pop {
  position: relative;
  cursor: pointer;
}

/* line 270, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .overlay {
  position: absolute;
  background-color: #fff;
  opacity: 0.9;
  padding: 5px;
  border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
}

/* line 280, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .br-overlay {
  bottom: 10px;
  right: 10px;
}

/* line 285, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .letter-space-md {
  letter-spacing: .2rem;
}

/* line 289, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .letter-space-lg {
  letter-spacing: .1rem;
}

/* line 297, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .underlined-link {
  color: #0f3950;
  text-decoration: underline;
}

/* line 302, app/assets/stylesheets/admin_dashboard_org_support.scss */
body.admin-dashboard-org-support-body #osup-container .underlined-link:hover {
  color: #428BCA;
  text-decoration: none;
}

/* line 10, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body tbody {
  vertical-align: top;
}

/* line 14, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body td {
  line-height: 1.5em;
  font-weight: 400;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
}

/* line 21, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body td:first-child {
  border-left: none;
  background-color: #f6f8fb;
}

/* line 26, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body td:last-child {
  border-right: none;
}

/* line 30, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body tr {
  background-color: #ffffff;
}

/* line 35, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body .display-app-name {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
  margin-bottom: 0;
}

/* line 45, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body .display-app-name.online {
  color: #43a047;
}

/* line 49, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body .display-app-name.offline {
  color: #d32f2f;
}

/* line 53, app/assets/stylesheets/admin_display_apps.scss */
body.admin-display-apps-body #admin-display-apps-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-display-apps-body #admin-display-apps-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-display-apps-body #admin-display-apps-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-display-apps-body #admin-display-apps-table th:nth-child(3) {
  width: 30%;
}

/* line 1, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body, body.documentation-body {
  /* Dashboard ---------------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Breadcrumbs -------------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Entire Content Bin ------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Documentation Navigation Content Bin -------------------------------------------------------------------------------
  -------------------------------------------------------------------------------------------------------------------- */
  /* content bin -------------------------- */
  /* navigation links ----------------- */
  /* ul list base */
  /* ul list */
  /* mobile toggle button ----------------- */
  /* button base */
  /* button hover */
  /* dropdown active class */
  /* hide mobile toggle on desktop */
  /* show mobile toggle */
  /* Editor Content Bin ------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* content bin -------------------------- */
  /* header bin -------------------------- */
  /* content bin */
  /* text editor / iframe -------------------------- */
  /* Documentation Search ----------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
}

/* line 5, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .content-documentation-dashboard, body.documentation-body .content-documentation-dashboard {
  overflow: hidden;
  width: 100%;
  height: 325px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0px;
  background-color: #0f3950;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* line 19, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-hero-image, body.documentation-body .documentation-hero-image {
  height: calc(100vh - 110px);
  width: 100%;
  background-image: url(http://localhost:3000/assets/documentation-hero-image-fbcd77ce7beb14433b58d61d77ab8ad3e7abd6a1ea28277934bf3542f8627cae.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: breath 30s linear infinite;
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
}

/* line 34, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content, body.documentation-body .feature-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 46, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content img, body.documentation-body .feature-content img {
  width: 25%;
  position: absolute;
  top: 32px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto;
}

/* line 55, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content .search-module-bin, body.documentation-body .feature-content .search-module-bin {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

/* line 64, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content .search-module-bin .headline, body.documentation-body .feature-content .search-module-bin .headline {
  color: #ffffff;
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}

/* line 70, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content .search-module-bin #documentation_search, body.documentation-body .feature-content .search-module-bin #documentation_search {
  max-width: 700px;
  width: 100%;
  padding: 16px;
}

/* line 74, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content .search-module-bin #documentation_search .btn-underline, body.documentation-body .feature-content .search-module-bin #documentation_search .btn-underline {
  color: #279ed5 !important;
  margin-top: 10px;
}

/* line 78, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .feature-content .search-module-bin #documentation_search .btn-main, body.documentation-body .feature-content .search-module-bin #documentation_search .btn-main {
  width: 125px !important;
}

@keyframes breath {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* line 99, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-breadcrumbs, body.documentation-body .doc-breadcrumbs {
  color: #18516e;
}

/* line 102, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-breadcrumbs a, body.documentation-body .doc-breadcrumbs a {
  color: #18516e;
  font-weight: 600;
}

/* line 110, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .content-documentation, body.documentation-body .content-documentation {
  max-width: 1900px;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 20px 30px 20px;
}

/* line 116, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-div, body.documentation-body .documentation-div {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (min-width: 992px) {
  /* line 128, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .doc-nav-bin, body.documentation-body .doc-nav-bin {
    width: 250px;
  }
}

@media (max-width: 1199.98px) {
  /* line 134, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .doc-nav-bin, body.documentation-body .doc-nav-bin {
    width: 100%;
  }
}

@media (min-width: 992px) {
  /* line 143, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body ul.doc-nav, body.documentation-body ul.doc-nav {
    display: block;
    margin: 0px 20px 0px 0px;
    padding: 0px;
  }
}

@media (max-width: 1199.98px) {
  /* line 151, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body ul.doc-nav, body.documentation-body ul.doc-nav {
    display: none;
    margin: 0px 0px 15px 0px;
    padding: 0px;
  }
}

/* line 159, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav, body.documentation-body ul.doc-nav {
  list-style: none !important;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  border-radius: 0.25rem;
  /* li links */
  /* remove border on first link */
  /* remove border on last link */
  /* hover state */
  /* padding on label */
}

/* line 166, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li a, body.documentation-body ul.doc-nav li a {
  display: block;
  font-size: 15px;
  border-top: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  margin-bottom: 0px;
  padding: 10px;
}

/* line 176, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li:first-child, body.documentation-body ul.doc-nav li:first-child {
  padding: 0px;
}

/* line 179, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li:first-child a, body.documentation-body ul.doc-nav li:first-child a {
  border-top: 0px;
}

/* line 184, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li a:last-child, body.documentation-body ul.doc-nav li a:last-child {
  border-bottom: 0px;
}

/* line 189, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li a:hover, body.documentation-body ul.doc-nav li a:hover {
  text-decoration: none;
  background-color: #e6ebf0;
}

/* line 195, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li.doc-nav-label, body.documentation-body ul.doc-nav li.doc-nav-label {
  border: 0px;
}

/* line 197, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body ul.doc-nav li.doc-nav-label a, body.documentation-body ul.doc-nav li.doc-nav-label a {
  border: 0px;
}

/* line 206, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-nav-toggle, body.documentation-body .doc-nav-toggle {
  padding: 5px 10px 5px 10px;
  text-align: center;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  border-radius: 0.25rem;
  width: 110px;
}

/* line 213, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-nav-toggle label, body.documentation-body .doc-nav-toggle label {
  margin-left: 5px;
}

/* line 219, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-nav-toggle:hover, body.documentation-body .doc-nav-toggle:hover {
  background-color: #e6ebf0;
  cursor: pointer;
}

/* line 225, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .doc-nav-active, body.documentation-body .doc-nav-active {
  display: block !important;
}

@media (min-width: 992px) {
  /* line 231, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .doc-nav-toggle, body.documentation-body .doc-nav-toggle {
    display: none;
  }
  /* line 234, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .desktop-label, body.documentation-body .desktop-label {
    display: block;
  }
}

@media (max-width: 1199.98px) {
  /* line 241, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .doc-nav-toggle, body.documentation-body .doc-nav-toggle {
    display: block;
    margin-bottom: 15px;
  }
  /* line 245, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .desktop-label, body.documentation-body .desktop-label {
    display: none;
  }
}

@media (min-width: 992px) {
  /* line 255, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .editor-bin, body.documentation-body .editor-bin {
    width: calc(100% - 250px);
  }
}

@media (max-width: 1199.98px) {
  /* line 261, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .editor-bin, body.documentation-body .editor-bin {
    width: 100%;
  }
}

/* line 269, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin, body.documentation-body .header-btn-bin {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between !important;
  align-items: center !important;
  /* headline */
  /* button container */
  /* align buttons */
  /* buttons width */
}

/* line 278, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .headline, body.documentation-body .header-btn-bin .headline {
  width: calc(100% - 400px);
  margin-bottom: 0px;
}

/* line 284, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .col-12, body.documentation-body .header-btn-bin .col-12 {
  width: 400px !important;
  flex: 0 0 400px !important;
  padding-right: 0px;
}

/* line 291, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .form-buttons, body.documentation-body .header-btn-bin .form-buttons {
  text-align: right;
  margin-left: auto;
}

/* line 294, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .form-buttons .btn-secondary, body.admin-documentation-body .header-btn-bin .form-buttons .btn-main, body.documentation-body .header-btn-bin .form-buttons .btn-secondary, body.documentation-body .header-btn-bin .form-buttons .btn-main {
  margin-left: 5px;
  margin-right: 5px;
}

/* line 300, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .btn-bin, body.documentation-body .header-btn-bin .btn-bin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 400px;
}

/* line 308, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .header-btn-bin .btn.btn-main, body.admin-documentation-body .header-btn-bin .btn.btn-secondary, body.documentation-body .header-btn-bin .btn.btn-main, body.documentation-body .header-btn-bin .btn.btn-secondary {
  width: auto !important;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  /* line 314, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .header-btn-bin .btn-bin, body.documentation-body .header-btn-bin .btn-bin {
    width: 100% !important;
  }
  /* line 317, app/assets/stylesheets/admin_documentation.scss */
  body.admin-documentation-body .header-btn-bin .headline, body.documentation-body .header-btn-bin .headline {
    width: 100%;
    margin-bottom: 16px;
  }
}

/* line 326, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .content-documentation, body.documentation-body .content-documentation {
  min-height: calc(100vh - 159px);
}

/* line 330, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .tox.tox-tinymce, body.documentation-body .tox.tox-tinymce {
  min-height: 70vh;
}

/* line 334, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body iframe, body.documentation-body iframe {
  border-width: 0px;
  border-color: #d6e0e6;
  -o-border-image: none;
     border-image: none;
  border-style: solid;
}

/* line 342, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .btn-section, body.documentation-body .btn-section {
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 18px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
  padding: 10px 0 !important;
  margin: 10px 10px !important;
  overflow: hidden;
}

/* line 356, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .btn-section-secondary, body.documentation-body .btn-section-secondary {
  color: #18516e !important;
  font-size: 13px !important;
  line-height: 18px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
  padding: 10px 0 !important;
  margin: 10px 10px !important;
  overflow: hidden;
  background-color: transparent !important;
  border: 1px solid #b0bec5;
}

/* line 370, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .btn-section-secondary:hover, body.documentation-body .btn-section-secondary:hover {
  color: #ffffff !important;
}

/* line 378, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin, body.documentation-body .results-pagination-bin {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

/* line 384, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .body, body.documentation-body .results-pagination-bin .body {
  margin-bottom: 0px;
}

/* line 387, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin a, body.documentation-body .results-pagination-bin a {
  margin-bottom: 0px;
}

/* line 393, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination a, body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination .previous_page, body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination .current, body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination .disabled, body.documentation-body .results-pagination-bin .ransack-pagination .pagination a, body.documentation-body .results-pagination-bin .ransack-pagination .pagination .previous_page, body.documentation-body .results-pagination-bin .ransack-pagination .pagination .current, body.documentation-body .results-pagination-bin .ransack-pagination .pagination .disabled {
  padding: 4px 8px;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  border-radius: 4px;
  margin: 0px 2px;
  font-style: normal !important;
}

/* line 401, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination .current, body.documentation-body .results-pagination-bin .ransack-pagination .pagination .current {
  background-color: #279ed5;
  color: #ffffff;
}

/* line 405, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination a, body.documentation-body .results-pagination-bin .ransack-pagination .pagination a {
  color: #279ed5;
}

/* line 408, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination a:hover, body.documentation-body .results-pagination-bin .ransack-pagination .pagination a:hover {
  text-decoration: underline;
  Background-color: #e6ebf0;
}

/* line 412, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .results-pagination-bin .ransack-pagination .pagination .disabled:hover, body.documentation-body .results-pagination-bin .ransack-pagination .pagination .disabled:hover {
  text-decoration: none !important;
}

/* line 420, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .breadcrumb-bin, body.documentation-body .breadcrumb-bin {
  background-color: #f6f8fb;
  width: 100%;
  padding: 8px 8px 0px 8px;
}

/* line 425, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .breadcrumb-text, body.documentation-body .breadcrumb-text {
  margin-top: 0px !important;
  padding-top: 1px;
  margin-bottom: 8px !important;
  color: #b0bec5;
  text-decoration: none !important;
  width: auto !important;
  box-sizing: border-box;
  font-weight: 600;
}

/* line 434, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .breadcrumb-text a.breadcrumb-link, body.documentation-body .breadcrumb-text a.breadcrumb-link {
  color: #279ed5;
  border: 1px solid #d6e0e6;
  background-color: #f6f8fb;
  padding: 0px 4px;
  border-radius: 4px;
}

/* line 440, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .breadcrumb-text a.breadcrumb-link:hover, body.documentation-body .breadcrumb-text a.breadcrumb-link:hover {
  text-decoration: underline;
  background-color: #e6ebf0;
}

/* line 445, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .breadcrumb-text a.breadcrumb-link:last-child, body.documentation-body .breadcrumb-text a.breadcrumb-link:last-child {
  background-color: #279ed5 !important;
  color: #ffffff !important;
  border-color: #279ed5;
}

/* line 453, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin, body.documentation-body .documentation-list-bin {
  padding: 0px;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 8px;
}

/* line 460, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin .doc-listing, body.documentation-body .documentation-list-bin .doc-listing {
  padding: 0.75rem 1.25rem 0.75rem 1.25rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

/* line 467, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin .doc-listing .title, body.documentation-body .documentation-list-bin .doc-listing .title {
  color: #279ed5;
  margin-bottom: 0px;
  display: block;
  width: 100%;
}

/* line 473, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin .doc-listing .body, body.documentation-body .documentation-list-bin .doc-listing .body {
  margin-bottom: 0px;
  margin-top: 8px;
  width: 100%;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* line 486, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin a.doc-listing:hover, body.documentation-body .documentation-list-bin a.doc-listing:hover {
  cursor: pointer;
  background-color: #f6f8fb;
  text-decoration: none;
}

/* line 490, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin a.doc-listing:hover .breadcrumb-text, body.documentation-body .documentation-list-bin a.doc-listing:hover .breadcrumb-text {
  text-decoration: none !important;
}

/* line 493, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin a.doc-listing:hover .title, body.documentation-body .documentation-list-bin a.doc-listing:hover .title {
  text-decoration: underline;
}

/* line 496, app/assets/stylesheets/admin_documentation.scss */
body.admin-documentation-body .documentation-list-bin a.doc-listing:hover .body, body.documentation-body .documentation-list-bin a.doc-listing:hover .body {
  text-decoration: none !important;
}

/* line 1, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body {
  /* top buttons bin */
  /* info table */
}

/* line 4, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  display: flex;
  margin-bottom: 20px;
  /* tag filter section */
  /* add button */
  /* underline button */
}

@media (min-width: 768px) {
  /* line 4, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin {
    align-items: center !important;
    flex-wrap: nowrap;
  }
}

@media (max-width: 767.98px) {
  /* line 4, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin {
    flex-wrap: wrap;
  }
}

/* line 19, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section {
  position: relative;
}

@media (max-width: 767.98px) {
  /* line 19, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin .tag-filter-section {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 10px;
  }
}

/* line 29, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-toggle .selected-tags-count {
  font-weight: bold;
  margin-left: 4px;
}

/* line 35, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 400px;
  max-width: 600px;
  z-index: 1000;
}

@media (max-width: 767.98px) {
  /* line 35, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel {
    min-width: unset;
    width: 100%;
    right: 0;
  }
}

/* line 55, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}

/* line 60, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .clear-filter {
  padding: 0;
  color: #6c757d;
}

/* line 64, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .clear-filter:hover {
  color: #dc3545;
  text-decoration: none;
}

/* line 71, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .operation-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 80, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* line 86, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 20px;
  cursor: pointer;
  z-index: 1;
  left: 0;
  top: 0;
}

/* line 96, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background-color: #28a745;
}

/* line 99, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* line 104, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch input[type="checkbox"]:not(:checked) ~ .or-label {
  font-weight: bold;
  color: #007bff;
}

/* line 109, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch input[type="checkbox"]:checked ~ .and-label {
  font-weight: bold;
  color: #28a745;
}

/* line 115, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch .toggle-slider {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #007bff;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
}

/* line 124, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch .toggle-slider:before {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  top: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

/* line 137, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch .toggle-label {
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: normal;
  transition: all 0.3s ease;
}

/* line 143, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch .toggle-label.or-label {
  order: -1;
}

/* line 147, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-header .operation-toggle .toggle-switch .toggle-label.and-label {
  order: 1;
}

/* line 155, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-groups {
  max-height: 400px;
  overflow-y: auto;
  padding-left: 2px;
}

/* line 161, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group {
  margin-bottom: 20px;
}

/* line 164, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group h6 {
  font-size: 0.875rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 171, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* line 177, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button {
  position: relative;
  padding: 4px 12px;
  border-radius: 15px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  background-image: none;
  outline: none;
}

/* line 191, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* line 196, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active {
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
  transform: translateY(-1px);
}

/* line 201, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active .selected-indicator {
  opacity: 1;
  transform: scale(1);
}

/* line 208, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button .selected-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 229, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button[style*="background-color: #fff"], body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button[style*="background-color: #ffffff"], body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button[style*="background-color: #yellow"], body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button[style*="background-color: #ffff"] {
  color: #333 !important;
  text-shadow: none;
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 237, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active[style*="background-color: #fff"] .selected-indicator, body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active[style*="background-color: #ffffff"] .selected-indicator, body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active[style*="background-color: #yellow"] .selected-indicator, body.admin-global-layouts-body .top-buttons-bin .tag-filter-section .tag-filter-panel .tag-filter-group .tag-filter-button.active[style*="background-color: #ffff"] .selected-indicator {
  background-color: #007bff;
}

@media (max-width: 767.98px) {
  /* line 247, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin .add-button {
    width: 100% !important;
  }
}

@media (max-width: 767.98px) {
  /* line 252, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin a.btn.btn-main {
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
  }
}

/* line 261, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline {
  margin-left: auto;
}

@media (max-width: 767.98px) {
  /* line 261, app/assets/stylesheets/admin_global_layouts.scss */
  body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline {
    display: block;
    width: 100%;
  }
}

/* line 274, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .global-layouts-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-global-layouts-body .global-layouts-table th:nth-child(1) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-global-layouts-body .global-layouts-table th:nth-child(2) {
  width: 45%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-global-layouts-body .global-layouts-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-global-layouts-body .global-layouts-table th:nth-child(4) {
  width: 15%;
}

/* line 277, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .global-layouts-table td {
  border: 1px solid #d6e0e6;
  word-break: break-all;
}

/* line 283, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .tags-selection-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

/* line 291, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

/* line 297, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 303, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag.selected {
  border: 3px solid #28a745;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.25);
}

/* line 307, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag.selected .selected-indicator {
  opacity: 1;
  transform: scale(1);
}

/* line 314, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag .selected-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* line 337, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag[style*="background-color: #fff"], body.admin-global-layouts-body .selectable-tag[style*="background-color: #ffffff"], body.admin-global-layouts-body .selectable-tag[style*="background-color: #yellow"], body.admin-global-layouts-body .selectable-tag[style*="background-color: #ffff"] {
  border-color: rgba(0, 0, 0, 0.3);
}

/* line 346, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #fff"], body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #ffffff"], body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #yellow"], body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #ffff"] {
  border-color: #007bff !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* line 353, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #fff"] .selected-indicator, body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #ffffff"] .selected-indicator, body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #yellow"] .selected-indicator, body.admin-global-layouts-body .selectable-tag.selected[style*="background-color: #ffff"] .selected-indicator {
  background-color: #007bff;
}

/* line 359, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .tag-button-table {
  padding: 4px 8px;
  margin-bottom: 2px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

/* line 371, app/assets/stylesheets/admin_global_layouts.scss */
body.admin-global-layouts-body .tag-button-table:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 380, app/assets/stylesheets/admin_global_layouts.scss */
.tox .tox-dialog__content-js {
  height: 200px !important;
}

/* line 3, app/assets/stylesheets/admin_hardware_brands.scss */
body.admin-hardware-brands-body table.hardware-brands {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-brands-body table.hardware-brands th:nth-child(1) {
  width: 65%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-brands-body table.hardware-brands th:nth-child(2) {
  width: 35%;
}

/* line 6, app/assets/stylesheets/admin_hardware_brands.scss */
body.admin-hardware-brands-body table.hardware-brands tr:hover {
  background-color: #e6ebf0;
}

/* line 10, app/assets/stylesheets/admin_hardware_brands.scss */
body.admin-hardware-brands-body table.hardware-brands td.btns-bin {
  text-align: right;
}

/* line 12, app/assets/stylesheets/admin_hardware_brands.scss */
body.admin-hardware-brands-body table.hardware-brands td.btns-bin .btn.btn-underline-delete {
  margin-left: 8px;
}

/* line 3, app/assets/stylesheets/admin_hardware_models.scss */
body.admin-hardware-models-body table.hardware-models {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(1) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(2) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(3) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(4) {
  width: 17%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(5) {
  width: 16%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-models-body table.hardware-models th:nth-child(6) {
  width: 16%;
}

/* line 6, app/assets/stylesheets/admin_hardware_models.scss */
body.admin-hardware-models-body table.hardware-models tr:hover {
  background-color: #e6ebf0;
}

/* line 10, app/assets/stylesheets/admin_hardware_models.scss */
body.admin-hardware-models-body table.hardware-models td.btns-bin {
  text-align: right;
}

/* line 12, app/assets/stylesheets/admin_hardware_models.scss */
body.admin-hardware-models-body table.hardware-models td.btns-bin .btn.btn-underline-delete {
  margin-left: 8px;
}

/* line 3, app/assets/stylesheets/admin_hardware_types.scss */
body.admin-hardware-types-body table.hardware-types {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-types-body table.hardware-types th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-types-body table.hardware-types th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-hardware-types-body table.hardware-types th:nth-child(3) {
  width: 20%;
}

/* line 6, app/assets/stylesheets/admin_hardware_types.scss */
body.admin-hardware-types-body table.hardware-types td.btns-bin {
  text-align: right;
}

/* line 8, app/assets/stylesheets/admin_hardware_types.scss */
body.admin-hardware-types-body table.hardware-types td.btns-bin .btn.btn-underline-delete {
  margin-left: 8px;
}

/* line 1, app/assets/stylesheets/admin_layout_tags.scss */
.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

/* line 8, app/assets/stylesheets/admin_layout_tags.scss */
.tag-wrapper {
  position: relative;
  display: inline-block;
}

/* line 13, app/assets/stylesheets/admin_layout_tags.scss */
.tag-button {
  padding: 8px 16px;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  border: 3px solid rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

/* line 24, app/assets/stylesheets/admin_layout_tags.scss */
.tag-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* line 31, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 5px;
  min-width: 120px;
  text-align: center;
}

/* line 51, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

/* line 61, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-description {
  margin-bottom: 8px;
  color: #ddd;
  line-height: 1.4;
  white-space: normal;
  max-width: 180px;
}

/* line 69, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* line 74, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a {
  color: inherit;
  text-decoration: none;
}

/* line 78, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a i {
  font-size: 14px;
  transition: all 0.2s ease;
}

/* line 82, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a i:hover {
  transform: scale(1.2);
}

/* line 87, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a.tooltip-edit i {
  color: #17a2b8;
}

/* line 90, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a.tooltip-edit i:hover {
  color: #138496;
}

/* line 95, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a.tooltip-delete i {
  color: #dc3545;
}

/* line 98, app/assets/stylesheets/admin_layout_tags.scss */
.custom-tooltip .tooltip-actions a.tooltip-delete i:hover {
  color: #c82333;
}

/* line 106, app/assets/stylesheets/admin_layout_tags.scss */
.tag-wrapper:hover .custom-tooltip {
  opacity: 1;
  visibility: visible;
}

/* line 113, app/assets/stylesheets/admin_layout_tags.scss */
.tag-button[style*="background-color: #fff"], .tag-button[style*="background-color: #ffffff"], .tag-button[style*="background-color: #yellow"], .tag-button[style*="background-color: #ffff"] {
  color: #333 !important;
  text-shadow: none;
}

/* line 2, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .content {
  min-height: 100vh;
}

/* line 5, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .btn.btn-main, body.admin-layouts-information-body .btn.btn-underline {
  width: auto !important;
}

/* line 10, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .layout-mockups-tabs .nav-link {
  padding: 0.4rem 0.75rem;
  font-size: 14px;
}

/* line 16, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .fixed-content-bin {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

/* line 23, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .fixed-content-bin .layout-preview-bin {
  background-color: #f6f8fb;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
  width: 100%;
  min-height: 200px;
  margin-bottom: 16px;
}

/* line 34, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .fixed-content-bin .layout-preview-bin .image-preview-bin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

/* line 40, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .fixed-content-bin .layout-preview-bin .image-preview-bin .stylized-mockup {
  width: 100%;
  height: 100%;
}

/* line 44, app/assets/stylesheets/admin_layouts_information.scss */
body.admin-layouts-information-body .fixed-content-bin .layout-preview-bin .image-preview-bin .realistic-mockup {
  width: 100%;
  height: 100%;
}

/* line 3, app/assets/stylesheets/admin_layouts_warnings.scss */
body.admin-layouts-warnings-body .admin-layout-warnings-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-layouts-warnings-body .admin-layout-warnings-table th:nth-child(1) {
  width: 75%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-layouts-warnings-body .admin-layout-warnings-table th:nth-child(2) {
  width: 25%;
}

/* line 3, app/assets/stylesheets/admin_org_groups.scss */
body.admin-org-groups-body #org-groups-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-org-groups-body #org-groups-table th:nth-child(1) {
  width: 80%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-org-groups-body #org-groups-table th:nth-child(2) {
  width: 20%;
}

/* line 5, app/assets/stylesheets/admin_org_groups.scss */
body.admin-org-groups-body #org-groups-table td.action-buttons {
  text-align: right;
}

/* line 7, app/assets/stylesheets/admin_org_groups.scss */
body.admin-org-groups-body #org-groups-table td.action-buttons .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* line 8, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body tbody {
  vertical-align: top;
}

/* line 12, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body td {
  line-height: 1.5em;
  font-weight: 400;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
}

/* line 19, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body td:first-child {
  border-left: none;
  background-color: #f6f8fb;
}

/* line 24, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body td:last-child {
  border-right: none;
}

/* line 28, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body tr {
  background-color: #ffffff;
}

/* line 32, app/assets/stylesheets/admin_scorekeepers.scss */
body.admin-scorekeepers-body #admin-scorekeepers-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-scorekeepers-body #admin-scorekeepers-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-scorekeepers-body #admin-scorekeepers-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.admin-scorekeepers-body #admin-scorekeepers-table th:nth-child(3) {
  width: 30%;
}

/* line 2, app/assets/stylesheets/admin_scorekeepers_index.scss */
body.admin-scorekeepers-index-body .graph {
  height: 120px;
}

/* line 1, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body {
  /*****
  /* SD-7567
  *****/
  /**********************************************/
  /**********************************************/
  /* fixed content */
  /* modules font size */
  /* modules padding */
  /* dropdown menu */
}

@keyframes pulse-warning {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* line 14, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .features-sports-bin {
  background-color: #f6f8fb;
  padding: 2px 8px 8px 8px;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  margin-bottom: 20px;
}

/* line 20, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .features-sports-bin .features-sports-slider-bin::-webkit-scrollbar {
  display: none;
}

/* line 23, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .features-sports-bin .features-sports-slider-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

/* line 32, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .features-sports-bin .features-sports-slider-bin .badge {
  margin-left: 2px;
  margin-right: 2px;
}

/* line 36, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .features-sports-bin .features-sports-slider-bin .badge:first-child {
  margin-left: 0px;
}

/* line 44, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .red-flag-content {
  background-color: #f6f8fb;
  padding: 10px 15px;
  height: 100%;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  border-radius: 0.25rem;
}

/* line 52, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .priority-notes-content {
  background-color: #ffc107 !important;
  padding: 10px 15px;
  height: 100%;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  border-radius: 0.25rem;
}

/* line 62, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .search-bin .form-group.col-md-6.col-sm-12 {
  width: 100% !important;
  flex: 1 !important;
  max-width: 100% !important;
}

/* line 69, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .header-bar.stick {
  border-bottom: 0;
}

/* line 73, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin ul.nav-tabs {
  border-bottom: 1px solid #d6e0e6;
  margin-bottom: 20px;
}

/* line 78, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .nav-item a {
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  /* line 78, app/assets/stylesheets/admin_support_center_index.scss */
  body.admin-support-center-index-body .interior-bin .nav-item a {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}

@media (max-width: 767.98px) {
  /* line 89, app/assets/stylesheets/admin_support_center_index.scss */
  body.admin-support-center-index-body .interior-bin li {
    display: block;
    width: 100%;
  }
}

/* line 96, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .nav-item a:hover {
  text-decoration: none;
}

/* line 100, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .interior-bin .nav-item a.active.show {
  text-decoration: none;
}

/* line 108, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .badge {
  color: #ffffff;
  font-size: 85%;
  white-space: nowrap;
  font-weight: bolder;
}

/* line 115, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .badge.standalone {
  background-color: #de6a10;
}

/* line 119, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .badge.sw_rack {
  background-color: #009100;
}

/* line 123, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .badge.sw_rack_display {
  background-color: #157DFF;
}

/* line 131, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #edit-device-bin {
  position: absolute;
  top: 24px;
}

/* line 141, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .row.av-mapping-io {
  max-width: 950px;
}

/* line 145, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .row.av-mapping {
  max-width: 1100px;
}

/* line 150, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .device {
  font-size: 0.8em;
}

/* line 155, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .device-list {
  padding-left: 5px;
  padding-right: 5px;
}

/* line 161, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .dropdown-menu {
  transform: translate3d(-10px, 35px, 0) !important;
}

/* line 166, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #add-device-buttons button {
  display: block;
  transition: all 0.3s ease;
  color: #18516e;
  border: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  background: #ffffff;
  text-align: left;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
}

/* line 180, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #add-device-buttons button:hover {
  background-color: #e6ebf0;
}

/* line 185, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #technical-notes {
  margin: 0 auto 10px auto;
  text-align: center;
}

/* line 190, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .device-form {
  display: none;
}

/* line 194, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .highlighted-field {
  border: 2px solid #13ad13;
}

/* line 198, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .red-highlighted-field {
  border: 2px solid #cc3333;
}

/* line 204, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #mac-fields #venue-fields {
  margin-top: 8px;
}

/* line 209, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .cascading-av-switcher-connection, body.admin-support-center-index-body .video-source-downstream-connection, body.admin-support-center-index-body .video-source-major-display-box-connection, body.admin-support-center-index-body .atem-macro, body.admin-support-center-index-body .teranex-preset {
  border-top: 2px solid #000000;
  padding-top: 10px;
}

/* line 214, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #cascading-av-switcher-connection-fields, body.admin-support-center-index-body #video-source-downstream-connection-fields, body.admin-support-center-index-body #video-source-major-display-connection-fields {
  border-bottom: 2px solid #000000;
  margin-bottom: 10px;
}

/* line 220, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .condensed-form-group div.form-group {
  margin-bottom: 5px !important;
}

/* line 225, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #atem-macro-fields, body.admin-support-center-index-body #teranex-preset-fields {
  margin-top: 10px;
}

/* line 229, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .av-group.row {
  margin-left: 0;
  margin-right: 0;
}

/* line 234, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .av-group-hub.device.power-switch.block {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 240, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body, body.admin-support-center-index-body #io-panel .nested-av-groups, body.admin-support-center-index-body #power-panel .se-section-body, body.admin-support-center-index-body #power-panel .nested-av-groups, body.admin-support-center-index-body #network-panel .se-section-body, body.admin-support-center-index-body #network-panel .nested-av-groups, body.admin-support-center-index-body #other-panel .se-section-body, body.admin-support-center-index-body #other-panel .nested-av-groups {
  border-spacing: 10px;
  border-collapse: separate;
}

/* line 244, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group, body.admin-support-center-index-body #power-panel .se-section-body .av-group, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group, body.admin-support-center-index-body #network-panel .se-section-body .av-group, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group, body.admin-support-center-index-body #other-panel .se-section-body .av-group, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group {
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  padding: 5px;
}

/* line 250, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device {
  background: #CCCCCC;
  color: #000000;
  border-radius: 10px;
  text-align: left;
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px #cffc29 inset;
}

/* line 262, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.non-sv-device, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.non-sv-device, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.non-sv-device, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.non-sv-device, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.non-sv-device, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.non-sv-device, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.non-sv-device, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.non-sv-device {
  box-shadow: 0 0 0 2px #FF8400 inset !important;
}

/* line 266, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.av-switcher, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.av-switcher, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.av-switcher, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.av-switcher, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.av-switcher, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.av-switcher, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.av-switcher, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.av-switcher {
  background: #CCCCCC;
  position: relative;
  overflow: visible !important;
}

/* line 272, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.av-switcher.has-duplicate-inputs, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.av-switcher.has-duplicate-inputs {
  border-color: #ff5722 !important;
  border-width: 3px;
  box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

/* line 278, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.av-switcher .duplicate-input-warning, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.av-switcher .duplicate-input-warning {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff !important;
  background: #ff5722 !important;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  box-shadow: 0 3px 10px rgba(255, 87, 34, 0.6), 0 0 0 3px #fff !important;
  animation: pulse-warning 2s infinite;
  z-index: 100;
  border: 2px solid #fff !important;
  font-weight: bold !important;
  pointer-events: none;
}

/* line 300, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.power-switch, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.power-switch, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.power-switch, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.power-switch, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.power-switch, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.power-switch, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.power-switch, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.power-switch {
  background: #99FF99;
}

/* line 304, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.matrix-display, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.matrix-display, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.matrix-display, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.matrix-display, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.matrix-display, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.matrix-display, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.matrix-display, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.matrix-display {
  background: #99CCCC;
}

/* line 308, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.screen, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.screen, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.screen, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.screen, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.screen, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.screen, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.screen, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.screen {
  background: #9999FF;
}

/* line 312, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.capture-device, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.capture-device, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.capture-device, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.capture-device, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.capture-device, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.capture-device, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.capture-device, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.capture-device {
  background: #FFFF99;
}

/* line 316, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.video-source, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.video-source, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.video-source, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.video-source, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.video-source, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.video-source, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.video-source, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.video-source {
  background: #BBBBFF;
}

/* line 320, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.led-board, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.led-board, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.led-board, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.led-board, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.led-board, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.led-board, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.led-board, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.led-board {
  background: #FFBBBB;
}

/* line 324, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.powered-device, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.powered-device, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.powered-device, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.powered-device, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.powered-device, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.powered-device, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.powered-device, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.powered-device {
  background: #99CCCC;
}

/* line 328, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.network-switch, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.network-switch, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.network-switch, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.network-switch, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.network-switch, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.network-switch, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.network-switch, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.network-switch {
  background: #FFCC99;
}

/* line 332, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.network-wap, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.network-wap, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.network-wap, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.network-wap, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.network-wap, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.network-wap, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.network-wap, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.network-wap {
  background: #FFBB66;
}

/* line 336, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.scorebot, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.scorebot, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.scorebot, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.scorebot, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.scorebot, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.scorebot, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.scorebot, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.scorebot {
  background: #FFBBEE;
}

/* line 340, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.router, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.router, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.router, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.router, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.router, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.router, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.router, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.router {
  background: #99FFFF;
}

/* line 344, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.major-display-box, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.major-display-box, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.major-display-box, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.major-display-box, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.major-display-box, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.major-display-box, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.major-display-box, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.major-display-box {
  background: #ADBA23;
}

/* line 348, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.major-display-board, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.major-display-board, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.major-display-board, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.major-display-board, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.major-display-board, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.major-display-board, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.major-display-board, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.major-display-board {
  background: #CCFF99;
}

/* line 352, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.shot-clock, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.shot-clock, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.shot-clock, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.shot-clock, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.shot-clock, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.shot-clock, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.shot-clock, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.shot-clock {
  background: #AACCFF;
}

/* line 356, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.precision-control-unit, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.precision-control-unit, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.precision-control-unit, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.precision-control-unit, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.precision-control-unit, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.precision-control-unit {
  background: #BFF442;
}

/* line 360, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.oes-rack-unit, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.oes-rack-unit, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.oes-rack-unit {
  background: #BA9EBA;
}

/* line 364, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.aux-clock-display, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.aux-clock-display, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.aux-clock-display, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.aux-clock-display, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.aux-clock-display, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.aux-clock-display {
  background: #E5D7C0;
}

/* line 368, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.handheld-device, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.handheld-device, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.handheld-device, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.handheld-device, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.handheld-device, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.handheld-device, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.handheld-device, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.handheld-device {
  background: #1BD3BE;
}

/* line 372, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #io-panel .se-section-body .av-group .device.camera, body.admin-support-center-index-body #io-panel .nested-av-groups .av-group .device.camera, body.admin-support-center-index-body #power-panel .se-section-body .av-group .device.camera, body.admin-support-center-index-body #power-panel .nested-av-groups .av-group .device.camera, body.admin-support-center-index-body #network-panel .se-section-body .av-group .device.camera, body.admin-support-center-index-body #network-panel .nested-av-groups .av-group .device.camera, body.admin-support-center-index-body #other-panel .se-section-body .av-group .device.camera, body.admin-support-center-index-body #other-panel .nested-av-groups .av-group .device.camera {
  background: #94BF67;
}

/* line 384, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .collapse-content {
  padding-top: 15px;
  padding-bottom: 5px;
}

/* line 389, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .slider-container {
  border-top: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: -1px;
}

/* line 397, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .header-btn-bin {
  display: flex;
  align-items: center;
}

/* line 401, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .header-btn-bin .subhead {
  margin-bottom: 0;
}

/* line 405, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .header-btn-bin .btn-bin {
  display: flex;
  align-items: center;
  margin-left: auto;
}

/* line 410, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .header-btn-bin .btn-bin a.btn.btn-main {
  width: 100px !important;
  margin-bottom: 0;
  margin-left: 10px;
}

/* line 416, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .header-btn-bin .btn-bin a.btn.btn-underline {
  text-decoration: underline;
  width: auto !important;
}

/* line 423, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .overflow-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: scroll;
  background: #f6f8fb;
  padding: 15px;
  margin-bottom: 15px;
}

/* line 432, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .overflow-container img {
  max-width: 400px;
  max-height: 400px;
}

/* line 439, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .locked-row-style td {
  position: relative;
  background-color: #fff3e0 !important;
}

/* line 442, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .locked-row-style td .alert-text {
  color: #ff6f00;
}

/* line 451, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: 11px;
  padding-left: 11px;
  width: 100%;
}

/* line 459, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-1 {
  width: 8%;
  justify-content: flex-start;
  align-items: flex-end;
}

/* line 463, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-1 .btn.btn-main {
  width: 32px;
  height: 32px;
  padding: 0px;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #d32f2f;
  background-image: none;
}

/* line 472, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-1 .btn.btn-main .fa {
  font-size: 20px;
}

/* line 477, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-2, body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-3 {
  width: 28%;
}

/* line 481, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-4 {
  width: 36%;
}

/* line 485, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-2, body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-3, body.admin-support-center-index-body #led-board-modal .form-flex-row .bin-4 {
  padding: 0px 4px 0px 4px;
}

/* line 492, app/assets/stylesheets/admin_support_center_index.scss */
body.admin-support-center-index-body .device-group-bin {
  border-radius: 4px;
  padding: 5px 8px 5px 8px;
  margin: 8px 3px 0px 3px;
  background-color: #e6ebf0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: #0f3950;
  overflow: hidden;
}

/* line 1, app/assets/stylesheets/admin_u_game_setting_defaults.scss */
#u_game_setting_table {
  overflow-wrap: anywhere;
}

/* line 5, app/assets/stylesheets/admin_u_game_setting_defaults.scss */
.svle-check {
  text-align: center;
  vertical-align: middle;
}

/* line 10, app/assets/stylesheets/admin_u_game_setting_defaults.scss */
td.action-btn-bin {
  text-align: center;
}

/* line 12, app/assets/stylesheets/admin_u_game_setting_defaults.scss */
td.action-btn-bin .fa {
  font-size: 30px;
}

/* line 2, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results {
  width: 100%;
}

/* line 4, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template {
  border: 1px solid #b0bec5;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* line 9, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template .ui-device-inner {
  font-size: 16px;
}

/* line 11, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template .ui-device-inner .flexRow {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid #e6ebf0;
}

/* line 18, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template .ui-device-inner .flexRow .rowLabel {
  font-weight: bold;
  margin-right: 8px;
}

/* line 23, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template .ui-device-inner .flexRow:nth-child(even) {
  background-color: #f6f8fb;
}

/* line 26, app/assets/stylesheets/admin_unifi_tools.scss */
body.admin-unifi-tools-index-body #ui-device-results #ui-device-template .ui-device-inner .flexRow:last-child {
  border-bottom: 0px;
}

/* line 4, app/assets/stylesheets/admin_users.scss */
body.admin-users-body img.qrcode {
  width: 400px;
  height: auto;
}

/* line 1, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body {
  /* header bin */
  /* scrollable on desktop */
  /* announcement tags table */
}

/* line 2, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body .interior-bin {
  min-height: calc(100vh - 135px);
}

/* line 7, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body .sticky-content {
  margin-bottom: 15px;
  padding-top: 0;
}

/* line 11, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body .sticky-content .btn.btn-main {
  margin-right: 0;
}

@media only screen and (max-width: 1300px) {
  /* line 18, app/assets/stylesheets/announcement_tags.scss */
  body.announcement-tags-body .table-responsive-scroll.announcement-tags-table-wrapper {
    overflow-x: scroll !important;
  }
}

/* line 24, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table {
  table-layout: fixed;
  min-width: 900px !important;
  table-layout: fixed;
  width: 100%;
  /* flex containers */
  /* announcements images */
  /* delete button */
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcement-tags-body table#announcement-tags-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcement-tags-body table#announcement-tags-table th:nth-child(2) {
  width: 35%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcement-tags-body table#announcement-tags-table th:nth-child(3) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcement-tags-body table#announcement-tags-table th:nth-child(4) {
  width: 10%;
}

/* line 29, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table th {
  font-size: 11px;
}

/* line 33, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table th:nth-child(1) {
  padding-left: 29px;
}

/* line 37, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td {
  align-items: center;
}

/* line 41, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table tr:hover {
  background-color: #e6ebf0;
}

/* line 46, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table .flex-content-container {
  display: flex;
  align-items: center;
}

/* line 50, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table .flex-content-container .col-12 {
  flex: auto;
}

/* line 54, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table .flex-content-container label.form-check-label {
  display: none !important;
}

/* line 58, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table .flex-content-container .checkbox-container {
  margin-right: 6px !important;
  display: flex;
  align-items: center;
}

/* line 67, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.announcements-number .preview-img-bin {
  background-color: #18516e;
  width: 75px;
  height: 42px;
  display: inline-block;
  overflow: hidden;
  margin: 0 2px 0 2px;
  border: 1px solid #d6e0e6;
  border-radius: 4px;
}

/* line 77, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.announcements-number .preview-img-bin img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 84, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.announcements-number span {
  font-size: 13px;
}

/* line 89, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.creation-date {
  font-size: 13px;
}

/* line 94, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.action-buttons {
  text-align: right;
}

/* line 97, app/assets/stylesheets/announcement_tags.scss */
body.announcement-tags-body table#announcement-tags-table td.action-buttons .fa {
  font-size: 18px;
  margin: 3px;
}

/* line 3, app/assets/stylesheets/announcements.scss */
body.announcements-body {
  /* help button */
  /* headline help button */
  /* help modal */
  /* filter bin ----------------- */
}

/* line 5, app/assets/stylesheets/announcements.scss */
body.announcements-body .announcements-help {
  font-size: 22px;
  width: auto !important;
  margin: 0 2px 0 0;
  padding: 0 0 3px;
}

/* line 12, app/assets/stylesheets/announcements.scss */
body.announcements-body .headline-btn {
  display: flex;
  align-items: center;
}

/* line 18, app/assets/stylesheets/announcements.scss */
body.announcements-body .text-field-btn {
  width: calc(100% - 330px);
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  /* line 18, app/assets/stylesheets/announcements.scss */
  body.announcements-body .text-field-btn {
    width: 100%;
  }
}

/* line 26, app/assets/stylesheets/announcements.scss */
body.announcements-body .text-field-btn .announcements-help {
  padding-bottom: 3px;
  margin: 0 6px 0 0;
}

@media (max-width: 767.98px) {
  /* line 26, app/assets/stylesheets/announcements.scss */
  body.announcements-body .text-field-btn .announcements-help {
    padding-bottom: 18px;
  }
}

/* line 34, app/assets/stylesheets/announcements.scss */
body.announcements-body .text-field-btn .form-group.col-12.input-btn-field {
  width: calc(100% - 25px) !important;
}

/* line 39, app/assets/stylesheets/announcements.scss */
body.announcements-body .btn-control-label {
  padding-bottom: 0 !important;
}

/* line 50, app/assets/stylesheets/announcements.scss */
body.announcements-body #help-modal-announcements .pre-scrollable {
  height: calc(100vh - 116px) !important;
}

/* line 56, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin {
  /* Form Header Module --------- */
  /* form column ---------------------- */
  /* gray form container ---------------------- */
  /* global content containers --------- */
  /* section content container */
  /* interior content container */
  /* global content components --------- */
  /* content containers custom css --------- */
  /* social media containers */
  /* game notification container --------- */
  /* announcement content container --------- */
  /* preview content module ----------- */
  /* pregame announcement card */
  /* list checkboxes */
}

/* line 58, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .sticky-content {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 62, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .sticky-content .form-group {
  margin-bottom: 8px;
}

@media (max-width: 767.98px) {
  /* line 62, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .sticky-content .form-group {
    margin-bottom: 16px;
  }
}

/* line 69, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .sticky-content .content-bin {
  padding: 0;
  align-items: flex-end !important;
}

/* line 74, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .sticky-content .form-buttons {
  margin-bottom: 8px;
}

/* line 77, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .sticky-content .form-buttons .btn.btn-main {
  margin-right: 0;
}

/* line 83, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin #draft-btn {
  width: 100px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* line 90, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .setup-preview-bin {
  border: 1px solid #d6e0e6;
}

/* line 96, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .interior-bin ::-webkit-scrollbar {
  width: 4px;
}

/* line 100, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .interior-bin ::-webkit-scrollbar-track {
  background: #e6ebf0;
}

/* line 104, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .interior-bin ::-webkit-scrollbar-thumb {
  background: #b0bec5;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 20px;
}

/* line 119, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .form-container {
  border-right: 0 solid #d6e0e6;
  height: calc(100vh - 295px);
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  /* line 119, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .form-container {
    border-right: 1px solid #d6e0e6;
  }
}

/* line 132, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section {
  border-bottom: 2px solid #d6e0e6;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* line 139, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .interior-section {
  border: 1px solid #d6e0e6;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 12px;
}

/* line 149, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section {
  /* section headline */
  /* section headline divider */
  /* form fields with radio button selection */
  /* checkbox field */
  /* align button to right side of form */
  /* "or" separator */
}

/* line 152, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .label-2 {
  margin-bottom: 0;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 152, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .main-section .label-2 {
    padding-left: 8px;
  }
}

/* line 161, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .hr {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 167, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section select.radio-input-field {
  width: calc(100% - 17px) !important;
  margin-left: auto !important;
}

/* line 173, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section span.form-check {
  display: inline-block !important;
  font-size: 13px;
  font-weight: 600;
  padding-left: 10px;
}

/* line 180, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .checkbox-label {
  font-size: 13px;
  font-weight: 600;
}

/* line 185, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .form-check-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0 !important;
}

/* line 192, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .right-btn-bin {
  padding: 0 15px 0 15px;
  text-align: right;
  display: block;
  margin-bottom: -3px;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 192, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .main-section .right-btn-bin {
    padding: 0 8px 0 8px;
  }
}

/* line 204, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .form-row.separator {
  margin-left: -12px;
  margin-right: -12px;
}

/* line 208, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .form-row.separator .content-separator {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #d6e0e6;
  line-height: 0.1em;
  margin: 18px 0 8px;
}

/* line 216, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .main-section .form-row.separator .content-separator span {
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.75px;
  font-weight: 800;
  color: #18516e;
  background-color: #f6f8fb;
}

/* line 230, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .border-btm {
  border-bottom: 1px solid #d6e0e6;
}

/* line 234, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .social-info-bin {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

/* line 241, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .social-info-bin .social-label {
  font-size: 12px;
  line-height: 1;
  text-transform: inherit;
  color: #18516e;
  font-weight: 700;
  width: 50px;
}

/* line 250, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .social-info-bin .social-content {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 70px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: inherit;
  color: #18516e;
}

/* line 265, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .social-info-bin .social-content .user-status {
  margin-left: 4px;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: auto !important;
}

/* line 289, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin #notif-buttons {
  margin-bottom: 15px;
}

/* line 293, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group {
  margin-top: 5px;
}

/* line 296, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li {
  padding: 5px 5px 5px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 302, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li span.form-check {
  padding-top: 5px;
  padding-left: 0;
}

/* line 307, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li .player-name {
  display: inline-block !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  padding-left: 5px;
  padding-top: 3px;
  margin-right: 5px;
}

/* line 317, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group {
  padding: 0 !important;
  width: 40% !important;
  margin-left: auto;
  flex: none !important;
}

/* line 323, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group .form-control {
  padding-top: 0;
  padding-bottom: 0;
}

/* line 328, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group .form-group option {
  font-size: 13px !important;
}

/* line 338, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin ul#media-items.list-group {
  width: 100%;
  margin-top: 10px;
}

/* line 343, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item a.link-wrapper {
  width: 100%;
  height: 29px;
  display: block;
  margin-bottom: 0;
}

/* line 350, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item a.link-wrapper:hover {
  text-decoration: none;
}

/* line 353, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item a.link-wrapper:hover .media-name {
  text-decoration: underline;
}

/* line 358, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item {
  width: 100%;
  padding: 0;
  border: 1px solid #d6e0e6;
}

/* line 363, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0 5px 0 0;
}

/* line 371, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item .media-image {
  background-color: #18516e;
  width: 51px;
  height: 29px;
  margin-right: 5px;
  overflow: hidden;
}

/* line 378, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item .media-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 385, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item .media-name {
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 600;
  margin-top: 3px;
  width: calc(100% - 60px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 396, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .content-bin li.media-item .fa {
  font-size: 18px;
  margin-top: 2px;
  display: flex;
  margin-left: auto;
}

/* line 406, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin img.template-img {
  width: 55% !important;
}

/* line 410, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-content {
  padding: 12px 15px 10px 15px;
  margin-left: 0;
  height: calc(100vh - 295px);
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  /* line 410, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .preview-content {
    padding-left: 0;
    margin-left: -16px;
  }
}

/* line 421, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-content .label-2 {
  margin-bottom: 0;
}

/* line 425, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-content .hr {
  margin-top: 8px;
  margin-bottom: 0;
}

/* line 432, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-image-bin .preview-img-container {
  max-width: 500px;
  height: auto;
  overflow: hidden;
  padding: 0 8px 0 8px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* line 441, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-image-bin .preview-img-container img, body.announcements-body .filter-bin .preview-image-bin .preview-img-container video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 450, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container {
  margin-bottom: 20px;
  /* game info content module */
  /* center column content */
}

/* line 453, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  height: auto;
  /* text classes */
  /* team colors base */
  /* overlay image - lays over team colors */
  /* ad node */
  /* card header */
}

/* line 460, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-text, body.announcements-body .filter-bin .preview-img-container .announcement-card .name-text, body.announcements-body .filter-bin .preview-img-container .announcement-card .score-text, body.announcements-body .filter-bin .preview-img-container .announcement-card .meta-text {
  font-family: 'Teko', sans-serif;
}

/* line 464, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-text {
  font-size: 1.75vw;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  /* line 464, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .preview-img-container .announcement-card .header-text {
    font-size: 24px;
  }
}

/* line 475, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .name-text {
  font-size: 1.75vw;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  /* line 475, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .preview-img-container .announcement-card .name-text {
    font-size: 24px;
  }
}

/* line 484, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .meta-text {
  font-size: 1.45vw;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991.98px) {
  /* line 484, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .preview-img-container .announcement-card .meta-text {
    font-size: 18px;
  }
}

/* line 497, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .score-text {
  color: #ffffff;
  font-size: 5vw;
  font-weight: 600;
  line-height: 92%;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991.98px) {
  /* line 497, app/assets/stylesheets/announcements.scss */
  body.announcements-body .filter-bin .preview-img-container .announcement-card .score-text {
    font-size: 80px;
  }
}

/* line 509, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .team-colors-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}

/* line 518, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .team-colors-wrapper .home-team-color, body.announcements-body .filter-bin .preview-img-container .announcement-card .team-colors-wrapper .away-team-color {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* line 534, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .team-colors-wrapper .home-team-color {
  background-color: #616161;
  -webkit-clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
          clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

/* line 539, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .team-colors-wrapper .away-team-color {
  background-color: #424242;
  -webkit-clip-path: polygon(100% 0, 60% 0, 40% 100%, 100% 100%);
          clip-path: polygon(100% 0, 60% 0, 40% 100%, 100% 100%);
}

/* line 546, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .overlay-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-color: #222222;
}

/* line 558, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .overlay-img img {
  max-width: 100%;
  height: auto;
}

/* line 565, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .announcement-media-wrapper {
  width: 96%;
  aspect-ratio: 32 / 5;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.3%;
  position: relative;
  left: 0;
  right: 0;
  box-sizing: border-box;
  background-color: #353535;
  border: 1px solid #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/* line 582, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .announcement-media-wrapper img {
  max-width: 100%;
  height: auto;
}

/* line 587, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .announcement-media-wrapper label {
  color: #ffffff;
}

/* line 593, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-wrapper {
  display: flex;
  height: 15%;
  width: 100%;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/* line 604, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-wrapper .event-type {
  width: 75%;
  padding-left: 2%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-block;
  margin-bottom: -1%;
}

/* line 614, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-wrapper .logo-bin {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2%;
}

/* line 621, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-card .header-wrapper .logo-bin img {
  max-width: 100%;
  height: auto;
}

/* line 629, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .announcement-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  height: 85%;
  width: 100%;
  top: 15%;
}

/* line 640, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper {
  height: 66%;
  width: 100%;
  position: relative;
  padding-top: 1%;
  z-index: 4;
  display: flex;
  /* info columns */
  /* home team logo and name */
  /* away team logo and name */
}

/* line 650, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .event-info {
  width: 33.33%;
  height: 100%;
  display: flex;
  /* team logos */
  /* team names */
}

/* line 656, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info .logo-bin, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info .logo-bin, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .event-info .logo-bin {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 70%;
  overflow: hidden;
  position: relative;
  padding-top: 5%;
}

/* line 666, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info img.team-logo, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info img.team-logo, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .event-info img.team-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 673, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info .name-bin, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info .name-bin, body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .event-info .name-bin {
  height: 30%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

/* line 684, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info {
  flex-direction: column;
  padding-left: 2%;
}

/* line 688, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info .logo-bin {
  justify-content: flex-start;
}

/* line 692, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .home-team-info .name-bin {
  text-align: center;
}

/* line 698, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info {
  flex-direction: column;
  padding-right: 2%;
}

/* line 702, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info .logo-bin {
  justify-content: flex-end;
}

/* line 706, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .content-logo-wrapper .away-team-info .name-bin {
  text-align: center;
}

/* line 713, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info {
  /* pregame content module */
  /* game content module */
}

/* line 716, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content {
  padding-top: 2%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column !important;
  /* vs icon */
  /* event info */
}

/* line 724, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .icon-bin {
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* line 731, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .icon-bin .vs-icon {
  height: 85%;
  width: auto;
}

/* line 738, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .date-bin, body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .time-bin {
  height: 30%;
  display: flex;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* line 747, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .date-bin {
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3.5%;
}

/* line 754, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .pregame-content .time-bin {
  padding-top: 4%;
  align-items: flex-start;
  overflow: hidden;
}

/* line 763, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .game-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column !important;
  padding-top: 2%;
  /* score text large */
  /* game time content */
}

/* line 771, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .game-content .scores-wrapper {
  height: 70%;
  width: 100%;
  display: flex;
}

/* line 776, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .game-content .scores-wrapper .home-score-lrg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  height: 100%;
}

/* line 784, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .game-content .scores-wrapper .away-score-lrg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  height: 100%;
}

/* line 794, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .preview-img-container .event-info .game-content .score-time-bin {
  height: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4%;
}

/* line 808, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .button-flex-bin {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 813, app/assets/stylesheets/announcements.scss */
body.announcements-body .filter-bin .button-flex-bin .form-check-label {
  font-size: 13px !important;
  margin-right: 24px;
}

/* line 820, app/assets/stylesheets/announcements.scss */
body.announcements-body .download-img-bin {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #d6e0e6;
  margin-bottom: 12px;
  max-width: 676px;
  background-color: #f6f8fb;
}

/* line 831, app/assets/stylesheets/announcements.scss */
body.announcements-body .download-img-bin .btn {
  width: 124px !important;
}

/* line 3, app/assets/stylesheets/announcements_form.scss */
body.announcements-body {
  /* help button */
  /* headline help button */
  /* help modal */
  /* Form Header Module --------- */
  /* form column ---------------------- */
  /* gray form container ---------------------- */
  /* global content containers --------- */
  /* section content container */
  /* interior content container */
  /* global content components --------- */
  /* content containers custom css --------- */
  /* social media containers */
  /* game notification container --------- */
  /* announcement content container --------- */
  /* preview content module ----------- */
  /* pregame announcement card */
  /* list checkboxes */
}

/* line 6, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .announcements-help {
  font-size: 22px;
  width: auto !important;
  margin: 0 2px 0 0;
  padding: 0 0 3px;
}

/* line 13, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .headline-btn {
  display: flex;
  align-items: center;
}

/* line 19, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .text-field-btn {
  width: calc(100% - 330px);
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  /* line 19, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .text-field-btn {
    width: 100%;
  }
}

/* line 27, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .text-field-btn .announcements-help {
  padding-bottom: 3px;
  margin: 0 6px 0 0;
}

@media (max-width: 767.98px) {
  /* line 27, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .text-field-btn .announcements-help {
    padding-bottom: 18px;
  }
}

/* line 35, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .text-field-btn .form-group.col-12.input-btn-field {
  width: calc(100% - 25px) !important;
}

/* line 40, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .btn-control-label {
  padding-bottom: 0 !important;
}

/* line 51, app/assets/stylesheets/announcements_form.scss */
body.announcements-body #help-modal-announcements .pre-scrollable {
  height: calc(100vh - 116px) !important;
}

/* line 57, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .sticky-content {
  border-bottom: 0;
  padding-bottom: 0;
}

/* line 61, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .sticky-content .form-group {
  margin-bottom: 8px;
}

@media (max-width: 767.98px) {
  /* line 61, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .sticky-content .form-group {
    margin-bottom: 16px;
  }
}

/* line 68, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .sticky-content .content-bin {
  padding: 0;
  align-items: flex-end !important;
}

/* line 73, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .sticky-content .form-buttons {
  margin-bottom: 8px;
}

/* line 76, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .sticky-content .form-buttons .btn.btn-main {
  margin-right: 0;
}

/* line 82, app/assets/stylesheets/announcements_form.scss */
body.announcements-body #draft-btn {
  width: 100px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* line 89, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .setup-preview-bin {
  border: 1px solid #d6e0e6;
}

/* line 95, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .interior-bin ::-webkit-scrollbar {
  width: 4px;
}

/* line 99, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .interior-bin ::-webkit-scrollbar-track {
  background: #e6ebf0;
}

/* line 103, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .interior-bin ::-webkit-scrollbar-thumb {
  background: #b0bec5;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 20px;
}

/* line 118, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .form-container {
  border-right: 0 solid #d6e0e6;
  height: calc(100vh - 295px);
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  /* line 118, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .form-container {
    border-right: 1px solid #d6e0e6;
  }
}

/* line 131, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section {
  border-bottom: 2px solid #d6e0e6;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

/* line 138, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .interior-section {
  border: 1px solid #d6e0e6;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top: 5px;
  padding: 12px;
}

/* line 148, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section {
  /* section headline */
  /* section headline divider */
  /* form fields with radio button selection */
  /* checkbox field */
  /* align button to right side of form */
  /* "or" separator */
}

/* line 151, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .label-2 {
  margin-bottom: 0;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 151, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .main-section .label-2 {
    padding-left: 8px;
  }
}

/* line 160, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .hr {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 166, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section select.radio-input-field {
  width: calc(100% - 17px) !important;
  margin-left: auto !important;
}

/* line 172, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section span.form-check {
  display: inline-block !important;
  font-size: 13px;
  font-weight: 600;
  padding-left: 10px;
}

/* line 179, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .checkbox-label {
  font-size: 13px;
  font-weight: 600;
}

/* line 184, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .form-check-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0 !important;
}

/* line 191, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .right-btn-bin {
  padding: 0 15px 0 15px;
  text-align: right;
  display: block;
  margin-bottom: -3px;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 191, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .main-section .right-btn-bin {
    padding: 0 8px 0 8px;
  }
}

/* line 203, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .form-row.separator {
  margin-left: -12px;
  margin-right: -12px;
}

/* line 207, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .form-row.separator .content-separator {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #d6e0e6;
  line-height: 0.1em;
  margin: 18px 0 8px;
}

/* line 215, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .main-section .form-row.separator .content-separator span {
  padding: 0 10px;
  font-size: 11px;
  letter-spacing: 0.75px;
  font-weight: 800;
  color: #18516e;
  background-color: #f6f8fb;
}

/* line 229, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .border-btm {
  border-bottom: 1px solid #d6e0e6;
}

/* line 233, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .social-info-bin {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

/* line 240, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .social-info-bin .social-label {
  font-size: 12px;
  line-height: 1;
  text-transform: inherit;
  color: #18516e;
  font-weight: 700;
  width: 50px;
}

/* line 249, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .social-info-bin .social-content {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 70px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  text-transform: inherit;
  color: #18516e;
}

/* line 264, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .social-info-bin .social-content .user-status {
  margin-left: 4px;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: auto !important;
}

/* line 288, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin #notif-buttons {
  margin-bottom: 15px;
}

/* line 292, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group {
  margin-top: 5px;
}

/* line 295, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li {
  padding: 5px 5px 5px 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 301, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li span.form-check {
  padding-top: 5px;
  padding-left: 0;
}

/* line 306, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li .player-name {
  display: inline-block !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  padding-left: 5px;
  padding-top: 3px;
  margin-right: 5px;
}

/* line 316, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group {
  padding: 0 !important;
  width: 40% !important;
  margin-left: auto;
  flex: none !important;
}

/* line 322, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group .form-control {
  padding-top: 0;
  padding-bottom: 0;
}

/* line 327, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .notif-bin ul#team-player-list.list-group li .form-group.filter-bin-form-group .form-group option {
  font-size: 13px !important;
}

/* line 337, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin ul#media-items.list-group {
  width: 100%;
  margin-top: 10px;
}

/* line 342, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item a.link-wrapper {
  width: 100%;
  height: 29px;
  display: block;
  margin-bottom: 0;
}

/* line 349, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item a.link-wrapper:hover {
  text-decoration: none;
}

/* line 352, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item a.link-wrapper:hover .media-name {
  text-decoration: underline;
}

/* line 357, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item {
  width: 100%;
  padding: 0;
  border: 1px solid #d6e0e6;
}

/* line 362, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 0 5px 0 0;
}

/* line 370, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item .media-image {
  background-color: #18516e;
  width: 51px;
  height: 29px;
  margin-right: 5px;
  overflow: hidden;
}

/* line 377, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item .media-image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 384, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item .media-name {
  font-size: 13px;
  letter-spacing: 0.2px;
  font-weight: 600;
  margin-top: 3px;
  width: calc(100% - 60px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 395, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .content-bin li.media-item .fa {
  font-size: 18px;
  margin-top: 2px;
  display: flex;
  margin-left: auto;
}

/* line 405, app/assets/stylesheets/announcements_form.scss */
body.announcements-body img.template-img {
  width: 55% !important;
}

/* line 409, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-content {
  padding: 12px 15px 10px 15px;
  margin-left: 0;
  height: calc(100vh - 295px);
  overflow-y: scroll;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  /* line 409, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-content {
    padding-left: 0;
    margin-left: -16px;
  }
}

/* line 420, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-content .label-2 {
  margin-bottom: 0;
}

/* line 424, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-content .hr {
  margin-top: 8px;
  margin-bottom: 0;
}

/* line 431, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-image-bin .preview-img-container {
  max-width: 500px;
  height: auto;
  overflow: hidden;
  padding: 0 8px 0 8px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* line 440, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-image-bin .preview-img-container img, body.announcements-body .preview-image-bin .preview-img-container video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 449, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container {
  margin-bottom: 20px;
  /* game info content module */
  /* center column content */
}

/* line 452, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  height: auto;
  /* text classes */
  /* team colors base */
  /* overlay image - lays over team colors */
  /* ad node */
  /* card header */
}

/* line 459, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-text, body.announcements-body .preview-img-container .announcement-card .name-text, body.announcements-body .preview-img-container .announcement-card .score-text, body.announcements-body .preview-img-container .announcement-card .meta-text, body.announcements-body .preview-img-container .announcement-card .season-text {
  font-family: 'Teko', sans-serif;
}

/* line 463, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-text-wrapper {
  height: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2%;
}

/* line 472, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-text {
  padding-top: 1.5%;
  font-size: 1.1vw;
  line-height: 1;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  /* line 472, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-img-container .announcement-card .header-text {
    font-size: 19px;
    padding-top: 2%;
  }
}

/* line 486, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .season-text {
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  width: 100%;
  z-index: 9999;
  font-size: 1vw;
}

@media (max-width: 991.98px) {
  /* line 486, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-img-container .announcement-card .season-text {
    font-size: 16px;
  }
}

/* line 500, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .name-text {
  font-size: 1.75vw;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  /* line 500, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-img-container .announcement-card .name-text {
    font-size: 24px;
  }
}

/* line 509, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .meta-text {
  font-size: 1.45vw;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991.98px) {
  /* line 509, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-img-container .announcement-card .meta-text {
    font-size: 18px;
  }
}

/* line 522, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .score-text {
  color: #ffffff;
  font-size: 5vw;
  font-weight: 600;
  line-height: 92%;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

@media (max-width: 991.98px) {
  /* line 522, app/assets/stylesheets/announcements_form.scss */
  body.announcements-body .preview-img-container .announcement-card .score-text {
    font-size: 80px;
  }
}

/* line 534, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .team-colors-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}

/* line 543, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .team-colors-wrapper .home-team-color, body.announcements-body .preview-img-container .announcement-card .team-colors-wrapper .away-team-color {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* line 559, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .team-colors-wrapper .home-team-color {
  background-color: #616161;
  -webkit-clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
          clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
}

/* line 564, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .team-colors-wrapper .away-team-color {
  background-color: #424242;
  -webkit-clip-path: polygon(100% 0, 60% 0, 40% 100%, 100% 100%);
          clip-path: polygon(100% 0, 60% 0, 40% 100%, 100% 100%);
}

/* line 571, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .overlay-img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* line 582, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .overlay-img img {
  max-width: 100%;
  height: auto;
}

/* line 589, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .announcement-media-wrapper {
  width: 96%;
  aspect-ratio: 32 / 5;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.3%;
  position: relative;
  left: 0px;
  right: 0px;
  box-sizing: border-box;
  background-color: #353535;
  border: 1px solid #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/* line 606, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .announcement-media-wrapper img {
  max-width: 100%;
  height: auto;
}

/* line 611, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .announcement-media-wrapper label {
  color: #ffffff;
}

/* line 617, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-wrapper {
  display: flex;
  height: 15%;
  width: 74%;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/* line 628, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-wrapper .season-sport-info {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* line 637, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-wrapper .event-type {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 643, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-wrapper .logo-bin {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2%;
}

/* line 650, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-card .header-wrapper .logo-bin img {
  max-width: 100%;
  height: auto;
}

/* line 658, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .announcement-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  height: 85%;
  width: 100%;
  top: 15%;
}

/* line 669, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper {
  height: 66%;
  width: 100%;
  position: relative;
  padding-top: 1%;
  z-index: 4;
  display: flex;
  /* info columns */
  /* home team logo and name */
  /* away team logo and name */
}

/* line 679, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info, body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info, body.announcements-body .preview-img-container .content-logo-wrapper .event-info {
  width: 33.33%;
  height: 100%;
  display: flex;
  /* team logos */
  /* team names */
}

/* line 685, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info .logo-bin, body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info .logo-bin, body.announcements-body .preview-img-container .content-logo-wrapper .event-info .logo-bin {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 70%;
  overflow: hidden;
  position: relative;
  padding-top: 5%;
}

/* line 695, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info img.team-logo, body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info img.team-logo, body.announcements-body .preview-img-container .content-logo-wrapper .event-info img.team-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 702, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info .name-bin, body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info .name-bin, body.announcements-body .preview-img-container .content-logo-wrapper .event-info .name-bin {
  height: 30%;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

/* line 713, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info {
  flex-direction: column;
  padding-left: 2%;
}

/* line 717, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info .logo-bin {
  justify-content: flex-start;
}

/* line 721, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .home-team-info .name-bin {
  text-align: center;
}

/* line 727, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info {
  flex-direction: column;
  padding-right: 2%;
}

/* line 731, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info .logo-bin {
  justify-content: flex-end;
}

/* line 735, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .content-logo-wrapper .away-team-info .name-bin {
  text-align: center;
}

/* line 742, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info {
  /* pregame content module */
  /* game content module */
}

/* line 745, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content {
  padding-top: 2%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column !important;
  /* vs icon */
  /* event info */
}

/* line 753, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content .icon-bin {
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* line 760, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content .icon-bin .vs-icon {
  height: 85%;
  width: auto;
}

/* line 767, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content .date-bin, body.announcements-body .preview-img-container .event-info .pregame-content .time-bin {
  height: 30%;
  display: flex;
  justify-content: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* line 776, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content .date-bin {
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 3.5%;
}

/* line 783, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .pregame-content .time-bin {
  padding-top: 4%;
  align-items: flex-start;
  overflow: hidden;
}

/* line 792, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .game-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column !important;
  padding-top: 2%;
  /* score text large */
  /* game time content */
}

/* line 800, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .game-content .scores-wrapper {
  height: 70%;
  width: 100%;
  display: flex;
}

/* line 805, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .game-content .scores-wrapper .home-score-lrg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50%;
  height: 100%;
}

/* line 813, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .game-content .scores-wrapper .away-score-lrg {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 50%;
  height: 100%;
}

/* line 823, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .preview-img-container .event-info .game-content .score-time-bin {
  height: 30%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 4%;
}

/* line 837, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .button-flex-bin {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 842, app/assets/stylesheets/announcements_form.scss */
body.announcements-body .button-flex-bin .form-check-label {
  font-size: 13px !important;
  margin-right: 24px;
}

/* line 1, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body {
  /* headline help button */
  /* add announcements dropdown */
  /* announcements list table ----------------- */
  /* table stats */
  /* scrollable on desktop */
  /* table settings */
}

/* line 4, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body .announcements-help {
  font-size: 22px;
  width: auto !important;
  margin: 0 6px 0 0;
  padding: 0 0 3px;
}

/* line 11, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body .headline-btn {
  display: flex;
  align-items: center;
}

/* line 17, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body a.btn.btn-main.dropdown-toggle {
  margin-bottom: 0;
}

/* line 21, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body a.btn.btn-main.dropdown-toggle::after {
  display: none;
}

/* line 25, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body ul.dropdown-menu.announcements-menu {
  margin-right: 40px;
  border: 1px solid #d6e0e6;
  padding: 0;
}

/* line 30, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body ul.dropdown-menu.announcements-menu li {
  padding: 8px;
}

/* line 34, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body ul.dropdown-menu.announcements-menu li:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* line 43, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body ul.pagination {
  margin-top: 16px;
}

@media (max-width: 991.98px) {
  /* line 43, app/assets/stylesheets/announcements_index.scss */
  body.announcements-index-body ul.pagination {
    justify-content: flex-start;
  }
}

/* line 50, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body ul.pagination a {
  padding: 4px 12px;
  font-size: 0.9rem;
}

@media only screen and (max-width: 1300px) {
  /* line 58, app/assets/stylesheets/announcements_index.scss */
  body.announcements-index-body .table-responsive-scroll.announcements-table-wrapper {
    overflow-x: scroll !important;
  }
  /* line 61, app/assets/stylesheets/announcements_index.scss */
  body.announcements-index-body table#announcements-table {
    table-layout: fixed;
    min-width: 1000px !important;
  }
}

/* line 68, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table {
  table-layout: fixed;
  width: 100%;
  /* 1st column */
  /* last column column */
  /* tag badges */
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcements-index-body table#announcements-table th:nth-child(1) {
  width: 35%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcements-index-body table#announcements-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcements-index-body table#announcements-table th:nth-child(3) {
  width: 23%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.announcements-index-body table#announcements-table th:nth-child(4) {
  width: 12%;
}

/* line 71, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table th {
  font-size: 11px;
}

/* line 75, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table th:nth-child(1) {
  padding-left: 34px;
}

/* line 79, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table tr:hover {
  background-color: #e6ebf0;
}

/* line 84, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview {
  display: flex;
  align-items: center;
}

/* line 88, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview label.form-check-label {
  display: none;
}

/* line 92, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview label.checkbox-container {
  display: flex;
  align-items: center;
}

/* line 97, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-preview-img-bin {
  background-color: #222222;
  width: 100px;
  height: 70px;
  display: inline-block;
  overflow: hidden;
  margin: 0 8px 0 8px;
  border: 1px solid #d6e0e6;
  border-radius: 4px;
}

/* line 108, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 114, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .source {
  font-size: 13px;
  letter-spacing: 0.2px;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 124, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name {
  display: flex;
  flex-direction: column;
  width: calc(100% - 160px);
}

/* line 129, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name .announcement-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* line 135, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name .badge {
  margin-bottom: -2px;
  color: #ffffff;
  width: auto;
}

/* line 141, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name .badge.badge-manual {
  background: #0000FF;
}

/* line 145, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name .badge.badge-automatic {
  background: #CC9900;
}

/* line 149, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-preview .announcement-name .badge.badge-push {
  background: #773F9B;
}

/* line 156, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 161, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin .icons {
  display: flex;
  align-items: center;
}

/* line 165, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin .icons .fa {
  font-size: 24px;
  margin-left: 2px;
  margin-right: 2px;
}

/* line 176, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin .icons img {
  margin-left: 2px;
  margin-right: 2px;
  width: 20px;
  height: auto;
}

/* line 184, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin .status {
  display: flex;
  align-items: center !important;
  height: 24px;
}

/* line 189, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.announcement-status .info-bin .status .badge {
  font-size: 11px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* line 199, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.action-buttons {
  text-align: right;
}

/* line 202, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.action-buttons a {
  margin-bottom: 0;
  margin-top: 0;
}

/* line 207, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table td.action-buttons .fa {
  font-size: 18px;
  margin: 3px;
}

/* line 214, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table .badge {
  font-size: 85%;
  padding: 4px 8px 4px 8px;
  max-width: 250px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 223, app/assets/stylesheets/announcements_index.scss */
body.announcements-index-body table#announcements-table span.multiple-group-count {
  font-size: 12px;
}

/* line 2, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.app-usage-reports-body table#app-usage-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.app-usage-reports-body table#app-usage-table th:nth-child(2) {
  width: 16%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.app-usage-reports-body table#app-usage-table th:nth-child(3) {
  width: 18%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.app-usage-reports-body table#app-usage-table th:nth-child(4) {
  width: 18%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.app-usage-reports-body table#app-usage-table th:nth-child(5) {
  width: 18%;
}

/* line 5, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table td {
  vertical-align: middle;
}

/* line 9, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table tr:hover {
  background-color: #e6ebf0;
}

/* line 14, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table td.user .fa {
  border-radius: 50%;
  margin-right: 5px;
  -webkit-border-radius: 50%;
  background-color: #18516e;
  color: #cddb3e;
  font-size: 18px;
  padding: 5px 8px;
}

/* line 25, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table td.stats {
  text-align: center;
  line-height: 1.3;
  font-size: 0.86em;
  font-weight: 600;
}

/* line 31, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table td.stats .stat-text {
  font-weight: 800;
}

/* line 36, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge {
  font-size: 0.9em;
  color: #ffffff;
}

/* line 41, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.badmintonscorekeeper {
  background-color: #1B673C;
}

/* line 45, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.baseballscorekeeper {
  background-color: #C60011;
}

/* line 49, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.basketballscorekeeper {
  background-color: #EB8123;
}

/* line 53, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.footballscorekeeper, body.app-usage-reports-body table#app-usage-table .badge.practicefootball {
  background-color: #924B1F;
}

/* line 57, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.lacrossescorekeeper {
  background-color: #903A09;
}

/* line 61, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.producer {
  background-color: #CBA709;
}

/* line 65, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.rugbyscorekeeper {
  background-color: #3572CE;
}

/* line 69, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.soccerscorekeeper {
  background-color: #299D14;
}

/* line 73, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.capture {
  background-color: #1B4ECB;
}

/* line 77, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.volleyballscorekeeper {
  background-color: #3572CE;
}

/* line 81, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.wrestlingscorekeeper, body.app-usage-reports-body table#app-usage-table .badge.wrestlinglescorekeeper {
  background-color: #9531B1;
}

/* line 85, app/assets/stylesheets/app_usage_reports.scss */
body.app-usage-reports-body table#app-usage-table .badge.tennisscorekeeper {
  background-color: #CBA709;
}

/* line 3, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .interior-bin {
  min-height: 100vh;
}

/* line 7, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card-col {
  margin-bottom: 25px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 7, app/assets/stylesheets/branded_content.scss */
  body.branded-content-body .branded-content-card-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 7, app/assets/stylesheets/branded_content.scss */
  body.branded-content-body .branded-content-card-col {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* line 21, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card {
  box-sizing: border-box;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  flex: 1;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

/* line 32, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .header-bin {
  width: 100%;
  padding: 8px;
  font-weight: 700;
  box-sizing: border-box;
  border-bottom: 1px solid #e6ebf0;
}

/* line 40, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin {
  width: 100%;
  padding: 8px;
  overflow: clip;
}

/* line 45, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* line 52, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-secondary {
  padding: 0px;
  margin-bottom: 0px;
  width: 75px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 59, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-secondary .form-group {
  margin-bottom: 0px;
  padding: 0px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 66, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-secondary .form-group label {
  margin-bottom: 0px;
  font-weight: 800;
}

/* line 70, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-secondary .form-group .form-control {
  height: 100%;
  width: 100%;
  padding: 0px;
}

/* line 79, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-underline {
  color: #d32f2f;
  padding: 8px 12px;
  text-decoration: underline;
}

/* line 84, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .btn-row .btn.btn-underline:hover {
  color: #d32f2f !important;
}

/* line 90, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .img-preview-bin {
  width: 100%;
  aspect-ratio: 16/9;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  background-color: #e6ebf0;
  border-radius: 4px;
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* line 103, app/assets/stylesheets/branded_content.scss */
body.branded-content-body .branded-content-card .card-content-bin .img-preview-bin img {
  max-width: 100%;
  max-height: 100%;
}

/* line 6, app/assets/stylesheets/branded_fan_app.scss */
iframe {
  border-style: solid !important;
  border-color: #d6e0e6;
  border-width: 1px;
  background-color: #f6f8fb;
  border-radius: 0.25rem;
  width: 50%;
}

/* Fan App Preview Module */
/* line 16, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin {
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  padding: 5% 15%;
}

/* line 27, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* line 33, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .base-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}

/* line 40, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .events-bin {
  position: absolute;
  bottom: 9.6%;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  height: auto;
  left: 0;
  z-index: 1;
}

/* line 49, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .events-bin .events-img {
  max-width: 100%;
  height: auto;
}

/* line 53, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .events-bin .no-games-message {
  position: absolute;
  right: 6%;
  bottom: 33%;
  width: 21%;
  font-size: 0.55vw;
  color: #A6ACAF;
  z-index: 4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  /* line 53, app/assets/stylesheets/branded_fan_app.scss */
  .fan-app-preview-bin .image-wrapper .events-bin .no-games-message {
    font-size: 1.4vw;
  }
}

/* line 72, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .navigation-bin {
  position: absolute;
  bottom: 2.6%;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  height: auto;
  left: 0;
  z-index: 1;
}

/* line 81, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .navigation-bin .navigation-img {
  max-width: 100%;
  height: auto;
}

/* line 85, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .navigation-bin .custom-link-text {
  position: absolute;
  right: 6%;
  bottom: 33%;
  width: 21%;
  font-size: 0.55vw;
  color: #A6ACAF;
  z-index: 4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  /* line 85, app/assets/stylesheets/branded_fan_app.scss */
  .fan-app-preview-bin .image-wrapper .navigation-bin .custom-link-text {
    font-size: 1.4vw;
  }
}

/* line 104, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .fan-app-logo-bin {
  position: absolute;
  height: 6%;
  width: 11%;
  z-index: 2;
  left: 9%;
  top: 20%;
  overflow: hidden;
  background-color: #1B1C1E;
  box-sizing: border-box;
  border: 1px solid #3C3D42;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 119, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .fan-app-logo-bin img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 127, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .fan-app-header-bin {
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 23%;
  left: 5%;
  top: 16%;
  overflow: hidden;
}

/* line 135, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .fan-app-header-bin img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 142, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper .team-color-div {
  position: absolute;
  margin-left: 8.2%;
  margin-right: 8.2%;
  width: 83.6%;
  height: 50%;
  z-index: 2;
  top: 32%;
  background-color: red;
}

/* line 153, app/assets/stylesheets/branded_fan_app.scss */
.fan-app-preview-bin .image-wrapper #events-message-bin {
  margin-left: 9%;
  margin-right: 9%;
  width: 82%;
  height: 9.8%;
  position: absolute;
  top: 34.7%;
  padding: 0 5%;
  z-index: 3;
  opacity: 1;
  display: flex;
  align-items: center;
  font-size: 0.75vw;
  color: #A2A8AB;
  overflow: hidden;
  line-height: 1.05vw;
}

/* line 1, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body {
  /* remove blue pattern background image */
  background: #e6ebf0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* remove  content padding */
  /* white content area */
}

/* line 11, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .container-fluid {
  padding: 0 !important;
}

/* line 16, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap {
  max-width: 700px;
  position: relative;
  margin: 20px auto;
  padding: 25px 16px 16px 16px;
  background: #ffffff;
  border-radius: 0.25em;
  /* labels font size */
  /* adjust li padding */
  /* blue header bar  with sv logo */
  /* headline and progress indicator */
  /* customer info  list item */
  /* wchecklisst modules */
  /* save button row */
}

@media (max-width: 991.98px) {
  /* line 16, app/assets/stylesheets/customer_checklist.scss */
  body.customer-checklist-body .content-wrap {
    padding: 16px 12px 12px 12px;
  }
}

/* line 28, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap label {
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  /* line 28, app/assets/stylesheets/customer_checklist.scss */
  body.customer-checklist-body .content-wrap label {
    font-size: 13px;
  }
}

/* line 36, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap li {
  padding: 12px 8px;
}

/* line 41, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .header-branding {
  height: 30px;
  width: 100%;
  display: flex;
  background: #0f3950;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  ooverflow: hidden;
}

/* line 54, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .header-branding img {
  max-height: 50%;
  width: auto;
  -o-object-fit: fill;
     object-fit: fill;
}

/* line 62, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .header-info {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #d6e0e6;
  padding-bottom: 16px;
  margin-bottom: 16px;
  margin-top: 30px;
}

/* line 70, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .header-info .title {
  margin-bottom: 0;
}

/* line 73, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .header-info label {
  margin-left: auto;
  margin-bottom: 0;
  font-weight: 800;
}

/* line 82, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-info li {
  display: flex;
  align-items: center;
}

/* line 85, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-info li label.input-info {
  margin-left: auto;
  font-weight: 800;
}

/* line 94, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li {
  padding: 0;
  position: relative;
  margin-bottom: 18px;
  border-radius: 0.25rem !important;
}

/* line 100, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .badge {
  width: auto !important;
  position: absolute;
  top: -11px;
  right: 8px;
  border-radius: 0.2rem;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
}

/* line 110, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .content-container {
  padding: 12px 8px 12px 8px;
  display: flex;
  align-items: center;
}

/* line 115, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .content-container .checkbox-container {
  display: flex;
  align-items: center;
}

/* line 118, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .content-container .checkbox-container input[type="checkbox"] {
  width: 30px;
  height: 30px;
  margin-right: 6px;
}

/* line 125, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .content-container .amount-indicator {
  font-weight: 800;
  margin-right: 8px;
  height: 24px !important;
  width: 24px !important;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6ebf0;
  font-size: 14px;
}

/* line 140, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .customer-checklist li .content-container label.product {
  width: calc(100% - 66px);
}

/* line 148, app/assets/stylesheets/customer_checklist.scss */
body.customer-checklist-body .content-wrap .form-btn-row {
  margin-top: 0;
}

/* line 1, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body {
  /* content in sticky bin */
  /* school stats */
  /* dropdown selection button */
  /* cards header bar */
  /* average attendance field */
  /* average attendance section in expanded view */
}

/* line 3, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body #header-bin {
  z-index: 9999;
}

/* line 7, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .slider-body-2 {
  padding-top: 5px;
}

/* line 11, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .content.slider-content {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 16, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .school-name-clone {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #ffffff;
}

/* line 26, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .stick {
  z-index: 1005;
  margin-bottom: 0px;
  padding: 10px 15px 10px 15px;
  border-bottom: 0px;
}

/* line 36, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .school-info {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  /* line 36, app/assets/stylesheets/dedicated_sequences_index.scss */
  body.dedicated-sequences-index-body .school-info {
    width: calc(100% - 330px);
    margin-bottom: 0px;
  }
}

/* line 46, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .school-info .school-feature-img {
  background-color: #18516e;
  width: 75px !important;
  height: 60px !important;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid #e6ebf0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 58, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .school-info .school-feature-img img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 60px;
  max-height: 60px;
}

/* line 69, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .row.org-stats .body {
  margin-bottom: 0px;
  font-weight: 600;
}

/* line 74, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .row.org-stats ul.pagination {
  margin-top: 16px;
}

@media (max-width: 991.98px) {
  /* line 74, app/assets/stylesheets/dedicated_sequences_index.scss */
  body.dedicated-sequences-index-body .row.org-stats ul.pagination {
    justify-content: flex-start;
  }
}

/* line 81, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .row.org-stats ul.pagination a {
  padding: 4px 12px;
  font-size: 0.9rem;
}

/* line 90, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle {
  transition: all 0.3s ease;
  color: #539ec2;
  background-color: transparent;
  border: 1.5px solid #cee2ed;
}

/* line 98, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu {
  margin-top: 5px;
  z-index: 1020;
  border: 1px solid #d6e0e6;
  padding: 0px;
}

/* line 104, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu .dropdown-item-bin {
  padding: 0px 8px 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #d6e0e6;
  margin-top: -1px;
}

/* line 113, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.dropdown-item {
  padding: 12px 0px 12px 0px;
  width: 350px;
  margin: 0px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #18516e;
}

/* line 123, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.dropdown-item:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.dropdown-item:active {
  background-color: #f6f8fb;
}

/* line 132, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu .dropdown-item-bin:hover {
  background-color: #f6f8fb;
}

/* line 136, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn {
  padding: 6px 0px 6px 0px;
  text-align: center;
  height: 26px !important;
  width: 26px !important;
  display: inline-block !important;
}

/* line 144, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete .fa, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn .fa {
  color: #ffffff;
  font-size: 14px;
}

/* line 150, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete {
  background-color: #d32f2f !important;
}

/* line 154, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn {
  background-color: #18516e !important;
  margin-right: 5px;
  margin-bottom: 0px;
}

/* line 162, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body card-header.small {
  z-index: 1;
}

/* line 167, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-field {
  margin-top: 10px;
}

/* line 170, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-field .small-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #18516e;
  margin-bottom: 4px;
  display: block;
}

/* line 178, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-field .average-attendance-input {
  max-width: 200px;
  font-size: 0.9rem;
  padding: 6px 10px;
  transition: all 0.3s ease;
}

/* line 184, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-field .average-attendance-input.success-flash {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 192, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-section {
  padding: 15px;
  background-color: #f6f8fb;
  border-radius: 5px;
  border: 1px solid #d6e0e6;
}

/* line 198, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-section .small-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #18516e;
  margin-bottom: 4px;
  display: block;
}

/* line 206, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-section .average-attendance-input {
  max-width: 300px;
  font-size: 0.9rem;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

/* line 212, app/assets/stylesheets/dedicated_sequences_index.scss */
body.dedicated-sequences-index-body .average-attendance-section .average-attendance-input.success-flash {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* line 4, app/assets/stylesheets/dedicated_sequences_templates.scss */
body.dedicated-sequences-edit-template-body .sticky-content .content-bin, .dedicated-sequences-new-template-body .sticky-content .content-bin {
  padding: 0px;
}

/* line 7, app/assets/stylesheets/dedicated_sequences_templates.scss */
body.dedicated-sequences-edit-template-body .sticky-content .content-bin .form-group.col-12, .dedicated-sequences-new-template-body .sticky-content .content-bin .form-group.col-12 {
  flex: none;
  width: calc(100% - 275px);
  padding: 0px;
  margin-bottom: 0px;
}

@media (max-width: 767.98px) {
  /* line 7, app/assets/stylesheets/dedicated_sequences_templates.scss */
  body.dedicated-sequences-edit-template-body .sticky-content .content-bin .form-group.col-12, .dedicated-sequences-new-template-body .sticky-content .content-bin .form-group.col-12 {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* line 17, app/assets/stylesheets/dedicated_sequences_templates.scss */
body.dedicated-sequences-edit-template-body .sticky-content .content-bin .form-group.col-12 label, .dedicated-sequences-new-template-body .sticky-content .content-bin .form-group.col-12 label {
  display: none;
}

/* line 22, app/assets/stylesheets/dedicated_sequences_templates.scss */
body.dedicated-sequences-edit-template-body .sticky-content .content-bin .btn.btn-main, .dedicated-sequences-new-template-body .sticky-content .content-bin .btn.btn-main {
  margin-right: 0px;
}

/* line 3, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body #sequence-name-bin {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #d6e0e6;
  margin-top: -1px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
}

/* line 14, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media {
  border: 0 !important;
}

/* line 17, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media th {
  display: none;
}

/* line 21, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media tr {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid rgba(214, 224, 230, 0.7) !important;
  padding: 0 !important;
}

/* line 29, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 33, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media td {
  padding: 0;
}

/* line 37, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .content-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

/* line 43, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-order {
  height: auto;
  width: 40px !important;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

/* line 51, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-preview {
  width: 100px;
  height: auto;
  margin: 5px 10px 5px 0;
  overflow: hidden;
  position: relative;
}

/* line 58, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-preview .preview-img-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(15, 57, 80, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 73, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-preview .preview-img-overlay .label-2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
  font-size: 10px;
}

/* line 81, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-preview .preview-img-overlay:hover {
  opacity: 1;
  cursor: zoom-in;
}

/* line 86, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-preview img {
  width: 100px;
  height: auto;
}

/* line 92, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-name {
  width: calc(100% - 285px);
  height: auto;
  font-size: 13px;
  font-weight: 700;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}

/* line 101, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-name .badge.badge-primary {
  padding: 4px;
  width: 90px;
  margin-bottom: 5px;
}

/* line 108, app/assets/stylesheets/dedicated_sequences_track_media.scss */
body.dedicated-sequences-track-media-body table.tracking-media .media-duration {
  width: 150px;
  height: auto;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  padding-right: 15px;
}

/* line 1, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body {
  /* entire login module positioning */
  /* login credentials fields */
  /* removes chrome auto fill default styles */
  /* links bin with underline buttons */
  /* mobile styles -----------------------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------*/
}

/* line 4, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #login-container {
  top: 25%;
  position: fixed;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  width: 100%;
  /* scorevision logo */
}

/* line 12, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #login-container img {
  width: 90%;
  max-width: 350px;
  margin-bottom: 30px;
}

/* line 20, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #login-panel {
  width: 400px;
  margin: 0 auto;
  /* input field */
  /* login button */
}

/* line 25, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #login-panel .form-control {
  border: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 12px;
  font-family: Nunito Sans, Helvetica, sans-serif;
  font-size: 1rem !important;
  color: #ffffff !important;
  background: none;
  box-shadow: none !important;
}

/* line 38, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #login-panel .btn.btn-main {
  margin-top: 25px;
  margin-bottom: 30px;
}

/* line 45, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body input:-webkit-autofill,
body.devise-sessions-body input:-webkit-autofill:hover,
body.devise-sessions-body input:-webkit-autofill:focus,
body.devise-sessions-body textarea:-webkit-autofill,
body.devise-sessions-body textarea:-webkit-autofill:hover,
body.devise-sessions-body textarea:-webkit-autofill:focus,
body.devise-sessions-body select:-webkit-autofill,
body.devise-sessions-body select:-webkit-autofill:hover,
body.devise-sessions-body select:-webkit-autofill:focus {
  font: 500 16px system-ui !important;
}

/* line 62, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin {
  position: relative;
  text-align: center;
  /* underline buttons */
}

/* line 67, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin .btn.btn-underline {
  opacity: 0.8;
  margin-bottom: 10px;
}

/* line 72, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a {
  outline-color: transparent;
}

/* line 76, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a:link {
  color: #ffffff;
}

/* line 80, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a:visited {
  color: #ffffff;
}

/* line 84, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a:focus {
  text-decoration: none;
  background: #bae498;
}

/* line 89, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a:hover {
  text-decoration: none;
  background: #007bff;
}

/* line 94, app/assets/stylesheets/devise_sessions.scss */
body.devise-sessions-body #sharedlinksbin a:active {
  background: #ffffff;
  color: #007bff;
}

@media screen and (max-width: 610px) {
  /* line 104, app/assets/stylesheets/devise_sessions.scss */
  body.devise-sessions-body #login-panel {
    width: 100%;
  }
}

/* line 1, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body {
  /* login button */
  /* removes chrome auto fill default styles */
  /* underline buttons */
  /* mobile styles -----------------------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------*/
}

/* line 2, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 7, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container {
  width: 500px;
  height: 450px;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  /* input field */
}

/* line 15, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container .content-wrapper {
  padding: 15px 10px 0px 10px;
}

/* line 18, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container .img-bin {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* line 23, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container .img-bin img.logo-img {
  text-align: center;
  display: block;
  width: 300px;
  height: auto;
}

/* line 30, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container label {
  color: #ffffff;
}

/* line 34, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .content-container .form-control {
  border: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 12px;
  font-family: Nunito Sans, Helvetica, sans-serif;
  font-size: 1rem !important;
  color: #ffffff !important;
  background: none;
  box-shadow: none !important;
}

/* line 47, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .access-denied-tag {
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1px;
  font-weight: 700;
  color: #ffffff;
  padding: 20px;
  background-color: #d32f2f;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* line 65, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .subhead, body.devise-two-factor-authentication-body label.control-label, body.devise-two-factor-authentication-body .body {
  color: #ffffff;
}

/* line 69, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .body {
  padding-left: 30px;
  padding-right: 30px;
}

/* line 75, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .btn.btn-main {
  margin-top: 0px;
  margin-bottom: 35px;
}

/* line 81, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body input:-webkit-autofill,
body.devise-two-factor-authentication-body input:-webkit-autofill:hover,
body.devise-two-factor-authentication-body input:-webkit-autofill:focus,
body.devise-two-factor-authentication-body textarea:-webkit-autofill,
body.devise-two-factor-authentication-body textarea:-webkit-autofill:hover,
body.devise-two-factor-authentication-body textarea:-webkit-autofill:focus,
body.devise-two-factor-authentication-body select:-webkit-autofill,
body.devise-two-factor-authentication-body select:-webkit-autofill:hover,
body.devise-two-factor-authentication-body select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px #000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  font: 500 16px system-ui !important;
}

/* line 98, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .btn.btn-underline {
  opacity: 0.8;
  color: #ffffff;
  margin-bottom: 10px;
}

/* line 104, app/assets/stylesheets/devise_two_factor_authentication.scss */
body.devise-two-factor-authentication-body .btn.btn-underline:hover {
  color: #ffffff !important;
  opacity: 0.6;
}

/* line 6, app/assets/stylesheets/display_preview.scss */
#scoreboard {
  position: absolute;
  z-index: 10;
}

/* line 11, app/assets/stylesheets/display_preview.scss */
#sbwrapper {
  position: absolute;
  z-index: 1;
}

/* line 16, app/assets/stylesheets/display_preview.scss */
#sbpano, #customizable, #sbbrand1, #sbbrand2, #sbbrand3, #sbbrand4, #sbbrand5, #sbbrand6, #sbbrand7, #sbbrand8, #sbsig, #baseballCount, #countdown, #clock,
#actTimer, #leaderboard1, #leaderboard2 {
  position: absolute;
  z-index: 2;
}

/* line 22, app/assets/stylesheets/display_preview.scss */
#board-preview {
  position: relative;
}

/* line 25, app/assets/stylesheets/display_preview.scss */
.newline {
  display: block;
}

/* line 29, app/assets/stylesheets/display_preview.scss */
#customizable {
  -o-object-fit: contain;
     object-fit: contain;
}

/* line 1, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body {
  /* report totals */
}

/* line 3, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body table#dms-summary-reports {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#dms-summary-reports th:nth-child(1) {
  width: 55%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#dms-summary-reports th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#dms-summary-reports th:nth-child(3) {
  width: 20%;
}

/* line 8, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body .report-totals-table {
  vertical-align: middle;
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body .report-totals-table th:nth-child(1) {
  width: 50%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body .report-totals-table th:nth-child(2) {
  width: 50%;
}

@media (min-width: 768px) {
  /* line 12, app/assets/stylesheets/dms_summary_reports.scss */
  body.dms-summary-reports-body .report-totals-table td {
    border: 1px solid #d6e0e6;
    background-color: #f6f8fb;
  }
}

/* line 18, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body .report-totals-table td {
  text-align: center;
}

/* line 22, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body .report-totals-table .headline {
  margin-bottom: 0px;
  font-size: 34px;
}

/* line 28, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body table#summary-reports-list {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#summary-reports-list th:nth-child(1) {
  width: 54%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#summary-reports-list th:nth-child(2) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#summary-reports-list th:nth-child(3) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.dms-summary-reports-body table#summary-reports-list th:nth-child(4) {
  width: 16%;
}

/* line 32, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body td.border-bin {
  border: 1px solid #d6e0e6;
}

/* line 36, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 40, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body tr.header {
  background-color: #e6ebf0;
}

/* line 44, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body tr.footer {
  background-color: #fff59d;
}

/* line 48, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body td.report {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 53, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body td.report .icon-bin {
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  background-color: #0f3950;
  border: 1px solid #d6e0e6;
  margin-right: 8px;
}

/* line 64, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body td.report .icon-bin .fa {
  color: #cddb3e;
}

/* line 70, app/assets/stylesheets/dms_summary_reports.scss */
body.dms-summary-reports-body td.action-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

/* line 3, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .interior-bin {
  min-height: 90vh;
}

/* line 8, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .top-nav-list__sortable {
  padding: 16px;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  border-radius: 4px;
}

/* line 17, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .sub-nav-list__sortable {
  padding: 16px;
  background-color: #e6ebf0;
  border-top: 1px solid #d6e0e6;
  box-sizing: border-box;
}

/* line 25, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body ul {
  height: 100% !important;
  width: 100% !important;
  overflow: visible;
}

/* line 31, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .sub-nav-list__wrapper {
  height: 100%;
  width: 100%;
}

/* line 37, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item {
  border-radius: 4px;
  margin-bottom: 8px;
  border-color: #e6ebf0;
  border-width: 0.5px;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

/* line 48, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item .nav-item__content-bin {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 44px;
}

/* line 57, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item .nav_item__drag-handle {
  height: 100%;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-right: 1px solid #e6ebf0;
}

/* line 66, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item .nav_item__drag-handle:hover {
  cursor: grab;
}

/* line 72, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item a.nav_item__content-toggle {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  margin-bottom: 0;
}

/* line 82, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item .nav_item__text {
  flex: 1;
  font-size: 16px;
  line-height: 1;
  color: #0f3950;
  padding-left: 12px;
  font-weight: 600;
}

/* line 92, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body li.nav-item .nav_item__toggle-icon {
  height: 100%;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 102, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .ui-sortable-helper {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

/* line 105, app/assets/stylesheets/documentation_edit_navigation.scss */
body.documentation-edit-navigation-body .ui-sortable-helper .nav_item__drag-handle {
  background-color: #f6f8fb;
}

/* line 1, app/assets/stylesheets/games.scss */
body.games-body {
  /* Game Info Page ----------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
}

/* line 2, app/assets/stylesheets/games.scss */
body.games-body .unclose-btn {
  background: red;
}

/* line 9, app/assets/stylesheets/games.scss */
body.games-body .action-bar {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}

/* line 17, app/assets/stylesheets/games.scss */
body.games-body .action-bar .form-group.col-12 {
  max-width: 300px !important;
  margin-bottom: 0px;
}

/* line 21, app/assets/stylesheets/games.scss */
body.games-body .action-bar .btn.btn-main {
  margin-bottom: 0px;
}

/* line 24, app/assets/stylesheets/games.scss */
body.games-body .action-bar .right-buttons {
  display: flex;
  gap: 10px;
}

/* line 31, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body {
  overflow-y: scroll;
}

/* line 34, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body .url-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

/* line 39, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body .url-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 45, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body .url-section p {
  margin-bottom: 0.5rem;
}

/* line 48, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body .url-section p:last-child {
  margin-bottom: 0;
}

/* line 53, app/assets/stylesheets/games.scss */
body.games-body #streambugModal .modal-body .url-section .copy-btn {
  margin-left: 10px;
}

/* line 60, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content {
  /* print button */
  /* team scores */
  /* game time */
  /* team logo and info bin */
  /* team logo bins - desktop only */
  /* team name & home + away label bin */
  /* vs icon */
  /* inline form input field */
  /* table font size */
}

/* line 68, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .home-team-score, body.games-body .game-stats-info-content .away-team-score {
  color: #18516e;
}

/* line 72, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .away-team-score {
  text-align: right;
}

/* line 77, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .game-time {
  text-align: center;
}

/* line 82, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .col-team-logo-name {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

/* line 90, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .team-logo-bin {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  height: 45px !important;
  width: 45px !important;
  overflow: hidden;
}

/* line 97, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .team-logo-bin img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* line 106, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .team-info-bin {
  width: calc(100% - 53px);
  /* Team Name */
  /* home / away label */
}

@media (max-width: 767.98px) {
  /* line 106, app/assets/stylesheets/games.scss */
  body.games-body .game-stats-info-content .team-info-bin {
    Width: 100%;
  }
}

/* line 114, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .team-info-bin .title.team-name {
  font-size: 18px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  /* line 114, app/assets/stylesheets/games.scss */
  body.games-body .game-stats-info-content .team-info-bin .title.team-name {
    font-size: 14px;
  }
}

/* line 124, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .team-info-bin .body {
  margin-bottom: 0px;
}

@media (max-width: 991.98px) {
  /* line 124, app/assets/stylesheets/games.scss */
  body.games-body .game-stats-info-content .team-info-bin .body {
    font-size: 12px;
  }
}

/* line 134, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .vs-icon {
  padding-top: 5px;
}

/* line 136, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .vs-icon img {
  display: block;
  margin-right: auto;
  margin-left: auto;
  height: 30px;
}

@media (max-width: 767.98px) {
  /* line 136, app/assets/stylesheets/games.scss */
  body.games-body .game-stats-info-content .vs-icon img {
    height: 25px;
    margin-bottom: 10px;
  }
}

/* line 150, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .form-inline {
  margin-bottom: 10px;
}

/* line 156, app/assets/stylesheets/games.scss */
body.games-body .game-stats-info-content .table-sm td {
  font-size: 0.85rem;
}

/* line 3, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .term-defaults__legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: #f6f8fb;
  width: 100%;
  box-sizing: border-box;
  gap: 13px;
  padding: 0px;
}

/* line 15, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .term-defaults__legend a.help-link .fa {
  font-size: 20px !important;
}

/* line 20, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .term-defaults__legend .term-defaults__legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

/* line 27, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .term-defaults__legend .term-defaults__legend-item .legend__indicator {
  height: 12px;
  width: 24px;
  border-radius: 2px;
}

/* line 33, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .term-defaults__legend label {
  font-size: 13px;
}

/* line 37, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .indicator--Organization {
  background-color: #18516e !important;
}

/* line 40, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .indicator--DMS {
  background-color: #8540f5 !important;
}

/* line 43, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .indicator--Term {
  background-color: #3d8bfd !important;
}

/* line 46, app/assets/stylesheets/games_games_defaults.scss */
body.game-defaults-body .indicator--Game {
  background-color: #198754 !important;
}

/* line 1, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body {
  height: 100vh;
  background: #000000 !important;
  /* variables */
  /* ad node -------------------------------------------------------------------------------------------------- */
}

/* line 5, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body .container-fluid, body.games-scoreboard-body #content-col {
  height: 100%;
}

/* line 9, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #content-col {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* line 28, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout {
  display: block;
  width: 100%;
  /* entire scoreboard */
  /* scoreboard padding */
  /* scoring node */
  /* scoring node position node */
  /* team names */
  /* team timeouts */
  /* team scores and period node */
  /* team scores node */
  /* period node */
  /* clock node */
  /* team fouls */
  /* ad node ------------------------------------------------------------------------------------------------------- */
}

/* line 33, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .main_scoreboard {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* line 42, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .content_wrap {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* line 52, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .main_node {
  padding-bottom: calc(38.781% - 0.26041667vw);
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 0.33962264vw;
}

/* line 62, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .node_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* line 74, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .position_container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 4;
  box-sizing: border-box;
}

/* line 83, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .team_names {
  height: 20.29%;
  width: calc(100% - 0.52083333vw);
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

/* line 92, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_team_name_bin,
body.games-scoreboard-body #universal-scoreboard-layout .home_team_name_bin {
  border: 0.36458333vw solid #ffffff;
  box-shadow: 0 0 0 0.26041667vw rgba(18, 18, 18, 0.7);
  color: #ffffff;
  border-top-left-radius: 1.25vw;
  border-top-right-radius: 1.25vw;
  height: 100%;
  width: calc(50% - 0.26041667vw);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  position: relative;
}

/* line 107, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_name,
body.games-scoreboard-body #universal-scoreboard-layout .away_team_name {
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 700;
  text-transform: uppercase;
  height: 100%;
  width: 100%;
  font-size: 5.2vw;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 126, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_name {
  justify-content: flex-start;
  padding-left: 3%;
  padding-right: 1%;
}

/* line 131, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_team_name {
  justify-content: flex-end;
  padding-right: 3%;
  padding-left: 1%;
}

/* line 138, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .timeouts_bin {
  width: calc(100% - 0.52083333vw);
  height: 3.835%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 0.41666667vw;
}

/* line 147, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_timeouts_bin,
body.games-scoreboard-body #universal-scoreboard-layout .away_timeouts_bin {
  width: calc(50% - 0.26041667vw);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 156, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_timeouts_bin :first-child,
body.games-scoreboard-body #universal-scoreboard-layout .away_timeouts_bin :last-child {
  margin-left: 0;
}

/* line 160, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_timeouts_bin {
  left: 0;
}

/* line 163, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_timeouts_bin {
  right: 0;
  flex-direction: row-reverse;
}

/* line 167, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .timeout_light {
  box-sizing: border-box;
  flex: 1;
  height: 100%;
  margin-left: 0.26041667vw;
  background: linear-gradient(180deg, #c64800 0%, #fa7100 50%, #c64800 100%);
  border: 0.26041667vw solid #feba81;
  box-shadow: 0 0 0 0.26041667vw rgba(18, 18, 18, 0.7);
}

/* line 176, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .timeout_light_off {
  background: #515152 !important;
  border: 0.26041667vw solid #757575 !important;
}

/* line 182, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .game_info_bin {
  box-shadow: 0 0 0 0.26041667vw rgba(18, 18, 18, 0.7);
  border-bottom-left-radius: 1.25vw;
  border-bottom-right-radius: 1.25vw;
  width: calc(100% - 0.52083333vw);
  height: 41.375%;
  display: flex;
  align-items: center;
  margin-top: 0.41666667vw;
  margin-left: auto;
  margin-right: auto;
}

/* line 196, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_score_bin,
body.games-scoreboard-body #universal-scoreboard-layout .away_team_score_bin {
  border: 0.36458333vw solid #515152;
  background-color: #32342f;
  width: 40.5538462%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  background-image: url(http://localhost:3000/assets/games/mesh-pattern-d393e6f1ac4737aa6ca4585185d5791d573495f77e3bda2e58a1ef3110351359.svg);
  background-repeat: repeat;
  background-size: 0.65vw;
}

/* line 209, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_score_bin {
  border-bottom-left-radius: 1.25vw;
}

/* line 212, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_team_score_bin {
  border-bottom-right-radius: 1.25vw;
}

/* line 216, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_score,
body.games-scoreboard-body #universal-scoreboard-layout .away_team_score {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  bottom: 4%;
}

/* line 229, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_team_score {
  left: 0;
}

/* line 232, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_team_score {
  right: 0;
}

/* line 235, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .score_text {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  font-family: Score-Regular;
  font-size: 18vw;
}

/* line 245, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .period_content {
  border-top: 0.36458333vw solid #515152;
  border-bottom: 0.36458333vw solid #515152;
  position: relative;
  width: 18.8923077%;
  height: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  position: relative;
}

/* line 254, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .period_content .period_label {
  font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 700;
  color: #3a3c3e;
  text-align: center;
  font-size: 3vw;
  text-transform: uppercase;
}

/* line 265, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .period_content #period_number {
  text-align: center;
  color: #3a3c3e;
  height: 100%;
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  bottom: 7%;
  left: 0;
  font-size: 13vw;
  font-family: Score-Regular;
}

/* line 280, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin {
  width: calc(100% - 0.52083333vw);
  height: 29.395%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.55989584vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  /* clock */
}

/* line 291, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin .clock {
  height: 100%;
  width: 66%;
  background-color: rgba(45, 45, 45, 0.7);
  overflow: hidden;
  position: relative;
}

/* line 298, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin .clock_stripe_bin {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100;
  z-index: -2;
}

/* line 308, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin .clock_stripe {
  height: 6.75%;
  display: block;
  width: 100%;
  margin-top: 0.5%;
  margin-bottom: 0.5%;
  background-color: rgba(45, 45, 45, 0.7);
}

/* line 316, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin .clock_node {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  height: 120%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* line 329, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .clock_bin .clock_text {
  color: #ffffff;
  text-align: center;
  line-height: 1;
  height: 100%;
  font-size: 12vw;
  font-family: Score-Regular;
  margin-top: 0.25%;
}

/* line 341, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_fouls,
body.games-scoreboard-body #universal-scoreboard-layout .home_fouls {
  background-color: #32342f;
  border: 0.36458333vw solid #515152;
  box-shadow: 0 0 0 0.26041667vw rgba(18, 18, 18, 0.7);
  height: 100%;
  position: relative;
  width: 17%;
  box-sizing: border-box;
  background-image: url(http://localhost:3000/assets/games/mesh-pattern-d393e6f1ac4737aa6ca4585185d5791d573495f77e3bda2e58a1ef3110351359.svg);
  background-repeat: repeat;
  background-size: 0.65vw;
  z-index: 5;
}

/* line 355, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .home_fouls {
  border-bottom-left-radius: 1.25vw;
  border-top-left-radius: 1.25vw;
}

/* line 359, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .away_fouls {
  border-bottom-right-radius: 1.25vw;
  border-top-right-radius: 1.25vw;
}

/* line 365, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .ad_node {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  padding-bottom: 15.54031%;
  background-color: #222222;
  color: #ffffff;
  position: relative;
}

/* line 377, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .ad_node_container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* line 387, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .ad_node_content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #3a3c3e;
}

/* line 397, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout .sequence_contents {
  width: 100%;
}

/* line 401, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body #universal-scoreboard-layout video.sequence_contents {
  display: none;
}

/* line 408, app/assets/stylesheets/games_scoreboard.scss */
body.games-scoreboard-body .ad_node .ad_node_container img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  width: 100%;
}

/* line 3, app/assets/stylesheets/games_show.scss */
body.games-show-body .badminton-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .badminton-game-data .game-events-table th:nth-child(1) {
  width: 45%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .badminton-game-data .game-events-table th:nth-child(2) {
  width: 45%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .badminton-game-data .game-events-table th:nth-child(3) {
  width: 10%;
}

/* line 9, app/assets/stylesheets/games_show.scss */
body.games-show-body .baseball-game-data .box-score-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .box-score-table th:nth-child(1) {
  width: 30%;
}

/* line 13, app/assets/stylesheets/games_show.scss */
body.games-show-body .baseball-game-data .game-roster-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-roster-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-roster-table th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-roster-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-roster-table th:nth-child(4) {
  width: 20%;
}

/* line 17, app/assets/stylesheets/games_show.scss */
body.games-show-body .baseball-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(1) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(4) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(5) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .baseball-game-data .game-events-table th:nth-child(6) {
  width: 10%;
}

/* line 23, app/assets/stylesheets/games_show.scss */
body.games-show-body .basketball-game-data .game-roster-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-roster-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-roster-table th:nth-child(2) {
  width: 60%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-roster-table th:nth-child(3) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-roster-table th:nth-child(4) {
  width: 15%;
}

/* line 27, app/assets/stylesheets/games_show.scss */
body.games-show-body .basketball-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(1) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(4) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(5) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .basketball-game-data .game-events-table th:nth-child(6) {
  width: 10%;
}

/* line 33, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .home-team-score, body.games-show-body .equestrian-game-data .away-team-score {
  font-size: 30px;
}

/* line 37, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .equestrian-game-info {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .equestrian-game-info th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .equestrian-game-info th:nth-child(2) {
  width: 70%;
}

/* line 41, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .equestrian-game-judges {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .equestrian-game-judges th:nth-child(1) {
  width: 35%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .equestrian-game-judges th:nth-child(2) {
  width: 65%;
}

/* line 45, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(1) {
  width: 4%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(2) {
  width: 21%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(3) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(4) {
  width: 11%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(5) {
  width: 12%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(6) {
  width: 11%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(7) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(8) {
  width: 21%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-1 th:nth-child(9) {
  width: 4%;
}

/* line 49, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(1) {
  width: 4%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(2) {
  width: 19%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(3) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(4) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(5) {
  width: 7%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(6) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(7) {
  width: 7%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(8) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(9) {
  width: 8%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(10) {
  width: 19%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-2 th:nth-child(11) {
  width: 4%;
}

/* line 53, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(1) {
  width: 4%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(2) {
  width: 19%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(3) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(4) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(5) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(6) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(7) {
  width: 7%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(8) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(9) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(10) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(11) {
  width: 6%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(12) {
  width: 19%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .equestrian-game-data .game-events-table.judge-count-3 th:nth-child(13) {
  width: 4%;
}

/* line 58, app/assets/stylesheets/games_show.scss */
body.games-show-body .equestrian-game-data .game-events-table tr.event-totals-row {
  border-top: 2px solid black;
}

/* line 65, app/assets/stylesheets/games_show.scss */
body.games-show-body .football-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .football-game-data .game-events-table th:nth-child(1) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .football-game-data .game-events-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .football-game-data .game-events-table th:nth-child(3) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .football-game-data .game-events-table th:nth-child(4) {
  width: 35%;
}

/* line 71, app/assets/stylesheets/games_show.scss */
body.games-show-body .lacrosse-game-data .game-roster-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-roster-table th:nth-child(1) {
  width: 50%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-roster-table th:nth-child(2) {
  width: 50%;
}

/* line 75, app/assets/stylesheets/games_show.scss */
body.games-show-body .lacrosse-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-events-table th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-events-table th:nth-child(2) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-events-table th:nth-child(3) {
  width: 13%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .lacrosse-game-data .game-events-table th:nth-child(4) {
  width: 37%;
}

/* line 81, app/assets/stylesheets/games_show.scss */
body.games-show-body .rugby-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .rugby-game-data .game-events-table th:nth-child(1) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .rugby-game-data .game-events-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .rugby-game-data .game-events-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .rugby-game-data .game-events-table th:nth-child(4) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .rugby-game-data .game-events-table th:nth-child(5) {
  width: 20%;
}

/* line 87, app/assets/stylesheets/games_show.scss */
body.games-show-body .soccer-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .soccer-game-data .game-events-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .soccer-game-data .game-events-table th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .soccer-game-data .game-events-table th:nth-child(3) {
  width: 20%;
}

/* line 93, app/assets/stylesheets/games_show.scss */
body.games-show-body .volleyball-game-data .box-score-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .box-score-table th:nth-child(1) {
  width: 40%;
}

/* line 97, app/assets/stylesheets/games_show.scss */
body.games-show-body .volleyball-game-data .game-roster-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-roster-table th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-roster-table th:nth-child(2) {
  width: 60%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-roster-table th:nth-child(3) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-roster-table th:nth-child(4) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-roster-table th:nth-child(5) {
  width: 10%;
}

/* line 101, app/assets/stylesheets/games_show.scss */
body.games-show-body .volleyball-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-events-table th:nth-child(1) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-events-table th:nth-child(2) {
  width: 35%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-events-table th:nth-child(3) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-events-table th:nth-child(4) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .volleyball-game-data .game-events-table th:nth-child(5) {
  width: 10%;
}

/* line 107, app/assets/stylesheets/games_show.scss */
body.games-show-body .wrestling-game-data .game-events-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .wrestling-game-data .game-events-table th:nth-child(1) {
  width: 14%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .wrestling-game-data .game-events-table th:nth-child(2) {
  width: 38%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .wrestling-game-data .game-events-table th:nth-child(3) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .wrestling-game-data .game-events-table th:nth-child(4) {
  width: 5%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.games-show-body .wrestling-game-data .game-events-table th:nth-child(5) {
  width: 38%;
}

/* SD-9172: Lifted from moments.scss */
/* line 2, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body {
  /* Media Reps Chart */
  /* School / Games Media List */
  /* Terms of Service */
}

/* line 6, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews::-webkit-scrollbar {
  height: 10px;
}

/* line 10, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 grey !important;
  background-color: #f6f8fb;
  border-bottom: 1px solid #d6e0e6;
  border-radius: 0;
  border-left: 1px solid #d6e0e6;
}

/* line 18, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews::-webkit-scrollbar-thumb {
  background-color: #b0bec5;
  border-radius: 10px;
}

/* line 24, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin {
  position: relative;
}

/* line 27, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel {
  width: 80% !important;
  align-items: flex-start;
}

/* line 31, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel .carousel-inner {
  background-color: #f6f8fb;
}

/* line 35, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel .carousel-item, body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel .carousel-item.active {
  height: auto;
  overflow: hidden;
}

/* line 40, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel img, body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel video {
  max-width: 100%;
  height: auto;
}

/* line 45, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin #sequenceCarousel video {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}

/* line 54, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin .carousel-control-prev, body.home-dedicated-sponsor-body .carousel-content-bin .carousel-control-next {
  width: 10%;
}

/* line 58, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .carousel-content-bin .carousel-control-prev-icon, body.home-dedicated-sponsor-body .carousel-content-bin .carousel-control-next-icon {
  background-color: #0f3950;
  border-radius: 100px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 50% 50%;
  margin-bottom: 0px;
}

/* line 72, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews {
  display: flex;
  position: relative;
  overflow-x: scroll !important;
  width: 100%;
  padding-left: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  list-style-type: none;
  border-right: 1px solid #d6e0e6;
  border-left: 1px solid #d6e0e6;
}

/* line 84, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews li {
  padding: 8px 8px 8px 8px;
  flex: 0 0 auto;
  transition: all 0.4s ease;
}

/* line 89, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image {
  background-color: #18516e;
  width: calc(200px - 16px) !important;
  height: 113px;
  margin-bottom: 5px;
  display: block;
  position: relative;
  overflow: hidden;
}

/* line 99, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image img {
  max-width: 100%;
  max-height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-left: auto;
}

/* line 117, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body img.media-rep-chart {
  border: 1px solid #d6e0e6;
}

/* line 121, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .instruction-feature {
  border: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 126, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .instruction-feature .instruction-feature-bin .content-area {
  padding: 20px 10px 20px 10px;
}

/* line 129, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .instruction-feature .instruction-feature-bin .content-area .title {
  margin-bottom: 10px;
}

/* line 135, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .instruction-feature .instruction-image-bin {
  padding: 0px;
  background-color: #0f3950;
}

/* line 139, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .instruction-feature .instruction-image-bin img {
  margin: 0 auto;
}

/* line 146, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .header-col-bin {
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  width: 100%;
  background-color: #0f3950;
}

/* line 153, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .header-col-bin .header-label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

/* line 161, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body #games-bin {
  box-sizing: border-box;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 167, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body #games-bin .empty-set-bin {
  height: 200px;
  width: 100%;
  border-bottom: 1px solid #e6ebf0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* line 177, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body #games-bin .org-bin, body.home-dedicated-sponsor-body #games-bin .opponent-time-bin, body.home-dedicated-sponsor-body #games-bin .season-bin, body.home-dedicated-sponsor-body #games-bin .time-bin, body.home-dedicated-sponsor-body #games-bin .media-bin {
  font-size: 13px;
}

/* line 181, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body #games-bin .game-row {
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
}

/* line 187, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body #games-bin .game-row .media-bin {
  text-align: right;
  align-items: center;
}

/* line 195, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .btn-outline-secondary {
  font-size: 13px;
  color: #6c757d;
  font-weight: 600;
}

/* line 200, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .btn-outline-secondary:hover {
  color: #ffffff;
}

/* line 206, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content {
  background-color: #ffffff;
  font-size: 13px;
}

/* line 210, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content .row {
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
}

/* line 216, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content .game-media-row {
  border-bottom: 1px solid #d6e0e6;
}

/* line 220, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content .game-media-sponsor-image-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}

/* line 229, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content .game-media-sponsor-image-bin .game-media-sponsor-image {
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  width: calc(16.66% - 8px);
  aspect-ratio: 3/2;
  margin: 4px;
  background-color: #e6ebf0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 242, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .game-media-bin-content .game-media-sponsor-image-bin .game-media-sponsor-image img {
  max-width: 100%;
  height: auto;
}

/* line 251, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin: 0 auto;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

/* line 261, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin .header-bin {
  background-color: #0f3950;
  padding: 16px;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
  border-bottom: 3px solid #cddb3e;
}

/* line 270, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin .content-bin {
  padding-top: 16px;
}

/* line 273, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin .content-bin .subhead-bin {
  padding-bottom: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
}

/* line 279, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin .content-bin .pre-scrollable {
  padding-bottom: 32px;
  padding-top: 8px;
  max-height: 400px;
  height: 400px;
}

/* line 287, app/assets/stylesheets/home_dedicated_sponsor.scss */
body.home-dedicated-sponsor-body .terms-bin .footer-bin {
  box-sizing: border-box;
  border-top: 1px solid #d6e0e6;
  padding: 16px;
  width: 100%;
}

/* line 1, app/assets/stylesheets/home_index.scss */
body.home-body {
  /* Media reps Dashboard */
  /* teerms of service */
}

/* line 3, app/assets/stylesheets/home_index.scss */
body.home-body .carousel-interior-bin {
  box-shadow: none !important;
  background: #0f3950;
  padding: 0px;
  overflow: hidden;
}

/* line 9, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel {
  max-width: 1000px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

/* line 18, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel a.carousel-control-next {
  justify-content: flex-end;
  padding-right: 16px;
}

/* line 23, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel a.carousel-control-prev {
  justify-content: flex-start;
  padding-left: 16px;
}

/* line 28, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel .carousel-control-next-icon, body.home-body #marketingCarousel .carousel-control-prev-icon {
  padding: 14px;
  background-color: #0f3950;
  border-radius: 9999px;
  background-repeat: no-repeat;
  background-size: 12px;
}

/* line 36, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel .carousel-inner {
  background: #0f3950;
}

/* line 39, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel a.carousel-item-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  margin-bottom: 0px;
}

/* line 50, app/assets/stylesheets/home_index.scss */
body.home-body #marketingCarousel img {
  aspect-ratio: 4/1;
  max-width: 100%;
}

/* line 57, app/assets/stylesheets/home_index.scss */
body.home-body .info-card {
  margin-bottom: 20px;
}

/* line 60, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin {
  padding-left: 0px;
  padding-right: 0px;
  overflow: hidden;
  height: 100%;
}

/* line 66, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .header-bin {
  padding: 8px 20px;
  background-color: #cee2ed;
}

/* line 70, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .header-bin .subhead {
  margin-bottom: 0px;
}

/* line 75, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .content {
  padding: 16px 20px;
}

/* line 78, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .content label.col-label {
  padding-bottom: 4px;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
  width: 100%;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

/* line 89, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .content a {
  color: #007bff;
}

/* line 93, app/assets/stylesheets/home_index.scss */
body.home-body .info-card .interior-bin.info-card-bin .content a:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* line 102, app/assets/stylesheets/home_index.scss */
body.home-body .my-apps-card {
  margin-bottom: 25px;
}

/* line 106, app/assets/stylesheets/home_index.scss */
body.home-body .my-apps-card .my-apps-card-content img.app-logo {
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 118, app/assets/stylesheets/home_index.scss */
body.home-body .my-apps-card .my-apps-card-content .scorekeeper-content .my-apps-button-bin {
  margin: 0 15px 20px 15px;
}

/* line 121, app/assets/stylesheets/home_index.scss */
body.home-body .my-apps-card .my-apps-card-content .scorekeeper-content .my-apps-button-bin .btn.btn-main.btn-block {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* line 130, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature-bin, body.home-body .instruction-image-bin {
  display: flex;
  align-items: center !important;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 130, app/assets/stylesheets/home_index.scss */
  body.home-body .instruction-feature-bin, body.home-body .instruction-image-bin {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 130, app/assets/stylesheets/home_index.scss */
  body.home-body .instruction-feature-bin, body.home-body .instruction-image-bin {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  /* line 130, app/assets/stylesheets/home_index.scss */
  body.home-body .instruction-feature-bin, body.home-body .instruction-image-bin {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 153, app/assets/stylesheets/home_index.scss */
body.home-body img.media-rep-chart {
  border: 1px solid #d6e0e6;
}

/* line 157, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature {
  border: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 162, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature .instruction-feature-bin .content-area {
  padding: 20px 10px 20px 10px;
}

/* line 164, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature .instruction-feature-bin .content-area .title {
  margin-bottom: 10px;
}

/* line 169, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature .instruction-image-bin {
  padding: 0px;
  background-color: #0f3950;
}

/* line 172, app/assets/stylesheets/home_index.scss */
body.home-body .instruction-feature .instruction-image-bin img {
  margin: 0 auto;
}

/* line 179, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin: 0 auto;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

/* line 188, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin .header-bin {
  background-color: #0f3950;
  padding: 16px;
  font-size: 18px;
  color: #ffffff;
  width: 100%;
  border-bottom: 3px solid #cddb3e;
}

/* line 196, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin .content-bin {
  padding-top: 16px;
}

/* line 198, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin .content-bin .subhead-bin {
  padding-bottom: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid #d6e0e6;
}

/* line 203, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin .content-bin .pre-scrollable {
  padding-bottom: 32px;
  padding-top: 8px;
  max-height: 400px;
  height: 400px;
}

/* line 210, app/assets/stylesheets/home_index.scss */
body.home-body .terms-bin .footer-bin {
  box-sizing: border-box;
  border-top: 1px solid #d6e0e6;
  padding: 16px;
  width: 100%;
}

/* line 2, app/assets/stylesheets/image_display_full_size.scss */
body.image_display_full_size_body .full-size {
  width: 100%;
}

/* 7) Variables ----------------------------------------------------------------------------------------------------- */
/* Color Variables -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Warning Text --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 26, app/assets/stylesheets/global/7--sv-variables.scss */
.warning-text {
  color: #d32f2f;
}

/* Typography Adjustments ----------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* monospaced font for clock on streaming interface */
@font-face {
  font-family: "Score-Regular";
  /* path is relative to app/assets/fonts */
  src: url(http://localhost:3000/assets/Score-Regular-829b4c5436e53784f42ad9955e968da69be943528ef4f456f7a079d24c8e462f.otf) format("truetype");
}

/* line 40, app/assets/stylesheets/global/7--sv-variables.scss */
body {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #18516e;
}

/* line 48, app/assets/stylesheets/global/7--sv-variables.scss */
.display, .headline, .title, .subhead, .body, .label-1, .label-2, .menu, .text-button, a {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin-bottom: 0.35em;
}

/* Typography Classes --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 59, app/assets/stylesheets/global/7--sv-variables.scss */
.display {
  font-size: 34px;
  line-height: 1.20588em;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: inherit;
  color: #ffffff;
}

/* line 68, app/assets/stylesheets/global/7--sv-variables.scss */
.headline {
  font-size: 26px;
  line-height: 1.35417em;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  color: #0f3950;
}

/* line 77, app/assets/stylesheets/global/7--sv-variables.scss */
.title {
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 86, app/assets/stylesheets/global/7--sv-variables.scss */
.subhead {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 95, app/assets/stylesheets/global/7--sv-variables.scss */
.body {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 104, app/assets/stylesheets/global/7--sv-variables.scss */
.label-1 {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 113, app/assets/stylesheets/global/7--sv-variables.scss */
.label-2 {
  font-size: 11px;
  line-height: 1.71429em;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #18516e;
}

/* Mobile Typography ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /* line 127, app/assets/stylesheets/global/7--sv-variables.scss */
  .display {
    font-size: 26px;
  }
  /* line 131, app/assets/stylesheets/global/7--sv-variables.scss */
  .headline {
    font-size: 22px;
  }
  /* line 135, app/assets/stylesheets/global/7--sv-variables.scss */
  .title {
    font-size: 18px;
  }
  /* line 139, app/assets/stylesheets/global/7--sv-variables.scss */
  .subhead {
    font-size: 14px;
  }
  /* line 143, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-1 {
    font-size: 11px;
  }
  /* line 147, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-2 {
    font-size: 10px;
  }
}

/* 8) Helpers, Mixins and Placeholders  ----------------------------------------------------------------------------- */
/* Helpers -------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Margins and Padding ---------------------------------------------------------------------------------------------- */
/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-0 {
  margin-top: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-0 {
  padding-top: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-0 {
  margin-bottom: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-0 {
  padding-bottom: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-0 {
  margin-left: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-0 {
  padding-left: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-0 {
  margin-right: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-0 {
  padding-right: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-1 {
  margin-top: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-1 {
  padding-top: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-1 {
  margin-bottom: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-1 {
  padding-bottom: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-1 {
  margin-left: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-1 {
  padding-left: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-1 {
  margin-right: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-1 {
  padding-right: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-2 {
  margin-top: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-2 {
  padding-top: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-2 {
  margin-bottom: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-2 {
  padding-bottom: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-2 {
  margin-left: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-2 {
  padding-left: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-2 {
  margin-right: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-2 {
  padding-right: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-3 {
  margin-top: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-3 {
  padding-top: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-3 {
  margin-bottom: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-3 {
  padding-bottom: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-3 {
  margin-left: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-3 {
  padding-left: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-3 {
  margin-right: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-3 {
  padding-right: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-4 {
  margin-top: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-4 {
  padding-top: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-4 {
  margin-bottom: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-4 {
  padding-bottom: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-4 {
  margin-left: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-4 {
  padding-left: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-4 {
  margin-right: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-4 {
  padding-right: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-5 {
  margin-top: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-5 {
  padding-top: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-5 {
  margin-bottom: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-5 {
  padding-bottom: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-5 {
  margin-left: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-5 {
  padding-left: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-5 {
  margin-right: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-5 {
  padding-right: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-6 {
  margin-top: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-6 {
  padding-top: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-6 {
  margin-bottom: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-6 {
  padding-bottom: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-6 {
  margin-left: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-6 {
  padding-left: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-6 {
  margin-right: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-6 {
  padding-right: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-7 {
  margin-top: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-7 {
  padding-top: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-7 {
  margin-bottom: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-7 {
  padding-bottom: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-7 {
  margin-left: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-7 {
  padding-left: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-7 {
  margin-right: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-7 {
  padding-right: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-8 {
  margin-top: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-8 {
  padding-top: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-8 {
  margin-bottom: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-8 {
  padding-bottom: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-8 {
  margin-left: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-8 {
  padding-left: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-8 {
  margin-right: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-8 {
  padding-right: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-9 {
  margin-top: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-9 {
  padding-top: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-9 {
  margin-bottom: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-9 {
  padding-bottom: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-9 {
  margin-left: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-9 {
  padding-left: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-9 {
  margin-right: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-9 {
  padding-right: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-10 {
  margin-top: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-10 {
  padding-top: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-10 {
  padding-bottom: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-10 {
  margin-left: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-10 {
  padding-left: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-10 {
  margin-right: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-10 {
  padding-right: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-15 {
  margin-top: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-15 {
  padding-top: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-15 {
  margin-bottom: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-15 {
  padding-bottom: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-15 {
  margin-left: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-15 {
  padding-left: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-15 {
  margin-right: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-15 {
  padding-right: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-20 {
  margin-top: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-20 {
  padding-top: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-20 {
  margin-bottom: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-20 {
  padding-bottom: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-20 {
  margin-left: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-20 {
  padding-left: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-20 {
  margin-right: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-20 {
  padding-right: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-25 {
  margin-top: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-25 {
  padding-top: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-25 {
  margin-bottom: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-25 {
  padding-bottom: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-25 {
  margin-left: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-25 {
  padding-left: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-25 {
  margin-right: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-25 {
  padding-right: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-30 {
  margin-top: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-30 {
  padding-top: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-30 {
  margin-bottom: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-30 {
  padding-bottom: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-30 {
  margin-left: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-30 {
  padding-left: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-30 {
  margin-right: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-30 {
  padding-right: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-35 {
  margin-top: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-35 {
  padding-top: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-35 {
  margin-bottom: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-35 {
  padding-bottom: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-35 {
  margin-left: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-35 {
  padding-left: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-35 {
  margin-right: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-35 {
  padding-right: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-40 {
  margin-top: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-40 {
  padding-top: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-40 {
  margin-bottom: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-40 {
  padding-bottom: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-40 {
  margin-left: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-40 {
  padding-left: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-40 {
  margin-right: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-40 {
  padding-right: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-45 {
  margin-top: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-45 {
  padding-top: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-45 {
  margin-bottom: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-45 {
  padding-bottom: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-45 {
  margin-left: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-45 {
  padding-left: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-45 {
  margin-right: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-45 {
  padding-right: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-50 {
  margin-top: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-50 {
  padding-top: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-50 {
  margin-bottom: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-50 {
  padding-bottom: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-50 {
  margin-left: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-50 {
  padding-left: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-50 {
  margin-right: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-50 {
  padding-right: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-75 {
  margin-top: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-75 {
  padding-top: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-75 {
  margin-bottom: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-75 {
  padding-bottom: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-75 {
  margin-left: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-75 {
  padding-left: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-75 {
  margin-right: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-75 {
  padding-right: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-85 {
  margin-top: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-85 {
  padding-top: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-85 {
  margin-bottom: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-85 {
  padding-bottom: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-85 {
  margin-left: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-85 {
  padding-left: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-85 {
  margin-right: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-85 {
  padding-right: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-100 {
  margin-top: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-100 {
  padding-top: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-100 {
  margin-bottom: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-100 {
  padding-bottom: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-100 {
  margin-left: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-100 {
  padding-left: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-100 {
  margin-right: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-100 {
  padding-right: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-115 {
  margin-top: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-115 {
  padding-top: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-115 {
  margin-bottom: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-115 {
  padding-bottom: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-115 {
  margin-left: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-115 {
  padding-left: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-115 {
  margin-right: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-115 {
  padding-right: 115px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-0 {
  margin: 0px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-0 {
  padding: 0px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-1 {
  margin: 1px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-1 {
  padding: 1px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-2 {
  margin: 2px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-2 {
  padding: 2px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-3 {
  margin: 3px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-3 {
  padding: 3px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-4 {
  margin: 4px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-4 {
  padding: 4px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-5 {
  margin: 5px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-5 {
  padding: 5px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-6 {
  margin: 6px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-6 {
  padding: 6px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-7 {
  margin: 7px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-7 {
  padding: 7px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-8 {
  margin: 8px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-8 {
  padding: 8px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-9 {
  margin: 9px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-9 {
  padding: 9px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-10 {
  margin: 10px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-10 {
  padding: 10px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-15 {
  margin: 15px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-15 {
  padding: 15px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-20 {
  margin: 20px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-20 {
  padding: 20px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-25 {
  margin: 25px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-25 {
  padding: 25px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-30 {
  margin: 30px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-30 {
  padding: 30px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-35 {
  margin: 35px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-35 {
  padding: 35px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-40 {
  margin: 40px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-40 {
  padding: 40px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-45 {
  margin: 45px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-45 {
  padding: 45px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-50 {
  margin: 50px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-50 {
  padding: 50px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-75 {
  margin: 75px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-75 {
  padding: 75px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-85 {
  margin: 85px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-85 {
  padding: 85px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-100 {
  margin: 100px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-100 {
  padding: 100px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-115 {
  margin: 115px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-115 {
  padding: 115px !important;
}

/* Mixins --------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* table column width generator ------------------------------------------------------------------------------------- */
/* Object Positioning ----------------------------------------------------------------------------------------------- */
/* Transitions ------------------------------------------------------------------------------------------------------ */
/* Opacity ---------------------------------------------------------------------------------------------------------- */
/* Centerer --------------------------------------------------------------------------------------------------------- */
/* Placeholders ----------------------------------------------------------------------------------------------------- */
/* Box Shadow ------------------------------------------------------------------------------------------------------- */
/* line 129, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#header-bin #profile-bin #profile-slider, .sv-dropdown-menu, .sv-dropdown-bin, #subheader-bin #season-bin, .interior-bin, body.customer-checklist-body .content-wrap {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* line 133, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .jumbotron, body.media-performance-reports-body .jumbotron, .popover, .close-btn, .filter__search-select__dropdown-bin, .card, .card .card-header.large .feature-image, .card .checkmark, .card.practice-app-card .team-matchup-bin img.team-logo, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.season-card .card-body .feature-image, .card.meet-card .card-body .feature-image, .card.team-card .card-body .feature-image, .card.player-card .card-body .feature-image, .tooltip-inner, .card-header a.btn.btn-main, .card-header a.btn.btn-delete, .number-bin-button, .dropdown-menu.filter-dropdown-1, .bootstrap-datetimepicker-widget.dropdown-menu {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14), 0 2px 3px rgba(0, 0, 0, 0.17);
}

/* line 137, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#sidebar-navpanel {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 2px 13px rgba(0, 0, 0, 0.25);
}

/* Border Radius ---------------------------------------------------------------------------------------------------- */
/* line 144, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.data-header {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-border-top-left-radius: 7px;
  -webkit-border-top-left-radius: 7px;
  -moz-border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -khtml-border-top-left-radius: 7px;
  -khtml-border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 172, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.practices-body #user-warning-bin .warning-content, body.moments-body .active-media-info-container .approval-module, body.moments-body .active-media-info-container .clip-preview-bin .video-preview, body.moments-body ul#preview-clips li .preview-image img, #subheader-bin #season-bin, .alert-primary, .alert-secondary, .alert-success, .alert-danger, .alert-warning, .alert-info, .alert-light, .alert-dark, .close-btn, .notification-bin, #upcoming-games-carousel.carousel .carousel-inner, .card, .col-media-cards .card.add-card a.btn-file.card-link, .card.sequence-media-card .card-body .media-type .group-name, .card.sequence-media-card .card-body .media-type .media-pool-indicator, .card.sequence-media-card .card-body .media-type .sequence-indicator, .card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin .status-indicator, pre, .col-av-support-image-cards .card.add-card a.btn-file.card-link, .manage-carousel-bin > div a.btn-file, body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file, body.devise-two-factor-authentication-body .content-container, body.devise-two-factor-authentication-body .access-denied-tag, body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 7px;
}

/* line 182, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, .btn-file-upload, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50px;
}

/* line 192, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.stream-body .left-panel .org-logo, .practices-upload-media-body .card-number, .card .checkmark, .card.event-card .card-body .event-options-bin a.btn.btn-main, .card.practice-app-card .practice-options-bin a.btn.btn-main, .card.media-card .card-footer .url-status-indicator, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.meet-card .card-footer .game-options-bin a.btn.btn-main, .col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main, .card.team-card .card-body ul .team-color-bin, .card.rma-card .card-body .card-footer .url-status-indicator, .card-header a.btn.btn-main, .card-header a.btn.btn-delete, .number-bin-button, .status-notice-none, .status-notice-active, body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin, body.customer-checklist-body .content-wrap .customer-checklist li .content-container .amount-indicator, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50%;
}

/* Buttons Base ----------------------------------------------------------------------------------------------------- */
/* line 209, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, .btn-file-upload, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle {
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 12px 20px 10px 20px;
  font-size: 11px;
  line-height: 10px;
  letter-spacing: 0.75px;
  font-weight: 900;
  text-transform: uppercase;
}

/* "Add" Cards Link Wrapper ----------------------------------------------------------------------------------------- */
/* "Add" Cards Icon ------------------------------------------------------------------------------------------------- */
/* Cards Feature Image Sizing --------------------------------------------------------------------------------------- */
/* line 260, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods td .media-scroll img, .slider-bin .feature-bin .media-preview-image, .card .card-hero-image, .card .card-media-scroll img, .card.sequence-media-card .card-body .feature-image-bin .feature-image {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0f3950;
  background-position: center;
  position: relative;
}

/* Underline Button Styles ------------------------------------------------------------------------------------------ */
/* line 271, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline, body.organization-settings-body a.btn.btn-underline, body.organization-reports-body .media-reports-info-table .btn.btn-reports, body.organization-reports-body .btn.btn-underline, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports, .filter-bin a.btn.btn-secondary, .filter-bin button.btn.btn-secondary, .btn.btn-underline, a.btn.btn-help-modal, body.admin-advanced-av-presets-body .btn.btn-underline, body.admin-api-clients-body .admin-api-clients-table a, body.admin-app-versions-body .btn.btn-underline, body.admin-av-presets-body a.btn.btn-underline, body.admin-av-presets-body button.btn.btn-underline, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-dashboard-game-support-body .card.game-support-card .season-name a, body.admin-dashboard-game-support-body .card.game-support-card .game-number a, body.admin-dashboard-game-support-body .card.game-support-card .game-date a, body.admin-dashboard-game-support-body .card.game-support-card .team-name a, body.admin-dashboard-game-support-body .card.game-support-card .team-number a, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a, body.admin-dashboard-index-body #admin-school-alerts-table a, body.admin-dashboard-index-body #delayed-jobs-table a, body.admin-dashboard-index-body #admin-current-games-table a, body.admin-dashboard-index-body #admin-games-not-started-table a, body.admin-dashboard-index-body #admin-closed-games-table a, body.admin-dashboard-index-body #admin-forcast-table a, body.admin-display-apps-body .interior-bin a, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-scorekeepers-body .interior-bin a, a.btn.btn-underline, body.games-body .game-stats-info-content .btn-underline {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline;
  color: #0f3950;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 288, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body a.btn.btn-underline:hover, body.organization-settings-body a.btn.btn-underline:hover, body.organization-reports-body .media-reports-info-table .btn.btn-reports:hover, body.organization-reports-body .btn.btn-underline:hover, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports:hover, .filter-bin a.btn.btn-secondary:hover, .filter-bin button.btn.btn-secondary:hover, .btn.btn-underline:hover, a.btn.btn-help-modal:hover, body.admin-advanced-av-presets-body .btn.btn-underline:hover, body.admin-api-clients-body .admin-api-clients-table a:hover, body.admin-app-versions-body .btn.btn-underline:hover, body.admin-av-presets-body a.btn.btn-underline:hover, body.admin-av-presets-body button.btn.btn-underline:hover, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-dashboard-game-support-body .card.game-support-card .season-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-date a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a:hover, body.admin-dashboard-index-body #admin-school-alerts-table a:hover, body.admin-dashboard-index-body #delayed-jobs-table a:hover, body.admin-dashboard-index-body #admin-current-games-table a:hover, body.admin-dashboard-index-body #admin-games-not-started-table a:hover, body.admin-dashboard-index-body #admin-closed-games-table a:hover, body.admin-dashboard-index-body #admin-forcast-table a:hover, body.admin-display-apps-body .interior-bin a:hover, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-scorekeepers-body .interior-bin a:hover, body.games-body .game-stats-info-content .btn-underline:hover {
  background-image: none !important;
  background-color: transparent !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* line 296, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete, .filter-bin a.btn.btn-delete, .filter-bin button.btn.btn-delete, .btn.btn-underline-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
  border: 0;
}

/* line 313, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.sponsors-edit-body .header-module .btn.btn-delete:hover, .filter-bin a.btn.btn-delete:hover, .filter-bin button.btn.btn-delete:hover, .btn.btn-underline-delete:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* line 3, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body {
  /* combo options bin */
  /* layout location card bin */
  /* layouts table */
}

/* line 5, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .col-layout-combo-options {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 5, app/assets/stylesheets/layout_combos.scss */
  body.layout-combos-body .col-layout-combo-options {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 767.98px) {
  /* line 5, app/assets/stylesheets/layout_combos.scss */
  body.layout-combos-body .col-layout-combo-options {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* line 17, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .layout-combo-options-bin {
  padding: 0;
  background-color: #f6f8fb;
  border: 1px solid #e6ebf0;
  margin-bottom: 20px;
  /* combo options content bin */
}

/* line 23, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .layout-combo-options-bin .header {
  padding: 10px;
  margin-bottom: 10px;
  background-color: #18516e;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  line-height: 12px;
}

/* line 34, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .layout-combo-options-bin .layout-combo-options-content {
  padding: 0 5px 10px 5px;
  /* add combo button */
}

/* line 37, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .layout-combo-options-bin .layout-combo-options-content .hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* line 43, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .layout-combo-options-bin .layout-combo-options-content .btn-secondary {
  margin-bottom: 15px;
}

/* line 49, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .col-layout-combo-location {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 49, app/assets/stylesheets/layout_combos.scss */
  body.layout-combos-body .col-layout-combo-location {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 61, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .card.layout-combo-location {
  /* card checkbox */
}

/* line 64, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .card.layout-combo-location .form-check {
  right: 22px;
  top: 89%;
}

/* line 69, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body .card.layout-combo-location .card-footer {
  background-color: #f6f8fb;
}

/* line 75, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body #display-combo-table {
  /* feature image size */
  /* switch positioning */
}

/* line 78, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body #display-combo-table td.display-image {
  width: 125px;
}

/* line 83, app/assets/stylesheets/layout_combos.scss */
body.layout-combos-body #display-combo-table label.switch {
  margin-bottom: 25px;
  float: right;
}

/* line 3, app/assets/stylesheets/locations.scss */
body.locations-body table.locations-table {
  table-layout: fixed;
  width: 100%;
  word-break: break-word;
  border: 1px solid #d6e0e6;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.locations-body table.locations-table th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.locations-body table.locations-table th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.locations-body table.locations-table th:nth-child(3) {
  width: 18%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.locations-body table.locations-table th:nth-child(4) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.locations-body table.locations-table th:nth-child(5) {
  width: 17%;
}

/* line 8, app/assets/stylesheets/locations.scss */
body.locations-body table.locations-table th {
  font-size: 11px;
  word-break: break-word;
}

/* line 13, app/assets/stylesheets/locations.scss */
body.locations-body table.locations-table td {
  border: 1px solid #d6e0e6;
}

/* line 4, app/assets/stylesheets/mail_transactions.scss */
.mail-transaction-link {
  color: #007bff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
}

/* line 17, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .toggle-details {
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 1;
  color: #495057;
}

/* line 24, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .toggle-details:hover {
  color: #007bff;
}

/* line 28, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .toggle-details:focus {
  box-shadow: none;
}

/* line 34, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .rotate-icon {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  font-size: 12px;
  line-height: 1;
}

/* line 40, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .rotate-icon.rotated {
  transform: rotate(90deg);
}

/* line 46, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row {
  background-color: #f8f9fa;
}

/* line 49, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row td {
  padding: 0 !important;
  border: none;
}

/* line 54, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content {
  border-left: 4px solid #007bff;
  margin: 0;
}

/* line 58, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #6c757d;
}

/* line 64, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content dl {
  margin-bottom: 0.5rem;
}

/* line 68, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content dt {
  font-weight: normal;
  color: #6c757d;
}

/* line 73, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content dd {
  color: #212529;
  word-break: break-word;
}

/* line 77, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content dd.text-truncate {
  max-width: 100%;
}

/* line 82, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content .row {
  margin-left: -5px;
  margin-right: -5px;
}

/* line 86, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .detail-row .detail-content .row .col-md-6 {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 1rem;
}

/* line 96, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .collapse {
  transition: height 0.25s ease;
}

/* line 103, app/assets/stylesheets/mail_transactions.scss */
.mail-transactions-table .main-row:hover .toggle-details {
  color: #007bff;
}

/* line 1, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body {
  /* sponsor & calendar tables */
  /* term filter */
  /* keyword filter */
  /* wrapper filter */
  /* advertiser info section */
  /* report totals */
  /* ad totals */
  /* Cross-school media search attendance inputs */
  /* Sticky totals footer for cross-school search */
}

/* line 4, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs tr:hover, body.media-performance-reports-body table#media-report-orgs tr:nth-child(odd):hover {
  background-color: #e6ebf0;
  cursor: pointer;
}

/* line 9, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs tr.selected, body.media-performance-reports-body table#media-report-orgs tr.selected:nth-child(odd) {
  background-color: #e6ebf0;
}

/* line 13, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 17, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 22, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org input[type="checkbox"] {
  margin-left: 8px;
}

/* line 26, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org .fa-chevron-right {
  margin-left: auto;
  font-size: 24px;
  margin-right: 30px;
}

/* line 32, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org .icon-bin {
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  background-color: #0f3950;
  border: 1px solid #d6e0e6;
  margin-left: 16px;
  margin-right: 8px;
}

/* line 44, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org .icon-bin .fa {
  color: #cddb3e;
}

/* line 48, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media-report-orgs td.org .icon-bin img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 40px;
  max-height: 40px;
}

/* line 57, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports th:nth-child(1) {
  width: 50%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports th:nth-child(2) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports th:nth-child(3) {
  width: 20%;
}

/* line 60, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 64, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports td.media-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 69, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports td.media-group .icon-bin {
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  background-color: #0f3950;
  border: 1px solid #d6e0e6;
  margin-right: 8px;
}

/* line 80, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports td.media-group .icon-bin .fa {
  color: #cddb3e;
}

/* line 86, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#multi-orgs-summary-reports td.action-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

/* line 94, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body table#media_group_report_list th:nth-child(1) {
  width: 70%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body table#media_group_report_list th:nth-child(2) {
  width: 30%;
}

/* line 97, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list tr:nth-child(odd) {
  background-color: #ffffff;
}

/* line 101, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list td.date {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 106, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list td.date .icon-bin {
  height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  background-color: #0f3950;
  border: 1px solid #d6e0e6;
  margin-right: 8px;
}

/* line 117, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list td.date .icon-bin .fa {
  color: #cddb3e;
}

/* line 124, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body table#media_group_report_list td.action-bin .btns-bin {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}

/* line 134, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .jumbotron {
  background-color: #f6f8fb;
}

/* line 139, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .full-height-bin {
  min-height: calc(100vh - 135px);
  display: flex;
  align-items: center;
}

/* line 146, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table {
  table-layout: fixed;
  width: 100%;
  vertical-align: middle;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .media-reports-info-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .media-reports-info-table th:nth-child(2) {
  width: 60%;
}

/* line 150, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table .btn.btn-main {
  margin: 0px 8px 0px 8px;
}

/* line 154, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table .fa {
  border-radius: 50%;
  margin-right: 5px;
  -webkit-border-radius: 50%;
  background-color: #18516e;
  color: #cddb3e;
  font-size: 18px;
}

/* line 163, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table .fa.fa-user {
  padding: 5px 8px;
}

/* line 167, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table .fa.fa-calendar {
  padding: 7px 8px;
  font-size: 16px;
}

/* line 172, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .media-reports-info-table .btn.btn-reports {
  opacity: 0.75;
  border-radius: 6px;
  color: #18516e;
  background-color: #d6e0e6 !important;
  padding: 4px 10px;
  text-decoration: none !important;
  margin: 0px 2px;
}

/* line 186, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin #term-dropdown-filter {
  background-image: none;
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  color: #0f3950;
  text-transform: none;
  height: calc(1.8125rem + 2px);
  border-radius: 0.2rem;
  letter-spacing: 0px;
  text-align: left;
  padding: 0.25rem 0.5rem;
  display: flex !important;
  align-items: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 0px;
}

/* line 205, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin #term-dropdown-filter::after {
  display: flex;
  margin-left: auto;
}

/* line 210, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin #term-dropdown-filter:hover {
  color: #0f3950 !important;
  cursor: pointer;
}

/* line 215, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin .dropdown-menu {
  padding-top: 0.35em;
  padding-bottom: 0px;
  width: 100%;
  border-color: #d6e0e6;
}

/* line 222, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin a.dropdown-item {
  font-size: 0.875rem;
  padding: 4px 8px;
  color: #0f3950;
  width: 100%;
}

/* line 229, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin a.dropdown-item:hover {
  text-decoration: underline;
  cursor: pointer;
  background-color: #f6f8fb;
  color: #0f3950;
}

/* line 236, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-term-bin a.dropdown-item.active {
  background-color: #e6ebf0;
  font-weight: 600;
}

/* line 244, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-keyword-bin .btn-field-bin {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

/* line 250, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-keyword-bin .form-group.keyword-input {
  padding-left: 0px !important;
  padding-right: 0px !important;
  width: calc(100% - 60px) !important;
  flex: none !important;
}

/* line 256, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-keyword-bin .form-group.keyword-input .form-control {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* line 265, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  background-color: #ffffff;
  height: calc(1.8125rem + 2px);
  border-radius: 0.2rem;
}

/* line 275, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left, body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* line 283, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left .form-check-input, body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right .form-check-input {
  bottom: -4px;
  margin-right: 2px;
  height: 17px;
  width: 17px;
}

/* line 290, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left .form-check-input:hover, body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right .form-check-input:hover {
  cursor: pointer !important;
}

/* line 294, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left label.form-check-label, body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right label.form-check-label {
  margin-bottom: 0px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* line 301, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left {
  border-right: 1px solid #d6e0e6;
}

/* line 308, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin {
  align-items: flex-end;
  margin-bottom: 5px;
}

/* line 312, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .body {
  font-weight: 600;
  letter-spacing: 0px;
}

/* line 317, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .input-btn-field {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/* line 322, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .input-btn-field label.control-label {
  font-size: 13px;
  margin-bottom: 0px;
  margin-right: 4px;
}

/* line 328, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .input-btn-field .form-group.attendance-field {
  padding-left: 0px !important;
  padding-right: 0px !important;
  width: calc(100% - 240px) !important;
  flex: none !important;
  margin-bottom: 0px;
}

/* line 335, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .input-btn-field .form-group.attendance-field .form-control {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
}

/* line 345, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .ads-overview-bin .input-btn-field .btn.btn-main {
  width: 50px !important;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-right-radius: 0.2rem !important;
  border-bottom-right-radius: 0.2rem !important;
  margin-bottom: 0px;
  box-sizing: border-box;
  height: calc(1.8125rem + 2px);
}

/* line 362, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .report-totals-table {
  vertical-align: middle;
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .report-totals-table th:nth-child(1) {
  width: 33.33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .report-totals-table th:nth-child(2) {
  width: 33.33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .report-totals-table th:nth-child(3) {
  width: 33.33%;
}

@media (min-width: 768px) {
  /* line 366, app/assets/stylesheets/media_performance_reports.scss */
  body.media-performance-reports-body .report-totals-table td {
    border: 1px solid #d6e0e6;
  }
}

/* line 371, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .report-totals-table td {
  text-align: center;
}

/* line 375, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .report-totals-table .headline {
  margin-bottom: 0px;
  font-size: 34px;
}

/* line 382, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .placement-season-report-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .placement-season-report-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .placement-season-report-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .placement-season-report-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.media-performance-reports-body .placement-season-report-table th:nth-child(4) {
  width: 20%;
}

/* line 385, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .placement-season-report-table td {
  border: 1px solid #d6e0e6;
}

/* line 389, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .placement-season-report-table th {
  font-size: 11px;
}

/* line 393, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .placement-season-report-table tr:nth-child(2) {
  font-weight: 700;
  background-color: #fff59d;
}

/* line 399, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .list-group.summary-list-group {
  border-color: #d6e0e6;
}

/* line 402, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .list-group.summary-list-group a.list-group-item.list-group-item-action.summary-list-item {
  padding: 0.5rem 0.75rem;
  color: #0f3950;
  border-color: #d6e0e6;
}

/* line 408, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .list-group.summary-list-group a.list-group-item.list-group-item-action.summary-list-item:hover {
  background: #e6ebf0;
}

/* line 414, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .attendance-input {
  max-width: 150px;
  font-size: 14px;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  height: calc(1.8125rem + 2px);
  border: 1px solid #d6e0e6;
  transition: all 0.2s ease;
}

/* line 423, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .attendance-input:focus {
  border-color: #18516e;
  box-shadow: 0 0 0 0.2rem rgba(24, 81, 110, 0.25);
}

/* line 429, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .impressions-value {
  font-weight: 600;
  color: #0f3950;
}

/* line 435, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table {
  position: relative;
}

/* line 439, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table tbody .total-plays-cell,
body.media-performance-reports-body .cross-school-results-table tbody td:nth-child(4) {
  text-align: center;
}

/* line 444, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table tbody .impressions-cell {
  text-align: center;
}

/* line 449, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

/* line 455, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer .totals-row {
  background-color: #0f3950 !important;
}

/* line 458, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer .totals-row td {
  padding: 12px 8px;
  border-top: 2px solid #071a25 !important;
  border-bottom: 2px solid #071a25 !important;
  border-left: none !important;
  border-right: none !important;
  background-color: #0f3950 !important;
  vertical-align: middle;
}

/* line 467, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer .totals-row td strong {
  color: #ffffff !important;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* line 474, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer .totals-row td:first-child {
  text-align: left;
}

/* line 478, app/assets/stylesheets/media_performance_reports.scss */
body.media-performance-reports-body .cross-school-results-table .sticky-totals-footer .totals-row td:not(:first-child) {
  text-align: center;
}

/* line 1, app/assets/stylesheets/media_share.scss */
body.media-share-body {
  background-image: none !important;
  background: #000000;
}

/* line 5, app/assets/stylesheets/media_share.scss */
body.media-share-body .container-fluid {
  padding: 0;
}

/* line 9, app/assets/stylesheets/media_share.scss */
body.media-share-body .header-bar {
  height: 60px;
  width: 100%;
  background-color: #cddb3e;
  border-bottom: 1px solid #3C3D42;
}

/* line 15, app/assets/stylesheets/media_share.scss */
body.media-share-body .header-bar .header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
}

/* line 22, app/assets/stylesheets/media_share.scss */
body.media-share-body .header-bar .logo-bin {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* line 31, app/assets/stylesheets/media_share.scss */
body.media-share-body .header-bar .logo-bin img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 38, app/assets/stylesheets/media_share.scss */
body.media-share-body .header-bar .name-bin {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 15px 0 10px;
  width: calc(100% - 85px);
}

/* line 51, app/assets/stylesheets/media_share.scss */
body.media-share-body .video-player .video-player-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1B1C1E;
}

/* line 58, app/assets/stylesheets/media_share.scss */
body.media-share-body .video-player .video-player-wrapper .stream-player-wrapper, body.media-share-body .video-player .video-player-wrapper .video-preview {
  width: 100%;
}

/* line 64, app/assets/stylesheets/media_share.scss */
body.media-share-body .video-title {
  padding: 20px 15px;
}

/* line 67, app/assets/stylesheets/media_share.scss */
body.media-share-body .video-title .title {
  color: #ffffff;
}

/* line 71, app/assets/stylesheets/media_share.scss */
body.media-share-body .video-title .body {
  color: #A6ACAF;
}

/* line 1, app/assets/stylesheets/moments.scss */
body.moments-body {
  /* Moderate Page -------------------------------------------------------------------------------------------------- */
  /* header and number of videos ------------------- */
  /* moments scroll list ------------------- */
  /* moments index page -------------------------------------- */
}

/* line 6, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 8px;
  width: 100%;
}

/* line 13, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin .subhead {
  line-height: 1;
  margin-bottom: 3px;
}

/* line 18, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin .body {
  margin-bottom: 0px;
  line-height: 1;
}

/* line 23, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin .form-group {
  margin-bottom: 0px;
  width: 200px;
  margin-left: 10px;
}

@media (max-width: 767.98px) {
  /* line 23, app/assets/stylesheets/moments.scss */
  body.moments-body .info-header-bin .form-group {
    padding: 0 15px 0px 15px !important;
  }
}

@media (min-width: 768px) {
  /* line 23, app/assets/stylesheets/moments.scss */
  body.moments-body .info-header-bin .form-group {
    padding: 0 8px 0px 8px !important;
  }
}

/* line 33, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin .form-group .form-control {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 42, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin .form-group input, body.moments-body .info-header-bin .form-group select, body.moments-body .info-header-bin .form-group option {
  font-size: 14px !important;
}

/* line 47, app/assets/stylesheets/moments.scss */
body.moments-body .info-header-bin #refresh-btn.btn.btn-main {
  margin-left: auto !important;
  width: 85px !important;
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
  display: inline-block;
}

/* line 57, app/assets/stylesheets/moments.scss */
body.moments-body .moderate-btn {
  margin-left: 0px;
}

@media (min-width: 768px) {
  /* line 57, app/assets/stylesheets/moments.scss */
  body.moments-body .moderate-btn {
    margin-left: 8px;
  }
}

/* line 64, app/assets/stylesheets/moments.scss */
body.moments-body .data-header.warning-message, body.moments-body .card-header.small.warning-tag {
  padding: 5px 8px 5px 8px;
  background-color: #d32f2f;
  color: #ffffff;
  margin-bottom: 0px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 77, app/assets/stylesheets/moments.scss */
body.moments-body .data-header.warning-message span.warning-message, body.moments-body .card-header.small.warning-tag span.warning-message {
  text-decoration: underline;
}

/* line 80, app/assets/stylesheets/moments.scss */
body.moments-body .data-header.warning-message .fa, body.moments-body .card-header.small.warning-tag .fa {
  margin-right: 5px;
  font-size: 16px;
  text-decoration: none !important;
}

/* line 88, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips::-webkit-scrollbar {
  height: 10px;
}

/* line 92, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 grey !important;
  background-color: #f6f8fb;
  border-bottom: 1px solid #d6e0e6;
  border-radius: 0;
  border-left: 1px solid #d6e0e6;
}

/* line 100, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips::-webkit-scrollbar-thumb {
  background-color: #b0bec5;
  border-radius: 10px;
}

/* line 105, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips {
  display: flex;
  position: relative;
  overflow-x: scroll !important;
  width: 100%;
  padding-left: 0;
  flex-wrap: nowrap;
  margin-bottom: 0;
  list-style-type: none;
  border-right: 1px solid #d6e0e6;
  border-left: 1px solid #d6e0e6;
}

/* line 117, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li {
  padding: 8px 8px 8px 8px;
  flex: 0 0 auto;
  transition: all 0.4s ease;
}

/* line 122, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li .preview-image img {
  background-color: #18516e;
  width: calc(200px - 16px) !important;
  height: 113px;
  margin-bottom: 5px;
  display: block;
}

/* line 131, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li .badge {
  margin-bottom: 7px;
  padding: 4px 8px 4px 8px;
}

/* line 137, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li .body {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

/* line 144, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.active {
  background-color: #cee2ed;
  border: 1px solid #539ec2;
  padding: 8px;
  top: 0;
  left: 0;
}

/* line 150, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.active .label-1 {
  margin-bottom: 0 !important;
  line-height: 1.5em !important;
}

/* line 156, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips .label-1.time {
  font-weight: 600;
}

/* line 160, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming {
  border-top: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 165, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming .label-1 {
  margin-bottom: 0 !important;
  line-height: 1.5em !important;
}

/* line 171, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming:hover {
  cursor: pointer;
  background-color: #e6ebf0;
}

/* line 176, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming:nth-child(2) {
  padding-left: 16px;
}

/* line 180, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.approved {
  border-top: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  background-color: #f6f8fb;
}

/* line 185, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.approved .label-1 {
  margin-bottom: 0 !important;
  line-height: 1.5em !important;
}

/* line 191, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming:hover {
  cursor: pointer;
  background-color: #e6ebf0;
}

/* line 196, app/assets/stylesheets/moments.scss */
body.moments-body ul#preview-clips li.upcoming:nth-child(2) {
  padding-left: 16px;
}

/* line 201, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container {
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  padding-top: 20px;
  padding-bottom: 20px;
  /* selected moment preview bin ------------------- */
  /* moment form ------------------- */
}

/* line 208, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .body {
  font-weight: 700;
  margin-bottom: 0;
}

/* line 214, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .clip-preview-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 214, app/assets/stylesheets/moments.scss */
  body.moments-body .active-media-info-container .clip-preview-bin {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8px 0 16px 16px;
  }
}

@media (max-width: 991.98px) {
  /* line 214, app/assets/stylesheets/moments.scss */
  body.moments-body .active-media-info-container .clip-preview-bin {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 8px 16px 16px 16px;
  }
}

/* line 226, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .clip-preview-bin .video-preview {
  background-color: #18516e;
}

/* line 233, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .clip-info-content {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 233, app/assets/stylesheets/moments.scss */
  body.moments-body .active-media-info-container .clip-info-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 8px 16px 16px 16px;
    align-items: center !important;
  }
}

@media (max-width: 991.98px) {
  /* line 233, app/assets/stylesheets/moments.scss */
  body.moments-body .active-media-info-container .clip-info-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 16px 16px 16px;
    width: 100%;
    align-items: flex-start;
  }
}

/* line 250, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .clip-info-content form {
  width: 100%;
}

/* line 256, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d6e0e6;
  border-radius: 8px;
}

/* line 263, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .approve-video-button, body.moments-body .active-media-info-container .moderator-module .reject-video-button {
  width: 50%;
  height: 300px;
  transition: all 0.3s ease;
  font-size: 13px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* line 276, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .approve-video-button .fa, body.moments-body .active-media-info-container .moderator-module .reject-video-button .fa {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 8px;
}

/* line 283, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .approve-video-button {
  background-color: #43a047;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* line 289, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .reject-video-button {
  background-color: #d32f2f;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

/* line 295, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .approve-video-button:hover {
  opacity: 0.9;
  cursor: pointer;
}

/* line 300, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .moderator-module .reject-video-button:hover {
  opacity: 0.9;
  cursor: pointer;
}

/* line 307, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #d6e0e6;
}

/* line 314, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module {
  width: 40px;
  height: 300px;
}

/* line 318, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module .button-label {
  font-size: 13px;
  text-align: center;
  writing-mode: vertical-rl;
  padding: 12px;
  height: 300px;
  width: 40px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* line 332, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module.decline {
  background-color: #d32f2f;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  position: relative;
}

/* line 339, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module.approve {
  background-color: #43a047;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}

/* line 346, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module:after {
  position: absolute;
  bottom: 140px;
  height: 0;
  width: 0;
  border: 10px solid transparent;
  content: "";
  z-index: 2;
}

/* line 356, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module.approve:after {
  right: 40px;
  border-right-color: #43a047;
}

/* line 361, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .approve-decline-btn-module.decline:after {
  left: 40px;
  border-left-color: #d32f2f;
}

/* line 366, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin {
  padding: 0 20px 20px 20px;
  width: calc(100% - 40px);
  height: 300px;
  background-color: #f6f8fb;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}

/* line 375, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: calc(300px - 63px);
  width: 100%;
  position: relative;
}

/* line 383, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info {
  width: 100%;
}

/* line 386, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .output-selections-bin {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

/* line 391, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .output-selections-bin .btn-primary {
  width: calc(50% - 8px);
  margin: 0 0 0 0;
  background-color: transparent;
  border: 2px solid #539ec2;
  color: #539ec2;
  transition: all 0.3s ease;
  font-weight: 600;
}

/* line 401, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .output-selections-bin .btn-primary:hover {
  background-color: #cee2ed;
  color: #539ec2 !important;
  border: 2px solid #539ec2;
}

/* line 407, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .output-selections-bin .btn-primary.active {
  background-color: #539ec2;
  color: #ffffff !important;
  border: 2px solid #539ec2;
}

/* line 413, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .output-selections-bin #no-tags-selected {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 10px;
}

/* line 421, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .form-row {
  width: 100%;
  margin: 0;
}

/* line 425, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .form-row .form-group {
  padding: 0;
}

/* line 429, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .form-row label.control-label {
  text-align: left !important;
}

/* line 434, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info .label-2 {
  color: #d32f2f;
  font-weight: 800;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

/* line 442, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .info-bin .info label {
  text-align: center;
  width: 100%;
}

/* line 449, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .button-footer-bin {
  position: absolute;
  border-top: 1px solid #d6e0e6;
  display: flex;
  flex-wrap: nowrap;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 20px 5px 20px;
}

/* line 459, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .button-footer-bin .btn.btn-main.accept {
  width: 50%;
  margin: 8px;
  background-color: #43a047;
  border: 2px solid #43a047;
  background-image: none;
}

/* line 467, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .button-footer-bin .btn.btn-main.decline {
  width: 50%;
  margin: 8px;
  background-color: #d32f2f;
  border: 2px solid #d32f2f;
  background-image: none;
}

/* line 475, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .button-footer-bin .btn.btn-secondary {
  width: 50%;
  margin: 8px;
  border: 2px solid #d6e0e6;
  color: #b0bec5;
}

/* line 482, app/assets/stylesheets/moments.scss */
body.moments-body .active-media-info-container .approval-module .content-bin .button-footer-bin .btn.btn-secondary:hover {
  border: 2px solid #d6e0e6 !important;
  background-color: #e6ebf0 !important;
  color: #b0bec5 !important;
}

/* line 494, app/assets/stylesheets/moments.scss */
body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

/* line 499, app/assets/stylesheets/moments.scss */
body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin .btns-bin {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: -12px;
}

/* line 506, app/assets/stylesheets/moments.scss */
body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin a.btn.btn-main {
  float: none;
  margin: 0px;
}

/* line 510, app/assets/stylesheets/moments.scss */
body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin a.btn.btn-main.expand-btn {
  margin-top: 8px;
}

@media only screen and (max-width: 945px) {
  /* line 515, app/assets/stylesheets/moments.scss */
  body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin {
    flex-direction: column;
  }
  /* line 517, app/assets/stylesheets/moments.scss */
  body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin .media-img-bin {
    width: 100%;
  }
  /* line 520, app/assets/stylesheets/moments.scss */
  body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin .btns-bin {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 6px;
  }
  /* line 526, app/assets/stylesheets/moments.scss */
  body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin a.btn.btn-main {
    width: 125px !important;
  }
  /* line 529, app/assets/stylesheets/moments.scss */
  body.moments-body .feature-bin.media-preview-bin .flex-wrap-bin a.btn.btn-main.expand-btn {
    margin-top: 0px;
  }
}

/* line 3, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: #f6f8fb;
  width: 100%;
  box-sizing: border-box;
  gap: 13px;
  padding: 0px;
}

/* line 14, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend .org-defaults__legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

/* line 21, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend .org-defaults__legend-item .legend__indicator {
  height: 12px;
  width: 24px;
  border-radius: 2px;
}

/* line 27, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend .org-defaults__legend-item .indicator--org {
  background-color: #0d6efd;
}

/* line 30, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend .org-defaults__legend-item .indicator--season {
  background-color: #198754;
}

/* line 33, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend .org-defaults__legend-item .indicator--game {
  background-color: #dc3545;
}

/* line 37, app/assets/stylesheets/organization_defaults.scss */
body.organization-defaults-body .org-defaults__legend label {
  font-size: 13px;
}

/* line 1, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body {
  /* back button */
  /* element labels */
  /* sponsor & calendar tables */
  /* term filter --------------- */
  /* keyword filter --------------- */
  /* wrapper filter --------------- */
  /* advertiser info section --------------- */
  /* ad totals table */
  /* ad totals table */
}

/* line 9, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body label {
  margin-bottom: 5px;
}

/* line 13, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .jumbotron {
  background-color: #f6f8fb;
}

/* line 18, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .full-height-bin {
  min-height: calc(100vh - 135px);
  display: flex;
  align-items: center;
}

/* line 25, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table {
  table-layout: fixed;
  width: 100%;
  vertical-align: middle;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .media-reports-info-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .media-reports-info-table th:nth-child(2) {
  width: 60%;
}

/* line 29, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table .btn.btn-main {
  margin: 0 8px 0 8px;
}

/* line 33, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table .fa {
  border-radius: 50%;
  margin-right: 5px;
  -webkit-border-radius: 50%;
  background-color: #18516e;
  color: #cddb3e;
  font-size: 18px;
}

/* line 42, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table .fa.fa-user {
  padding: 5px 8px;
}

/* line 46, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table .fa.fa-calendar {
  padding: 7px 8px;
  font-size: 16px;
}

/* line 51, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .media-reports-info-table .btn.btn-reports {
  opacity: 0.75;
  border-radius: 6px;
  color: #18516e;
  background-color: #d6e0e6 !important;
  padding: 4px 10px;
  text-decoration: none !important;
  margin: 0 2px;
}

/* line 65, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin #term-dropdown-filter {
  background-image: none;
  background-color: #ffffff;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  color: #0f3950;
  text-transform: none;
  height: calc(1.8125rem + 2px);
  border-radius: 0.2rem;
  letter-spacing: 0;
  text-align: left;
  padding: 0.25rem 0.5rem;
  display: flex !important;
  align-items: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 0;
}

/* line 84, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin #term-dropdown-filter::after {
  display: flex;
  margin-left: auto;
}

/* line 89, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin #term-dropdown-filter:hover {
  color: #0f3950 !important;
  cursor: pointer;
}

/* line 94, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin .dropdown-menu {
  padding-top: 0.35em;
  padding-bottom: 0;
  width: 100%;
  border-color: #d6e0e6;
}

/* line 101, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin a.dropdown-item {
  font-size: 0.875rem;
  padding: 4px 8px;
  color: #0f3950;
  width: 100%;
}

/* line 108, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin a.dropdown-item:hover {
  text-decoration: underline;
  cursor: pointer;
  background-color: #f6f8fb;
  color: #0f3950;
}

/* line 115, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-term-bin a.dropdown-item.active {
  background-color: #e6ebf0;
  font-weight: 600;
}

/* line 123, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-keyword-bin .btn-field-bin {
  display: flex;
  align-items: flex-end;
  width: 100%;
}

/* line 129, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-keyword-bin .form-group.keyword-input {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: calc(100% - 60px) !important;
  flex: none !important;
}

/* line 135, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-keyword-bin .form-group.keyword-input .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* line 144, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  background-color: #ffffff;
  height: calc(1.8125rem + 2px);
  border-radius: 0.2rem;
}

/* line 154, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left, body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* line 162, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left .form-check-input, body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right .form-check-input {
  bottom: -4px;
  margin-right: 2px;
  height: 17px;
  width: 17px;
}

/* line 169, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left .form-check-input:hover, body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right .form-check-input:hover {
  cursor: pointer !important;
}

/* line 173, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left label.form-check-label, body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-right label.form-check-label {
  margin-bottom: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* line 180, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .filter-wrapper-bin .radio-btn-container .btn-bin-left {
  border-right: 1px solid #d6e0e6;
}

/* line 187, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin {
  align-items: flex-end;
  margin-bottom: 5px;
}

/* line 191, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .body {
  font-weight: 600;
  letter-spacing: 0;
}

/* line 196, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .input-btn-field {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/* line 201, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .input-btn-field label.control-label {
  font-size: 13px;
  margin-bottom: 0;
  margin-right: 4px;
}

/* line 207, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .input-btn-field .form-group.attendance-field {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: calc(100% - 240px) !important;
  flex: none !important;
  margin-bottom: 0;
}

/* line 214, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .input-btn-field .form-group.attendance-field .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
}

/* line 224, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .ads-overview-bin .input-btn-field .btn.btn-main {
  width: 50px !important;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  border-radius: 0 0.2rem 0.2rem 0;
  margin-bottom: 0;
  box-sizing: border-box;
  height: calc(1.8125rem + 2px);
}

/* line 238, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .report-totals-table {
  vertical-align: middle;
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .report-totals-table th:nth-child(1) {
  width: 33.33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .report-totals-table th:nth-child(2) {
  width: 33.33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .report-totals-table th:nth-child(3) {
  width: 33.33%;
}

@media (min-width: 768px) {
  /* line 242, app/assets/stylesheets/organization_reports.scss */
  body.organization-reports-body .report-totals-table td {
    border: 1px solid #d6e0e6;
  }
}

/* line 247, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .report-totals-table td {
  text-align: center;
}

/* line 251, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .report-totals-table .headline {
  margin-bottom: 0;
  font-size: 34px;
}

/* line 258, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .placement-season-report-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .placement-season-report-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .placement-season-report-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .placement-season-report-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organization-reports-body .placement-season-report-table th:nth-child(4) {
  width: 20%;
}

/* line 261, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .placement-season-report-table td {
  border: 1px solid #d6e0e6;
}

/* line 265, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .placement-season-report-table th {
  font-size: 11px;
}

/* line 269, app/assets/stylesheets/organization_reports.scss */
body.organization-reports-body .placement-season-report-table tr:nth-child(2) {
  font-weight: 700;
  background-color: #fff59d;
}

/* line 1, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body {
  /* column setup */
  /* Fan App Preview Module */
}

/* line 8, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .col-org-sport-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 576px) {
  /* line 8, app/assets/stylesheets/organization_settings.scss */
  body.organization-settings-body .col-org-sport-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

@media (min-width: 576px) and (min-width: 768px) {
  /* line 8, app/assets/stylesheets/organization_settings.scss */
  body.organization-settings-body .col-org-sport-cards {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* line 26, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .card.org-sport-card .card-header.large {
  margin-bottom: 55px;
}

/* line 31, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body iframe {
  border-style: solid !important;
  border-color: #d6e0e6;
  border-width: 1px;
  background-color: #f6f8fb;
  border-radius: 0.25rem;
  width: 50%;
}

/* line 41, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin {
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  padding: 5% 15%;
}

/* line 52, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* line 58, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .base-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}

/* line 65, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .events-bin {
  position: absolute;
  bottom: 9.6%;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  height: auto;
  left: 0;
  z-index: 1;
}

/* line 74, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .events-bin .events-img {
  max-width: 100%;
  height: auto;
}

/* line 78, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .events-bin .no-games-message {
  position: absolute;
  right: 6%;
  bottom: 33%;
  width: 21%;
  font-size: 0.55vw;
  color: #A6ACAF;
  z-index: 4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  /* line 78, app/assets/stylesheets/organization_settings.scss */
  body.organization-settings-body .fan-app-preview-bin .image-wrapper .events-bin .no-games-message {
    font-size: 1.4vw;
  }
}

/* line 97, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .navigation-bin {
  position: absolute;
  bottom: 2.6%;
  padding-left: 5%;
  padding-right: 5%;
  max-width: 100%;
  height: auto;
  left: 0;
  z-index: 1;
}

/* line 106, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .navigation-bin .navigation-img {
  max-width: 100%;
  height: auto;
}

/* line 110, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .navigation-bin .custom-link-text {
  position: absolute;
  right: 6%;
  bottom: 33%;
  width: 21%;
  font-size: 0.55vw;
  color: #A6ACAF;
  z-index: 4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  /* line 110, app/assets/stylesheets/organization_settings.scss */
  body.organization-settings-body .fan-app-preview-bin .image-wrapper .navigation-bin .custom-link-text {
    font-size: 1.4vw;
  }
}

/* line 129, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .fan-app-logo-bin {
  position: absolute;
  height: 6%;
  width: 11%;
  z-index: 2;
  left: 9%;
  top: 20%;
  overflow: hidden;
  background-color: #1B1C1E;
  box-sizing: border-box;
  border: 1px solid #3C3D42;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 144, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .fan-app-logo-bin img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 152, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .fan-app-header-bin {
  position: absolute;
  z-index: 1;
  width: 90%;
  height: 23%;
  left: 5%;
  top: 16%;
  overflow: hidden;
}

/* line 160, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .fan-app-header-bin img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 167, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper .team-color-div {
  position: absolute;
  margin-left: 8.2%;
  margin-right: 8.2%;
  width: 83.6%;
  height: 50%;
  z-index: 2;
  top: 32%;
  background-color: red;
}

/* line 178, app/assets/stylesheets/organization_settings.scss */
body.organization-settings-body .fan-app-preview-bin .image-wrapper #events-message-bin {
  margin-left: 9%;
  margin-right: 9%;
  width: 82%;
  height: 9.8%;
  position: absolute;
  top: 34.7%;
  padding: 0 5%;
  z-index: 3;
  opacity: 1;
  display: flex;
  align-items: center;
  font-size: 0.75vw;
  color: #A2A8AB;
  overflow: hidden;
  line-height: 1.05vw;
}

/* line 3, app/assets/stylesheets/organizations-audit.scss */
body.organization-audits-body td {
  font-weight: 600;
}

/* line 7, app/assets/stylesheets/organizations-audit.scss */
body.organization-audits-body .badge {
  width: 80px;
  text-transform: capitalize;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #ffffff;
  margin-right: 3px;
}

/* line 17, app/assets/stylesheets/organizations-audit.scss */
body.organization-audits-body tr.audit_navigate .badge {
  background-color: #007bff;
}

/* line 22, app/assets/stylesheets/organizations-audit.scss */
body.organization-audits-body tr.audit_update .badge {
  background-color: #8e24aa;
}

/* line 27, app/assets/stylesheets/organizations-audit.scss */
body.organization-audits-body tr.audit_create .badge {
  background-color: #00c853;
}

/* line 4, app/assets/stylesheets/organizations.scss */
body.organizations-body .org-sv-users-table, body.organizations-body .org-sv-hidden-users-table, body.organizations-body #org-team-admin-users-table, body.organizations-body #org-scorekeeper-users-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body .org-sv-users-table th:nth-child(1), body.organizations-body .org-sv-hidden-users-table th:nth-child(1), body.organizations-body #org-team-admin-users-table th:nth-child(1), body.organizations-body #org-scorekeeper-users-table th:nth-child(1) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body .org-sv-users-table th:nth-child(2), body.organizations-body .org-sv-hidden-users-table th:nth-child(2), body.organizations-body #org-team-admin-users-table th:nth-child(2), body.organizations-body #org-scorekeeper-users-table th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body .org-sv-users-table th:nth-child(3), body.organizations-body .org-sv-hidden-users-table th:nth-child(3), body.organizations-body #org-team-admin-users-table th:nth-child(3), body.organizations-body #org-scorekeeper-users-table th:nth-child(3) {
  width: 20%;
}

/* line 13, app/assets/stylesheets/organizations.scss */
body.organizations-body .sticky-content {
  padding-bottom: 4px;
}

/* line 17, app/assets/stylesheets/organizations.scss */
body.organizations-body ul.nav.nav-pills {
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  /* line 17, app/assets/stylesheets/organizations.scss */
  body.organizations-body ul.nav.nav-pills {
    display: block;
    width: 100%;
  }
}

/* line 25, app/assets/stylesheets/organizations.scss */
body.organizations-body tr .fa {
  padding-top: 3px;
  padding-bottom: 3px;
  float: right;
}

/* line 31, app/assets/stylesheets/organizations.scss */
body.organizations-body #org-season-list-table {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #org-season-list-table th:nth-child(1) {
  width: 60%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #org-season-list-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #org-season-list-table th:nth-child(3) {
  width: 20%;
}

/* line 35, app/assets/stylesheets/organizations.scss */
body.organizations-body #user-search-results {
  table-layout: fixed;
  width: 100%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #user-search-results th:nth-child(1) {
  width: 25%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #user-search-results th:nth-child(2) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #user-search-results th:nth-child(3) {
  width: 35%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.organizations-body #user-search-results th:nth-child(4) {
  width: 25%;
}

/* line 39, app/assets/stylesheets/organizations.scss */
body.organizations-body .col-organization-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 39, app/assets/stylesheets/organizations.scss */
  body.organizations-body .col-organization-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 39, app/assets/stylesheets/organizations.scss */
  body.organizations-body .col-organization-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 54, app/assets/stylesheets/organizations.scss */
body.organizations-body .headline-btn-bin {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  height: 43px;
}

/* line 61, app/assets/stylesheets/organizations.scss */
body.organizations-body .headline-btn-bin .btn {
  margin-left: auto;
  width: 100px !important;
}

/* line 68, app/assets/stylesheets/organizations.scss */
body.organizations-body .card.organization-card .card-body {
  padding-bottom: 10px;
}

/* line 72, app/assets/stylesheets/organizations.scss */
body.organizations-body .card.organization-card .card-header.deleted {
  background: red;
}

/* line 78, app/assets/stylesheets/organizations.scss */
body.organizations-body .col-organization-cards .card.add-card {
  min-height: 287.844px;
}

/* line 86, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__page-navigation {
  top: 88px;
  border-color: #d6e0e6;
}

/* line 89, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__page-navigation li:first-child {
  background-color: #f6f8fb;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 14px;
}

/* line 95, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__page-navigation li {
  padding: 0px;
  border-color: #e6ebf0;
}

/* line 98, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__page-navigation li a.org-form__section-link {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 6px 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-left: 4px solid #ffffff;
  margin-bottom: 0px;
}

/* line 110, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__page-navigation li a.org-form__section-link.active {
  font-weight: 700;
  border-left: 4px solid #0d6efd;
  color: #0d6efd;
}

/* line 119, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__form-field-group {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* line 128, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__form-field-group .org__form__form-field-group__header {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #0f3950;
  margin-bottom: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6ebf0;
  background: #f6f8fb;
}

/* line 145, app/assets/stylesheets/organizations.scss */
body.organizations-body .org__form__form-field-group label.control-label {
  font-size: 14px;
  margin-bottom: 4px;
}

/* line 152, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox__list-item-container {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500 !important;
}

/* line 168, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox__list-item-container .form-check-label {
  margin-bottom: 0px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500 !important;
}

/* line 176, app/assets/stylesheets/organizations.scss */
body.organizations-body .org-approval-checkbox.checkbox__list-item-selected {
  background: #d2f4ea;
  border: 1px solid #198754;
}

/* line 179, app/assets/stylesheets/organizations.scss */
body.organizations-body .org-approval-checkbox.checkbox__list-item-selected label {
  color: #0f5132;
}

/* line 184, app/assets/stylesheets/organizations.scss */
body.organizations-body .red-flag-checkbox.checkbox__list-item-selected {
  background: #f8d7da;
  border: 1px solid #dc3545;
  color: #842029;
}

/* line 190, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox__list-item-selected {
  background: #cfe2ff;
  border: 1px solid #0d6efd;
  color: #084298;
}

/* line 199, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card, body.organizations-body #advertising-branded-group .radio-selection-card {
  width: 100%;
  padding: 0.25rem 0.5rem;
  height: calc(1.8125rem + 2px);
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  border-radius: 0.2rem !important;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* line 211, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card label, body.organizations-body #advertising-branded-group .radio-selection-card label {
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  color: #0f3950;
}

/* line 217, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card .indicator-bin, body.organizations-body #advertising-branded-group .radio-selection-card .indicator-bin {
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 2px;
  background-color: #ffffff;
  border: 1px solid #767676;
  border-radius: 100px;
  margin-right: 4px;
}

/* line 229, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card .indicator-bin .indicator, body.organizations-body #advertising-branded-group .radio-selection-card .indicator-bin .indicator {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 100px;
}

/* line 238, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card:hover, body.organizations-body #advertising-branded-group .radio-selection-card:hover {
  cursor: pointer;
}

/* line 242, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card.selected, body.organizations-body #advertising-branded-group .radio-selection-card.selected {
  background: #cfe2ff;
  border: 1px solid #0d6efd;
}

/* line 245, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card.selected label, body.organizations-body #advertising-branded-group .radio-selection-card.selected label {
  color: #084298;
}

/* line 248, app/assets/stylesheets/organizations.scss */
body.organizations-body #radio-selection-settings-group .radio-selection-card.selected .indicator-bin, body.organizations-body #advertising-branded-group .radio-selection-card.selected .indicator-bin {
  border: 1px solid #0d6efd;
  background-color: #0d6efd;
}

/* line 256, app/assets/stylesheets/organizations.scss */
body.organizations-body #privacy-notice {
  padding: 12px 12px 12px 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
}

/* line 262, app/assets/stylesheets/organizations.scss */
body.organizations-body #privacy-notice label.warning-text {
  font-size: 14px;
  line-height: 20px;
  color: #332701;
  margin-bottom: 8px;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 4px;
  background-color: #fff3cd;
}

/* line 272, app/assets/stylesheets/organizations.scss */
body.organizations-body #privacy-notice .form-check-label {
  font-size: 14px;
  font-weight: 400;
}

/* line 276, app/assets/stylesheets/organizations.scss */
body.organizations-body #privacy-notice:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 64px;
  margin-left: -12px;
  margin-top: -36px;
  border: 12px solid transparent;
  border-bottom: 12px solid #d6e0e6;
}

/* line 291, app/assets/stylesheets/organizations.scss */
body.organizations-body #fan-app-features {
  padding: 12px 12px 0px 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
}

/* line 297, app/assets/stylesheets/organizations.scss */
body.organizations-body #fan-app-features:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  left: 64px;
  margin-left: -12px;
  margin-top: -36px;
  border: 12px solid transparent;
  border-bottom: 12px solid #d6e0e6;
}

/* line 314, app/assets/stylesheets/organizations.scss */
body.organizations-body .form-control-sm:disabled, body.organizations-body .form-control-sm[readonly] {
  background-color: #e9ecef;
}

/* line 319, app/assets/stylesheets/organizations.scss */
body.organizations-body .text-bold {
  font-weight: 600;
}

/* line 324, app/assets/stylesheets/organizations.scss */
body.organizations-body #organization_approval_date {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 335, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox-form-bin {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* line 341, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox-form-bin .checkbox-container {
  border-radius: 0.25rem;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  padding: 6px 12px;
  height: calc(2.25rem + 2px);
  margin-bottom: 1rem;
  width: 100%;
}

/* line 349, app/assets/stylesheets/organizations.scss */
body.organizations-body .checkbox-form-bin .checkbox-container span {
  padding-left: 0px;
}

/* line 355, app/assets/stylesheets/organizations.scss */
body.organizations-body .partner-selection-type-row .action-btn-bin {
  align-self: flex-end;
  margin-bottom: 24px;
}

/* line 360, app/assets/stylesheets/organizations.scss */
body.organizations-body .product-platform-bin {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 8px 12px 12px 12px;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
  margin-top: 8px;
}

/* line 368, app/assets/stylesheets/organizations.scss */
body.organizations-body .product-platform-bin span {
  margin-top: 8px;
  padding: 0px;
}

/* line 374, app/assets/stylesheets/organizations.scss */
.priority-notes {
  background-color: #f6f8fb;
  padding: 10px 15px;
  height: 100%;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  border-radius: 0.25rem;
}

/* line 4, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .interior-bin, body.organizations-index-body .interior-bin {
  min-height: 100vh;
}

/* line 9, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .bin-text-bold, body.organizations-index-body .bin-text-bold {
  font-weight: 700;
}

/* line 14, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body label.col-info-text, body.organizations-index-body label.col-info-text {
  font-size: 13px !important;
  line-height: 24px;
  color: #0f3950;
}

/* line 21, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .flex-break, body.organizations-index-body .flex-break {
  flex-basis: 100%;
  height: 0;
}

/* line 27, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .badge, body.organizations-index-body .badge {
  margin: 2px;
  font-size: 10px !important;
  font-weight: 600;
}

/* line 34, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__nested-table-bin, body.organizations-index-body .partner-org-card__nested-table-bin {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  border-bottom: 1px solid #d6e0e6;
  box-sizing: border-box;
  width: 100%;
  background-color: #f6f8fb;
}

/* line 46, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__pagination-bin, body.organizations-index-body .partner-org-card__pagination-bin {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 0px 6px;
  background-color: #f6f8fb;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
}

/* line 57, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__pagination-bin .btn, body.organizations-index-body .partner-org-card__pagination-bin .btn {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0px;
}

/* line 65, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body #org__search-status__filter-tabs, body.organizations-index-body #org__search-status__filter-tabs {
  border-bottom-width: 0px !important;
}

/* line 68, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body #org__search-status__filter-tabs a.nav-link, body.organizations-index-body #org__search-status__filter-tabs a.nav-link {
  border-bottom: 4px solid transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  box-sizing: border-box;
}

/* line 74, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body #org__search-status__filter-tabs a.nav-link:focus, body.partners-index-body #org__search-status__filter-tabs a.nav-link:active, body.organizations-index-body #org__search-status__filter-tabs a.nav-link:focus, body.organizations-index-body #org__search-status__filter-tabs a.nav-link:active {
  border-bottom: 4px solid transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

/* line 83, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body #org__search-status__filter-tabs a.nav-link:hover, body.organizations-index-body #org__search-status__filter-tabs a.nav-link:hover {
  background: #ffffff;
  border-bottom: 4px solid #e6ebf0;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

/* line 91, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body #org__search-status__filter-tabs a.nav-link.active, body.organizations-index-body #org__search-status__filter-tabs a.nav-link.active {
  background: #ffffff;
  border-bottom: 4px solid #18516e;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}

/* line 104, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__col-bin:first-child, body.organizations-index-body .partner-org-card__col-bin:first-child {
  flex: 2;
}

/* line 107, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__col-bin, body.organizations-index-body .partner-org-card__col-bin {
  flex: 1.185;
}

/* line 112, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container, body.organizations-index-body .partner-org-card__container {
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1px solid #d6e0e6;
}

/* line 121, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__col-bin, body.organizations-index-body .partner-org-card__container .partner-org-card__col-bin {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 8px;
  box-sizing: border-box;
}

/* line 131, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card-container__header, body.organizations-index-body .partner-org-card__container .partner-org-card-container__header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: #18516e;
  box-sizing: border-box;
  height: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
}

/* line 148, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card-container__header .partner-org-card__col-bin:first-child, body.organizations-index-body .partner-org-card__container .partner-org-card-container__header .partner-org-card__col-bin:first-child {
  padding-left: 16px !important;
}

/* line 151, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card-container__header .partner-org-card__col-bin:last-child, body.organizations-index-body .partner-org-card__container .partner-org-card-container__header .partner-org-card__col-bin:last-child {
  padding-right: 16px !important;
}

/* line 156, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .nested-header, body.organizations-index-body .partner-org-card__container .nested-header {
  background-color: #e6ebf0 !important;
  color: #0f3950 !important;
}

/* line 162, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__content-bin, body.organizations-index-body .partner-org-card__container .partner-org-card__content-bin {
  display: flex;
  background-color: #f6f8fb;
  width: 100%;
  padding: 0px 8px 8px 8px;
  flex-direction: column;
  box-sizing: border-box;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 174, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card, body.organizations-index-body .partner-org-card__container .partner-org-card {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

/* line 180, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card .partner-org-card__bin, body.organizations-index-body .partner-org-card__container .partner-org-card .partner-org-card__bin {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* line 191, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card, body.organizations-index-body .partner-org-card__container .partner-org-card {
  border-bottom: 1px solid #d6e0e6;
}

/* line 194, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card:last-child, body.organizations-index-body .partner-org-card__container .partner-org-card:last-child {
  border-bottom: 0px;
}

/* line 202, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* line 209, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 15px !important;
  line-height: 24px;
  font-weight: 800;
  margin-top: 1px;
}

/* line 220, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name a, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name a {
  margin-bottom: 0px;
}

/* line 223, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name .badge, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper label.partner-org-card__name .badge {
  margin: 0px 0px 2px 4px;
}

/* line 229, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-top: 2px;
}

/* line 237, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons a, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons a {
  font-size: 14px;
  font-weight: 600;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}

/* line 247, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons .partner-org-card__action_buttons__separator, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons .partner-org-card__action_buttons__separator {
  display: flex;
  align-items: stretch;
  height: 16px;
  width: 1px;
  background-color: #d6e0e6;
}

/* line 257, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons #partner-org-card__action_button_dropdown .dropdown-menu, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons #partner-org-card__action_button_dropdown .dropdown-menu {
  border-color: #d6e0e6;
}

/* line 260, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons #partner-org-card__action_button_dropdown a, body.organizations-index-body .partner-org-card__container #name.partner-org-card__col-bin .content-wrapper .partner-org-card__action_buttons #partner-org-card__action_button_dropdown a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

/* line 275, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container #toggle-bins.partner-org-card__col-bin, body.organizations-index-body .partner-org-card__container #toggle-bins.partner-org-card__col-bin {
  width: 100%;
  display: block !important;
  padding-top: 0px;
}

/* line 280, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown-bin, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown-bin {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 6px 8px;
  box-sizing: border-box;
  border: 1px solid #e6ebf0;
  border-radius: 4px;
  background: #ffffff;
}

/* line 289, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown-bin label, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown-bin label {
  font-size: 14px;
}

/* line 294, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown {
  width: 100%;
}

/* line 296, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
}

/* line 307, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin:hover, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin:hover {
  cursor: pointer;
}

/* line 309, app/assets/stylesheets/organizations_partners.scss */
body.partners-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin:hover .header-text, body.organizations-index-body .partner-org-card__container .partner-org-card__toggle-dropdown .header-bin:hover .header-text {
  text-decoration: underline;
}

/* line 2, app/assets/stylesheets/organizations_show.scss */
body.organizations-show-body .reinvite-btn {
  color: red;
}

/* line 2, app/assets/stylesheets/partners_index.scss */
body.partners-index-body .col-partner-cards {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 2, app/assets/stylesheets/partners_index.scss */
  body.partners-index-body .col-partner-cards {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  /* line 2, app/assets/stylesheets/partners_index.scss */
  body.partners-index-body .col-partner-cards {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 18, app/assets/stylesheets/partners_index.scss */
body.partners-index-body .card.partner-card .card-body {
  padding-bottom: 10px;
}

/* line 22, app/assets/stylesheets/partners_index.scss */
body.partners-index-body .card.partner-card .card-header.deleted {
  background: red;
}

/* line 28, app/assets/stylesheets/partners_index.scss */
body.partners-index-body .col-partner-cards .card.add-card {
  min-height: 287.844px;
}

/* line 1, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf {
  padding-left: 10px;
  padding-right: 10px;
}

/* line 5, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .content {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/* line 11, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .headline {
  font-size: 26px;
  line-height: 1.35417em;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  color: #0f3950;
  margin-bottom: 0.35em;
}

/* line 21, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .subhead {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 30, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .row {
  display: flex;
  flex-wrap: wrap;
}

/* line 35, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .col-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
}

/* line 41, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .hr {
  margin-bottom: 5px;
  border-top: 1.2px solid #d6e0e6;
}

/* line 46, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf table {
  border: 1px solid #d6e0e6;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
}

/* line 53, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf table tbody {
  display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}

/* line 59, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf table tr {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  padding: .1em;
  page-break-inside: avoid;
}

/* line 66, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf table td {
  font-size: 0.9em;
  padding: .6em;
  text-align: left;
}

/* line 72, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf table th {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #18516e;
  padding: .6em;
  text-align: left;
}

/* line 83, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .table-sm th, .organization-reports-pdf .table-sm td {
  padding: 0.3rem;
}

/* line 87, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .text-center {
  text-align: center;
}

/* line 91, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .report-totals-table {
  vertical-align: middle;
  table-layout: fixed;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 98, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .report-totals-table td {
  text-align: center;
  border: 1px solid #d6e0e6;
}

/* line 103, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .report-totals-table .headline {
  margin-bottom: 0;
  font-size: 34px;
}

/* line 109, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .placement-season-report-table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 15px;
}

/* line 115, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .placement-season-report-table th {
  font-size: 11px;
}

/* line 119, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .placement-season-report-table th:nth-child(1) {
  width: 40%;
}

/* line 123, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .placement-season-report-table tr:nth-child(2) {
  font-weight: 700;
  background-color: #fff59d;
}

/* line 128, app/assets/stylesheets/pdf.scss */
.organization-reports-pdf .body {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 3, app/assets/stylesheets/players.scss */
body.players-body #edit-image.btn, body.players-body #delete-image.btn, body.players-body #copy-player-btn.btn {
  margin-bottom: 10px;
}

/* line 7, app/assets/stylesheets/players.scss */
body.players-body .player-preview-image {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 8px;
}

/* line 15, app/assets/stylesheets/players.scss */
body.players-body .player-preview-image img {
  max-width: 100%;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

/* line 24, app/assets/stylesheets/players.scss */
body.players-body #preview, body.players-body #video_preview {
  width: 180px;
  /*height: 300px;*/
}

/* line 1, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body {
  /* preview and crop gray bins */
  /* preview gray bins */
  /* mobile sizes ------------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
}

/* line 3, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .col-player-preview, body.players-edit-image-body .col-player-crop {
  display: flex;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  /* line 3, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .col-player-preview, body.players-edit-image-body .col-player-crop {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  /* line 3, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .col-player-preview, body.players-edit-image-body .col-player-crop {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* line 16, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .col-player-accolade, body.players-edit-image-body .col-player-leaderboard, body.players-edit-image-body .col-player-sblb {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 15px;
}

/* line 23, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-preview-image-bin, body.players-edit-image-body .player-crop-image-bin {
  background-color: #f6f8fb;
  border: 1px solid #e6ebf0;
  padding: 20px 20px 10px 20px;
  width: 100%;
  /* label */
  /* uploaded image */
}

/* line 29, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-preview-image-bin .subhead, body.players-edit-image-body .player-crop-image-bin .subhead {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* line 35, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-preview-image-bin img, body.players-edit-image-body .player-crop-image-bin img {
  max-width: 300px;
  max-height: 400px;
  display: block;
  margin: 0 auto;
}

/* line 44, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin, body.players-edit-image-body .player-leaderboard-bin, body.players-edit-image-body .player-sblb-bin {
  background-color: #f6f8fb;
  border: 1px solid #e6ebf0;
  padding: 20px 20px 10px 20px;
  /* label */
  /* scoreboard overlays */
  /* accolade preview image bin */
  /* leaderboard preview image bin */
  /* sblb preview image bin */
}

/* line 50, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .subhead, body.players-edit-image-body .player-leaderboard-bin .subhead, body.players-edit-image-body .player-sblb-bin .subhead {
  display: block;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* line 58, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-accolade-overlay-bin, body.players-edit-image-body .player-accolade-bin .player-leaderboard-overlay-bin, body.players-edit-image-body .player-accolade-bin .player-sblb-overlay-bin, body.players-edit-image-body .player-leaderboard-bin .player-accolade-overlay-bin, body.players-edit-image-body .player-leaderboard-bin .player-leaderboard-overlay-bin, body.players-edit-image-body .player-leaderboard-bin .player-sblb-overlay-bin, body.players-edit-image-body .player-sblb-bin .player-accolade-overlay-bin, body.players-edit-image-body .player-sblb-bin .player-leaderboard-overlay-bin, body.players-edit-image-body .player-sblb-bin .player-sblb-overlay-bin {
  position: relative;
  width: 585px;
  height: 330px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 2 !important;
}

/* line 66, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-accolade-overlay-bin img, body.players-edit-image-body .player-accolade-bin .player-leaderboard-overlay-bin img, body.players-edit-image-body .player-accolade-bin .player-sblb-overlay-bin img, body.players-edit-image-body .player-leaderboard-bin .player-accolade-overlay-bin img, body.players-edit-image-body .player-leaderboard-bin .player-leaderboard-overlay-bin img, body.players-edit-image-body .player-leaderboard-bin .player-sblb-overlay-bin img, body.players-edit-image-body .player-sblb-bin .player-accolade-overlay-bin img, body.players-edit-image-body .player-sblb-bin .player-leaderboard-overlay-bin img, body.players-edit-image-body .player-sblb-bin .player-sblb-overlay-bin img {
  width: 100%;
}

/* line 72, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-accolade-image-bin, body.players-edit-image-body .player-leaderboard-bin .player-accolade-image-bin, body.players-edit-image-body .player-sblb-bin .player-accolade-image-bin {
  overflow: hidden;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 23px;
  left: 229px;
  width: 196px;
  height: 288px;
  z-index: -1;
}

/* line 82, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-accolade-image-bin img, body.players-edit-image-body .player-leaderboard-bin .player-accolade-image-bin img, body.players-edit-image-body .player-sblb-bin .player-accolade-image-bin img {
  width: 191px;
  height: 286px;
}

/* line 89, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-leaderboard-image-bin, body.players-edit-image-body .player-leaderboard-bin .player-leaderboard-image-bin, body.players-edit-image-body .player-sblb-bin .player-leaderboard-image-bin {
  overflow: hidden;
  position: absolute;
  top: 103px;
  left: 192px;
  width: 109px;
  height: 165px;
  z-index: -1;
}

/* line 97, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-leaderboard-image-bin img, body.players-edit-image-body .player-leaderboard-bin .player-leaderboard-image-bin img, body.players-edit-image-body .player-sblb-bin .player-leaderboard-image-bin img {
  width: 109px;
  height: 165px;
}

/* line 104, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-sblb-image-bin, body.players-edit-image-body .player-leaderboard-bin .player-sblb-image-bin, body.players-edit-image-body .player-sblb-bin .player-sblb-image-bin {
  overflow: hidden;
  position: absolute;
  top: 84px;
  left: 2px;
  width: 102px;
  height: 153px;
  z-index: -1;
}

/* line 112, app/assets/stylesheets/players_edit_image.scss */
body.players-edit-image-body .player-accolade-bin .player-sblb-image-bin img, body.players-edit-image-body .player-leaderboard-bin .player-sblb-image-bin img, body.players-edit-image-body .player-sblb-bin .player-sblb-image-bin img {
  width: 102px;
  height: 153px;
}

@media only screen and (max-width: 660px) {
  /* line 1, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body {
    /* padding on gray bin */
    /* overlay image sizes */
    /* accolade player image size */
    /* leaderboard player image size */
    /* leaderboard player image size */
  }
  /* line 124, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .player-accolade-bin, body.players-edit-image-body .player-leaderboard-bin, body.players-edit-image-body .player-sblb-bin {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 130, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .player-accolade-overlay-bin, body.players-edit-image-body .player-leaderboard-overlay-bin, body.players-edit-image-body .player-sblb-overlay-bin {
    width: 384px !important;
    height: 216px !important;
  }
  /* line 136, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .player-accolade-image-bin {
    height: 186px !important;
    width: 124px !important;
    left: 142px !important;
    bottom: 8.5px !important;
  }
  /* line 144, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .player-leaderboard-image-bin {
    height: 96px !important;
    width: 64px !important;
    left: 126px !important;
    top: 68px !important;
  }
  /* line 152, app/assets/stylesheets/players_edit_image.scss */
  body.players-edit-image-body .player-sblb-image-bin {
    height: 100.5px !important;
    width: 67px !important;
    left: 1px !important;
    top: 56.5px !important;
  }
}

/* line 2, app/assets/stylesheets/practices_index.scss */
body.practices-body .card-header.ended {
  background: #d32f2f;
}

/* line 6, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 10px;
}

/* line 11, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin .warning-content {
  background-color: #d32f2f;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

/* line 20, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin .warning-content .title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
}

/* line 25, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin .warning-content label {
  color: #ffffff;
  display: block;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* line 32, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin .warning-content a.btn.btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
  padding: 8px 20px 6px 20px;
  width: 125px;
  margin-bottom: 0px;
}

/* line 39, app/assets/stylesheets/practices_index.scss */
body.practices-body #user-warning-bin .warning-content a.btn.btn-secondary:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #d32f2f !important;
}

/* line 49, app/assets/stylesheets/practices_index.scss */
body.practices-body #practice-media-lightbox-modal .image-preview-bin {
  background-image: url(http://localhost:3000/assets/media-processing-icon-1872810a67531caf5cf9878f2493a47f27c0c061679de8882f83f5173044c414.png);
  width: 100%;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #18516e;
}

/* line 59, app/assets/stylesheets/practices_index.scss */
body.practices-body .button-bin {
  display: flex;
}

@media (min-width: 768px) {
  /* line 59, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin {
    flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  /* line 59, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin {
    flex-direction: column !important;
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  /* line 71, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin .form-buttons {
    flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  /* line 71, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin .form-buttons {
    flex-direction: column !important;
    width: 100%;
  }
}

@media (min-width: 768px) {
  /* line 81, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin .form-buttons input.btn.btn-main, body.practices-body .button-bin .form-buttons .btn.btn-secondary {
    margin-bottom: 0px;
    width: 125px !important;
  }
}

@media (max-width: 991.98px) {
  /* line 81, app/assets/stylesheets/practices_index.scss */
  body.practices-body .button-bin .form-buttons input.btn.btn-main, body.practices-body .button-bin .form-buttons .btn.btn-secondary {
    margin-bottom: 10px !important;
    width: 100% !important;
  }
}

/* line 1, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body {
  /*table headline and add period button*/
}

/* line 4, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content {
  /*sticky header headline*/
  /*button bin*/
  /*align buttons right*/
}

/* line 7, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content .headline {
  width: auto;
}

/* line 12, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content .button-bin {
  margin-left: auto;
  /*remove padding on col class*/
  /*main button width*/
}

/* line 16, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content .button-bin .col-12 {
  padding: 0px;
}

/* line 21, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content .button-bin .btn-main {
  margin-right: 0px;
  width: auto;
}

/* line 28, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .sticky-content .form-buttons {
  text-align: right;
}

/* line 33, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .dropdown-menu.template-dropdown {
  padding: 0px;
}

/* line 36, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .dropdown-menu.template-dropdown .template-selection {
  display: flex;
  flex-directioon: row;
  align-items: center;
  border-bottom: 1px solid #d6e0e6;
}

/* line 42, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .dropdown-menu.template-dropdown .template-selection .dropdown-item {
  padding: 12px 24px 12px 16px;
}

/* line 46, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .dropdown-menu.template-dropdown .template-selection .btn.btn-underline-delete, .practice-app-new-body .dropdown-menu.template-dropdown .template-selection .btn.btn-underline {
  padding: 8px 16px 8px 16px;
  margin: 4px 0px 4px 0px;
  border-left: 1px solid #d6e0e6;
}

/* line 51, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .dropdown-menu.template-dropdown .template-selection .btn.btn-underline-delete .fa, .practice-app-new-body .dropdown-menu.template-dropdown .template-selection .btn.btn-underline .fa {
  font-size: 16px;
}

/* line 59, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body a.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0);
  text-decoration: underline;
}

/* line 64, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .template-selection:last-child {
  border-bottom: 0px !important;
}

/* line 68, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body .template-selection:hover {
  background-color: #f6f8fb;
}

/* line 73, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods {
  table-layout: fixed;
  width: 100%;
  /*table row drag and drop helpers*/
  /*media scroller column padding*/
  /*trash can icon delete button*/
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods th:nth-child(1) {
  width: 10%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods th:nth-child(2) {
  width: 40%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods th:nth-child(4) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.practice-app-new-body table#practice-app-periods th:nth-child(5) {
  width: 10%;
}

/* line 77, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods .ui-sortable tr {
  cursor: move;
}

/* line 80, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods .ui-sortable tr:hover {
  background: #e6ebf0;
}

/* line 83, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods .ui-sortable-helper {
  border: 0px !important;
  padding: 0px;
  margin: 0px;
}

/* line 89, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods th {
  text-align: center;
  font-size: 0.7em;
}

/* line 93, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td {
  border: 1px solid #d6e0e6;
  text-align: center;
  /*media count and save & edit media button*/
  /*assigned media scroller*/
}

/* line 98, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .save-info-bin {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column;
}

@media (min-width: 992px) {
  /* line 98, app/assets/stylesheets/practices_new.scss */
  .practice-app-new-body table#practice-app-periods td .save-info-bin {
    flex-direction: row;
    justify-content: space-between !important;
  }
}

/* line 107, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .save-info-bin .media-items-count {
  font-weight: 700;
  margin-right: 0px;
}

@media (min-width: 992px) {
  /* line 107, app/assets/stylesheets/practices_new.scss */
  .practice-app-new-body table#practice-app-periods td .save-info-bin .media-items-count {
    margin-right: 8px;
  }
}

/* line 113, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .save-info-bin .media-items-count span {
  font-weight: 600;
}

/* line 117, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .save-info-bin a.btn {
  transition: all 0.3s ease;
  font-size: 0.85em !important;
  font-weight: 700;
  letter-spacing: 0px;
  color: #ffffff;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  text-transform: capitalize !important;
  border: 0px;
  padding: 10px 10px 9px 10px;
  margin-bottom: 0px;
}

/* line 133, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .save-info-bin a.btn:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0px;
}

/* line 144, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .media-scroll {
  display: block;
  text-align: left;
  border-top: 1px solid #d6e0e6;
  margin: 5px 0px 0px 0px;
  padding-top: 5px;
  height: 60px;
  overflow: auto;
  white-space: nowrap;
  /* feature images margins */
}

/* line 155, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td .media-scroll img {
  border: 1px solid #d6e0e6;
  height: 45px;
  width: auto;
  margin: 2px 2px 0px 2px;
}

/* line 166, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods td.media-content {
  padding-bottom: 0px;
}

/* line 171, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods .btn.btn-delete {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* line 175, app/assets/stylesheets/practices_new.scss */
.practice-app-new-body table#practice-app-periods .btn.btn-delete .fa {
  font-size: 18px;
}

/* line 1, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body {
  /* Content Area ------------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Form Save Button Content Row --------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* Table Column ------------------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* football practice media card -------------------------------- */
  /* Upload Media Column -----------------------------------------------------------------------------------------------
  ------------------------------------------------------------------------------------------------------------------- */
  /* upload media column */
  /* available media section */
  /* Media Card Image Lightbox Overlay */
  /* Media Name */
  /* Media Upload Images */
  /* media group card & media card -------------------------------- */
}

/* line 5, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .content-container {
  min-height: calc(100vh - 135px);
  margin-right: auto;
  margin-left: auto;
  padding: 30px 0 30px 0;
}

/* line 12, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body body {
  z-index: 1020;
}

/* line 16, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .modal {
  z-index: 1080 !important;
}

/* line 20, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .modal-backdrop {
  z-index: 1040;
}

/* line 27, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .sticky-content .headline {
  width: calc(100% - 125px) !important;
}

/* line 30, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .sticky-content .vrt-divider {
  width: 15px;
}

/* line 34, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .sticky-content input.btn.btn-main {
  margin: 0 !important;
}

/* line 41, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .table-responsive-scroll {
  height: calc(100vh - 290px);
  overflow: scroll;
  border: 1px solid #d6e0e6;
}

/* line 47, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file {
  transition: all 0.3s ease;
  color: #ffffff;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  text-decoration: none !important;
  margin-bottom: 12px;
}

/* line 59, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file input {
  margin-top: -12px;
}

/* line 63, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file label.control-label {
  margin: 0px !important;
  font-weight: 800;
}

/* line 68, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file .form-group.col-12 {
  margin: 0px !important;
  flex: none !important;
  padding: 0px !important;
}

/* line 75, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%) !important;
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  cursor: pointer !important;
}

/* line 86, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table {
  border: 0;
  /* make media drop fields green when droppable */
}

/* line 89, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table .media {
  display: table-row !important;
}

/* line 93, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.content {
  border-bottom: 0 !important;
}

/* line 96, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.content th {
  background-color: #e6ebf0;
  top: -2px;
  z-index: 900;
  color: #18516e;
  letter-spacing: 0;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: none !important;
  box-shadow: inset 0 -1px 0 0 #d6e0e6;
}

/* line 109, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr {
  border: 0;
}

/* line 113, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards {
  background-color: rgba(0, 0, 0, 0);
  /* border container */
}

/* line 117, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards .media-drop-container-wrapper {
  border: 2px dashed #d6e0e6;
}

/* line 120, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards a.group-collapser {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  margin-bottom: 0px;
}

/* line 128, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards a.group-collapser .fa {
  font-size: 20px;
}

/* line 131, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards a.group-collapser label.toggle-state {
  font-weight: 800;
  font-size: 12.5px;
  margin-left: 6px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* line 140, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards .group-collapser:hover {
  cursor: pointer;
}

/* line 146, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards.ui-droppable-active {
  background-color: #dcedc8;
}

/* line 149, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards.ui-droppable-active .media-drop-container-wrapper {
  border: 2px dashed #7cb342;
}

/* line 152, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table tr.assigned-cards.ui-droppable-active label.table-label {
  color: #558b2f;
}

/* line 157, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table td.media-cards {
  padding: 7px;
}

/* line 160, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table .media-drop-container-wrapper {
  min-height: 100px;
  padding: 5px;
}

/* line 164, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table .media-drop-container {
  padding: 8px;
}

/* line 168, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body table td {
  border: 0;
}

/* line 174, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .assigned-cards .add-card-link {
  display: none;
}

/* line 182, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 192, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .form-group label.control-label {
  display: none !important;
}

/* line 197, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 90%;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* line 204, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-0 {
  background-color: #147DFF;
}

/* line 207, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-1 {
  background-color: #D13B00;
}

/* line 210, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-2 {
  background-color: #FF8400;
}

/* line 213, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-3 {
  background-color: #03202F;
}

/* line 216, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-4 {
  background-color: #9531B1;
}

/* line 219, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-5 {
  background-color: #01B6DD;
}

/* line 222, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-6 {
  background-color: #1B9D14;
}

/* line 225, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-7 {
  background-color: #089898;
}

/* line 228, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-8 {
  background-color: #FFC000;
}

/* line 231, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-9 {
  background-color: #924B1F;
}

/* line 234, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-10 {
  background-color: #858C8E;
}

/* line 237, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .badge.index-11 {
  background-color: #ABB137;
}

/* line 241, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .top-container .settings-form {
  margin-left: 10px;
  margin-top: -3px;
  width: 100%;
}

/* line 248, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .media-settings {
  width: 100%;
}

/* line 252, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .form-group input {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  height: calc(1.75rem + 2px);
}

/* line 260, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .form-group select {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  height: calc(1.75rem + 2px);
}

/* line 268, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .form-group .control-label {
  margin-bottom: 2px;
  margin-top: 4px;
}

/* line 273, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .media-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #d6e0e6;
  padding-top: 4px;
  padding-bottom: 8px;
}

/* line 281, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card .card-footer {
  padding: 4px 16px 4px 16px;
}

/* line 285, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card a.collapser {
  margin-bottom: 0;
}

/* line 287, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.football-prac-card a.collapser .fa {
  font-size: 20px;
}

/* line 297, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .uploaded-column {
  /* upload media card */
}

/* line 300, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .uploaded-column .upload {
  width: 100%;
}

/* line 303, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .uploaded-column .upload .col-media-cards {
  max-width: 100% !important;
}

/* line 306, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .uploaded-column .upload .card.add-card {
  height: 185px;
}

/* line 313, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body #media-area {
  background: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
  border: 1px solid #d6e0e6;
  margin-top: -1px;
  height: calc(100vh - 276px);
  padding: 8px 16px 8px 16px;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 326, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .preview-image-bin img {
  height: 84px;
  width: auto;
}

/* line 332, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body img.processing-icon {
  height: 84px;
  width: auto;
}

/* line 337, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card-hero-image {
  overflow: hidden;
  text-align: center;
  position: relative;
  height: 84px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  background-color: #18516e;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 350, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card-hero-image img {
  margin-left: auto;
  margin-right: auto;
  height: 84px;
  width: auto;
}

/* line 359, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .preview-img-overlay {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 86px;
  width: auto;
  opacity: 0;
  transition: .3s ease;
  background-color: rgba(15, 57, 80, 0.75);
}

/* line 373, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .preview-img-overlay .label-2 {
  text-align: center;
  color: #ffffff;
  margin-top: 39px;
  margin-bottom: 0;
}

/* line 381, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card-hero-image:hover .preview-img-overlay {
  opacity: 1;
  cursor: crosshair;
}

/* line 387, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .label-1.media-name {
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

/* line 397, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media-area-container {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 402, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media-area-container .subhead {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-bottom: 0;
  padding: 2px;
  text-align: center;
  background-color: #e6ebf0;
  border: 1px solid #d6e0e6;
}

/* line 411, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media-area-container .media.ui-draggable.ui-draggable-handle {
  display: block !important;
}

/* line 419, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .badge.media-usage-count {
  background-color: #d6e0e6;
  color: #18516e;
  margin-top: 10px;
  text-align: left;
  width: auto;
}

/* line 427, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .card-hero-image {
  background-color: #e6ebf0 !important;
}

/* line 431, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .top-container {
  margin-top: 8px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 438, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .top-container .btn.btn-main {
  width: 55px;
  margin-left: 8px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/* line 447, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .top-container .form-group.col-12 {
  margin-bottom: 0;
  flex: none !important;
  padding: 0;
  width: calc(100% - 63px) !important;
}

/* line 453, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .top-container .form-group.col-12 label.control-label {
  display: none;
}

/* line 460, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .preview-img-overlay .label-2 {
  margin-top: 33px;
}

/* line 465, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .card-footer {
  padding: 4px 16px 4px 16px;
}

/* line 469, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container a.collapser {
  margin-bottom: 0;
}

/* line 471, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container a.collapser .fa {
  font-size: 20px;
}

/* line 476, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.media-group-container .form-group input {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
  height: calc(1.75rem + 2px);
}

/* line 485, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media.ui-draggable-dragging {
  display: block;
}

/* line 488, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media.ui-draggable-dragging img {
  height: 84px !important;
  width: auto !important;
  display: block !important;
}

/* line 494, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .media.ui-draggable-dragging .media-name {
  width: 100% !important;
  display: block !important;
}

/* line 500, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.add-card {
  box-shadow: none !important;
  border: 2px dashed #d6e0e6 !important;
  height: 125px !important;
  min-height: 1px;
}

/* line 506, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.add-card .card-link {
  border: 0 !important;
  height: 125px !important;
}

/* line 511, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card.add-card .headline-icon-bin {
  top: 13% !important;
}

/* line 515, app/assets/stylesheets/practices_upload_media.scss */
.practices-upload-media-body .card-number {
  position: absolute;
  height: 25px;
  width: 25px;
  font-size: 13px;
  padding-top: 7px;
  padding-bottom: 5px;
  text-align: center;
  color: #ffffff;
  top: 8px;
  right: 8px;
  background-color: #18516e;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

/* line 6, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body .interior-bin {
  box-shadow: none !important;
  padding-bottom: 88px;
  max-width: 512px !important;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body .viewport-bin {
  width: 100% !important;
  margin-left: 0px !important;
}

@media (min-width: 768px) {
  /* line 20, app/assets/stylesheets/signage_devices.scss */
  body.signage-devices-body #content-bin {
    margin-top: 86px !important;
  }
}

/* line 26, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body #sidebar-navpanel {
  display: none;
}

/* line 31, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body #header-bin {
  margin-top: 0px;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: #143052;
  height: auto !important;
  box-sizing: border-box;
  border-bottom: 4px solid #cddb3e;
  border-left: 0px !important;
}

/* line 42, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body #header-bin #login-name {
  display: none !important;
}

/* line 47, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body #header-bin .fa.fa-user {
  display: none;
}

/* line 53, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body #content-bin {
  background: #ffffff;
  min-height: calc(100vh - 125px);
  box-sizing: border-box;
}

/* line 61, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body h1, body.signage-devices-body h2, body.signage-devices-body h3, body.signage-devices-body h4, body.signage-devices-body h5, body.signage-devices-body h6, body.signage-devices-body label, body.signage-devices-body p {
  color: #143052;
}

/* line 68, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list {
  list-style-type: none;
  padding-left: 0px;
}

/* line 73, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list label.signage-devices-list__radio-list-input__section-label {
  padding-bottom: 8px;
  font-weight: 700;
}

/* line 79, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input {
  margin-bottom: 8px;
  box-sizing: border-box;
  border: 2px solid #d6e0e6;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* line 91, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__checkbox-bin {
  height: 24px;
  width: 24px;
  margin-bottom: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #e6ebf0;
  margin-right: 16px;
}

/* line 102, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__checkbox-bin .fa {
  color: transparent;
}

/* line 107, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__content {
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 114, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__content .label {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
}

/* line 121, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__content .body {
  width: 100%;
  font-weight: 600;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

/* line 129, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__text-fields {
  padding-top: 12px;
  width: 100%;
  padding-left: 48px;
  box-sizing: border-box;
  padding-right: 16px;
}

/* line 136, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input .radio-list-input__text-fields .form-group {
  margin-bottom: 8px;
  padding: 0px 8px;
}

/* line 144, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input:hover {
  cursor: pointer;
}

/* line 149, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input.selected {
  border: 2px solid #0689D0;
  background-color: #E1F3FE;
}

/* line 152, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input.selected .radio-list-input__checkbox-bin {
  background-color: #0689D0;
}

/* line 154, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body ul#signage-devices-list .signage-devices-list__radio-list-input.selected .radio-list-input__checkbox-bin .fa {
  color: #ffffff;
}

/* line 161, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body .signage-devices__fixed-button-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #ffffff;
  border-top: 2px solid #d6e0e6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* line 175, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body .signage-devices__fixed-button-dock .btn.btn-main {
  max-width: 488px !important;
  height: 56px;
  border-radius: 8px !important;
  background-color: #0689D0;
  background-image: none;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 0px !important;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 191, app/assets/stylesheets/signage_devices.scss */
body.signage-devices-body .signage-devices__fixed-button-dock .tertiary-btn {
  max-width: 488px !important;
  background-color: #F1F5F9;
  border-radius: 8px !important;
  height: 56px !important;
  color: #4B5C7C;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 0px !important;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 3, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body #original, body.sponsor-images-edit-body #replacement {
  max-width: 100%;
  height: auto;
  padding: 10px;
}

/* line 9, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .image-orig {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  background-color: #f6f8fb;
  border-left: 1px solid #d6e0e6;
  border-top: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  padding: 5px;
}

@media (min-width: 992px) {
  /* line 9, app/assets/stylesheets/sponsor_images_edit.scss */
  body.sponsor-images-edit-body .image-orig {
    flex: 0 0 50%;
    max-width: 50%;
    border-left: 1px solid #d6e0e6;
    border-top: 1px solid #d6e0e6;
    border-bottom: 1px solid #d6e0e6;
    border-right: 0;
  }
}

/* line 25, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .image-orig label {
  display: block;
  text-align: center;
}

/* line 31, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .image-replace {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  border: 1px solid #d6e0e6;
  padding: 5px;
}

@media (min-width: 992px) {
  /* line 31, app/assets/stylesheets/sponsor_images_edit.scss */
  body.sponsor-images-edit-body .image-replace {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* line 40, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .image-replace label {
  display: block;
  text-align: center;
}

/* line 46, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .select-frame-bin {
  padding: 16px;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  text-align: center;
}

/* line 53, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body .embed-responsive.embed-responsive-16by9 {
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* line 60, app/assets/stylesheets/sponsor_images_edit.scss */
body.sponsor-images-edit-body button.vjs-big-play-button {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 1, app/assets/stylesheets/sponsor_sequences_form.scss */
.card.sequence-media-card .checkmark {
  height: 0;
  width: 0;
}

/* line 6, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* line 11, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin .label-btn-bin {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

/* line 17, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin .label-btn-bin label {
  font-size: 13px;
  font-weight: 600;
}

/* line 21, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin .label-btn-bin .btn {
  margin-right: 8px;
}

/* line 24, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin .label-btn-bin .btn .fa {
  font-size: 20px;
}

/* line 29, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin #fill-mode-apply-all {
  flex: 1;
  margin-bottom: 0px;
}

/* line 33, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-fill-mode-options-bin .form-group {
  flex: 3;
  padding-bottom: 0px !important;
  padding-left: 0px !important;
}

/* line 40, app/assets/stylesheets/sponsor_sequences_form.scss */
#sequence-period-content {
  display: none;
}

/* line 44, app/assets/stylesheets/sponsor_sequences_form.scss */
.media-images-grid-wrapper {
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  background-color: #f6f8fb;
  padding-top: 4px;
  padding-bottom: 4px;
}

/* line 52, app/assets/stylesheets/sponsor_sequences_form.scss */
#available-images-message {
  min-height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px !important;
}

/* line 61, app/assets/stylesheets/sponsor_sequences_form.scss */
a.sequence-info-toggle {
  width: 100%;
  margin-bottom: 10px !important;
}

/* line 65, app/assets/stylesheets/sponsor_sequences_form.scss */
a.sequence-info-toggle:active, a.sequence-info-toggle:focus {
  box-shadow: none !important;
}

/* line 68, app/assets/stylesheets/sponsor_sequences_form.scss */
.sequence-info-toggle span.span-2 {
  display: inline;
}

/* line 71, app/assets/stylesheets/sponsor_sequences_form.scss */
.sequence-info-toggle:not(.collapsed) span.span-1 {
  display: none;
}

/* line 74, app/assets/stylesheets/sponsor_sequences_form.scss */
.sequence-info-toggle.collapsed span.span-2 {
  display: none;
}

/* line 1, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body {
  /* header module */
  /* help module */
  /* slider bin filter bar */
}

/* line 3, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .content.alert-bar-bin {
  padding: 0px;
  position: sticky;
  z-index: 1000;
  top: 80px;
}

/* line 11, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .header-module.input {
  margin-bottom: 0px;
}

/* line 14, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .header-module.input .form-group {
  margin-bottom: 10px;
}

/* line 19, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .warning-message {
  color: #d32f2f;
}

/* line 23, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .header-module {
  /* deactivate button */
}

@media (max-width: 767.98px) {
  /* line 25, app/assets/stylesheets/sponsors_edit.scss */
  body.sponsors-edit-body .header-module .btn.btn-delete {
    margin-bottom: 15px;
  }
}

/* line 34, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body #wrapper-content, body.sponsors-edit-body #wrapper-3x2-content, body.sponsors-edit-body #wrapper-2x1-content, body.sponsors-edit-body #secondary-wrapper-content, body.sponsors-edit-body #third-wrapper-content,
body.sponsors-edit-body #wrapper-wide-content, body.sponsors-edit-body #fanapp-feature-content, body.sponsors-edit-body #fanapp-event-feed-content, body.sponsors-edit-body #panorama-ad-content, body.sponsors-edit-body #brand-ad-content,
body.sponsors-edit-body #signature-ad-content, body.sponsors-edit-body #cinema-ad-content, body.sponsors-edit-body #skyscraper-ad-content, body.sponsors-edit-body #panel-ad-content, body.sponsors-edit-body #tile-ad-content, body.sponsors-edit-body #stripe-ad-content,
body.sponsors-edit-body #score-table-ad-content, body.sponsors-edit-body #steambug-ad-content {
  display: none;
}

/* line 41, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body #help-modal-sponsors {
  right: 0;
  padding-right: 0px !important;
}

/* line 46, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body #fanapp-event-feed-content img {
  height: 300px;
}

/* line 50, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body #fanapp-feature-content img {
  height: 300px;
}

/* line 55, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .modal-dialog-slideout .modal-body {
  padding: 1rem 0rem 1rem 1rem;
}

/* line 59, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .modal-dialog-slideout .pre-scrollable {
  height: calc(100vh - 254px) !important;
  min-height: calc(100vh - 254px) !important;
  max-height: calc(100vh - 254px) !important;
}

/* line 71, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .modal-dialog-slideout .modal-feature-bin {
  background-color: #e6ebf0;
  padding: 10px;
  position: fixed;
  bottom: 16px;
  left: 16px;
  width: calc(100% - 32px);
}

/* line 82, app/assets/stylesheets/sponsors_edit.scss */
body.sponsors-edit-body .actions-button-bin {
  text-align: right !important;
}

@media (max-width: 767.98px) {
  /* line 85, app/assets/stylesheets/sponsors_edit.scss */
  body.sponsors-edit-body .actions-button-bin .btn.btn-secondary {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  /* line 91, app/assets/stylesheets/sponsors_edit.scss */
  body.sponsors-edit-body .actions-button-bin .btn.btn-delete {
    margin-bottom: 0px;
  }
}

/* line 3, app/assets/stylesheets/sponsors_index.scss */
body.sponsors-index-body .media-group-card .card-header.inactive {
  background: #d32f2f;
}

/* line 7, app/assets/stylesheets/sponsors_index.scss */
body.sponsors-index-body .media-group-card .usage-state-bin {
  background: #ffffff;
  color: #d32f2f;
}

/* 7) Variables ----------------------------------------------------------------------------------------------------- */
/* Color Variables -----------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Warning Text --------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 26, app/assets/stylesheets/global/7--sv-variables.scss */
.warning-text {
  color: #d32f2f;
}

/* Typography Adjustments ----------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* monospaced font for clock on streaming interface */
@font-face {
  font-family: "Score-Regular";
  /* path is relative to app/assets/fonts */
  src: url(http://localhost:3000/assets/Score-Regular-829b4c5436e53784f42ad9955e968da69be943528ef4f456f7a079d24c8e462f.otf) format("truetype");
}

/* line 40, app/assets/stylesheets/global/7--sv-variables.scss */
body {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #18516e;
}

/* line 48, app/assets/stylesheets/global/7--sv-variables.scss */
.display, .headline, .title, .subhead, .body, .label-1, .label-2, .menu, .text-button, a {
  font-family: Nunito Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin-bottom: 0.35em;
}

/* Typography Classes --------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* line 59, app/assets/stylesheets/global/7--sv-variables.scss */
.display {
  font-size: 34px;
  line-height: 1.20588em;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: inherit;
  color: #ffffff;
}

/* line 68, app/assets/stylesheets/global/7--sv-variables.scss */
.headline {
  font-size: 26px;
  line-height: 1.35417em;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: inherit;
  color: #0f3950;
}

/* line 77, app/assets/stylesheets/global/7--sv-variables.scss */
.title {
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 86, app/assets/stylesheets/global/7--sv-variables.scss */
.subhead {
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.1px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 95, app/assets/stylesheets/global/7--sv-variables.scss */
.body {
  font-size: 14px;
  line-height: 1.46429em;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: inherit;
  color: #18516e;
}

/* line 104, app/assets/stylesheets/global/7--sv-variables.scss */
.label-1 {
  font-size: 12px;
  line-height: 1.71429em;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: inherit;
  color: #18516e;
}

/* line 113, app/assets/stylesheets/global/7--sv-variables.scss */
.label-2 {
  font-size: 11px;
  line-height: 1.71429em;
  letter-spacing: 0.75px;
  font-weight: 800;
  text-transform: uppercase;
  color: #18516e;
}

/* Mobile Typography ---------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /* line 127, app/assets/stylesheets/global/7--sv-variables.scss */
  .display {
    font-size: 26px;
  }
  /* line 131, app/assets/stylesheets/global/7--sv-variables.scss */
  .headline {
    font-size: 22px;
  }
  /* line 135, app/assets/stylesheets/global/7--sv-variables.scss */
  .title {
    font-size: 18px;
  }
  /* line 139, app/assets/stylesheets/global/7--sv-variables.scss */
  .subhead {
    font-size: 14px;
  }
  /* line 143, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-1 {
    font-size: 11px;
  }
  /* line 147, app/assets/stylesheets/global/7--sv-variables.scss */
  .label-2 {
    font-size: 10px;
  }
}

/* 8) Helpers, Mixins and Placeholders  ----------------------------------------------------------------------------- */
/* Helpers -------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* Margins and Padding ---------------------------------------------------------------------------------------------- */
/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-0 {
  margin-top: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-0 {
  padding-top: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-0 {
  margin-bottom: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-0 {
  padding-bottom: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-0 {
  margin-left: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-0 {
  padding-left: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-0 {
  margin-right: 0px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-0 {
  padding-right: 0px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-1 {
  margin-top: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-1 {
  padding-top: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-1 {
  margin-bottom: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-1 {
  padding-bottom: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-1 {
  margin-left: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-1 {
  padding-left: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-1 {
  margin-right: 1px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-1 {
  padding-right: 1px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-2 {
  margin-top: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-2 {
  padding-top: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-2 {
  margin-bottom: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-2 {
  padding-bottom: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-2 {
  margin-left: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-2 {
  padding-left: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-2 {
  margin-right: 2px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-2 {
  padding-right: 2px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-3 {
  margin-top: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-3 {
  padding-top: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-3 {
  margin-bottom: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-3 {
  padding-bottom: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-3 {
  margin-left: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-3 {
  padding-left: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-3 {
  margin-right: 3px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-3 {
  padding-right: 3px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-4 {
  margin-top: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-4 {
  padding-top: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-4 {
  margin-bottom: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-4 {
  padding-bottom: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-4 {
  margin-left: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-4 {
  padding-left: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-4 {
  margin-right: 4px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-4 {
  padding-right: 4px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-5 {
  margin-top: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-5 {
  padding-top: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-5 {
  margin-bottom: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-5 {
  padding-bottom: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-5 {
  margin-left: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-5 {
  padding-left: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-5 {
  margin-right: 5px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-5 {
  padding-right: 5px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-6 {
  margin-top: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-6 {
  padding-top: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-6 {
  margin-bottom: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-6 {
  padding-bottom: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-6 {
  margin-left: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-6 {
  padding-left: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-6 {
  margin-right: 6px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-6 {
  padding-right: 6px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-7 {
  margin-top: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-7 {
  padding-top: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-7 {
  margin-bottom: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-7 {
  padding-bottom: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-7 {
  margin-left: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-7 {
  padding-left: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-7 {
  margin-right: 7px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-7 {
  padding-right: 7px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-8 {
  margin-top: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-8 {
  padding-top: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-8 {
  margin-bottom: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-8 {
  padding-bottom: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-8 {
  margin-left: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-8 {
  padding-left: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-8 {
  margin-right: 8px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-8 {
  padding-right: 8px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-9 {
  margin-top: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-9 {
  padding-top: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-9 {
  margin-bottom: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-9 {
  padding-bottom: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-9 {
  margin-left: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-9 {
  padding-left: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-9 {
  margin-right: 9px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-9 {
  padding-right: 9px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-10 {
  margin-top: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-10 {
  padding-top: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-10 {
  margin-bottom: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-10 {
  padding-bottom: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-10 {
  margin-left: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-10 {
  padding-left: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-10 {
  margin-right: 10px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-10 {
  padding-right: 10px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-15 {
  margin-top: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-15 {
  padding-top: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-15 {
  margin-bottom: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-15 {
  padding-bottom: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-15 {
  margin-left: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-15 {
  padding-left: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-15 {
  margin-right: 15px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-15 {
  padding-right: 15px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-20 {
  margin-top: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-20 {
  padding-top: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-20 {
  margin-bottom: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-20 {
  padding-bottom: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-20 {
  margin-left: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-20 {
  padding-left: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-20 {
  margin-right: 20px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-20 {
  padding-right: 20px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-25 {
  margin-top: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-25 {
  padding-top: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-25 {
  margin-bottom: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-25 {
  padding-bottom: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-25 {
  margin-left: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-25 {
  padding-left: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-25 {
  margin-right: 25px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-25 {
  padding-right: 25px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-30 {
  margin-top: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-30 {
  padding-top: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-30 {
  margin-bottom: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-30 {
  padding-bottom: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-30 {
  margin-left: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-30 {
  padding-left: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-30 {
  margin-right: 30px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-30 {
  padding-right: 30px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-35 {
  margin-top: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-35 {
  padding-top: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-35 {
  margin-bottom: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-35 {
  padding-bottom: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-35 {
  margin-left: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-35 {
  padding-left: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-35 {
  margin-right: 35px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-35 {
  padding-right: 35px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-40 {
  margin-top: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-40 {
  padding-top: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-40 {
  margin-bottom: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-40 {
  padding-bottom: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-40 {
  margin-left: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-40 {
  padding-left: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-40 {
  margin-right: 40px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-40 {
  padding-right: 40px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-45 {
  margin-top: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-45 {
  padding-top: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-45 {
  margin-bottom: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-45 {
  padding-bottom: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-45 {
  margin-left: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-45 {
  padding-left: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-45 {
  margin-right: 45px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-45 {
  padding-right: 45px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-50 {
  margin-top: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-50 {
  padding-top: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-50 {
  margin-bottom: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-50 {
  padding-bottom: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-50 {
  margin-left: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-50 {
  padding-left: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-50 {
  margin-right: 50px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-50 {
  padding-right: 50px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-75 {
  margin-top: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-75 {
  padding-top: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-75 {
  margin-bottom: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-75 {
  padding-bottom: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-75 {
  margin-left: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-75 {
  padding-left: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-75 {
  margin-right: 75px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-75 {
  padding-right: 75px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-85 {
  margin-top: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-85 {
  padding-top: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-85 {
  margin-bottom: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-85 {
  padding-bottom: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-85 {
  margin-left: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-85 {
  padding-left: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-85 {
  margin-right: 85px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-85 {
  padding-right: 85px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-100 {
  margin-top: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-100 {
  padding-top: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-100 {
  margin-bottom: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-100 {
  padding-bottom: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-100 {
  margin-left: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-100 {
  padding-left: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-100 {
  margin-right: 100px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-100 {
  padding-right: 100px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-t-115 {
  margin-top: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-t-115 {
  padding-top: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-b-115 {
  margin-bottom: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-b-115 {
  padding-bottom: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-l-115 {
  margin-left: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-l-115 {
  padding-left: 115px !important;
}

/* line 18, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-r-115 {
  margin-right: 115px !important;
}

/* line 22, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-r-115 {
  padding-right: 115px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-0 {
  margin: 0px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-0 {
  padding: 0px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-1 {
  margin: 1px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-1 {
  padding: 1px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-2 {
  margin: 2px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-2 {
  padding: 2px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-3 {
  margin: 3px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-3 {
  padding: 3px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-4 {
  margin: 4px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-4 {
  padding: 4px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-5 {
  margin: 5px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-5 {
  padding: 5px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-6 {
  margin: 6px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-6 {
  padding: 6px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-7 {
  margin: 7px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-7 {
  padding: 7px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-8 {
  margin: 8px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-8 {
  padding: 8px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-9 {
  margin: 9px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-9 {
  padding: 9px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-10 {
  margin: 10px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-10 {
  padding: 10px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-15 {
  margin: 15px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-15 {
  padding: 15px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-20 {
  margin: 20px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-20 {
  padding: 20px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-25 {
  margin: 25px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-25 {
  padding: 25px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-30 {
  margin: 30px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-30 {
  padding: 30px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-35 {
  margin: 35px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-35 {
  padding: 35px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-40 {
  margin: 40px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-40 {
  padding: 40px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-45 {
  margin: 45px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-45 {
  padding: 45px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-50 {
  margin: 50px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-50 {
  padding: 50px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-75 {
  margin: 75px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-75 {
  padding: 75px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-85 {
  margin: 85px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-85 {
  padding: 85px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-100 {
  margin: 100px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-100 {
  padding: 100px !important;
}

/* line 29, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.m-115 {
  margin: 115px !important;
}

/* line 32, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.p-115 {
  padding: 115px !important;
}

/* Mixins --------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------- */
/* table column width generator ------------------------------------------------------------------------------------- */
/* Object Positioning ----------------------------------------------------------------------------------------------- */
/* Transitions ------------------------------------------------------------------------------------------------------ */
/* Opacity ---------------------------------------------------------------------------------------------------------- */
/* Centerer --------------------------------------------------------------------------------------------------------- */
/* Placeholders ----------------------------------------------------------------------------------------------------- */
/* Box Shadow ------------------------------------------------------------------------------------------------------- */
/* line 129, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#header-bin #profile-bin #profile-slider, .sv-dropdown-menu, .sv-dropdown-bin, #subheader-bin #season-bin, .interior-bin, body.customer-checklist-body .content-wrap {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05), 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* line 133, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.popover, .close-btn, .filter__search-select__dropdown-bin, .card, .card .card-header.large .feature-image, .card .checkmark, .card.practice-app-card .team-matchup-bin img.team-logo, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.season-card .card-body .feature-image, .card.meet-card .card-body .feature-image, .card.team-card .card-body .feature-image, .card.player-card .card-body .feature-image, .tooltip-inner, .card-header a.btn.btn-main, .card-header a.btn.btn-delete, .number-bin-button, .dropdown-menu.filter-dropdown-1, .bootstrap-datetimepicker-widget.dropdown-menu, body.media-performance-reports-body .jumbotron, body.organization-reports-body .jumbotron {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14), 0 2px 3px rgba(0, 0, 0, 0.17);
}

/* line 137, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#sidebar-navpanel {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 2px 13px rgba(0, 0, 0, 0.25);
}

/* Border Radius ---------------------------------------------------------------------------------------------------- */
/* line 144, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.data-header {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -moz-border-top-left-radius: 7px;
  -webkit-border-top-left-radius: 7px;
  -moz-border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -khtml-border-top-left-radius: 7px;
  -khtml-border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 172, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
#subheader-bin #season-bin, .alert-primary, .alert-secondary, .alert-success, .alert-danger, .alert-warning, .alert-info, .alert-light, .alert-dark, .close-btn, .notification-bin, #upcoming-games-carousel.carousel .carousel-inner, .card, .col-media-cards .card.add-card a.btn-file.card-link, .card.sequence-media-card .card-body .media-type .group-name, .card.sequence-media-card .card-body .media-type .media-pool-indicator, .card.sequence-media-card .card-body .media-type .sequence-indicator, .card.sequence-media-card .card-body .media-content-bin .selected-media-actions-bin .status-indicator, pre, .col-av-support-image-cards .card.add-card a.btn-file.card-link, .manage-carousel-bin > div a.btn-file, body.admin-carousel-items-index-body .manage-carousel-bin > div a.btn-file, body.devise-two-factor-authentication-body .content-container, body.devise-two-factor-authentication-body .access-denied-tag, body.home-dedicated-sponsor-body ul#sequence-previews li .preview-image, body.moments-body ul#preview-clips li .preview-image img, body.moments-body .active-media-info-container .clip-preview-bin .video-preview, body.moments-body .active-media-info-container .approval-module, body.practices-body #user-warning-bin .warning-content {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 7px;
}

/* line 182, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .btn-file-upload, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50px;
}

/* line 192, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.stream-body .left-panel .org-logo, .card .checkmark, .card.event-card .card-body .event-options-bin a.btn.btn-main, .card.practice-app-card .practice-options-bin a.btn.btn-main, .card.media-card .card-footer .url-status-indicator, .card.sequence-media-card .card-body .media-content-bin a.btn.btn-main, .card.meet-card .card-footer .game-options-bin a.btn.btn-main, .col-tennis-match-cards .tennis-match-card .match-info-bin .action-btn-bin a.btn.btn-main, .card.team-card .card-body ul .team-color-bin, .card.rma-card .card-body .card-footer .url-status-indicator, .card-header a.btn.btn-main, .card-header a.btn.btn-delete, .number-bin-button, .status-notice-none, .status-notice-active, body.admin-dashboard-all-display-app-versions-body .locked-row-style td .icon-bin, body.customer-checklist-body .content-wrap .customer-checklist li .content-container .amount-indicator, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-underline-delete, body.dedicated-sequences-index-body .dropdown-menu a.btn.btn-main.edit-template-btn, .practices-upload-media-body .card-number {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  border-radius: 50%;
}

/* Buttons Base ----------------------------------------------------------------------------------------------------- */
/* line 209, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main, body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand, body.streaming-accounts-body a.btn.deactivate-btn, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray, body.streaming-accounts-body a.btn.btn-delete, .btn-file-upload, a.btn.btn-main, button.btn.btn-main, span.btn.btn-main, a#new-term-btn.btn.btn-main, .btn.btn-main, a.btn.btn-secondary, button.btn.btn-secondary, span.btn.btn-secondary, .btn.btn-secondary, body.admin-av-index-body table.hubspot-table a.btn.btn-main.hubspot-link, body.dedicated-sequences-index-body .show > .btn-secondary.dropdown-toggle, .practice-app-new-body table#practice-app-periods td .save-info-bin a.btn, .practices-upload-media-body a.btn.btn-main.upload-data-btn.btn-file {
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  padding: 12px 20px 10px 20px;
  font-size: 11px;
  line-height: 10px;
  letter-spacing: 0.75px;
  font-weight: 900;
  text-transform: uppercase;
}

/* "Add" Cards Link Wrapper ----------------------------------------------------------------------------------------- */
/* "Add" Cards Icon ------------------------------------------------------------------------------------------------- */
/* Cards Feature Image Sizing --------------------------------------------------------------------------------------- */
/* line 260, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.slider-bin .feature-bin .media-preview-image, .card .card-hero-image, .card .card-media-scroll img, .card.sequence-media-card .card-body .feature-image-bin .feature-image, .practice-app-new-body table#practice-app-periods td .media-scroll img {
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #0f3950;
  background-position: center;
  position: relative;
}

/* Underline Button Styles ------------------------------------------------------------------------------------------ */
/* line 271, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.filter-bin a.btn.btn-secondary, .filter-bin button.btn.btn-secondary, .btn.btn-underline, a.btn.btn-help-modal, body.admin-advanced-av-presets-body .btn.btn-underline, body.admin-api-clients-body .admin-api-clients-table a, body.admin-app-versions-body .btn.btn-underline, body.admin-av-presets-body a.btn.btn-underline, body.admin-av-presets-body button.btn.btn-underline, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-dashboard-game-support-body .card.game-support-card .season-name a, body.admin-dashboard-game-support-body .card.game-support-card .game-number a, body.admin-dashboard-game-support-body .card.game-support-card .game-date a, body.admin-dashboard-game-support-body .card.game-support-card .team-name a, body.admin-dashboard-game-support-body .card.game-support-card .team-number a, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a, body.admin-dashboard-index-body #admin-school-alerts-table a, body.admin-dashboard-index-body #delayed-jobs-table a, body.admin-dashboard-index-body #admin-current-games-table a, body.admin-dashboard-index-body #admin-games-not-started-table a, body.admin-dashboard-index-body #admin-closed-games-table a, body.admin-dashboard-index-body #admin-forcast-table a, body.admin-display-apps-body .interior-bin a, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline, body.admin-scorekeepers-body .interior-bin a, a.btn.btn-underline, body.games-body .game-stats-info-content .btn-underline, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports, body.organization-reports-body .btn.btn-underline, body.organization-reports-body .media-reports-info-table .btn.btn-reports, body.organization-settings-body a.btn.btn-underline, body.organizations-body a.btn.btn-underline {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline;
  color: #0f3950;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-transform: uppercase;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
}

/* line 288, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.filter-bin a.btn.btn-secondary:hover, .filter-bin button.btn.btn-secondary:hover, .btn.btn-underline:hover, a.btn.btn-help-modal:hover, body.admin-advanced-av-presets-body .btn.btn-underline:hover, body.admin-api-clients-body .admin-api-clients-table a:hover, body.admin-app-versions-body .btn.btn-underline:hover, body.admin-av-presets-body a.btn.btn-underline:hover, body.admin-av-presets-body button.btn.btn-underline:hover, body.admin-board-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-dashboard-game-support-body .card.game-support-card .season-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .game-date a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-name a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-number a:hover, body.admin-dashboard-game-support-body .card.game-support-card .team-bin a:hover, body.admin-dashboard-index-body #admin-school-alerts-table a:hover, body.admin-dashboard-index-body #delayed-jobs-table a:hover, body.admin-dashboard-index-body #admin-current-games-table a:hover, body.admin-dashboard-index-body #admin-games-not-started-table a:hover, body.admin-dashboard-index-body #admin-closed-games-table a:hover, body.admin-dashboard-index-body #admin-forcast-table a:hover, body.admin-display-apps-body .interior-bin a:hover, body.admin-global-layouts-body .top-buttons-bin a.btn.btn-underline:hover, body.admin-scorekeepers-body .interior-bin a:hover, body.games-body .game-stats-info-content .btn-underline:hover, body.media-performance-reports-body .media-reports-info-table .btn.btn-reports:hover, body.organization-reports-body .btn.btn-underline:hover, body.organization-reports-body .media-reports-info-table .btn.btn-reports:hover, body.organization-settings-body a.btn.btn-underline:hover, body.organizations-body a.btn.btn-underline:hover {
  background-image: none !important;
  background-color: transparent !important;
  color: #18516e !important;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* line 296, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.filter-bin a.btn.btn-delete, .filter-bin button.btn.btn-delete, .btn.btn-underline-delete, body.sponsors-edit-body .header-module .btn.btn-delete {
  border-radius: 0;
  transition: all 0.3s ease;
  background-image: none;
  background-color: transparent !important;
  text-decoration: underline !important;
  color: #d32f2f !important;
  padding: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.4px;
  font-weight: 700;
  -moz-appearance: none;
  -webkit-appearance: none;
  text-transform: uppercase;
  border: 0;
}

/* line 313, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
.filter-bin a.btn.btn-delete:hover, .filter-bin button.btn.btn-delete:hover, .btn.btn-underline-delete:hover, body.sponsors-edit-body .header-module .btn.btn-delete:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* line 3, app/assets/stylesheets/stream.scss */
body.stream-body {
  /* left side module  ---------- */
  /* right side container  ---------- */
  /* help modal ---------- */
  /* entire page css classes  ---------- */
  /* The switch - the box around the slider */
  /* Hide default HTML checkbox */
  /* The slider */
  /* Rounded sliders */
  /* Fallback Page */
  /* full scoreboard module  ---------- */
}

/* line 6, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel {
  box-sizing: border-box;
  height: 100vh;
  width: 300px;
  background-color: #000000;
  border-right: 1px solid #3C3D42;
  /* header module with team color background */
  /* org logo bin  ---------- */
  /* shadow overlay over container */
  /* top org name module */
  /* game list scroll bin  ---------- */
  /* Game list  ---------- */
  /* game list item */
  /* scorevision logo container */
}

/* line 7, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel a:hover {
  text-decoration: none;
}

/* line 17, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .org-header {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px;
}

/* line 27, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .org-logo {
  height: 70px;
  width: 70px;
  box-sizing: border-box;
  background-color: #000000;
  border: 2px solid #3C3D42;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 38, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .org-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

/* line 46, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .design-overlay {
  width: 299px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1002;
  justify-content: center;
}

/* line 58, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .design-overlay img {
  width: 100%;
  height: 100%;
}

/* line 65, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .org-name {
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #3C3D42;
  font-weight: 700;
  padding: 5px 10px;
  width: 299px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* line 79, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .games-scroll-bin {
  height: calc(100vh - 274px);
  overflow-y: scroll;
  overflow-x: hidden;
  box-sizing: border-box;
  border-top: 1px solid #3C3D42;
}

/* line 88, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .game-filters .form-group {
  margin-bottom: 0;
  text-align: left !important;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 767.98px) {
  /* line 88, app/assets/stylesheets/stream.scss */
  body.stream-body .left-panel .game-filters .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px 5px 15px !important;
  }
}

@media (min-width: 768px) {
  /* line 88, app/assets/stylesheets/stream.scss */
  body.stream-body .left-panel .game-filters .form-group {
    padding: 0 8px 5px 8px !important;
  }
}

/* line 103, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .game-filters .form-group label {
  font-size: 13px;
  margin-bottom: 3px !important;
  color: #A6ACAF;
}

/* line 109, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .game-filters .form-group .form-control {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  color: #fff !important;
}

/* line 120, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .game-filters .form-group input, body.stream-body .left-panel .game-filters .form-group select, body.stream-body .left-panel .game-filters .form-group option {
  font-size: 14px !important;
  background-color: #000000;
  border: 1px solid #3C3D42;
  box-sizing: border-box;
}

/* line 127, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .game-filters .form-group .form-control.datetimepicker {
  height: auto !important;
  font-size: 14px !important;
}

/* line 135, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group {
  border-bottom: 1px solid #3C3D42;
}

/* line 140, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item:first-child:hover {
  background-color: #000000;
  cursor: default;
}

/* line 145, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item:hover {
  cursor: pointer;
  background-color: #1B1C1E;
}

/* line 149, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item:hover .game-title {
  color: #ffffff;
}

/* line 153, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item:hover .game-title.active {
  color: #cddb3e;
}

/* line 158, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0);
  border-color: #3C3D42;
  /* entire list item wrapper */
  /* video icon container */
  /* game info list item wrapper */
  /* org info */
  /* game video status badge */
  /* game information list item */
}

/* line 163, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .content-wrapper {
  display: flex;
  align-items: center;
}

/* line 169, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .icon {
  height: 25px;
  width: 25px;
}

/* line 173, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .icon img {
  height: 100%;
}

/* line 180, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .game-wrapper {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  width: calc(300px - 53px);
}

/* line 188, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .org-info {
  color: #A6ACAF;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 4px;
}

/* line 201, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .badge {
  height: 12px;
  margin-bottom: 1px;
  padding: 3px 5px;
  letter-spacing: 0.3px;
  margin-left: 8px;
  border-radius: 1px;
  font-size: 8px;
  font-weight: 800;
  color: #ffffff;
}

/* line 213, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .live {
  background-color: #FF3B30;
}

/* line 217, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .replay, body.stream-body .left-panel .list-group-item .upcoming {
  background-color: #373C3D;
}

/* line 222, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .game-title, body.stream-body .left-panel .list-group-item .game-date {
  font-size: 12px;
  line-height: 1.5;
  width: calc(300px - 53px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #A6ACAF;
}

/* line 232, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .game-title {
  font-weight: 700;
}

/* line 236, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .game-title.selected {
  color: #cddb3e;
}

/* line 240, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .list-group-item .game-date {
  font-weight: 500;
}

/* line 246, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .logo-panel {
  background-color: #1B1C1E;
  padding: 8px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1001;
  width: 299px;
  border-top: 1px solid #3C3D42;
}

/* line 256, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .logo-panel .info {
  color: #A6ACAF;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 5px;
  text-align: left;
}

/* line 264, app/assets/stylesheets/stream.scss */
body.stream-body .left-panel .logo-panel .logo {
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  color: #A6ACAF;
  text-align: center;
  font-weight: 800;
  letter-spacing: 3px;
}

/* line 277, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel {
  height: 100vh;
  width: calc(100% - 300px);
  background-color: #000000;
  /* video streaming module container  ---------- */
  /* separator design element  ---------- */
  /* moments section  ---------- */
  /* moment cards container scroll bin */
  /* width */
  /* Track */
  /* Handle */
  /* moment card content container */
  /* moment card hover states */
  /* preview image */
  /* moment info */
  /* scorebug toggle  ---------- */
  /* hide scorebug */
  /* scorebug ---------- */
}

/* line 283, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module {
  height: calc(100vh - 175px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* line 290, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module .stream-player-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 175px);
  display: block;
}

/* line 297, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module .scorebug-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

/* line 305, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module .embed-responsive-16by9, body.stream-body .right-panel .video-stream-module .scorebug-wrapper {
  box-sizing: border-box;
  width: calc(100vw - 300px);
  height: calc(56.25vw - 175px);
  /* height:width ratio = 9/16 = .5625  */
  background: #000000;
  max-height: calc(100vh - 175px);
  max-width: calc(177.78vh - 300px);
  /* 16/9 = 1.778 */
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  /* vertical center */
  left: 0;
  right: 0;
  /* horizontal center */
}

/* line 320, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module .embed-responsive-16by9::before {
  padding-top: 0 !important;
}

/* line 326, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .team-color-separator {
  height: 4px;
  width: 100%;
  background-color: #b43a30;
  box-sizing: border-box;
  border-bottom: 1px solid #3C3D42;
}

/* line 335, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #videos-carousel-wrapper {
  box-sizing: border-box;
  border-right: 1px solid #3C3D42;
  width: 100%;
  height: 171px;
  padding: 0;
  display: flex;
  align-items: center;
}

/* line 345, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .settings-card {
  width: 140px;
  height: 171px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  border-right: 1px solid #3C3D42;
}

/* line 356, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .settings-card .feature-content {
  color: #A6ACAF;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

/* line 365, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .settings-card a.btn.btn-underline {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* line 370, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .settings-card a.btn.btn-underline .fa {
  font-size: 20px;
}

/* line 377, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-scroll-bin {
  box-sizing: border-box;
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  height: calc(171px - 10px);
  width: calc(100% - 140px);
}

/* line 388, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-scroll-bin::-webkit-scrollbar {
  height: 5px;
}

/* line 393, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-scroll-bin::-webkit-scrollbar-track {
  box-sizing: border-box;
}

/* line 398, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-scroll-bin::-webkit-scrollbar-thumb {
  background: #3C3D42;
  height: 5px;
}

/* line 404, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card {
  margin-right: 10px;
  width: 151px;
  height: 151px;
}

/* line 411, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card:hover {
  cursor: pointer;
}

/* line 414, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card:hover .video-content-wrapper {
  background-color: #1B1C1E;
}

/* line 419, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card:hover .play-icon .fa {
  font-size: 45px;
  color: #ffffff;
  opacity: 1;
}

/* line 426, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card:hover .video-caption {
  color: #ffffff;
}

/* line 430, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-card:hover .video-caption.active {
  color: #cddb3e;
}

/* line 436, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-preview-image {
  width: 151px;
  height: 85px;
  overflow: hidden;
  background-color: #1B1C1E;
  position: relative;
  box-sizing: border-box;
}

/* line 444, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-preview-image .play-icon {
  width: 151px;
  height: 85px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 454, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-preview-image .play-icon .fa {
  font-size: 35px;
  color: #ffffff;
  opacity: 0.9;
}

/* line 461, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-preview-image img.preview {
  -o-object-fit: cover;
     object-fit: cover;
  width: 151px;
  height: 85px;
}

/* line 469, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-content-wrapper {
  padding: 10px 0 0 5px;
  height: 66px;
}

/* line 473, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-content-wrapper .video-caption, body.stream-body .right-panel .video-content-wrapper .video-date {
  color: #A6ACAF;
  font-size: 12px;
  line-height: 1.5;
  width: 115px;
}

/* line 480, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-content-wrapper .video-caption {
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 488, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-content-wrapper .video-caption.active {
  color: #cddb3e;
}

/* line 492, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-content-wrapper .video-date {
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* line 502, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module a#sb-toggle.btn.btn-underline {
  color: #ffffff !important;
  position: absolute;
  bottom: 5px;
  text-decoration: underline;
  opacity: 0.5;
  z-index: 1050;
}

/* line 511, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel .video-stream-module a.btn.btn-underline.sb-toggle:hover {
  opacity: 0.3;
}

@media screen and (max-height: 600px) {
  /* line 518, app/assets/stylesheets/stream.scss */
  body.stream-body .right-panel #scorebug-bin {
    display: none;
  }
  /* line 521, app/assets/stylesheets/stream.scss */
  body.stream-body .right-panel a#sb-toggle.btn.btn-underline {
    display: none;
  }
}

@media only screen and (max-width: 950px) {
  /* line 526, app/assets/stylesheets/stream.scss */
  body.stream-body .right-panel #scorebug-bin {
    display: none;
  }
  /* line 529, app/assets/stylesheets/stream.scss */
  body.stream-body .right-panel a#sb-toggle.btn.btn-underline {
    display: none;
  }
}

/* line 535, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin {
  position: absolute;
  bottom: 20px;
  width: 600px;
  /* position wrapper */
}

/* line 541, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper {
  position: relative;
  width: 600px;
  height: 37px;
  /* scorebug base graphic */
  /* team names */
  /* team colors */
  /* team scores */
  /* period number */
}

/* line 547, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper img {
  width: 600px;
  height: 37px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1006;
}

/* line 557, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-name {
  position: absolute;
  color: #ffffff;
  bottom: 2px;
  width: 183px;
  height: 33px;
  font-weight: 900;
  font-size: 17px;
  text-transform: uppercase;
  z-index: 1007;
  line-height: 17px;
  padding-top: 9px;
  padding-bottom: 7px;
  vertical-align: baseline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

/* line 577, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-name.home {
  left: 17px;
}

/* line 581, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-name.away {
  right: 129px;
}

/* line 586, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-color {
  position: absolute;
  bottom: 1px;
  z-index: 1005;
  width: 272px;
  height: 35px;
}

/* line 594, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-color.home {
  left: 7px;
}

/* line 598, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-color.away {
  left: 278px;
}

/* line 603, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-score {
  position: absolute;
  color: #ffffff;
  bottom: 3.5px;
  width: 68px;
  height: 30px;
  font-weight: 900;
  font-size: 32px;
  line-height: 32px;
  z-index: 1007;
  text-align: center;
  padding-top: 0;
  padding-bottom: 2px;
}

/* line 618, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-score.home {
  left: 209px;
}

/* line 622, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .team-score.away {
  right: 51.5px;
}

/* line 627, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .period-number {
  position: absolute;
  right: 9px;
  bottom: 2px;
  color: #cddb3e;
  width: 41px;
  height: 33px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  z-index: 1007;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}

/* line 645, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .game-time {
  position: absolute;
  right: 8px;
  bottom: 2px;
  color: #ffffff;
  width: 81px;
  height: 33px;
  font-family: "Score-Regular", sans-serif;
  font-size: 24px;
  line-height: 24px;
  z-index: 1007;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
}

/* line 663, app/assets/stylesheets/stream.scss */
body.stream-body .right-panel #scorebug-bin .wrapper .period-text {
  position: absolute;
  right: 8px;
  bottom: 2px;
  color: #ffffff;
  width: 118px;
  font-weight: 800;
  height: 33px;
  font-size: 20px;
  line-height: 20px;
  z-index: 1007;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
}

/* line 685, app/assets/stylesheets/stream.scss */
body.stream-body .modal {
  box-sizing: border-box;
}

/* line 688, app/assets/stylesheets/stream.scss */
body.stream-body .modal .modal-header {
  background-color: #000000;
  box-sizing: border-box;
  border-bottom: 1px solid #3C3D42;
}

/* line 694, app/assets/stylesheets/stream.scss */
body.stream-body .modal .modal-content {
  background-color: #000000;
  border-left: 1px solid #3C3D42 !important;
  border-radius: 0 !important;
}

/* line 700, app/assets/stylesheets/stream.scss */
body.stream-body .modal .title {
  color: #ffffff;
}

/* line 704, app/assets/stylesheets/stream.scss */
body.stream-body .modal .body {
  color: #A6ACAC;
}

/* line 709, app/assets/stylesheets/stream.scss */
body.stream-body .modal-backdrop {
  background-color: #000000 !important;
}

/* line 714, app/assets/stylesheets/stream.scss */
body.stream-body .container-fluid {
  padding: 0;
}

/* line 718, app/assets/stylesheets/stream.scss */
body.stream-body .interior-bin {
  background-color: #000000;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

/* line 725, app/assets/stylesheets/stream.scss */
body.stream-body .section-header {
  margin-bottom: 8px;
  padding-top: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* line 733, app/assets/stylesheets/stream.scss */
body.stream-body .section-title {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 8px;
  color: #ffffff;
  font-weight: 600;
}

/* line 741, app/assets/stylesheets/stream.scss */
body.stream-body .count-text {
  font-size: 11px;
  font-weight: 600;
  color: #A6ACAF;
  font-style: italic;
  line-height: 1;
}

/* line 749, app/assets/stylesheets/stream.scss */
body.stream-body .btn.btn-main {
  background-image: none !important;
  background-color: #3C3D42 !important;
}

/* line 754, app/assets/stylesheets/stream.scss */
body.stream-body .btn:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3) !important;
}

/* line 758, app/assets/stylesheets/stream.scss */
body.stream-body .btn.btn-underline {
  color: #A6ACAF;
}

/* line 762, app/assets/stylesheets/stream.scss */
body.stream-body .btn.btn-underline:hover {
  color: #A6ACAF !important;
}

/* line 766, app/assets/stylesheets/stream.scss */
body.stream-body .not-found {
  height: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 774, app/assets/stylesheets/stream.scss */
body.stream-body #clear-form {
  padding-right: 12px;
}

/* line 778, app/assets/stylesheets/stream.scss */
body.stream-body .video-stream-module {
  position: relative;
}

/* line 783, app/assets/stylesheets/stream.scss */
body.stream-body .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* line 791, app/assets/stylesheets/stream.scss */
body.stream-body .switch input {
  display: none;
}

/* line 796, app/assets/stylesheets/stream.scss */
body.stream-body .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3C3D42;
  transition: .4s;
}

/* line 808, app/assets/stylesheets/stream.scss */
body.stream-body .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

/* line 820, app/assets/stylesheets/stream.scss */
body.stream-body input.default:checked + .slider {
  background-color: #cddb3e;
}

/* line 824, app/assets/stylesheets/stream.scss */
body.stream-body input:checked + .slider:before {
  transform: translateX(22px);
}

/* line 831, app/assets/stylesheets/stream.scss */
body.stream-body .slider.round {
  border-radius: 34px;
}

/* line 835, app/assets/stylesheets/stream.scss */
body.stream-body .slider.round:before {
  border-radius: 50%;
}

/* line 840, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin {
  box-sizing: border-box;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* line 849, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(http://localhost:3000/assets/stream-fallback-bg-img-3c6d3806ffc20c8e3b654fad766dddc2538830d43e2cff56f943b5b0e6aa3c32.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

/* line 860, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin .img-container {
  width: 100%;
  text-align: center;
  display: block;
  position: absolute;
  top: 30px;
  z-index: 3;
}

/* line 868, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin .img-container img.logo-img {
  width: 300px;
  margin-bottom: 30px;
}

/* line 874, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin .content-wrapper {
  position: absolute;
  border-top: 5px solid #cddb3e;
  bottom: 22%;
  left: 0;
  width: 47%;
  padding: 40px 50px 50px 50px;
  background-color: #0f3950;
  text-align: left;
  height: auto;
  z-index: 3;
  display: block;
}

@media (max-width: 991.98px) {
  /* line 874, app/assets/stylesheets/stream.scss */
  body.stream-body .center-content-bin .content-wrapper {
    width: 100%;
    top: auto;
    bottom: 0;
    padding: 50px 30px 50px 30px;
  }
}

/* line 894, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin .headline {
  font-weight: 900;
  color: #ffffff !important;
  margin-bottom: 20px;
  font-size: 4vw;
  line-height: 1.05;
}

@media (max-width: 767.98px) {
  /* line 894, app/assets/stylesheets/stream.scss */
  body.stream-body .center-content-bin .headline {
    font-size: 34px;
    line-height: 1.2;
  }
}

/* line 906, app/assets/stylesheets/stream.scss */
body.stream-body .center-content-bin label {
  color: #ffffff !important;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-size: 18px;
  opacity: 0.9;
}

/* line 916, app/assets/stylesheets/stream.scss */
body.stream-body .lines-bin {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
}

@media (max-width: 991.98px) {
  /* line 916, app/assets/stylesheets/stream.scss */
  body.stream-body .lines-bin {
    display: none;
  }
}

/* line 928, app/assets/stylesheets/stream.scss */
body.stream-body .lines-bin .design-line {
  width: 25%;
  height: 100vh;
  display: inline-block;
  box-sizing: border-box;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
}

/* line 936, app/assets/stylesheets/stream.scss */
body.stream-body .lines-bin .end-line {
  border-right: 0 !important;
}

/* line 1, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body {
  /* streaming account pages -------------------------------------------------------------------------------------- */
  /* stream list table */
  /* CloudStream Form ----------------------------------------------------------------------------------------------- */
}

/* line 4, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .headline-btn-bin {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

/* line 9, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .headline-btn-bin .headline {
  width: calc(100% - 160px);
  margin-bottom: 0;
}

/* line 14, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .headline-btn-bin a.btn.btn-main, body.streaming-accounts-body .headline-btn-bin a.btn.btn-secondary {
  width: 150px !important;
  margin-left: auto;
  margin-bottom: 0;
  height: 32px;
}

/* line 22, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body a.btn.btn-delete {
  transition: all 0.3s ease;
  background-color: #d32f2f;
  color: #ffffff;
}

/* line 29, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body a.btn.btn-delete:hover {
  opacity: 0.7;
}

/* line 33, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .intro-icon-bin {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* line 38, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .intro-icon-bin .fa {
  margin-right: 20px;
  font-size: 40px;
}

/* line 44, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .small-header {
  font-size: 0.75em;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  align-items: center;
  padding: 10px 8px 8px 8px;
  color: #0f3950;
  border-bottom: 1px solid #d6e0e6;
}

/* line 56, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  box-sizing: border-box;
  margin-bottom: 30px;
  position: relative;
}

/* line 64, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .small-header .badge {
  line-height: 1.2;
  vertical-align: text-top;
  margin-left: 3px;
}

/* line 71, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
}

/* line 78, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content {
  text-align: center;
  margin-bottom: 58px;
}

/* line 82, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content .fa {
  font-size: 50px;
  margin-bottom: 15px;
}

/* line 87, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content .fa.fa-youtube {
  color: #d32f2f;
}

/* line 91, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content .body {
  margin-bottom: 0 !important;
}

/* line 95, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content .btn.btn-main, body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray {
  width: 125px;
}

/* line 99, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-content a.btn.btn-gray {
  background-color: #d6e0e6 !important;
  color: #0f3950;
}

/* line 106, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-top: 1px solid #d6e0e6;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* line 118, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .connect-type-bin .connect-footer .btn.btn-main {
  width: 125px;
  margin-bottom: 0;
}

/* line 126, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .pb-full-width .connect-content {
  display: flex;
  flex-direction: row;
  text-align: left;
  margin-bottom: 0;
}

/* line 132, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .pb-full-width .connect-content .fa {
  margin-right: 15px;
  margin-bottom: 0;
  margin-top: -5px;
}

/* line 139, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .pb-full-width .connect-footer {
  position: relative;
}

/* line 145, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form {
  table-layout: fixed;
  width: 100%;
  width: 100%;
  margin-bottom: 16px;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.streaming-accounts-body table.streams-table-form th:nth-child(1) {
  width: 44%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.streaming-accounts-body table.streams-table-form th:nth-child(2) {
  width: 33%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.streaming-accounts-body table.streams-table-form th:nth-child(3) {
  width: 33%;
}

/* line 150, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form th {
  background-color: #f6f8fb;
  border-bottom: 1px solid #d6e0e6;
  color: #0f3950;
  letter-spacing: 0.5px;
  vertical-align: center;
  position: relative;
}

/* line 158, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form th a.btn.btn-underline.help-btn {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* line 163, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form th a.btn.btn-underline.help-btn .fa {
  font-size: 20px;
}

/* line 168, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form th .btn.btn-main {
  font-size: 12px !important;
}

/* line 173, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form tr.stream-content {
  border: 0;
}

/* line 177, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td {
  font-size: 12.5px;
  line-height: 17px;
  vertical-align: middle;
}

/* line 184, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.stream-name .content-bin {
  display: flex;
  align-items: center;
}

/* line 189, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.stream-name .icon-bin {
  margin-right: 8px;
}

/* line 192, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.stream-name .icon-bin .fa {
  font-size: 22px;
}

/* line 196, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.stream-name .icon-bin .fa.fa-youtube {
  color: #d32f2f;
}

/* line 202, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.account, body.streaming-accounts-body table.streams-table-form td.start-date {
  text-align: center;
}

/* line 205, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.account .auto-indicator, body.streaming-accounts-body table.streams-table-form td.start-date .auto-indicator {
  background-color: #0f3950;
  font-weight: 600;
  color: #ffffff;
  padding: 5px;
  font-size: 11px;
  line-height: 1.25;
  border-radius: 4px;
}

/* line 216, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn {
  text-align: right;
}

/* line 220, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main {
  transition: all 0.3s ease;
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%) !important;
  background-color: #539ec2 !important;
  background-position: right center !important;
  background-size: cover !important;
  border: 0 !important;
  text-decoration: none !important;
  width: 90px !important;
  padding: 10px 0 8px 0;
  text-align: center;
}

/* line 235, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main:hover, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown a.btn.btn-main:active {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  text-decoration: none !important;
}

/* line 246, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item {
  color: #ffffff !important;
  padding: 8px 12px 8px 12px;
  display: flex;
  align-items: center;
}

/* line 252, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item a {
  font-size: 15px;
  font-weight: 600;
  color: #18516e;
  text-decoration: underline;
  margin-bottom: 0;
  text-transform: none !important;
}

/* line 261, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item a:hover {
  background-color: #ffffff !important;
  cursor: pointer;
  opacity: 0.8;
}

/* line 267, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item a.btn.btn-underline.view-stream-help {
  margin: -2px 0px 0px auto;
}

/* line 270, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item a.btn.btn-underline.view-stream-help .fa {
  margin: 0 0 0 8px;
  font-size: 22px;
}

/* line 277, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item:hover, body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item:active {
  background-color: #ffffff !important;
}

/* line 282, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body table.streams-table-form td.action-btn .dropdown .dropdown-item.delete a {
  color: #d32f2f;
}

/* line 291, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-alert-bin {
  padding: 24px;
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  margin-bottom: 30px;
  border-radius: 0.25rem;
}

/* line 299, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-subscription-bin {
  padding: 24px;
  background-color: #18516e;
  border: 1px solid #0f3950;
  border-radius: 0.25rem;
}

/* line 305, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-subscription-bin .feature-info-bin {
  display: flex;
  align-items: center;
}

/* line 309, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-subscription-bin .feature-info-bin .subhead, body.streaming-accounts-body .cloudstream-subscription-bin .feature-info-bin .title {
  margin-bottom: 0;
}

/* line 313, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-subscription-bin .feature-info-bin .title {
  margin-left: auto;
}

/* line 318, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .cloudstream-subscription-bin a.btn.btn-main {
  width: 175px !important;
  margin-bottom: 0;
}

/* line 325, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body ul.list-group.subscription-details li {
  display: flex;
  align-items: center;
  justify-content: space-between !important;
  background: #f6f8fb;
  border-color: #d6e0e6;
  padding: 0.75rem 1rem;
}

/* line 333, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body ul.list-group.subscription-details li .info {
  font-weight: 700;
}

/* line 339, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body a.btn.deactivate-btn {
  background-color: #d32f2f;
  color: #ffffff;
  margin: 20px 0 20px 0;
}

/* line 346, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .blue-accent {
  color: #539ec2;
  border-color: #539ec2;
}

/* line 351, app/assets/stylesheets/streaming_accounts.scss */
body.streaming-accounts-body .white-accent {
  color: #ffffff;
  border-color: #ffffff;
}

/* line 1, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body {
  /* global classes ------------------------------------------------------------------------------------------------- */
  /* stream account section on index page --------------------------------------------------------------------------- */
  /* stream list section on index page ------------------------------------------------------------------------------ */
}

/* line 5, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .interior-bin.full-height {
  min-height: calc(100vh - 135px);
}

/* line 9, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

/* line 15, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin .headline {
  width: calc(100% - 200px);
  margin-bottom: 0;
}

/* line 20, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin .alert.alert-danger {
  width: 100% !important;
  margin-bottom: 0;
  margin-top: 5px;
  text-align: center;
}

/* line 27, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin a.btn.btn-main, body.svc-streams-body .headline-btn-bin a.btn.btn-secondary {
  width: 150px !important;
  margin-bottom: 0;
  height: 32px;
  padding-left: 0;
  padding-right: 0;
}

/* line 35, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin .buttons-bin {
  margin-left: auto;
  text-align: right;
  display: flex;
  align-items: center;
}

/* line 41, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .headline-btn-bin .buttons-bin .fa {
  font-size: 22px;
  margin-right: 8px;
}

/* line 48, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .input-bin {
  position: relative;
}

/* line 51, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .input-bin a.btn.btn-underline {
  position: absolute;
  left: 15px;
  top: 2px;
}

/* line 56, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .input-bin a.btn.btn-underline .fa.fa-question-circle {
  font-size: 20px !important;
}

/* line 61, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .input-bin label.control-label {
  margin-left: 25px;
  margin-bottom: 5px;
}

/* line 157, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body a.btn-end, body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand {
  transition: all 0.3s ease;
  color: #ffffff !important;
  height: 20px !important;
  width: 70px !important;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 169, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body a.btn-start:hover, body.svc-streams-body a.btn-end:hover, body.svc-streams-body a.btn-expand:hover {
  color: #ffffff !important;
  opacity: 0.8;
}

/* line 174, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body a.btn.btn-end {
  background-color: #d32f2f !important;
  margin: 5px 0 0 0;
}

/* line 179, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body a.btn-start, body.svc-streams-body a.btn-expand {
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  margin-bottom: 0;
}

/* line 188, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .small-header {
  font-size: 0.75em;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  align-items: center;
  padding: 10px 8px 8px 8px;
  color: #0f3950;
  border-bottom: 1px solid #d6e0e6;
  display: flex;
}

/* line 200, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .small-header .fa {
  font-size: 22px;
  margin-right: 6px;
  margin-top: -2px;
}

/* line 207, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .bin-wrapper {
  padding: 0 8px 0 8px;
}

/* line 211, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .body.small {
  font-size: 13px;
}

/* line 215, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .body.warning-text {
  font-weight: 600;
  color: #d32f2f !important;
}

/* line 220, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .alert {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* line 225, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .alert a.inline-link {
  font-weight: 700;
  text-decoration: underline;
}

/* line 230, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .alert a.inline-link:hover {
  cursor: pointer;
}

/* line 235, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .gray-info-bin {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  height: 325px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* line 245, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .gray-info-bin .content-wrapper {
  text-align: center;
  max-width: 600px;
}

/* line 253, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-wrapper {
  width: 250px;
  margin-right: 10px;
}

@media (max-width: 1199.98px) {
  /* line 253, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .stream-acct-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* line 263, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin {
  background-color: #f6f8fb;
  box-sizing: border-box;
  border: 1px solid #d6e0e6;
}

/* line 268, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item.no-acct {
  background-color: #e6ebf0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #d6e0e6;
}

/* line 277, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item {
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  border-radius: 4px;
  box-sizing: border-box;
}

/* line 285, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .content-wrapper {
  display: flex;
  align-items: center;
}

/* line 290, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin {
  padding: 0 .3rem;
  width: calc(100% - 35px);
  height: 38px;
  display: flex;
  align-items: center;
  background-color: #f6f8fb;
}

/* line 298, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin .interior-wrapper {
  width: calc(100% - 0);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 306, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin .badge {
  line-height: 1.1;
  margin-left: 2px;
  vertical-align: text-top;
}

/* line 312, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin .fa.fa-film, body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin .fa.fa-laptop {
  color: #0f3950;
  font-size: 18px;
  margin-right: 3px;
}

/* line 318, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .icon-bin .fa.fa-youtube {
  color: #d32f2f;
  font-size: 20px;
  margin-right: 3px;
}

/* line 325, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .btn-bin {
  margin-left: auto;
  border-left: 1px solid #d6e0e6;
  height: 38px;
  width: 35px;
  background-color: #e6ebf0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
}

/* line 336, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .btn-bin a.btn.btn-underline {
  width: auto;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

/* line 345, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin li.list-group-item.acct-list-item .btn-bin .fa.fa-edit {
  color: #0f3950;
  font-size: 18px;
}

/* line 352, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-acct-bin a.btn.btn-main {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
}

/* line 362, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin {
  width: calc(100% - 260px);
}

@media (max-width: 1199.98px) {
  /* line 362, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .stream-list-bin {
    width: 100%;
  }
}

/* line 368, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin .col-filter-bin {
  margin-bottom: 10px;
}

/* line 372, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin .filter-bin {
  border: 1px solid #d6e0e6;
}

/* line 376, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin .no-streams-bin {
  border: 1px solid #d6e0e6;
  margin-bottom: 10px;
  height: 200px;
  box-sizing: border-box;
  background: #f6f8fb;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 386, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin .no-streams-bin .content-bin {
  text-align: center;
  max-width: 600px;
  padding: 10px;
}

/* line 393, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table {
  table-layout: fixed;
  width: 100%;
  width: 100%;
  margin-bottom: 16px;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table th:nth-child(1) {
  width: 30%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table th:nth-child(2) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table th:nth-child(3) {
  width: 20%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table th:nth-child(4) {
  width: 15%;
}

/* line 46, app/assets/stylesheets/global/8--sv-helpers_mixins_placeholders.scss */
body.svc-streams-body .stream-list-bin table.streams-table th:nth-child(5) {
  width: 15%;
}

/* line 403, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table th {
  background-color: #f6f8fb;
  border-bottom: 1px solid #d6e0e6;
  color: #0f3950;
  letter-spacing: 0.5px;
  vertical-align: center;
  position: relative;
}

/* line 412, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table th a.btn.btn-underline.help-btn {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* line 417, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table th a.btn.btn-underline.help-btn .fa {
  font-size: 20px;
}

/* line 422, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table th .btn.btn-main {
  font-size: 12px !important;
}

/* line 427, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table tr.stream-content {
  border: 0;
}

/* line 431, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td {
  font-size: 12.5px;
  line-height: 17px;
  vertical-align: middle;
}

/* line 438, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.stream-name .content-bin {
  display: flex;
  align-items: center;
}

/* line 443, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.stream-name .icon-bin {
  margin-right: 8px;
}

/* line 446, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.stream-name .icon-bin .fa {
  font-size: 22px;
}

/* line 450, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.stream-name .icon-bin .fa.fa-youtube {
  color: #d32f2f;
}

/* line 456, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.account, body.svc-streams-body .stream-list-bin table.streams-table td.start-date {
  text-align: center;
}

/* line 459, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.account .auto-indicator, body.svc-streams-body .stream-list-bin table.streams-table td.start-date .auto-indicator {
  background-color: #0f3950;
  font-weight: 600;
  color: #ffffff;
  padding: 5px;
  font-size: 11px;
  line-height: 1.25;
  border-radius: 4px;
}

/* line 470, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn {
  text-align: right;
}

/* line 474, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main {
  transition: all 0.3s ease;
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%) !important;
  background-color: #539ec2 !important;
  background-position: right center !important;
  background-size: cover !important;
  border: 0 !important;
  text-decoration: none !important;
  width: 90px !important;
  padding: 10px 0 8px 0;
  text-align: center;
}

/* line 489, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main:hover, body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown a.btn.btn-main:active {
  opacity: 0.7;
  filter: alpha(opacity=70);
  color: #ffffff !important;
  background-image: linear-gradient(to right, #539ec2 0%, #539ec2 50%, #498fb2 92%);
  background-color: #539ec2;
  background-position: right center;
  background-size: cover !important;
  border: 0;
  text-decoration: none !important;
}

/* line 500, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item {
  color: #ffffff !important;
  padding: 8px 12px 8px 12px;
  display: flex;
  align-items: center;
}

/* line 506, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item a {
  font-size: 15px;
  font-weight: 600;
  color: #18516e;
  text-decoration: underline;
  margin-bottom: 0;
  text-transform: none !important;
}

/* line 515, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item a:hover {
  background-color: #ffffff !important;
  cursor: pointer;
  opacity: 0.8;
}

/* line 521, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item a.btn.btn-underline.view-stream-help {
  margin: -2px 0 0 auto;
}

/* line 524, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item a.btn.btn-underline.view-stream-help .fa {
  margin: 0 0 0 8px;
  font-size: 22px;
}

/* line 531, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item:hover, body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item:active {
  background-color: #ffffff !important;
}

/* line 536, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin table.streams-table td.action-btn .dropdown .dropdown-item.delete a {
  color: #d32f2f;
}

/* line 544, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row {
  border-top: 0 !important;
  border-bottom: 1px solid #d6e0e6;
}

/* line 548, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row .form-row {
  margin: 0;
  display: flex !important;
}

/* line 553, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row .break {
  width: 12px;
}

/* line 557, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row td {
  padding-top: 0;
}

/* line 561, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row .hr {
  margin-top: 0;
  margin-bottom: 7px;
  border-top: 1px dashed #d6e0e6;
}

/* line 567, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row .form-check-input {
  top: 2px;
}

/* line 571, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .stream-list-bin tr.settings-row .form-check-inline {
  margin: 0 8px 0 8px;
}

/* line 577, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 10px 16px 0 16px;
  border-top: 0 !important;
  /* stream form ---------------------------------------------------------------------------------------------------- */
}

/* line 583, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .d-none-archive {
  display: none;
}

/* line 587, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .table-header-container {
  background-color: #f6f8fb;
  box-sizing: border-box;
  border-top: 1px solid #d6e0e6;
  border-left: 1px solid #d6e0e6;
  border-right: 1px solid #d6e0e6;
  display: flex;
  align-items: center;
  padding: .6em;
  height: 42px;
}

/* line 598, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .table-header-container .header-bin {
  font-size: 0.75em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0f3950;
  display: flex;
  align-items: center;
  letter-spacing: 0.25px;
}

/* line 608, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .table-header-container .btn-bin {
  margin-left: auto;
  width: 240px;
  text-align: right;
  margin-bottom: 0;
}

/* line 614, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .table-header-container .btn-bin .btn-main {
  width: 230px !important;
  margin-bottom: 0;
  padding: 10px 0 8px 0;
}

/* line 624, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides tr.header-row {
  opacity: 0;
  border: 0;
}

/* line 628, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides tr.header-row th {
  padding: 0 !important;
}

/* line 634, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides tr.filter-row td {
  font-weight: 700;
  color: rgba(15, 57, 80, 0.6);
}

/* line 638, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides tr.filter-row td input.form-check-input {
  top: 2px;
  margin: 0 4px 0 3px;
  transform: scale(1.2);
}

/* line 646, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .badge-bin {
  margin: 2px 0 3px 0;
}

/* line 649, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .badge-bin .badge.badge-secondary {
  background-color: rgba(15, 57, 80, 0.45);
  font-size: 85%;
  padding: 4px 8px 3px 8px;
}

/* line 658, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 664, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin .content-area {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

@media (max-width: 991.98px) {
  /* line 664, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .user-guides #stream-info-bin .content-area {
    flex-direction: column;
  }
}

/* line 673, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin #game-name-bin, body.svc-streams-body .user-guides #stream-info-bin #game-date-bin, body.svc-streams-body .user-guides #stream-info-bin #game-location-bin {
  width: 33.33%;
  padding: 20px;
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 991.98px) {
  /* line 673, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .user-guides #stream-info-bin #game-name-bin, body.svc-streams-body .user-guides #stream-info-bin #game-date-bin, body.svc-streams-body .user-guides #stream-info-bin #game-location-bin {
    width: 100%;
    display: block;
    margin-bottom: 5px;
    padding: 10px;
  }
}

/* line 686, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin #game-name-bin, body.svc-streams-body .user-guides #stream-info-bin #game-date-bin {
  box-sizing: border-box;
  border-right: 1px solid #d6e0e6;
  border-bottom: 0;
}

@media (max-width: 991.98px) {
  /* line 686, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .user-guides #stream-info-bin #game-name-bin, body.svc-streams-body .user-guides #stream-info-bin #game-date-bin {
    border-right: 0;
    border-bottom: 1px solid #d6e0e6;
  }
}

/* line 696, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin #game-name-bin {
  text-align: left;
}

@media (max-width: 991.98px) {
  /* line 696, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .user-guides #stream-info-bin #game-name-bin {
    text-align: center;
  }
}

/* line 703, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides #stream-info-bin #game-date-bin, body.svc-streams-body .user-guides #stream-info-bin #game-location-bin {
  text-align: center;
}

/* line 708, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .disable-field {
  display: flex;
  align-items: center;
}

/* line 712, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .disable-field .form-group {
  margin-right: 10px;
  width: calc(100% - 22px);
}

@media (min-width: 992px) {
  /* line 712, app/assets/stylesheets/svc_streams.scss */
  body.svc-streams-body .user-guides .disable-field .form-group {
    width: calc(50% - 15px);
  }
}

/* line 722, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .disable-field .form-control.col-12 {
  flex: none !important;
}

/* line 726, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .disable-field a.btn.btn-underline {
  margin-top: 8px;
}

/* line 729, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .disable-field a.btn.btn-underline .fa {
  font-size: 22px;
}

/* line 735, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .intro-icon-bin {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

/* line 740, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body .user-guides .intro-icon-bin .fa {
  margin-right: 20px;
  font-size: 40px;
}

/* line 747, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body #playback-url-fields {
  width: 100% !important;
}

/* line 750, app/assets/stylesheets/svc_streams.scss */
body.svc-streams-body #playback-url-fields .form-group {
  width: 100% !important;
}

/* line 2, app/assets/stylesheets/teams.scss */
body.teams-body .team-logo-preview-image, body.team-templates-body .team-logo-preview-image {
  background-color: #f6f8fb;
  border: 1px solid #d6e0e6;
  width: 100%;
  text-align: center;
  padding: 8px;
  margin-bottom: 16px;
}

/* line 10, app/assets/stylesheets/teams.scss */
body.teams-body .team-logo-preview-image img, body.team-templates-body .team-logo-preview-image img {
  max-width: 100%;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

/* line 19, app/assets/stylesheets/teams.scss */
body.teams-body button#delete-image.btn.btn-underline-delete, body.team-templates-body button#delete-image.btn.btn-underline-delete {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
}

/* line 27, app/assets/stylesheets/teams.scss */
.drag-drop-zone {
  background-color: #e1f1f8;
  border-color: #28a7e8;
  border-style: dotted;
  margin: auto;
  width: 100%;
  color: #28a7e8;
}

/* line 35, app/assets/stylesheets/teams.scss */
.drag-drop-zone .file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}

/* line 43, app/assets/stylesheets/teams.scss */
.drag-drop-zone .file-input:focus {
  outline: none;
}

/* line 48, app/assets/stylesheets/teams.scss */
.icon-bin {
  height: 100px;
  width: 100px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  background-color: #0f3950;
  border: 1px solid #d6e0e6;
  margin-right: 8px;
}

/* line 59, app/assets/stylesheets/teams.scss */
.icon-bin .fa {
  color: #cddb3e;
}

/* line 63, app/assets/stylesheets/teams.scss */
.icon-bin img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100px;
  max-height: 100px;
}

/* line 70, app/assets/stylesheets/teams.scss */
.player-image img {
  max-width: 60px;
  max-height: 60px;
}

/* line 75, app/assets/stylesheets/teams.scss */
.team-info {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}

/* Main dropdown menu settings */
/* line 82, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer {
  max-height: 400px;
  overflow-y: auto;
  padding-bottom: 45px;
  position: relative;
}

/* Sticky Footer Elements */
/* line 90, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer .footer-divider,
.dropdown-menu-scrollable-with-sticky-footer .footer-item {
  position: sticky;
  bottom: -45px;
  background-color: #fff;
  z-index: 10;
}

/* Specific styling for the footer divider */
/* line 99, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer .footer-divider {
  bottom: -13px;
  margin-bottom: 0;
  height: 1px;
  border: none;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 -1px 0 #fff;
}

/* line 109, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer::after {
  content: '';
  position: sticky;
  bottom: 45px;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 80%);
  pointer-events: none;
  z-index: 11;
}

/* line 121, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer .dropdown-header {
  padding: 0.5rem 1.5rem;
}

/* line 124, app/assets/stylesheets/teams.scss */
.dropdown-menu-scrollable-with-sticky-footer .dropdown-divider:not(.footer-divider) {
  margin: 0.5rem 0;
  border-top: 1px solid #e9ecef;
}

/* line 3, app/assets/stylesheets/terms_copy_teams_form.scss */
body.terms-copy-teams-form-body ul.nav.nav-pills {
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  /* line 3, app/assets/stylesheets/terms_copy_teams_form.scss */
  body.terms-copy-teams-form-body ul.nav.nav-pills {
    display: block;
    width: 100%;
  }
}

/* line 11, app/assets/stylesheets/terms_copy_teams_form.scss */
body.terms-copy-teams-form-body tr .fa {
  padding-top: 3px;
  padding-bottom: 3px;
  float: right;
}

/* line 16, app/assets/stylesheets/terms_copy_teams_form.scss */
body.terms-copy-teams-form-body td {
  background-color: #ffffff;
}

/* line 19, app/assets/stylesheets/terms_copy_teams_form.scss */
body.terms-copy-teams-form-body td.season {
  background-color: #f6f8fb;
}

@media (max-width: 767.98px) {
  /* line 24, app/assets/stylesheets/terms_copy_teams_form.scss */
  body.terms-copy-teams-form-body .arrow {
    height: 50px;
  }
}

@media (min-width: 768px) {
  /* line 29, app/assets/stylesheets/terms_copy_teams_form.scss */
  body.terms-copy-teams-form-body .arrow .fa {
    top: 2%;
    position: absolute;
    animation: linear infinite alternate;
    animation-name: side-to-side;
    animation-duration: 1.5s;
  }
}

@media (max-width: 767.98px) {
  /* line 29, app/assets/stylesheets/terms_copy_teams_form.scss */
  body.terms-copy-teams-form-body .arrow .fa {
    top: 2%;
    position: absolute;
    animation: linear infinite alternate;
    animation-name: up-down;
    animation-duration: 1s;
  }
}

/* line 3, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .col-import-results-game-card, body.imports-tourney-machine-revalidate-body .col-import-results-game-card {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  /* line 3, app/assets/stylesheets/terms_import_confirm.scss */
  body.imports-tourney-machine-confirm-body .col-import-results-game-card, body.imports-tourney-machine-revalidate-body .col-import-results-game-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 3, app/assets/stylesheets/terms_import_confirm.scss */
  body.imports-tourney-machine-confirm-body .col-import-results-game-card, body.imports-tourney-machine-revalidate-body .col-import-results-game-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  /* line 3, app/assets/stylesheets/terms_import_confirm.scss */
  body.imports-tourney-machine-confirm-body .col-import-results-game-card, body.imports-tourney-machine-revalidate-body .col-import-results-game-card {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

/* line 24, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card, body.imports-tourney-machine-revalidate-body .card.import-results-game-card {
  overflow: visible;
}

/* line 27, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .col, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .col {
  padding: 0px 10px 0px 10px;
}

/* line 30, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .card-header.small, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .card-header.small {
  margin-bottom: 0px;
  -webkit-border-top-left-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -moz-border-radius-topleft: 7px;
  -moz-border-radius-topright: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 39, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .card-header.small.rejected-game, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .card-header.small.rejected-game {
  background-color: #d32f2f;
  -webkit-border-top-left-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -moz-border-radius-topleft: 7px;
  -moz-border-radius-topright: 7px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

/* line 48, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .card-body, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .card-body {
  padding: 5px 0px 8px 0px;
}

/* line 52, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .form-group, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .form-group {
  margin-bottom: 4px;
}

/* line 55, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .form-group label, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .form-group label {
  font-size: 13px;
}

/* line 60, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .form-control, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .form-control {
  margin: 5px 0px 5px 0px;
}

/* line 63, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .form-control-sm, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .form-control-sm {
  font-size: 12px;
  height: calc(1.7rem + 2px);
}

/* line 67, app/assets/stylesheets/terms_import_confirm.scss */
body.imports-tourney-machine-confirm-body .card.import-results-game-card .card-footer, body.imports-tourney-machine-revalidate-body .card.import-results-game-card .card-footer {
  -webkit-border-bottom-right-radius: 7px;
  -webkit-border-bottom-left-radius: 7px;
  -moz-border-radius-bottomright: 7px;
  -moz-border-radius-bottomleft: 7px;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

/* line 1, app/assets/stylesheets/terms_import_form.scss */
.import-header-bin {
  background-color: transparent;
  margin-bottom: 15px;
  padding: 10px 15px 10px 15px;
  font-size: 20px;
  line-height: 1.16667em;
  letter-spacing: 0.1px;
  font-weight: 600;
  text-transform: inherit;
  color: #0f3950;
}

/* line 3, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .term-defaults__legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: #f6f8fb;
  width: 100%;
  box-sizing: border-box;
  gap: 13px;
  padding: 0px;
}

/* line 15, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .term-defaults__legend a.help-link .fa {
  font-size: 20px !important;
}

/* line 20, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .term-defaults__legend .term-defaults__legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

/* line 27, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .term-defaults__legend .term-defaults__legend-item .legend__indicator {
  height: 12px;
  width: 24px;
  border-radius: 2px;
}

/* line 33, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .term-defaults__legend label {
  font-size: 13px;
}

/* line 37, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .indicator--Organization {
  background-color: #18516e !important;
}

/* line 40, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .indicator--DMS {
  background-color: #8540f5 !important;
}

/* line 43, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .indicator--Term {
  background-color: #3d8bfd !important;
}

/* line 46, app/assets/stylesheets/terms_terms_defaults.scss */
body.term-defaults-body .indicator--Game {
  background-color: #198754 !important;
}

/* line 3, app/assets/stylesheets/users.scss */
body.users-body div[container_class*=form-check] label {
  display: none;
}

/* line 1, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body {
  /* entire password module positioning */
  /* password credentials fields */
  /* removes chrome auto fill default styles */
  /* links bin with underline buttons */
  /* mobile styles -----------------------------------------------------------------------------------------------------
  --------------------------------------------------------------------------------------------------------------------*/
}

/* line 2, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body .help-block {
  color: #ffffff;
}

/* line 7, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #password-container {
  top: 25%;
  position: fixed;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  width: 100%;
  /* scorevision logo */
}

/* line 15, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #password-container img {
  width: 90%;
  max-width: 350px;
  margin-bottom: 30px;
}

/* line 22, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #forgot-password-title {
  color: white;
}

/* line 26, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #change-password-title {
  color: white;
}

/* line 31, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #password-panel {
  width: 400px;
  margin: 0 auto;
  /* input field */
  /* password button */
}

/* line 36, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #password-panel .form-control {
  border: none;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 12px;
  font-family: Nunito Sans, Helvetica, sans-serif;
  font-size: 1rem !important;
  color: #ffffff !important;
  background: none;
  box-shadow: none !important;
}

/* line 49, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #password-panel .btn.btn-main {
  margin-top: 25px;
  margin-bottom: 30px;
}

/* line 56, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body input:-webkit-autofill,
body.users-passwords-body input:-webkit-autofill:hover,
body.users-passwords-body input:-webkit-autofill:focus,
body.users-passwords-body textarea:-webkit-autofill,
body.users-passwords-body textarea:-webkit-autofill:hover,
body.users-passwords-body textarea:-webkit-autofill:focus,
body.users-passwords-body select:-webkit-autofill,
body.users-passwords-body select:-webkit-autofill:hover,
body.users-passwords-body select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px #000 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

/* line 72, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin {
  position: relative;
  text-align: center;
  /* underline buttons */
}

/* line 77, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin .btn.btn-underline {
  opacity: 0.8;
  margin-bottom: 10px;
}

/* line 82, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a {
  outline-color: transparent;
}

/* line 86, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a:link {
  color: #ffffff;
}

/* line 90, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a:visited {
  color: #ffffff;
}

/* line 94, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a:focus {
  text-decoration: none;
  background: #bae498;
}

/* line 99, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a:hover {
  text-decoration: none;
  background: #007bff;
}

/* line 104, app/assets/stylesheets/users_passwords.scss */
body.users-passwords-body #sharedlinksbin a:active {
  background: #ffffff;
  color: #007bff;
}

@media screen and (max-width: 610px) {
  /* line 114, app/assets/stylesheets/users_passwords.scss */
  body.users-passwords-body #password-panel {
    width: 100%;
  }
}
