/*!
Theme Name: GotSport Website
Theme URI: http://underscores.me/
Author: Sheuneen Ta
Author URI: http://underscores.me/
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gotsport-website
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

GotSport Website is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: flex;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  /*margin: 0 0 1.5em; Changed*/
  margin: 0;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;

  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;

  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

/*=============================================== 
MY STYLES
=============================================== */


/* My VARIABLES */
/*Fonts*/
/*------------
font colors
--------------*/
/*------------
Link colors
--------------*/
@import url("http://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900,900italic");
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,700,600,300,300italic,400italic,600italic,700italic,800,800italic");
@import url("http://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&amp;display=swap");
@import url("http://fonts.googleapis.com/css?family=Oswald");
@import url("http://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&amp;display=swap");
@import url("http://fonts.googleapis.com/css2?family=Varela+Round&amp;display=swap");
@import url("mdh2dze.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&amp;display=swap");
/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_root.scss */
:root {
  --blue: #0f358e;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e68cae;
  --red: #ae0217;
  --orange: #e18922;
  --yellow: #f0d354;
  --green: #639a57;
  --teal: #62aea0;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #01206e;
  --secondary: #70b645;
  --success: #639a57;
  --info: #17a2b8;
  --warning: #f0d354;
  --danger: #ae0217;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1590px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: white;
}

/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

/* line 76, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 114, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 129, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 136, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
dt {
  font-weight: 700;
}

/* line 147, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

/* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
blockquote {
  margin: 0 0 1rem;
}

/* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
b,
strong {
  font-weight: bolder;
}

/* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
small {
  font-size: 80%;
}

/* line 170, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 178, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
sub {
  bottom: -0.25em;
}

/* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
sup {
  top: -0.5em;
}

/* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
a {
  color: #70b645;
  text-decoration: none;
  background-color: transparent;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a:hover {
  color: #4e7f30;
  text-decoration: underline;
}

/* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
a:not([href]) {
  color: inherit;
  text-decoration: none;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

/* line 217, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}

/* line 225, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

/* line 239, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
figure {
  margin: 0 0 1rem;
}

/* line 249, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
img {
  vertical-align: middle;
  border-style: none;
}

/* line 254, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 266, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
table {
  border-collapse: collapse;
}

/* line 270, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

/* line 278, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
th {
  text-align: inherit;
}

/* line 289, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 298, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button {
  border-radius: 0;
}

/* line 307, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 312, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 323, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button,
input {
  overflow: visible;
}

/* line 328, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button,
select {
  text-transform: none;
}

/* line 336, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
select {
  word-wrap: normal;
}

/* line 344, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 357, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

/* line 364, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

/* line 379, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

/* line 391, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
textarea {
  overflow: auto;
  resize: vertical;
}

/* line 397, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 412, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 424, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
progress {
  vertical-align: baseline;
}

/* line 429, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 434, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 447, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 456, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 465, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
output {
  display: inline-block;
}

/* line 469, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
summary {
  display: list-item;
  cursor: pointer;
}

/* line 474, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
template {
  display: none;
}

/* line 480, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_reboot.scss */
[hidden] {
  display: none !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h1,
.h1 {
  font-size: 2.5rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h2,
.h2 {
  font-size: 2rem;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h3,
.h3 {
  font-size: 1.75rem;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h4,
.h4 {
  font-size: 1.5rem;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h5,
.h5 {
  font-size: 1.15rem;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
h6,
.h6 {
  font-size: 1rem;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
small,
.small {
  font-size: 80%;
  font-weight: 400;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 89, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.list-inline-item {
  display: inline-block;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 106, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_type.scss */
.blockquote-footer::before {
  content: "\2014\00A0";
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_images.scss */
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_images.scss */
.img-thumbnail {
  padding: 0.25rem;
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_images.scss */
.figure {
  display: inline-block;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_images.scss */
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_images.scss */
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
code {
  font-size: 87.5%;
  color: #e68cae;
  word-wrap: break-word;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
a > code {
  color: inherit;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_code.scss */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1590px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container {
    max-width: 1302px;
  }
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1590px) {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1302px;
  }
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_grid.scss */
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-xxl-1,
.col-xxl-2,
.col-xxl-3,
.col-xxl-4,
.col-xxl-5,
.col-xxl-6,
.col-xxl-7,
.col-xxl-8,
.col-xxl-9,
.col-xxl-10,
.col-xxl-11,
.col-xxl-12,
.col-xxl,
.col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-3 > * {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
.row-cols-6 > * {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-first {
  order: -1;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-last {
  order: 13;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-0 {
  order: 0;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-1 {
  order: 1;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-2 {
  order: 2;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-3 {
  order: 3;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-4 {
  order: 4;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-5 {
  order: 5;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-6 {
  order: 6;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-7 {
  order: 7;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-8 {
  order: 8;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-9 {
  order: 9;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-10 {
  order: 10;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-11 {
  order: 11;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.order-12 {
  order: 12;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-1 {
  margin-left: 8.33333%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-2 {
  margin-left: 16.66667%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-3 {
  margin-left: 25%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-4 {
  margin-left: 33.33333%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-5 {
  margin-left: 41.66667%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-6 {
  margin-left: 50%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-7 {
  margin-left: 58.33333%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-8 {
  margin-left: 66.66667%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-9 {
  margin-left: 75%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-10 {
  margin-left: 83.33333%;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-sm-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-first {
    order: -1;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-last {
    order: 13;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-0 {
    order: 0;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-1 {
    order: 1;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-2 {
    order: 2;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-3 {
    order: 3;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-4 {
    order: 4;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-5 {
    order: 5;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-6 {
    order: 6;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-7 {
    order: 7;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-8 {
    order: 8;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-9 {
    order: 9;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-10 {
    order: 10;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-11 {
    order: 11;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-sm-12 {
    order: 12;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-0 {
    margin-left: 0;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-md-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-first {
    order: -1;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-last {
    order: 13;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-0 {
    order: 0;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-1 {
    order: 1;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-2 {
    order: 2;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-3 {
    order: 3;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-4 {
    order: 4;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-5 {
    order: 5;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-6 {
    order: 6;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-7 {
    order: 7;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-8 {
    order: 8;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-9 {
    order: 9;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-10 {
    order: 10;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-11 {
    order: 11;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-md-12 {
    order: 12;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-0 {
    margin-left: 0;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-3 {
    margin-left: 25%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-6 {
    margin-left: 50%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-9 {
    margin-left: 75%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-lg-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-first {
    order: -1;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-last {
    order: 13;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-0 {
    order: 0;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-1 {
    order: 1;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-2 {
    order: 2;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-3 {
    order: 3;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-4 {
    order: 4;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-5 {
    order: 5;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-6 {
    order: 6;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-7 {
    order: 7;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-8 {
    order: 8;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-9 {
    order: 9;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-10 {
    order: 10;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-11 {
    order: 11;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-lg-12 {
    order: 12;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-0 {
    margin-left: 0;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-first {
    order: -1;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-last {
    order: 13;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-0 {
    order: 0;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-1 {
    order: 1;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-2 {
    order: 2;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-3 {
    order: 3;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-4 {
    order: 4;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-5 {
    order: 5;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-6 {
    order: 6;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-7 {
    order: 7;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-8 {
    order: 8;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-9 {
    order: 9;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-10 {
    order: 10;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-11 {
    order: 11;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xl-12 {
    order: 12;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-0 {
    margin-left: 0;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1590px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-3 > * {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid.scss */
  .row-cols-xxl-6 > * {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-first {
    order: -1;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-last {
    order: 13;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-0 {
    order: 0;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-1 {
    order: 1;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-2 {
    order: 2;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-3 {
    order: 3;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-4 {
    order: 4;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-5 {
    order: 5;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-6 {
    order: 6;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-7 {
    order: 7;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-8 {
    order: 8;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-9 {
    order: 9;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-10 {
    order: 10;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-11 {
    order: 11;
  }
  /* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .order-xxl-12 {
    order: 12;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-0 {
    margin-left: 0;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-3 {
    margin-left: 25%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-6 {
    margin-left: 50%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-9 {
    margin-left: 75%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_grid-framework.scss */
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-bordered {
  border: 1px solid #dee2e6;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8c1d6;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7b8bb4;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-primary:hover {
  background-color: #a8b3cd;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #a8b3cd;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d7ebcb;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b5d99e;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-secondary:hover {
  background-color: #c9e4b9;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c9e4b9;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-success,
.table-success > th,
.table-success > td {
  background-color: #d3e3d0;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #aecaa8;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-success:hover {
  background-color: #c4d9c0;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #c4d9c0;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-info:hover {
  background-color: #abdde5;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fbf3cf;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #f7e8a6;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-warning:hover {
  background-color: #f9edb7;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #f9edb7;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #e8b8be;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #d57b86;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-danger:hover {
  background-color: #e2a5ac;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #e2a5ac;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-light:hover {
  background-color: #ececf6;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_table-row.scss */
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

/* line 114, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 130, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-dark {
  color: #fff;
  background-color: #343a40;
}

/* line 134, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-dark.table-bordered {
  border: 0;
}

/* line 145, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  /* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  /* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  /* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  /* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1589.98px) {
  /* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}

/* line 171, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tables.scss */
.table-responsive > .table-bordered {
  border: 0;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-control {
    transition: none;
  }
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #0245ec;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 96, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 151, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

/* line 167, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
textarea.form-control {
  height: auto;
}

/* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-group {
  margin-bottom: 1rem;
}

/* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* line 190, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

/* line 196, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

/* line 208, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

/* line 214, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

/* line 220, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

/* line 226, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check-label {
  margin-bottom: 0;
}

/* line 230, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

/* line 237, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #639a57;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(99, 154, 87, 0.9);
  border-radius: 0.25rem;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #639a57;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23639a57' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #639a57;
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.25);
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #639a57;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
      no-repeat right 0.75rem center/8px 10px,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23639a57' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e")
      #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem)
      calc(0.75em + 0.375rem);
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #639a57;
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.25);
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #639a57;
}

/* line 126, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #639a57;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #639a57;
}

/* line 144, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:valid:checked
  ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #7fb074;
  background-color: #7fb074;
}

/* line 151, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:valid:focus
  ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.25);
}

/* line 155, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:valid:focus:not(:checked)
  ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #639a57;
}

/* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #639a57;
}

/* line 170, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #639a57;
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.25);
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #ae0217;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(174, 2, 23, 0.9);
  border-radius: 0.25rem;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #ae0217;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ae0217' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ae0217' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #ae0217;
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.25);
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #ae0217;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
      no-repeat right 0.75rem center/8px 10px,
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ae0217' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ae0217' stroke='none'/%3e%3c/svg%3e")
      #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem)
      calc(0.75em + 0.375rem);
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #ae0217;
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.25);
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #ae0217;
}

/* line 126, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #ae0217;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #ae0217;
}

/* line 144, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:invalid:checked
  ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e0031e;
  background-color: #e0031e;
}

/* line 151, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:invalid:focus
  ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.25);
}

/* line 155, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated
  .custom-control-input:invalid:focus:not(:checked)
  ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked)
  ~ .custom-control-label::before {
  border-color: #ae0217;
}

/* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ae0217;
}

/* line 170, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_forms.scss */
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #ae0217;
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.25);
}

/* line 266, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

/* line 274, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  /* line 280, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  /* line 288, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  /* line 297, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 304, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  /* line 308, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  /* line 315, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  /* line 322, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  /* line 330, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  /* line 334, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_forms.scss */
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
  .btn {
    transition: none;
  }
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn:hover {
  color: #212529;
  text-decoration: none;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-primary {
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-primary:hover {
  color: #fff;
  background-color: #011548;
  border-color: #01113b;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #011548;
  border-color: #01113b;
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 132, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #01113b;
  border-color: #000e2f;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(39, 65, 132, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-secondary {
  color: #fff;
  background-color: #70b645;
  border-color: #70b645;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-secondary:hover {
  color: #fff;
  background-color: #5f9a3a;
  border-color: #599137;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #5f9a3a;
  border-color: #599137;
  box-shadow: 0 0 0 0.2rem rgba(133, 193, 97, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #70b645;
  border-color: #70b645;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #599137;
  border-color: #548833;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(133, 193, 97, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-success {
  color: #fff;
  background-color: #639a57;
  border-color: #639a57;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-success:hover {
  color: #fff;
  background-color: #538249;
  border-color: #4e7945;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #538249;
  border-color: #4e7945;
  box-shadow: 0 0 0 0.2rem rgba(122, 169, 112, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #639a57;
  border-color: #639a57;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #4e7945;
  border-color: #497140;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(122, 169, 112, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-warning {
  color: #212529;
  background-color: #f0d354;
  border-color: #f0d354;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-warning:hover {
  color: #212529;
  background-color: #edca31;
  border-color: #ecc725;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #edca31;
  border-color: #ecc725;
  box-shadow: 0 0 0 0.2rem rgba(209, 185, 78, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #f0d354;
  border-color: #f0d354;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ecc725;
  border-color: #ebc419;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(209, 185, 78, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-danger {
  color: #fff;
  background-color: #ae0217;
  border-color: #ae0217;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-danger:hover {
  color: #fff;
  background-color: #880212;
  border-color: #7c0110;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #880212;
  border-color: #7c0110;
  box-shadow: 0 0 0 0.2rem rgba(186, 40, 58, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #ae0217;
  border-color: #ae0217;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #7c0110;
  border-color: #6f010f;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(186, 40, 58, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-primary {
  color: #01206e;
  border-color: #01206e;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-primary:hover {
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #01206e;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-secondary {
  color: #70b645;
  border-color: #70b645;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #70b645;
  border-color: #70b645;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(112, 182, 69, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #70b645;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #70b645;
  border-color: #70b645;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(112, 182, 69, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-success {
  color: #639a57;
  border-color: #639a57;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-success:hover {
  color: #fff;
  background-color: #639a57;
  border-color: #639a57;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #639a57;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #639a57;
  border-color: #639a57;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-warning {
  color: #f0d354;
  border-color: #f0d354;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-warning:hover {
  color: #212529;
  background-color: #f0d354;
  border-color: #f0d354;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 211, 84, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #f0d354;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #f0d354;
  border-color: #f0d354;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 211, 84, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-danger {
  color: #ae0217;
  border-color: #ae0217;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-danger:hover {
  color: #fff;
  background-color: #ae0217;
  border-color: #ae0217;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #ae0217;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ae0217;
  border-color: #ae0217;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_buttons.scss */
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-link {
  font-weight: 400;
  color: #70b645;
  text-decoration: none;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-link:hover {
  color: #4e7f30;
  text-decoration: underline;
}

/* line 89, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

/* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* line 127, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

/* line 136, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_buttons.scss */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  /* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
  .fade {
    transition: none;
  }
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
.fade:not(.show) {
  opacity: 0;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
.collapse:not(.show) {
  display: none;
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_transitions.scss */
  .collapsing {
    transition: none;
  }
}

/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-toggle {
  white-space: nowrap;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1590px) {
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}

/* line 57, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 80, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropleft .dropdown-toggle::after {
  display: none;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_caret.scss */
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

/* line 97, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

/* line 106, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

/* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 153, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #01206e;
}

/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

/* line 172, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-menu.show {
  display: block;
}

/* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

/* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_dropdown.scss */
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-toolbar .input-group {
  width: auto;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

/* line 89, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

/* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

/* line 127, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 132, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_button-group.scss */
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

/* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .custom-file {
  display: flex;
  align-items: center;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-prepend,
.input-group-append {
  display: flex;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

/* line 83, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 91, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-prepend {
  margin-right: -1px;
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-append {
  margin-left: -1px;
}

/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

/* line 133, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

/* line 145, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

/* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

/* line 162, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_input-group.scss */
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

/* line 175, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 184, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #01206e;
  background-color: #01206e;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #0245ec;
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #2462fd;
  border-color: #2462fd;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input[disabled] ~ .custom-control-label,
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

/* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

/* line 97, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

/* line 115, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

/* line 120, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/* line 126, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::before {
  border-color: #01206e;
  background-color: #01206e;
}

/* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

/* line 137, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(1, 32, 110, 0.5);
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-checkbox
  .custom-control-input:disabled:indeterminate
  ~ .custom-control-label::before {
  background-color: rgba(1, 32, 110, 0.5);
}

/* line 151, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

/* line 157, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* line 163, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-radio
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(1, 32, 110, 0.5);
}

/* line 174, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-switch {
  padding-left: 2.25rem;
}

/* line 178, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

/* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

/* line 199, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

/* line 206, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-switch
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(1, 32, 110, 0.5);
}

/* line 219, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}

/* line 236, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select:focus {
  border-color: #0245ec;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 245, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

/* line 256, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

/* line 263, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

/* line 269, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select::-ms-expand {
  display: none;
}

/* line 274, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

/* line 280, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

/* line 288, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

/* line 301, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

/* line 309, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

/* line 317, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-input:focus ~ .custom-file-label {
  border-color: #0245ec;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 323, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

/* line 329, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

/* line 334, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

/* line 339, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

/* line 356, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

/* line 380, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}

/* line 387, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:focus {
  outline: none;
}

/* line 392, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 393, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 394, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px white, 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 397, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-moz-focus-outer {
  border: 0;
}

/* line 401, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #01206e;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 401, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

/* line 412, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-webkit-slider-thumb:active {
  background-color: #2462fd;
}

/* line 417, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 428, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #01206e;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 428, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

/* line 438, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-moz-range-thumb:active {
  background-color: #2462fd;
}

/* line 443, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 454, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #01206e;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  /* line 454, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
  .custom-range::-ms-thumb {
    transition: none;
  }
}

/* line 467, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-ms-thumb:active {
  background-color: #2462fd;
}

/* line 472, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 483, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 488, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

/* line 495, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

/* line 499, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

/* line 503, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

/* line 507, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:disabled::-moz-range-track {
  cursor: default;
}

/* line 511, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

/* line 517, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 517, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_custom-forms.scss */
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs .nav-item {
  margin-bottom: -1px;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: white;
  border-color: #dee2e6 #dee2e6 white;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 77, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-pills .nav-link {
  border-radius: 0.25rem;
}

/* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #01206e;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

/* line 114, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.tab-content > .tab-pane {
  display: none;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_nav.scss */
.tab-content > .active {
  display: block;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl,
.navbar .container-xxl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

/* line 71, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

/* line 83, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent !important;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

/* line 133, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl,
  .navbar-expand-sm > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  /* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl,
  .navbar-expand-sm > .container-xxl {
    flex-wrap: nowrap;
  }
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl,
  .navbar-expand-md > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  /* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl,
  .navbar-expand-md > .container-xxl {
    flex-wrap: nowrap;
  }
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl,
  .navbar-expand-lg > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  /* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl,
  .navbar-expand-lg > .container-xxl {
    flex-wrap: nowrap;
  }
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  /* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl,
  .navbar-expand-xl > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  /* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl,
  .navbar-expand-xl > .container-xxl {
    flex-wrap: nowrap;
  }
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1589.98px) {
  /* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1590px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  /* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  /* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  /* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  /* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxl {
    flex-wrap: nowrap;
  }
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

/* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

/* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl {
  padding-right: 0;
  padding-left: 0;
}

/* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand .navbar-nav {
  flex-direction: row;
}

/* line 176, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

/* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl {
  flex-wrap: nowrap;
}

/* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

/* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-expand .navbar-toggler {
  display: none;
}

/* line 224, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 233, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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 240, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

/* line 245, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 253, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

/* line 258, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 262, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

/* line 264, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

/* line 276, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-brand {
  color: #fff;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

/* line 285, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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 292, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

/* line 297, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 305, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* line 310, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* line 314, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

/* line 316, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_navbar.scss */
.navbar-dark .navbar-text a {
  color: #fff;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card > hr {
  margin-right: 0;
  margin-left: 0;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-title {
  margin-bottom: 0.75rem;
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-text:last-child {
  margin-bottom: 0;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.card-link:hover {
  text-decoration: none;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-link + .card-link {
  margin-left: 1.25rem;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 80, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

/* line 91, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 96, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

/* line 106, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

/* line 119, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

/* line 149, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 148, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  /* line 159, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

/* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  /* line 174, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  /* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  /* line 191, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  /* line 198, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  /* line 201, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  /* line 206, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  /* line 213, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  /* line 216, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  /* line 221, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

/* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  /* line 237, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  /* line 248, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* line 261, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.accordion > .card {
  overflow: hidden;
}

/* line 264, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 269, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 273, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_card.scss */
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_breadcrumb.scss */
.breadcrumb-item.active {
  color: #6c757d;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #70b645;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-link:hover {
  z-index: 2;
  color: #4e7f30;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.25);
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_pagination.scss */
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_pagination.scss */
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_pagination.scss */
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
  .badge {
    transition: none;
  }
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge:hover,
a.badge:focus {
  text-decoration: none;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge:empty {
  display: none;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.btn .badge {
  position: relative;
  top: -1px;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-primary {
  color: #fff;
  background-color: #01206e;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-primary:hover,
a.badge-primary:focus {
  color: #fff;
  background-color: #01113b;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-primary:focus,
a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(1, 32, 110, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-secondary {
  color: #fff;
  background-color: #70b645;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-secondary:hover,
a.badge-secondary:focus {
  color: #fff;
  background-color: #599137;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-secondary:focus,
a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(112, 182, 69, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-success {
  color: #fff;
  background-color: #639a57;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-success:hover,
a.badge-success:focus {
  color: #fff;
  background-color: #4e7945;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-success:focus,
a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(99, 154, 87, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-info:hover,
a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-info:focus,
a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-warning {
  color: #212529;
  background-color: #f0d354;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-warning:hover,
a.badge-warning:focus {
  color: #212529;
  background-color: #ecc725;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-warning:focus,
a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(240, 211, 84, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-danger {
  color: #fff;
  background-color: #ae0217;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-danger:hover,
a.badge-danger:focus {
  color: #fff;
  background-color: #7c0110;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-danger:focus,
a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(174, 2, 23, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-light:hover,
a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-light:focus,
a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_badge.scss */
.badge-dark {
  color: #fff;
  background-color: #343a40;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.badge-dark:hover,
a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_badge.scss */
a.badge-dark:focus,
a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_jumbotron.scss */
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  /* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_jumbotron.scss */
  .jumbotron {
    padding: 4rem 2rem;
  }
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_jumbotron.scss */
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-heading {
  color: inherit;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-link {
  font-weight: 700;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-dismissible {
  padding-right: 4rem;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-primary {
  color: #011139;
  background-color: #ccd2e2;
  border-color: #b8c1d6;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-primary hr {
  border-top-color: #a8b3cd;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-primary .alert-link {
  color: #000207;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-secondary {
  color: #3a5f24;
  background-color: #e2f0da;
  border-color: #d7ebcb;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-secondary hr {
  border-top-color: #c9e4b9;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-secondary .alert-link {
  color: #233a16;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-success {
  color: #33502d;
  background-color: #e0ebdd;
  border-color: #d3e3d0;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-success hr {
  border-top-color: #c4d9c0;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-success .alert-link {
  color: #1e2f1b;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-info hr {
  border-top-color: #abdde5;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-info .alert-link {
  color: #062c33;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-warning {
  color: #7d6e2c;
  background-color: #fcf6dd;
  border-color: #fbf3cf;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-warning hr {
  border-top-color: #f9edb7;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-warning .alert-link {
  color: #574d1f;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-danger {
  color: #5a010c;
  background-color: #efccd1;
  border-color: #e8b8be;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-danger hr {
  border-top-color: #e2a5ac;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-danger .alert-link {
  color: #280005;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-light hr {
  border-top-color: #ececf6;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-light .alert-link {
  color: #686868;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_alert.scss */
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-dark hr {
  border-top-color: #b9bbbe;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_alert.scss */
.alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_progress.scss */
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_progress.scss */
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #01206e;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_progress.scss */
  .progress-bar {
    transition: none;
  }
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_progress.scss */
.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_progress.scss */
  .progress-bar-animated {
    animation: none;
  }
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_media.scss */
.media {
  display: flex;
  align-items: flex-start;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_media.scss */
.media-body {
  flex: 1;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item + .list-group-item {
  border-top-width: 0;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal {
  flex-direction: row;
}

/* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal .list-group-item.active {
  margin-top: 0;
}

/* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

/* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-horizontal .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  /* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  /* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm .list-group-item.active {
    margin-top: 0;
  }
  /* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-sm .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  /* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md {
    flex-direction: row;
  }
  /* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md .list-group-item.active {
    margin-top: 0;
  }
  /* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-md .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  /* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  /* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg .list-group-item.active {
    margin-top: 0;
  }
  /* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-lg .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  /* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  /* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl .list-group-item.active {
    margin-top: 0;
  }
  /* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xl .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1590px) {
  /* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  /* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  /* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl .list-group-item.active {
    margin-top: 0;
  }
  /* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
  .list-group-horizontal-xxl .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

/* line 133, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-flush .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-flush .list-group-item:first-child {
  border-top-width: 0;
}

/* line 144, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_list-group.scss */
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom-width: 0;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-primary {
  color: #011139;
  background-color: #b8c1d6;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #011139;
  background-color: #a8b3cd;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #011139;
  border-color: #011139;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-secondary {
  color: #3a5f24;
  background-color: #d7ebcb;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #3a5f24;
  background-color: #c9e4b9;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #3a5f24;
  border-color: #3a5f24;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-success {
  color: #33502d;
  background-color: #d3e3d0;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #33502d;
  background-color: #c4d9c0;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #33502d;
  border-color: #33502d;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-warning {
  color: #7d6e2c;
  background-color: #fbf3cf;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #7d6e2c;
  background-color: #f9edb7;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #7d6e2c;
  border-color: #7d6e2c;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-danger {
  color: #5a010c;
  background-color: #e8b8be;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #5a010c;
  background-color: #e2a5ac;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #5a010c;
  border-color: #5a010c;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_list-group.scss */
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_close.scss */
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.close:hover {
  color: #000;
  text-decoration: none;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_close.scss */
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_close.scss */
a.close.disabled {
  pointer-events: none;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast.showing {
  opacity: 1;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast.show {
  display: block;
  opacity: 1;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast.hide {
  display: none;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_toasts.scss */
.toast-body {
  padding: 0.75rem;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-open {
  overflow: hidden;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

/* line 36, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal.fade .modal-dialog {
    transition: none;
  }
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal.show .modal-dialog {
  transform: none;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

/* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

/* line 77, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* line 83, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

/* line 90, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

/* line 99, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

/* line 106, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

/* line 134, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-backdrop.show {
  opacity: 0.5;
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 148, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

/* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

/* line 163, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

/* line 172, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

/* line 185, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-footer > * {
  margin: 0.25rem;
}

/* line 191, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  /* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  /* line 207, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  /* line 210, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  /* line 215, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  /* line 218, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  /* line 227, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 231, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  /* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_modal.scss */
  .modal-xl {
    max-width: 1140px;
  }
}

/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", 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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.tooltip.show {
  opacity: 0.9;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_tooltip.scss */
.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel {
  position: relative;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel.pointer-event {
  touch-action: pan-y;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_clearfix.scss */
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
  .carousel-item {
    transition: none;
  }
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  /* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

/* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-prev {
  left: 0;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-next {
  right: 0;
}

/* line 125, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

/* line 132, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

/* line 145, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

/* line 159, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  /* line 159, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
  .carousel-indicators li {
    transition: none;
  }
}

/* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_carousel.scss */
.carousel-indicators .active {
  opacity: 1;
}

/* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_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 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", 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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-top > .arrow,
.bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-top > .arrow::before,
.bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-top > .arrow::after,
.bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-right > .arrow,
.bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-right > .arrow::before,
.bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-right > .arrow::after,
.bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

/* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-bottom > .arrow,
.bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-bottom > .arrow::before,
.bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 93, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-bottom > .arrow::after,
.bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

/* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-left > .arrow,
.bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-left > .arrow::before,
.bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.bs-popover-left > .arrow::after,
.bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

/* line 153, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

/* line 162, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover-header:empty {
  display: none;
}

/* line 167, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_popover.scss */
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_spinners.scss */
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border 0.75s linear infinite;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_spinners.scss */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_spinners.scss */
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow 0.75s linear infinite;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_spinners.scss */
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

/* line 3, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-baseline {
  vertical-align: baseline !important;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-top {
  vertical-align: top !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-middle {
  vertical-align: middle !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-bottom {
  vertical-align: bottom !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-text-bottom {
  vertical-align: text-bottom !important;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_align.scss */
.align-text-top {
  vertical-align: text-top !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-primary {
  background-color: #01206e !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #01113b !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-secondary {
  background-color: #70b645 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #599137 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-success {
  background-color: #639a57 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #4e7945 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-info {
  background-color: #17a2b8 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-warning {
  background-color: #f0d354 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ecc725 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-danger {
  background-color: #ae0217 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #7c0110 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-light {
  background-color: #f8f9fa !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_background-variant.scss */
.bg-dark {
  background-color: #343a40 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_background.scss */
.bg-white {
  background-color: #fff !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_background.scss */
.bg-transparent {
  background-color: transparent !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border {
  border: 1px solid #dee2e6 !important;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-top {
  border-top: 1px solid #dee2e6 !important;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-right {
  border-right: 1px solid #dee2e6 !important;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-left {
  border-left: 1px solid #dee2e6 !important;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-0 {
  border: 0 !important;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-top-0 {
  border-top: 0 !important;
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-right-0 {
  border-right: 0 !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-bottom-0 {
  border-bottom: 0 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-left-0 {
  border-left: 0 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-primary {
  border-color: #01206e !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-secondary {
  border-color: #70b645 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-success {
  border-color: #639a57 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-info {
  border-color: #17a2b8 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-warning {
  border-color: #f0d354 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-danger {
  border-color: #ae0217 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-light {
  border-color: #f8f9fa !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-dark {
  border-color: #343a40 !important;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.border-white {
  border-color: #fff !important;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-sm {
  border-radius: 0.2rem !important;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded {
  border-radius: 0.25rem !important;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-lg {
  border-radius: 0.3rem !important;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-circle {
  border-radius: 50% !important;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-pill {
  border-radius: 50rem !important;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_borders.scss */
.rounded-0 {
  border-radius: 0 !important;
}

/* line 2, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_clearfix.scss */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-none {
  display: none !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-inline {
  display: inline !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-inline-block {
  display: inline-block !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-block {
  display: block !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-table {
  display: table !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-table-row {
  display: table-row !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-table-cell {
  display: table-cell !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-flex {
  display: flex !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-none {
    display: none !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-block {
    display: block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-table {
    display: table !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-none {
    display: none !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-block {
    display: block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-table {
    display: table !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-none {
    display: none !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-block {
    display: block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-table {
    display: table !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-none {
    display: none !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-block {
    display: block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-table {
    display: table !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1590px) {
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-none {
    display: none !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-inline {
    display: inline !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-block {
    display: block !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-table {
    display: table !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-table-row {
    display: table-row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-flex {
    display: flex !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-none {
    display: none !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-inline {
    display: inline !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-inline-block {
    display: inline-block !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-block {
    display: block !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-table {
    display: table !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-table-row {
    display: table-row !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-table-cell {
    display: table-cell !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-flex {
    display: flex !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_display.scss */
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

/* line 3, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive::before {
  display: block;
  content: "";
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-4by3::before {
  padding-top: 75%;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_embed.scss */
.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-row {
  flex-direction: row !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-column {
  flex-direction: column !important;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-row-reverse {
  flex-direction: row-reverse !important;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-column-reverse {
  flex-direction: column-reverse !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-wrap {
  flex-wrap: wrap !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-nowrap {
  flex-wrap: nowrap !important;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-fill {
  flex: 1 1 auto !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-grow-0 {
  flex-grow: 0 !important;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-grow-1 {
  flex-grow: 1 !important;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-shrink-0 {
  flex-shrink: 0 !important;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.flex-shrink-1 {
  flex-shrink: 1 !important;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.justify-content-start {
  justify-content: flex-start !important;
}

/* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.justify-content-end {
  justify-content: flex-end !important;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.justify-content-center {
  justify-content: center !important;
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.justify-content-between {
  justify-content: space-between !important;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.justify-content-around {
  justify-content: space-around !important;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-items-start {
  align-items: flex-start !important;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-items-end {
  align-items: flex-end !important;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-items-center {
  align-items: center !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-items-baseline {
  align-items: baseline !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-items-stretch {
  align-items: stretch !important;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-start {
  align-content: flex-start !important;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-end {
  align-content: flex-end !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-center {
  align-content: center !important;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-between {
  align-content: space-between !important;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-around {
  align-content: space-around !important;
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-content-stretch {
  align-content: stretch !important;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-auto {
  align-self: auto !important;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-start {
  align-self: flex-start !important;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-end {
  align-self: flex-end !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-center {
  align-self: center !important;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-baseline {
  align-self: baseline !important;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1590px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-row {
    flex-direction: row !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-column {
    flex-direction: column !important;
  }
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  /* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  /* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  /* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  /* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  /* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  /* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  /* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  /* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xxl-center {
    align-items: center !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  /* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-center {
    align-content: center !important;
  }
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  /* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  /* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  /* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  /* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-center {
    align-self: center !important;
  }
  /* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_flex.scss */
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
.float-left {
  float: left !important;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
.float-right {
  float: right !important;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-sm-left {
    float: left !important;
  }
  /* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-sm-right {
    float: right !important;
  }
  /* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-md-left {
    float: left !important;
  }
  /* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-md-right {
    float: right !important;
  }
  /* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-lg-left {
    float: left !important;
  }
  /* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-lg-right {
    float: right !important;
  }
  /* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xl-left {
    float: left !important;
  }
  /* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xl-right {
    float: right !important;
  }
  /* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xl-none {
    float: none !important;
  }
}

@media (min-width: 1590px) {
  /* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xxl-left {
    float: left !important;
  }
  /* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xxl-right {
    float: right !important;
  }
  /* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_float.scss */
  .float-xxl-none {
    float: none !important;
  }
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_overflow.scss */
.overflow-auto {
  overflow: auto !important;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_overflow.scss */
.overflow-hidden {
  overflow: hidden !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.position-static {
  position: static !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.position-relative {
  position: relative !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.position-absolute {
  position: absolute !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.position-fixed {
  position: fixed !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.position-sticky {
  position: sticky !important;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  /* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_position.scss */
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_screenreaders.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/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, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_shadows.scss */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_shadows.scss */
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_shadows.scss */
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_shadows.scss */
.shadow-none {
  box-shadow: none !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.w-25 {
  width: 25% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.w-50 {
  width: 50% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.w-75 {
  width: 75% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.w-100 {
  width: 100% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.w-auto {
  width: auto !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.h-25 {
  height: 25% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.h-50 {
  height: 50% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.h-75 {
  height: 75% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.h-100 {
  height: 100% !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.h-auto {
  height: auto !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.mw-100 {
  max-width: 100% !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.mh-100 {
  max-height: 100% !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.min-vw-100 {
  min-width: 100vw !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.min-vh-100 {
  min-height: 100vh !important;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.vw-100 {
  width: 100vw !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_sizing.scss */
.vh-100 {
  height: 100vh !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_stretched-link.scss */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-0 {
  margin: 0 !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-0,
.my-0 {
  margin-top: 0 !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-1 {
  margin: 0.25rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-2 {
  margin: 0.5rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-3 {
  margin: 1rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-4 {
  margin: 1.5rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-5 {
  margin: 3rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-0 {
  padding: 0 !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-0,
.py-0 {
  padding-top: 0 !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-0,
.px-0 {
  padding-right: 0 !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-0,
.px-0 {
  padding-left: 0 !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-1 {
  padding: 0.25rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-2 {
  padding: 0.5rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-3 {
  padding: 1rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-4 {
  padding: 1.5rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.p-5 {
  padding: 3rem !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-n1 {
  margin: -0.25rem !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-n2 {
  margin: -0.5rem !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-n3 {
  margin: -1rem !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-n4 {
  margin: -1.5rem !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-n5 {
  margin: -3rem !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.m-auto {
  margin: auto !important;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mt-auto,
.my-auto {
  margin-top: auto !important;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-sm-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n3 {
    margin: -1rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-n5 {
    margin: -3rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-sm-auto {
    margin: auto !important;
  }
  /* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  /* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-md-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n3 {
    margin: -1rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-n5 {
    margin: -3rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-md-auto {
    margin: auto !important;
  }
  /* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  /* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-lg-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n3 {
    margin: -1rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-n5 {
    margin: -3rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-lg-auto {
    margin: auto !important;
  }
  /* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  /* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xl-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n3 {
    margin: -1rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-n5 {
    margin: -3rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xl-auto {
    margin: auto !important;
  }
  /* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  /* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1590px) {
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-0 {
    margin: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-3 {
    margin: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-5 {
    margin: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-0 {
    padding: 0 !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-3 {
    padding: 1rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  /* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .p-xxl-5 {
    padding: 3rem !important;
  }
  /* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  /* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  /* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  /* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  /* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  /* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  /* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .m-xxl-auto {
    margin: auto !important;
  }
  /* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  /* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  /* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_spacing.scss */
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-justify {
  text-align: justify !important;
}

/* line 12, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-wrap {
  white-space: normal !important;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-nowrap {
  white-space: nowrap !important;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-left {
  text-align: left !important;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-right {
  text-align: right !important;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-sm-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-sm-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-md-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-md-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-lg-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-lg-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xl-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xl-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1590px) {
  /* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xxl-left {
    text-align: left !important;
  }
  /* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xxl-right {
    text-align: right !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
  .text-xxl-center {
    text-align: center !important;
  }
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-lowercase {
  text-transform: lowercase !important;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-uppercase {
  text-transform: uppercase !important;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-capitalize {
  text-transform: capitalize !important;
}

/* line 36, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-weight-light {
  font-weight: 300 !important;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-weight-lighter {
  font-weight: lighter !important;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-weight-normal {
  font-weight: 400 !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-weight-bold {
  font-weight: 700 !important;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-weight-bolder {
  font-weight: bolder !important;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.font-italic {
  font-style: italic !important;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-white {
  color: #fff !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-primary {
  color: #01206e !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #000a22 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-secondary {
  color: #70b645 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-secondary:hover,
a.text-secondary:focus {
  color: #4e7f30 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-success {
  color: #639a57 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-success:hover,
a.text-success:focus {
  color: #44693b !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-info {
  color: #17a2b8 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-warning {
  color: #f0d354 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #e4bd14 !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-danger {
  color: #ae0217 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #62010d !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-light {
  color: #f8f9fa !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_text-emphasis.scss */
.text-dark {
  color: #343a40 !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/mixins/_hover.scss */
a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-body {
  color: #212529 !important;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-muted {
  color: #6c757d !important;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* line 59, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-decoration-none {
  text-decoration: none !important;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

/* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_text.scss */
.text-reset {
  color: inherit !important;
}

/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_visibility.scss */
.visible {
  visibility: visible !important;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/utilities/_visibility.scss */
.invisible {
  visibility: hidden !important;
}

@media print {
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  a:not(.btn) {
    text-decoration: underline;
  }
  /* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  pre {
    white-space: pre-wrap !important;
  }
  /* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  /* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  thead {
    display: table-header-group;
  }
  /* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }
  /* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  /* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  body {
    min-width: 992px !important;
  }
  /* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .container {
    min-width: 992px !important;
  }
  /* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .navbar {
    display: none;
  }
  /* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .badge {
    border: 1px solid #000;
  }
  /* line 107, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table {
    border-collapse: collapse !important;
  }
  /* line 110, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table td,
  .table th {
    background-color: #fff !important;
  }
  /* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  /* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table-dark {
    color: inherit;
  }
  /* line 126, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  /* line 134, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/bootstrap/scss/_print.scss */
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
html {
  position: relative;
  min-height: 100%;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
body {
  background-color: white;
  color: #4f5660;
  font-family: "Open Sans", sans-serif;
  /* margin-bottom: 250px !important;*/
}

/*Nav bootstrap */
/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
#logo {
  height: 35px;
  margin: 10px;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
section {
  padding: 40px 0px;
  z-index: 1;
  /* for bg-overlay purposes*/
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
section.p-reduced {
  padding: 10px 0;
}

@media (min-width: 768px) {
  /* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
  section {
    padding: 90px 0px;
    position: relative;
  }
  /* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
  section.p-reduced {
    padding: 35px 0px;
  }
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
section.p-none {
  padding: 0px;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
img {
  max-width: 100%;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.p-reduced {
  padding: 25px 0px;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.box-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.box-shadow2 {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

/**********************
Borders
**********************/
/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.border-left-primary {
  border-left: 5px solid #01206e !important;
}

/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.border-top-primary {
  border-top: 5px solid #01206e !important;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.border-right-primary {
  border-right: 5px solid #01206e !important;
}

/* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.border-bottom-primary {
  border-bottom: 5px solid #01206e !important;
}

/* line 76, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.arrow-bottom {
  z-index: 5;
  position: absolute;
  top: 0px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  margin-left: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #01206e;
}

/* line 90, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.arrow-top {
  z-index: 5;
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  margin-left: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #01206e;
}

/* line 104, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.hide-sm {
  display: none;
}

/**********************
-----------------------
Footer
-----------------------
**********************/
/*-------------------
Sticky footer styles
--------------------*/
/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer {
  /*position: absolute;
  bottom: 0;
  width: 100%;

  height: 250px;   //Set the fixed height of the footer here 
  */
  background-color: #011546;
  color: white;
  padding: 35px 0px;
}

/* line 129, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .company-info {
  text-align: center;
}

/* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .company-info .gotsport-logo {
  margin: 0 0 10px 0;
  height: 35px;
}

/* line 136, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer h5 {
  color: #70b645;
  font-weight: normal;
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer p {
  margin: 0px 0px 5px 0;
  color: #cccccc;
  font-size: 0.8rem;
}

/* line 147, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer a:link,
.footer a:visited {
  color: #cccccc;
}

/* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .social-media {
  list-style: none;
  display: flex;
  margin: 30px 0 0 0;
  padding: 0;
}

/* line 157, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .social-media li {
  padding: 0px 20px 0px 0px;
  margin: 0px;
}

/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .social-media li a:link,
.footer .social-media li a:visited {
  color: #70b645;
}

/* line 163, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .social-media li a:link i,
.footer .social-media li a:visited i {
  font-size: 1.2em;
}

/* line 167, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer .social-media li a:hover,
.footer .social-media li a:active {
  color: #599137;
}

/* Footer Menu */
/* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 183, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 188, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li a:link,
ul.footer-menu li a:visited {
  color: #70b645;
  text-transform: uppercase;
}

/* line 195, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li a:hover,
ul.footer-menu li a:active {
  text-decoration: none;
}

/* line 199, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li > ul {
  margin: 10px 0 0 0;
  padding: 0;
}

/* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li > ul li {
  padding: 3px 0;
}

/* line 204, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li > ul li a:link,
ul.footer-menu li > ul li a:visited {
  font-size: 0.9rem;
  color: white;
  text-transform: capitalize;
}

/* line 210, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li > ul li a:hover,
ul.footer-menu li > ul li a:active {
  text-decoration: underline;
}

/* line 218, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
ul.footer-menu li:nth-child(1),
ul.footer-menu li:nth-child(2),
ul.footer-menu li:nth-child(3),
ul.footer-menu li:nth-child(4),
ul.footer-menu li:nth-child(5)
 {
  display: block;
}

@media (min-width: 768px) {
  /* line 230, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
  .footer .company-info {
    text-align: left;
  }
  /* line 232, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
  .footer .company-info .gotsport-logo {
    margin-left: -7px;
  }
}

/* line 239, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer.footer-small {
  background: none;
  height: auto;
  padding: 10px;
}

/* line 243, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_base.scss */
.footer.footer-small .gotsport-logo {
  height: 35px;
}

/* TYPOGRAPHY */
/* Google Fonts */
/* font-family: 'Lato' */
/* font-family: 'Raleway', sans-serif; */
/* font-family: 'Montserrat' */
/*testing Oswald*/
/* font-family: 'Poppins', sans-serif; */
/* font-family: 'Inter', sans-serif; */
/**********************
-----------------------
Typography
-----------------------
***********************/
/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
html,
body {
  font-size: 14px;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h1 {
  font-size: 1.602em;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h2 {
  font-size: 1.424em;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h3 {
  font-size: 1.3266em;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h4 {
  font-size: 1.3em;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h5 {
  font-size: 1.2em;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h6 {
  font-size: 1.1em;
}

/* line 57, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-weight: 600;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-1 {
  font-size: 2.3em;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-2 {
  font-size: 2.1em;
}

/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-3 {
  font-size: 1.9em;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-4 {
  font-size: 1.7em;
}

/* line 76, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.display-5 {
  font-size: 1.5em;
}

/* line 80, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  /*margin: 0 0 0.9rem;*/
  margin: 0 0 0.9rem;
  letter-spacing: -0.8px;
  color: #2c2c51;
}

h1,
h2,
 {

  margin: 0 0 0.1rem;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
h1 a:link,
h1 a:visited,
h2 a:link,
h2 a:visited,
h3 a:link,
h3 a:visited,
h4 a:link,
h4 a:visited,
h5 a:link,
h5 a:visited,
h6 a:link,
h6 a:visited {
  color: #01206e;
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-size-12 {
  font-size: 12px;
}

/* line 105, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-size-14 {
  font-size: 14px;
}

/* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-size-15 {
  font-size: 15px;
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-size-16 {
  font-size: 16px;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-size-18 {
  font-size: 18px;
}

/*--------------------
Poppings Font

body.poppins {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-family: 'Poppins', sans-serif;
		font-weight: 600;
	}
	p {
	    font-family: 'Poppins', sans-serif;
			//font-weight:400;
	    }
	.pre-title-2 {
		font-weight: 200;
	}
	.pre-title {
		font-weight: 300;
	}
}----------------------*/
/**********************
-----------------------
Font Styles
-----------------------
***********************/
/* line 152, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-color {
  color: #4f5660 !important;
}

/* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-color-dark {
  color: #2e3949 !important;
}

/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-color-light {
  color: #666f7c !important;
}

/* line 164, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.font-color-mid {
  color: #828282 !important;
}

/* line 168, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-muted {
  color: #6c757d !important;
}

/* line 172, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-muted-lighter {
  color: #b4b4b4 !important;
}

/*.font-color-dark {
	color: $font-color-dark;
}*/
/* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-smaller {
  font-size: 0.9em;
  line-height: 1.5em;
}

/* line 184, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-xs {
  font-size: 0.7em;
  line-height: 1em;
}

/* line 189, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-sm {
  font-size: 0.8em;
  line-height: 1em;
}

/* line 194, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-white {
  color: white !important;
}

/* line 196, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-white > p,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
  color: white !important;
}

/* line 207, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.text-blue {
  color: #0f358e !important;
}

/* In place of Headings */
/* line 212, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.pre-title {
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 0.8em;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #70b645 !important;
}

/**/
/* line 223, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.pre-title-2 {
  display: block;
  font-weight: 300 !important;
  color: #2c2c51;
  margin-bottom: 0.1rem;
}

/* line 232, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
[class^="divider-"] {
  border-top-style: solid;
  border-top-width: 2px;
  width: 96px;
  display: inline-block;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  padding: 0;
  line-height: 0;
}

/* line 242, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.divider-primary {
  border-top-color: #01206e;
}

/* line 245, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.divider-secondary {
  border-top-color: #70b645;
}

/* line 248, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/base/_typography.scss */
.divider-purple {
  border-top-color: #6f42c1;
}

/* line 248, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.divider-white {
  border-top-color: white;
}

/*--------------------
Responsive
----------------------*/
@media (min-width: 768px) {
  /* line 260, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h1 {
    font-size: 2.2em;
  }
  /* line 263, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h2 {
    font-size: 1.9em;
  }
  /* line 266, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h3 {
    font-size: 1.563em;
  }
  /* line 269, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h4 {
    font-size: 1.25em;
  }
  /* line 272, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h5 {
    font-size: 1.1em;
  }
  /* line 275, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  h6 {
    font-size: 1em;
  }
  /* line 278, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-1 {
    font-size: 2.8em;
  }
  /* line 281, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-2 {
    font-size: 2.4em;
  }
  /* line 284, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-3 {
    font-size: 2.3em;
  }
  /* line 287, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-4 {
    font-size: 2.2em;
  }
  /* line 290, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-5 {
    font-size: 2.1em;
  }
}

@media (min-width: 992px) {
  /* line 297, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  html,
  body {
    font-size: 16px;
  }
  /* line 301, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-2 {
    font-size: 2.5em;
  }
}

@media (min-width: 1250px) {
  /* line 307, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
  .display-2 {
    font-size: 2.65em;
  }
}

/* line 316, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
.uppercase {
  text-transform: uppercase;
}

/*--------------
List Icons
------------*/
/*
ul.icon-list {
   li {
     list-style: none;
    }
    i {
      padding: 0 10px 0 0;
    }
}*/
/* line 334, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.icon-list li {
  display: flex;
  flex-direction: row;
  padding: 5px 0px;
  font-size: 0.9em;
  color: #666f7c;
  font-weight: 400;
}

/* line 341, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.icon-list li p {
  padding: 0;
}

/* line 344, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.icon-list li i {
  padding: 5px 10px 0px 0px;
}

/* line 351, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.no-bullets li {
  list-style: none;
}

/*--------------
No indent List
------------*/
/* line 360, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.list-no-indent {
  margin: 0;
  padding: 0 1em;
}

/*--------------
General List Stykles
------------*/
/* line 370, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_typography.scss */
ul.list-padding li {
  padding: 5px 0;
}

/*-------------------
Background Colours
-------------------*/
/* line 5, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-primary-dark {
  background: #011446 !important;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-primary-light {
  background: #023dd3 !important;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tertiary {
  background: #2c343f !important;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-black {
  background: black !important;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-grey {
  background: #f2f4f6 !important;
}

/*-----------------
Background Overlays
-------------------*/
/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: black;
  opacity: 0.5;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
[class*="bg-overlay"] {
  display: block;
  position: relative;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
[class*="bg-overlay"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.7;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-black {
  color: white;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-black p {
  color: white;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-login::after {
  background: black;
  opacity: 0.2;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-login2::after {
  background: black;
  opacity: 0.6;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-hero::after {
  background: #01206e;
  opacity: 0.2;
}

/* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-black::after {
  background: black;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-black2::after {
  background: black;
  opacity: 0.4;
}

/* line 90, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-primary::after {
  background: #01113b;
  opacity: 0.8;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-overlay-primary2::after {
  background: #01113b;
  opacity: 0.6;
}

/* Club management Page */
/* line 102, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-shape-1 {
  background: rgba(0, 0, 0, 0)
    url("../webp/background-shape-1.webp")
    no-repeat scroll center top/cover;
}

/* line 107, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-shape-2 {
  background: rgba(0, 0, 0, 0)
    url("../webp/background-shape-2.webp")
    no-repeat scroll center top/cover;
}

/* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-shape-3 {
  background: rgba(0, 0, 0, 0)
    url("../webp/background-shape-3.webp")
    no-repeat scroll center top/contain;
}

/*==========
wave mask
==========*/
@keyframes animateWave {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* line 129, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.wave-mask {
  position: relative;
  background: white;
  overflow: hidden;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.wave-mask .wave-container {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
}

/* line 142, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.wave-mask svg {
  display: block;
  transform-origin: bottom;
  animation: animateWave 1000ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/*-----------------
Wave Section
-------------------*/
/* line 153, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
[class*="wave-section"] {
  padding-top: 50px;
}

/* line 157, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
[class*="wave-section"]::before {
  background: none;
}

@media (min-width: 768px) {
  /* line 162, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
  [class*="wave-section"] {
    padding-top: 130px;
  }
  /* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
  [class*="wave-section"]::before {
    content: "";
    width: 100%;
    height: 251px;
    background: url("../jpg/wave-top.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }
  /* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
  .wave-section-white::before {
    background: url("../jpg/wave-top-white.jpg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (min-width: 992px) {
  /* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
  [class*="wave-section"] {
    padding-top: 200px;
  }
}

@media (min-width: 1200px) {
  /* line 194, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
  [class*="wave-section"]::before,
  .wave-section-white::before {
    background-size: cover;
  }
}

/*==========
Shaped bg Masks
============*/
/*==========
Bg Shape Makes
==========*/
/* line 210, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wave-right {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

/* line 220, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wave-right svg {
  position: relative;
  display: block;
  width: calc(194% + 1.3px);
  height: 102px;
  transform: rotateY(180deg);
}

/* line 228, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wave-right .shape-fill {
  fill: #ffffff;
}

/* line 234, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wavy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

/* line 244, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wavy svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 102px;
  transform: rotateY(180deg);
}

/* line 252, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-wavy .shape-fill {
  fill: #ffffff;
}

/* line 258, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

/* line 268, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-left svg {
  position: relative;
  display: block;
  width: calc(115% + 1.3px);
  height: 102px;
  transform: rotateY(180deg);
}

/* line 276, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-left .shape-fill {
  fill: #ffffff;
}

/* line 280, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-right {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

/* line 290, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-right svg {
  position: relative;
  display: block;
  width: calc(115% + 1.3px);
  height: 102px;
}

/* line 297, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-tilt-right .shape-fill {
  fill: #ffffff;
}

/* line 303, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* line 312, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 73px;
}

/* line 319, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_backgrounds.scss */
.bg-curve .shape-fill {
  fill: #ffffff;
}

/*===============
Hero Background
===============*/
/*[class*="hero-"] {
  z-index: 2;
  h1 {
    font-size: 1.7em;
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  [class*="hero-"] {
    z-index: 2;
    h1 {
      font-size: 2.2em;
    }
  }
}*/
/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
[class*="hero-software"] {
  background-size: cover;
  background-position: center;
  background-color: #01206e;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.hero-software-clubs {
  background-image: url("../webp/bg-clubs.webp");
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.hero-software-competitions {
  background-image: url("../webp/bg-competitions.webp");
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.hero-software-governing {
  background-image: url("../webp/bg-governing.webp");
}


/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.hero-events {
  background-image: url("../bg-kids-2.html");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #01206e;
  z-index: 2;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.homepage-hero {
  background-image: url("../jpg/bg-particles.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px 20px;
  z-index: 2;
  background-color: #01206e;
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.post-hero {
  background-image: url("../jpg/bg-newsletter.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: white;
  padding: 30px 20px 20px 20px;
  z-index: 2;
}

/* line 71, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/base/_headers.scss */
.page-hero {
  background-image: url("../jpg/bg-particles.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: white;
  z-index: 2;
}


/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.hero-newsletter {
  background-image: url("../jpg/bg-newsletter.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: white;
  z-index: 2;
}

/*
 .homepage-hero1 {
   background-image: url('/wp-content/themes/gotsport-website/assets/img/bg/bg-particles.jpg');
   background-size: cover;
   background-position: center;
   padding: 90px 0px 40px 0px; //height of hero
   z-index: 2;

  }




 .homepage-hero {
   background-image: url('/wp-content/themes/gotsport-website/assets/img/bg/bg-particles.jpg');
   background-size: cover;
   background-position: center;
   padding: 30px 20px; //height of hero
   z-index: 2;
  background-color: $primary;
  }



 .page-hero {
   background-image: url('/wp-content/themes/gotsport-website/assets/img/bg/bg-particles.jpg');
   background-size: cover;
   background-position: center;
    padding:100px 0px; //height of hero
  }



 .transition-hero {
   background-image: url('/wp-content/themes/gotsport-website/assets/img/bg/bg-particles.jpg');
   background-size: cover;
   background-position: center;
     padding:100px 0px 140px; //height of hero
  }
*/
/*===============
Background headers
===============*/
/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
[class*="bg-header"] {
  background-size: cover;
  background-position: center;
}

/* line 129, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.bg-header-promo {
  background-image: url("../bg-pro.html");
}

/*-------------
responsive-img
-------------*/
@media (min-width: 768px) {
  /* line 140, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/base/_headers.scss */
  .post-hero {
    padding: 50px 20px;
  }
}

@media (min-width: 992px) {
  /* line 139, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
  [class*="hero-software"] {
    padding: 30px 130px 40px;
  }
  /*.homepage-hero1 {
    padding: 50px 0px; //height of hero
  }*/
}

/*-------------
Support
-------------*/
/* line 151, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_headers.scss */
.support-header {
  background-image: url("../bg-blue.html");
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #01206e;
  z-index: 2;
}

/* Blog Page widgets
========================================== */
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.widget {
  padding: 1rem;
  background: white;
  /*.widget-title {
    font-size: 1.5rem;
  }*/
}

/* Custom Welcome Panel using White-Label
========================================== */
/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.wlcms-welcome-panel .welcome-panel-content h2 {
  padding: 21px 21px 0px 21px;
}

/* COMMENTS
========================================== */
/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments {
  position: relative;
  border: solid 1px #ddd;
  background: white;
  margin: 0 0 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 20px;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments .comments-wrap {
  padding: 20px;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments h3 {
  text-align: center;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments h4 {
  font-size: 1em;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments ol li {
  background: rgba(0, 0, 0, 0.02);
  padding: 10px 20px;
  margin: 10px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.03);
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments ol li ol.children {
  padding: 0;
  list-style: none;
  font-size: 0.96em;
}

/* wordpress specific comment styles??? */
/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments footer {
  background: none;
  color: inherit;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments footer a {
  margin-bottom: 20px;
  color: inherit;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#comments .comment-metadata {
  margin: 10px 0 10px;
  font-size: 0.9em;
}

/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.post-comments-badge {
  height: 70px;
  width: 70px;
  position: absolute;
  top: 25px;
  right: 20px;
  border: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background: #79b044;
  text-align: center;
  display: table;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.post-comments-badge a {
  display: table-cell;
  vertical-align: middle;
  color: white;
  font-size: 20px;
  line-height: 20px;
}

/* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.post-comments-badge i.fa {
  display: block;
  font-size: 15px;
  padding: 0;
  margin-bottom: 4px;
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
.post-comments-badge:hover {
  background-color: #8bc653;
}

/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/base/_wordpress.scss */
#leave-comment {
  margin: 40px 0 0;
  padding: 20px 0 0;
  border-top: solid 1px #eee;
}

/* Banner Top Alerts (Login Page) */
/* line 3, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_alerts.scss */
.alert {
  position: relative;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_alerts.scss */
.alert .close:hover {
  color: grey;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_alerts.scss */
.alert-dismissible .close {
  padding: 0;
}

/*
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
 {
  border-color: none;
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}*/
/* MenuBar
=======================*/
/*Main menu*/
/*Dropmenu*/
/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-brand {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
header#nav-header {
  background: #01206e;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
header#nav-header.fixed.fixed-scroll {
  background: #01206e;
  position: fixed;
  top: 0px;
  padding: 0;
  -webkit-box-shadow: 0 4px 6px 0 rgba(10, 10, 10, 0.05);
  -moz-box-shadow: 0 4px 6px 0 rgba(10, 10, 10, 0.05);
  box-shadow: 0 4px 6px 0 rgba(10, 10, 10, 0.05);
  border: 0;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar {
  background: #011446;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar .logo-icon {
  height: 25px;
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar p {
  color: #a6a6a6;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media {
  margin: 0;
  list-style: none;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media li {
  display: inline-block;
  margin-left: 10px;
}

/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media li a:link,
.top-bar ul.social-media li a:visited {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #70b645;
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media li a:link i,
.top-bar ul.social-media li a:visited i {
  color: #70b645;
  font-size: 1em;
}

/* line 86, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

/* line 91, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li {
  border-right: solid 1px rgba(255, 255, 255, 0.1);
}

/* line 93, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li a:link,
.top-bar ul.social-media-2 li a:visited {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li a:link i,
.top-bar ul.social-media-2 li a:visited i {
  color: #70b645;
  font-size: 1em;
}

/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li a:hover,
.top-bar ul.social-media-2 li a:active {
  background: #70b645;
  text-decoration: none;
}

/* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li a:hover i,
.top-bar ul.social-media-2 li a:active i {
  color: white;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.top-bar ul.social-media-2 li:first-child {
  border-left: solid 1px rgba(255, 255, 255, 0.2);
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.btn-gotsport:link,
.btn-gotsport:visited {
  font-size: 0.9em;
  background: #01206e;
  border-radius: 30px;
  padding: 0px 12px;
  color: white;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/* line 134, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.btn-gotsport:hover,
.bgotsport:active {
  text-decoration: none;
  background: #012fa1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/*******************************
------------------------
Scroll Fix
------------------------
*********************************/
/* line 149, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.scroll-fix {
  position: fixed;
}

/*******************************
------------------------
Smart-Menu Navbar
------------------------
*********************************/
/*navbar colour*/
/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
header.fixed {
  background: #01206e;
  position: absolute;
  left: 0;
  z-index: 1001;
  margin: 0;
  width: 100%;
}

/* line 169, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar {
  padding: 0;
}

/* line 173, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  position: relative;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  /*------------------------------------------------*/
  /*	LINE
  /*------------------------------------------------*/
  /*------------------------------------------------
    nav-callout
  ------------------------------------------------*/
}

/* line 181, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
}

/* line 187, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item .nav-link .sub-arrow {
  background: none;
}

/* line 192, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item:active > .nav-link,
.navbar-nav .nav-item:active:focus > .nav-link,
.navbar-nav .nav-item:focus > .nav-link,
.navbar-nav .nav-item:hover > .nav-link {
  color: white;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
}

/* line 201, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item.active > .nav-link > .caret,
.navbar-nav .nav-item:active > .nav-link > .caret,
.navbar-nav .nav-item:active:focus > .nav-link > .caret,
.navbar-nav .nav-item:focus > .nav-link > .caret,
.navbar-nav .nav-item:hover > .nav-link > .caret {
  border-top-color: white;
}

/* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item .nav-link::after {
  content: "";
  background: white;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  position: absolute;
  transition: 0.3s;
}

/* line 221, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link:hover {
  background: white;
}

/* line 227, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item.current-page-ancestor > .nav-link,
.navbar-nav .nav-item .nav-link:active,
.navbar-nav .nav-item .nav-link:active:focus,
.navbar-nav .nav-item .nav-link:focus,
.navbar-nav .nav-item .nav-link:hover {
  color: #1a1a1a;
}

/* line 234, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item.current-page-ancestor > .nav-link::after,
.navbar-nav .nav-item .nav-link:active::after,
.navbar-nav .nav-item .nav-link:active:focus::after,
.navbar-nav .nav-item .nav-link:focus::after,
.navbar-nav .nav-item .nav-link:hover::after {
  width: 0;
  left: 0;
}

/* line 244, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-nav .nav-item.nav-callout {
  padding: 0px;
  margin: auto 0;
}

/* line 247, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/_navbar.scss */
.navbar-nav .nav-item.nav-callout .nav-link {
  padding: 10px 15px;
  background-color: #70b645;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  font-weight: 500;
  margin: 10px 0;
}

/* line 261, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/_navbar.scss */
.navbar-nav .nav-item.nav-callout:hover .nav-link,
.navbar-nav .nav-item.nav-callout.active .nav-link {
  background-color: #65a43e;
}

/* line 263, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/_navbar.scss */
.navbar-nav .nav-item.nav-callout:hover .nav-link::after,
.navbar-nav .nav-item.nav-callout.active .nav-link::after {
  content: "";
  background: trans;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

/*
------------
new Small [Navbar]
------------*/
/* line 281, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.btn-login,
.btn-login {
  background-color: #70b645;
  color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

@media (min-width: 992px) {
  /* line 297, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .btn-login {
    font-size: 13px;
    text-transform: uppercase;
    padding: 0.35rem 2rem;
    border-radius: 100px;
    margin-bottom: 0px;
  }
}

/* line 306, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.btn-login:hover,
.btn-login:focus,
.btn-login:active,
.btn-login.active,
.btn-login.focus,
.btn-login:active,
.btn-login:focus,
.btn-login:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  outline: none;
  text-decoration: none;
}

/*******************************
------------------------
RESPONSIVE
------------------------
*********************************/
@media (min-width: 992px) {
  /*.top-bar {
    span {
      display: inline-block;
      margin-right: 1.3em;
      font-size: 0.8em;
    }
  }*/
  /* line 338, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item {
    padding: 0;
    margin: 0;
    position: relative;
    /*------------------------------------------------*/
    /*	LINE
    /*------------------------------------------------*/
  }
  /* line 344, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item .nav-link {
    padding: 22px 15px;
  }
  /* line 347, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item.active > .nav-link,
  .navbar-nav .nav-item:active > .nav-link,
  .navbar-nav .nav-item:active:focus > .nav-link,
  .navbar-nav .nav-item:focus > .nav-link,
  .navbar-nav .nav-item:hover > .nav-link {
    color: white;
  }
  /* line 353, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item.active > .nav-link > .caret,
  .navbar-nav .nav-item:active > .nav-link > .caret,
  .navbar-nav .nav-item:active:focus > .nav-link > .caret,
  .navbar-nav .nav-item:focus > .nav-link > .caret,
  .navbar-nav .nav-item:hover > .nav-link > .caret {
    border-top-color: white;
  }
  /* line 358, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item:hover > .nav-link::after {
    content: "";
    background: white;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: 0.3s;
  }
  /* line 373, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item .nav-link::after {
    content: "";
    background: white;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: 0;
    position: absolute;
    transition: 0.3s;
  }
  /* line 386, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item.active > .nav-link,
  .navbar-nav .nav-item.current-page-ancestor > .nav-link,
  .navbar-nav .nav-item .nav-link:active,
  .navbar-nav .nav-item .nav-link:active:focus,
  .navbar-nav .nav-item .nav-link:focus,
  .navbar-nav .nav-item .nav-link:hover {
    color: white;
    background: none;
  }
  /* line 395, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  .navbar-nav .nav-item.active > .nav-link::after,
  .navbar-nav .nav-item.current-page-ancestor > .nav-link::after,
  .navbar-nav .nav-item .nav-link:active::after,
  .navbar-nav .nav-item .nav-link:active:focus::after,
  .navbar-nav .nav-item .nav-link:focus::after,
  .navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
    left: 0;
  }
}

@media (min-width: 992px) {
  /* line 407, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  header#nav-header.fixed {
    background: transparent;
  }
}

/* Drop Down Menu Styles
========================*/
/* line 414, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.dropdown-menu {
  border-radius: 10px;
  margin-top: 0;
  background: white;
  /*background: darken($menubar-color, 10%);
  a:link, a:visited {
    color:white;
  }*/
}

/* line 423, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.dropdown-menu .dropdown-item {
  color: black;
}

/* line 426, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu a.bg-light:hover,
.dropdown-menu a.bg-light:focus,
.dropdown-menu button.bg-light:focus,
.dropdown-menu button.bg-light:hover {
  color: black;
  background: #e6e6e6;
}

/* line 436, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.dropdown-menu .dropdown:hover > a {
  background: #e6e6e6 !important;
}

/*------------------------------------------------------------*/
/*	NAVBAR TOGGLER
/*==================================================*/
/* line 444, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler {
  border: none;
  width: 32px;
  height: 24px;
  padding: 0;
  position: relative;
  border-radius: 0;
  cursor: pointer;
  /*------------------------------------------------------------*/
  /*	SPIN
	/*------------------------------------------------------------*/
  /*------------------------------------------------------------*/
  /*	SPRING
	/*------------------------------------------------------------*/
}

/* line 453, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler .navbar-toggler-icon {
  display: block;
  top: 10px;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
}

/* line 457, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon::before {
  background-color: white;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  border-radius: 100px;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

/* line 471, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon::before {
  content: "";
  display: block;
}

/* line 477, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler .navbar-toggler-icon::before {
  top: -10px;
}

/* line 481, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler .navbar-toggler-icon::after {
  bottom: -10px;
}

/* line 493, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin .navbar-toggler-icon {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 497, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin .navbar-toggler-icon::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

/* line 501, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin .navbar-toggler-icon::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 509, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin.active .navbar-toggler-icon {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 514, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin.active .navbar-toggler-icon::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

/* line 520, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spin.active .navbar-toggler-icon::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* line 536, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring .navbar-toggler-icon {
  top: 0;
  transition: background-color 0s 0.13s linear;
}

/* line 540, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring .navbar-toggler-icon::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 546, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring .navbar-toggler-icon::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* line 555, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring.active .navbar-toggler-icon {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

/* line 559, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring.active .navbar-toggler-icon::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

/* line 566, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.toggler-spring.active .navbar-toggler-icon::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/* line 579, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
.navbar-toggler.active,
.navbar-toggler.active.btn,
.navbar-toggler.active.focus.btn,
.navbar-toggler.btn:active,
.navbar-toggler.btn:active:focus,
.navbar-toggler.btn:active:hover,
.navbar-toggler.btn:focus,
.navbar-toggler.btn:hover,
.navbar-toggler.btn:not(:disabled):not(.disabled).active,
.navbar-toggler.btn:not(:disabled):not(.disabled):active,
.navbar-toggler.focus.btn,
.navbar-toggler:active,
.navbar-toggler:active:focus,
.navbar-toggler:focus,
.navbar-toggler:hover,
.navbar-togglerbutton.active,
.navbar-togglerbutton.active.focus,
.navbar-togglerbutton.focus,
.navbar-togglerbutton:active,
.navbar-togglerbutton:active:focus,
.navbar-togglerbutton:active:hover,
.navbar-togglerbutton:focus,
.navbar-togglerbutton:hover,
.navbar-togglerbutton:not(:disabled):not(.disabled).active,
.navbar-togglerbutton:not(:disabled):not(.disabled):active {
  background: transparent !important;
  border: none !important;
  border-color: transparent !important;
  outline: none !important;
}

/*========================
Mega menus 
========================*/
/* make mega menus take the full width of .main-nav */
/* line 618, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav,
ul.nav.navbar-nav > .has-mega-menu {
  position: static !important;
}

/* line 623, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu {
  margin-left: -1px !important;
  margin-right: -1px !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
}

/* line 631, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav > .has-mega-menu .scroll-up,
ul.nav.navbar-nav > .has-mega-menu .scroll-down {
  margin-left: 0 !important;
}

/* clear any floats inside the mega menus */
/* line 638, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu > li {
  overflow: auto;
}

/* reset mega menu list/link styles (which are inherited from the SmartMenus core/theme styles) */
/* line 644, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu {
  background: white;
  color: #353451;
}

/* line 649, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu ul {
  position: static;
  display: block;
  margin: 0.83em 0;
  border: 0;
  padding: 0 0 0 20px;
  width: auto;
  background: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 662, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu ul li {
  display: list-item;
  list-style-type: disc;
  border: 0;
}

/* line 668, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu a {
  display: inline;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
}

/* simple columns inside the mega menus */
/* line 679, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
ul.nav.navbar-nav .mega-menu .column-1-3 {
  padding: 0 20px;
}

@media (min-width: 768px) {
  /* line 684, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  ul.nav.navbar-nav .mega-menu .column-1-3 {
    float: left;
    width: 33.33%;
  }
}

/* simple columns inside the mega menus */
/* line 692, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
#main-menu .mega-menu .column-1-3 {
  padding: 0 20px;
}

@media (min-width: 768px) {
  /* line 697, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar.scss */
  #main-menu .mega-menu .column-1-3 {
    float: left;
    width: 33.33%;
  }
}

/* MenuBar
=======================*/
/*Main menu*/
/*Dropmenu*/
/*****
Navbar White
*******/
/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white {
  background: #f8f9fa;
  /*------------------------------------------------*/
  /*	LINE
    /*------------------------------------------------*/
  /*------------------------------------------------------------*/
  /*	NAVBAR TOGGLER
/*==================================================*/
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-nav .nav-item .nav-link {
  color: black;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-nav .nav-item.nav-callout .nav-link {
  color: white;
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-nav .nav-item.nav-callout.active > .nav-link,
#nav-header-white .navbar-nav .nav-item.nav-callout:active > .nav-link,
#nav-header-white .navbar-nav .nav-item.nav-callout:active:focus > .nav-link,
#nav-header-white .navbar-nav .nav-item.nav-callout:focus > .nav-link,
#nav-header-white .navbar-nav .nav-item.nav-callout:hover > .nav-link {
  color: white;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-nav .nav-item.active > .nav-link,
#nav-header-white .navbar-nav .nav-item:active > .nav-link,
#nav-header-white .navbar-nav .nav-item:active:focus > .nav-link,
#nav-header-white .navbar-nav .nav-item:focus > .nav-link,
#nav-header-white .navbar-nav .nav-item:hover > .nav-link {
  color: #70b645;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-nav .nav-item.active > .nav-link > .caret,
#nav-header-white .navbar-nav .nav-item:active > .nav-link > .caret,
#nav-header-white .navbar-nav .nav-item:active:focus > .nav-link > .caret,
#nav-header-white .navbar-nav .nav-item:focus > .nav-link > .caret,
#nav-header-white .navbar-nav .nav-item:hover > .nav-link > .caret {
  border-top-color: #70b645;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .nav-link::after {
  content: "";
  background: #70b645;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white.active > .nav-link,
#nav-header-white.current-page-ancestor > .nav-link,
#nav-header-white .nav-link:active,
#nav-header-white .nav-link:active:focus,
#nav-header-white .nav-link:focus,
#nav-header-white .nav-link:hover {
  color: #70b645;
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-toggler .navbar-toggler-icon,
#nav-header-white .navbar-toggler .navbar-toggler-icon::after,
#nav-header-white .navbar-toggler .navbar-toggler-icon::before {
  background-color: black;
}

/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
#nav-header-white .navbar-brand {
  margin-left: auto;
  margin-right: auto;
}

/*******************************
------------------------
RESPONSIVE
------------------------
*********************************/
@media (min-width: 992px) {
  /* line 102, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item {
    padding: 0;
    margin: 0;
    position: relative;
    /*------------------------------------------------*/
    /*	LINE
      /*------------------------------------------------*/
  }
  /* line 107, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item .nav-link {
    padding: 22px 15px;
  }
  /* line 110, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item.active > .nav-link,
  #nav-header-white .navbar-nav .nav-item:active > .nav-link,
  #nav-header-white .navbar-nav .nav-item:active:focus > .nav-link,
  #nav-header-white .navbar-nav .nav-item:focus > .nav-link,
  #nav-header-white .navbar-nav .nav-item:hover > .nav-link {
    color: #70b645;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item.active > .nav-link > .caret,
  #nav-header-white .navbar-nav .nav-item:active > .nav-link > .caret,
  #nav-header-white .navbar-nav .nav-item:active:focus > .nav-link > .caret,
  #nav-header-white .navbar-nav .nav-item:focus > .nav-link > .caret,
  #nav-header-white .navbar-nav .nav-item:hover > .nav-link > .caret {
    border-top-color: #70b645;
  }
  /* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item:hover > .nav-link::after {
    content: "";
    background: #70b645;
  }
  /* line 130, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item .nav-link::after {
    content: none;
  }
  /* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item.active > .nav-link,
  #nav-header-white .navbar-nav .nav-item.current-page-ancestor > .nav-link,
  #nav-header-white .navbar-nav .nav-item .nav-link:active,
  #nav-header-white .navbar-nav .nav-item .nav-link:active:focus,
  #nav-header-white .navbar-nav .nav-item .nav-link:focus,
  #nav-header-white .navbar-nav .nav-item .nav-link:hover {
    background: white;
  }
  /* line 142, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_navbar-white.scss */
  #nav-header-white .navbar-nav .nav-item.active > .nav-link::after,
  #nav-header-white
    .navbar-nav
    .nav-item.current-page-ancestor
    > .nav-link::after,
  #nav-header-white .navbar-nav .nav-item .nav-link:active::after,
  #nav-header-white .navbar-nav .nav-item .nav-link:active:focus::after,
  #nav-header-white .navbar-nav .nav-item .nav-link:focus::after,
  #nav-header-white .navbar-nav .nav-item .nav-link:hover::after {
    width: 0;
  }
}

/*-----------
Owl Slider
-------------*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot {
  display: inline-block;
  /*zoom: 1;*/
  transform: scale(1);
  display: inline;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #f8f9fa;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot.active span,
.my-owl-theme .owl-dots .owl-dot:hover span {
  background: #639a57;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-prev {
  left: -165px;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-prev i {
  padding-right: 3px;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-next {
  right: -165px;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-next i {
  padding-left: 3px;
}

/*----------------------
Add my-owl-theme to div to get dots
----------------------*/
/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot {
  display: inline-block;
  /*zoom: 1;*/
  transform: scale(1);
  display: inline;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #70b645;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 86, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.my-owl-theme .owl-dots .owl-dot.active span,
.my-owl-theme .owl-dots .my-owl-theme .owl-dots .owl-dot:hover span {
  background: #01206e;
}

/* line 93, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-prev,
.owl-next {
  text-align: center;
  position: absolute;
  /*background: #D6D6D6;
    height:38px;
    width:38px;
    -ms-border-radius:50%;
    -webkit-border-radius:50%;
    border-radius:50%;*/
  font-size: 30px;
  line-height: 34px;
  opacity: 1;
  top: 103%;
}

/* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-prev:hover,
.owl-next:hover {
  color: black;
  -webkit-transition: background 0.3s linear 0.1s;
  -ms-transition: background 0.3s linear 0.1s;
  transition: background 0.3s linear 0.1s;
}

/* line 120, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-prev {
  left: 40%;
}

/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-next {
  right: 40%;
}

/*====================
Nav-Version 2
====================*/
/* line 133, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-nav-2 .owl-prev,
.owl-nav-2 .owl-next {
  color: #b9b9b9;
  top: 50%;
  transform: translateY(-50%);
}

/* line 139, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-nav-2 .owl-prev {
  left: 0;
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
.owl-nav-2 .owl-next {
  right: 0%;
}

@media (min-width: 768px) {
  /* line 150, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
  .owl-prev,
  .owl-next {
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  /* line 157, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
  .owl-prev {
    left: 2%;
  }
  /* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_my-owl-slider.scss */
  .owl-next {
    right: 2%;
  }
}

/*
.owl-thumb-container {
  height: 100px;
}
.owl-thumbs {
    position: absolute;
    top: 25px;
    left: 0;
    display: table;
    width: 100%;
    text-align: center;
    //padding: 5%;
    z-index: 100;
}

.owl-thumb-item {
    display: table-cell;
    border: none;
    background: none;
    padding: 0;
    opacity: 0.5;
    .owl-thumb-img-container {
      width: 150px;
      height: 100px;
      overflow: hidden;
      object-fit: cover;
      img {
          width: auto;
          height: 100%;
          object-fit: cover;
      }
    }

}



.owl-thumb-item.active {
    opacity: 1;
}
*/
/*
==========================
Tiny Slider
==========================
*/
/*------------
Controls / Buttons
------------**/
/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-controls {
  text-align: center;
  margin-bottom: 10px;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-controls [aria-controls] {
  font-size: 15px;
  margin: 0 5px;
  padding: 0 1em;
  height: 2.5em;
  color: #fff;
  background: #01206e;
  border-radius: 3px;
  border: 0;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
[data-action] {
  display: block;
  margin: 10px auto;
  font-size: 17px;
  min-width: 3em;
  text-align: center;
  background: transparent;
  border: 0;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-controls [disabled] {
  color: #999999;
  background: #ddd;
  cursor: not-allowed !important;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-nav {
  text-align: center;
  margin: 10px 0;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-nav > [aria-controls] {
  width: 9px;
  height: 9px;
  padding: 0;
  margin: 0 5px;
  border-radius: 50%;
  background: #ddd;
  border: 0;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_tinyslider.scss */
.tns-nav > .tns-nav-active {
  background: #999;
}

/*
==========================
Hero Slider
==========================
*/
/* Slider
=================*/
/* line 10, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/hero-slider.scss */
.hero-slide {
  position: relative;
  overflow: hidden;
}

/* line 13, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/hero-slider.scss */
.hero-slide .slide-bg {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*********
  REpsonsive
  ************/
@media (min-width: 768px) {
  /* line 30, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/hero-slider.scss */
  .hero-slide .row {
    min-height: 400px;
  }
}

@media (min-width: 1200px) {
  /* line 39, ../../../../../Volumes/LaCie_SD/01.SITES/GotSport 2024/scss/components/hero-slider.scss */
  .hero-slide .row {
    min-height: 550px;
  }
}

/* Image gallery
================================*/
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.img-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: black;
  border-radius: 0;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.img-container img {
  opacity: 0.7;
  min-height: 200px;
  object-fit: cover;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 0;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.img-container img:hover {
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.img-container.img-zoom img:hover {
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* Cards Animate
===============================================
.card.card-animate {
  border: none;
  .card-img-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.card-animate:hover {
  img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}*/
/* Cards Animate Up
===============================================*/
/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-1 {
  border: none;
  border-radius: 0;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .img-container {
  overflow: hidden;
  height: 230px;
}

/* line 71, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .card-img-overlay {
  background: #01206e;
  top: 100%;
  margin-top: -4rem;
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

/* line 80, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .card-img-overlay .card-text {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: 90%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

/* line 91, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .card-img-overlay .card-text h5 {
  padding-bottom: 0.75rem;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

/* line 97, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .card-img-overlay .card-text p {
  color: white;
}

/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1 .card-img-overlay .card-text a:link,
.card-animate-1 .card-img-overlay .card-text a:visited {
  display: block;
}

/* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1:hover .card-img-overlay {
  top: 0;
  margin-top: 0px;
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1:hover .card-img-overlay .card-text {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card-animate-1:hover .card-img-overlay .card-text h5 {
  padding-bottom: 0;
}

/* Cards Animate 2
===============================================*/
/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 {
  text-align: center;
  border-radius: 0;
  border: none;
  /** MAKE ACTIVE **/
}

/* line 132, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 .img-container {
  background-color: #01206e;
  max-height: 200px;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 .img-container img {
  opacity: 0.7;
}

/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 .card-img-overlay {
  padding-left: 35px;
  padding-right: 35px;
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 .card-img-overlay > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

/* line 157, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 .card-title {
  padding-top: 10%;
  -webkit-transform: translate3d(0, 35px, 0);
  transform: translate3d(0, 35px, 0);
  transition: transform 0.35s;
  /* Change to below styles if adding learn more link */
  /*padding-top: 7%; //hover position from top
    -webkit-transform: translate3d(0,45px,0); //
    transform: translate3d(0,45px,0); // adjusted to center text before hover
    */
}

/* line 169, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2 p {
  padding-top: 0;
  opacity: 0;
  color: white;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
}

/* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2::after,
.card.card-animate-2::before {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

/* line 192, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

/* line 199, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

/* line 207, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2.card-highlight .img-container {
  background-color: #70b645;
}

/* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2.card-highlight .img-container img {
  opacity: 0.1;
}

/* line 213, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2.card-highlight::after,
.card.card-animate-2.card-highlight::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 219, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2.card-highlight .card-title {
  padding-top: 20%;
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -10px, 0);
  margin: 0;
}

/* line 225, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2.card-highlight p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 234, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2:hover img {
  opacity: 0.1;
}

/* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2:hover .card-title,
.card.card-animate-2:hover p,
.card.card-animate-2:hover a {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 246, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2:hover::after,
.card.card-animate-2:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 253, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.card-animate-2:hover.card-highlight .card-title {
  -webkit-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -10px, 0);
  margin: 0;
}

/* Card 3
===============================================*/
/* line 270, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_content.scss */
.card.card-3 .card-content {
  position: absolute;
  padding: 20px;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* line 277, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_content.scss */
.card.card-3 .card-content h1,
.card.card-3 .card-content h2,
.card.card-3 .card-content h3,
.card.card-3 .card-content h4,
.card.card-3 .card-content h5,
.card.card-3 .card-content h6 {
  color: white;
  margin-bottom: 0;
}

/* line 286, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_content.scss */
.card.card-3 .card-content p {
  display: none;
  color: #bfbfbf;
}

/* line 290, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_content.scss */
.card.card-3 .card-content.card-gradient {
  background: linear-gradient(0deg, black 36%, rgba(61, 61, 61, 0) 100%);
}

/* line 298, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_content.scss */
.card.card-3 img {
  width: 100%;
}

/* Icon Cards
================================*/
/* line 264, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  /*  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
  /*    a:link, a:visited {
    display: flex;
    align-items:flex-start;
  }*/
}

/* line 277, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

/* line 289, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card i {
  font-size: 3rem;
  color: #70b645;
  margin-bottom: 0.75rem;
}

/* line 294, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card h4 {
  font-size: 1.2;
}

/* line 299, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card p {
  padding-bottom: 0;
}

/* line 301, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card p.appear {
  color: #70b645;
  font-size: 0.9em;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0);
  padding: 0;
  margin: 0;
}

/* line 314, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card .circle-icon {
  background: #162f4d;
  background: linear-gradient(54deg, #162f4d 0%, #1c3f6a 55%, #7790af 100%);
  border-radius: 15px;
  display: flex;
  width: 80px;
  height: 80px;
  margin: auto;
}

/* line 328, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card img {
  width: 50px;
  margin: 0.75rem 0 0 1.25rem;
}

/* line 332, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card .display-2 {
  margin-left: 1.25rem;
}

/* line 335, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card .card-body {
  padding: 0.75rem 1rem 0 1rem;
}

/* line 339, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card ul {
  text-align: left;
  color: #666f7c;
  font-size: 0.95em;
}

/* line 343, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card ul li {
  padding: 0.5em 0;
}

/* line 347, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card .arrow-icon {
  text-align: right;
}

/*
.icon-card:hover {
  border-color: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  a:hover, a:active {
    text-decoration:none;
  }
}*/
@media (min-width: 576px) {
  /* line 364, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card {
    text-align: center;
    padding: 20px 10px 10px 10px;
    margin-bottom: 15px;
  }
  /* line 369, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card a:link,
  .icon-card a:visited {
    display: block;
  }
  /* line 373, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card img {
    margin: 0.7em auto;
  }
  /* line 376, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card p,
  .icon-card a:link,
  .icon-card a:visited {
    font-size: 0.9em;
  }
  /* line 382, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card .display-2 {
    margin: 0;
    padding: 0;
  }
  /* line 386, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card .arrow-icon {
    text-align: center;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  /* line 395, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card:hover {
    border-top: 6px solid #70b645;
    padding-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.01);
  }
  /* line 401, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
  .icon-card:hover p.appear {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Icon Cards V2 | Card with text and outline appear on hover
================================*/
/* line 413, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 {
  border: none;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
  padding: 1rem;
  /*.icon::before {
    content: '';
      position: absolute;
      width: 133px;
      height: 133px;
      background: #F8F8FF;
      -webkit-border-radius: 27px;
      -moz-border-radius: 27px;
      border-radius: 27px;
      transform: rotate(45deg);
      -webkit-transition: all 0.3s ease 0s;
      -moz-transition: all 0.3s ease 0s;
      -o-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }*/
}

/* line 420, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 .card-body {
  padding: 0.5rem 1rem;
}

/* line 423, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

/* line 435, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2::after,
.icon-card-2::before {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: "";
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

/* line 448, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2::before {
  border-top: 1px solid #428dff;
  border-bottom: 1px solid #428dff;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}

/* line 455, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2::after {
  border-right: 1px solid #428dff;
  border-left: 1px solid #428dff;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

/* line 461, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 .icon,
.icon-card-2 h5 {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

/* line 469, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 p {
  font-size: 0.9em;
  padding-top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 35px, 0);
  transform: translate3d(0, 35px, 0);
}

/* line 478, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 .icon {
  padding-bottom: 5px;
}

/* line 480, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 .icon img {
  width: 50px;
}

/* line 484, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2 h5 {
  font-weight: normal;
}

/* line 505, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2:hover {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.13);
}

/* line 507, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2:hover::after,
.icon-card-2:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* line 513, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}

/* line 518, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-card-2:hover .icon,
.icon-card-2:hover h5 {
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}

/* ==========
Icon Circle
========== */
/*Square Icon*/
/* line 530, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-square {
  display: flex;
  min-width: 80px;
  height: 80px;
  padding: 22px 0;
  border-radius: 10px;
  background: #01206e;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin: 0 1em 1em 0;
}

/* line 544, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-square i {
  font-size: 2em;
  color: white;
}

/* line 548, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-square.circle-1 {
  background: #70b645;
}

/* line 551, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-square.circle-2 {
  background: #00478f;
}

/* line 554, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-square.circle-3 {
  background: #01206e;
}

/* line 559, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-0 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}

/* line 564, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-0 i {
  font-size: 2.5em;
  color: #70b645;
}

/* line 570, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-1 {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #70b645;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1em auto;
}

/* line 582, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-1 i {
  font-size: 1.6em;
  color: white;
}

/* line 588, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-2 {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f2f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5em auto;
}

/* line 603, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-2.bg-secondary i,
.icon-circle-2.bg-primary i {
  font-size: 2.5em;
  color: white;
}

/* line 608, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.icon-circle-2 i {
  font-size: 2.5em;
  color: #70b645;
}

/*------------
Icon - Featured
=================*/
/* line 618, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons {
  display: flex;
  align-items: flex-start;
}

/* line 621, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons img {
  max-width: 80px;
  margin: 0px 20px 0px 0px;
  padding: 0;
}

/* line 626, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons h5 {
  margin-bottom: 0.5rem;
}

/* line 630, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons p {
  color: #6c757d;
  line-height: 1.7em;
}

/* line 637, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons-2 h5,
.featured-icons-2 i {
  margin-bottom: 0.5em;
}

/* line 641, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons-2 i {
  color: #70b645;
  font-size: 2em;
}

/* line 645, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.featured-icons-2 p {
  font-size: 14px;
}

/*===============
Client logos
=============*/
/* line 654, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.client-logo {
  text-align: center;
}

/* line 656, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.client-logo img {
  max-height: 100px;
  padding: 0 0 10px 0;
}

/* nav-pills
=============*/
/* line 665, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.nav-pills {
  margin: 10px 0 30px 0px;
}

/* line 667, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.nav-pills a {
  color: #4f5660;
}

/***************
=====================
FAQs
=====================
***************/
/* accrodian content - list */
/* line 680, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
ul.faq-list li {
  margin: 15px 0;
}

/* line 685, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion {
  /*Accordian on support page*/
  /*Accordian on FAQ page*/
}

/* line 688, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion.support-accordian .card {
  margin-bottom: 0.5rem;
  border: none;
}

/* line 692, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion.support-accordian .card-header {
  background: #eff1f4;
}

/* line 695, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion.support-accordian .card-header[aria-expanded="true"] {
  background: #e6eaed;
}

/* line 697, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion.support-accordian .card-header[aria-expanded="true"] button {
  color: white;
  color: inherit;
}

/* line 702, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion.support-accordian .card-header[aria-expanded="true"]::after {
  content: "\2212";
  color: inherit;
}

/* line 708, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card {
  margin-bottom: 1.5rem;
  border: none;
}

/* line 712, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  cursor: pointer;
  background: #f8f9fa;
  border-bottom: none;
}

/* line 722, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header button {
  color: #4f5660;
  text-decoration: none !important;
}

/* line 726, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header button:hover,
.accordion .card-header button:active {
  color: black;
  text-decoration: none !important;
}

/* line 732, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header:hover {
  background: #eff1f4;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
}

/* line 738, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header::after {
  content: "\002B";
  padding: 0px;
  color: #4f5660;
}

/* line 744, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header[aria-expanded="true"]::after {
  content: "\2212";
  color: white;
}

/* line 749, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header[aria-expanded="true"] {
  background: #01206e;
}

/* line 751, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-header[aria-expanded="true"] button {
  color: white;
}

/* line 755, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.accordion .card-body {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

/************
Club Accordian
***************/
/* line 767, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card {
  margin-bottom: 0.5rem;
  border: none;
}

/* line 771, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card span {
  font-size: 1.2em;
  margin-right: 15px;
}

/* line 776, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* line 779, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header button {
  color: #f9f9f9;
  text-decoration: none !important;
}

/* line 783, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header button:hover,
.club-accordian .card-header button:active {
  color: white;
}

/* line 790, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header:hover button {
  color: white;
}

/* line 794, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header::after {
  content: "\002B";
  padding: 0px;
  color: white;
}

/* line 800, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card-header[aria-expanded="true"]::after {
  content: "\2212";
  color: white;
}

/* line 805, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(1) .card-header {
  background: #f7902e;
  background: linear-gradient(90deg, #f7902e 0%, #ffb14e 100%);
}

/* line 815, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(2) .card-header {
  background: #ff582a;
  background: linear-gradient(90deg, #ff582a 0%, #ff7c2f 100%);
}

/* line 825, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(3) .card-header {
  background: #d73055;
  background: linear-gradient(90deg, #d73055 0%, #ff5e88 100%);
}

/* line 835, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(4) .card-header {
  background: #b02e66;
  background: linear-gradient(90deg, #b02e66 0%, #7d57a2 100%);
}

/* line 845, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(5) .card-header {
  background: #3c499d;
  background: linear-gradient(90deg, #3c499d 0%, #6666b1 100%);
}

/* line 855, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(6) .card-header {
  background: #0071cf;
  background: linear-gradient(90deg, #0071cf 0%, #7dd9f9 100%);
}

/* line 865, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(7) .card-header {
  background: #00a794;
  background: linear-gradient(90deg, #00a794 0%, #42e3aa 100%);
}

/* line 875, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.club-accordian .card:nth-child(8) .card-header {
  background: #6aed9c;
  background: linear-gradient(90deg, #6aed9c 0%, #bae04d 100%);
}

/*===========
Img-Icon Hover box
===========*/
/* line 889, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.hover-box {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  padding: 20px;
  border-radius: 10px;
  background: white;
}

/* line 897, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.hover-box:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/**********
Event Items on Slider
************/
/* line 906, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item {
  position: relative;
  overflow: hidden;
  background: black;
}

/* line 910, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item .news-item-image {
  height: 0;
  padding-bottom: 56.25%;
}

/* line 913, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item .news-item-image img {
  opacity: 0.9;
  width: 100%;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 921, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item .news-item-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  margin: 0;
  opacity: 1;
  z-index: 3;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.8) 100%)
    repeat 0 0;
  padding: 25px 7px 0 7px;
  z-index: 1;
  color: white;
}

/* line 935, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item .news-item-caption h5 {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: white;
}

/* line 942, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item .news-item-caption h6 {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6em;
  color: white;
}

/* line 951, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.event-item:hover img {
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/***************
=====================
Newsletter Cards
=====================
***************/
/* line 970, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card.news-card-large,
.card.news-card-small {
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* line 975, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.card [class^="news-category"] {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 10px;
}

/* line 982, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.category-orange {
  background: orange !important;
}

/* line 986, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-card-large {
  height: 100%;
  grid-auto-rows: 1fr;
}

/* line 989, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-card-large .img-container {
  max-height: 400px;
}

/* line 994, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-card-small {
  height: 100%;
  grid-auto-rows: 1fr;
}

/* line 997, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-card-small .img-container {
  max-height: 120px;
}

/* News Item */
/* News Item Rectangle Blocks
===============================================*/
/* line 1006, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item {
  position: relative;
  overflow: hidden;
  /*
  .news-item-category {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0 10px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
    z-index: 1;
    background: $secondary;
  }*/
}

/* line 1009, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item [class^="news-category"] {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0 10px;
}

/* line 1015, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.9)
  );
  opacity: 1;
}

/* line 1029, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-image {
  height: 0;
  padding-bottom: 68%;
}

/* line 1034, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item img {
  opacity: 0.9;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 1041, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  margin: 0;
  opacity: 1;
  z-index: 3;
  padding: 5px 12px;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 1053, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-caption h6 {
  color: #fff;
  font-size: 14px;
}

/* line 1056, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-caption h6:hover {
  text-decoration: underline;
}

/* line 1061, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-caption p {
  font-size: 0.8em;
  color: #ccc;
}

/* line 1066, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item .news-item-caption i {
  padding-right: 5px;
}

/* On Hover Fade
=================*/
/* line 1088, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item:hover img {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* line 1098, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item:hover .play-btn {
  color: white;
}

/* line 1101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item:hover .play-btn i {
  font-size: 50px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 1108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item:hover .news-item-caption {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 1119, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_content.scss */
.news-item.no-zoom:hover img {
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*Colors */
/* line 3, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-white {
  background: white;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-white:hover,
.btn-white:active {
  background: black;
  color: white;
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-highlight {
  background: #238ce0;
  color: white;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-highlight:hover {
  background: #1763a0;
  color: white;
}

/*---------------
  Outline Button
  -----------------*/
/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-primary {
  background: transparent;
}

/* line 32, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-black {
  border-color: black;
  color: black;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-black:hover {
  background: black;
  color: #fff;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-secondary {
  background: transparent;
  border-color: #70b645;
  color: #70b645;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-secondary:hover {
  background: #70b645;
  color: white;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-white {
  background: transparent;
  border-color: white;
  color: white;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-outline-white:hover {
  background-color: white;
  color: black;
}

/*---------------
  Rounded Buttons
  -----------------*/
/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
[class*="btn-round"] {
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 30px !important;
}

@media (min-width: 992px) {
  /* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
  [class*="btn-round"] {
    font-size: 14px;
  }
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-round:hover,
.btn-round:focus,
.btn-round:active,
.btn-round.active,
.btn-round.focus,
.btn-round:active,
.btn-round:focus,
.btn-round:hover {
  outline: none;
  text-decoration: none;
}

/*.btn-round-outline {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  outline: none;
  text-decoration: none;
}
.btn-round-outline:hover,
.btn-round-outline:focus,
.btn-round-outline:active,
.btn-round-outline.active,
.btn-round-outline.focus,
.btn-round-outline:active,
.btn-round-outline:focus,
.btn-round-outline:hover {
  color: white;
  background: $primary;
  outline: none;
  text-decoration: none;
}*/
/* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-round-white {
  color: #000;
  background-color: #fff;
  outline: none;
  text-decoration: none;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-round-small {
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  letter-spacing: 0px;
}

/*
  ------------
  new Small [Navbar]
  ------------*/
/* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-login,
.btn-login {
  background-color: #70b645;
  color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

@media (min-width: 992px) {
  /* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
  .btn-login {
    font-size: 13px;
    text-transform: uppercase;
    padding: 0.35rem 2rem;
    border-radius: 100px;
    margin-bottom: 0px;
  }
}

/* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_buttons.scss */
.btn-login:hover,
.btn-login:focus,
.btn-login:active,
.btn-login.active,
.btn-login.focus,
.btn-login:active,
.btn-login:focus,
.btn-login:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  outline: none;
  text-decoration: none;
}

/*===============
 BG Video Section
===============*/
/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_bg-video.scss */
.bg-video {
  margin-top: 0px;
  position: relative;
  padding: 5rem 0;
  min-height: 480px;
}

@media (min-width: 768px) {
  .bg-video {
    padding: 5rem 0;
    min-height: 600px;
  }
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_bg-video.scss */
.bg-video .video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_bg-video.scss */
.bg-video .video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_bg-video.scss */
.bg-video .video-overlay {
  background-image: linear-gradient(to bottom right, #01216e, #001339);
  opacity: 0.8;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .video-container video {
    display: none;
  }

  .video-container {
    background: url("../jpg/bg-particles.jpg") no-repeat center center;
    background-size: cover;
    background-color: #01206e;
  }
}


/* FORMS
========================================== */
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
label {
  display: block;
  font-weight: bold;
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.5rem 0.75rem;
}

/* line 16, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input[type="submit"],
button[type="submit"] {
  display: inline-block;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: none;
  border-radius: 6px;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input[type="submit"]:hover,
button[type="submit"]:hover {
  outline: none;
  border: none;
  background: #aaa;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
form.search-form .form-group {
  margin: 0;
}

/* line 64, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
form.search-form .input-group {
  width: 100%;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
form.search-form .input-group input[type="search"],
form.search-form .input-group input[type="text"] {
  width: 70%;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
form.search-form .input-group input[type="submit"] {
  width: 30%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  float: right;
}

/* line 80, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
form textarea {
  width: 100%;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* ==== FORMS ==== */
/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input.wpcf7-form-control,
textarea {
  margin-top: 10px;
}

/* Make button mimic bootstrap*/
/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input[type="submit"],
button[type="submit"] {
  color: #fff;
  background-color: #1266ec;
  font-weight: normal;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  width: 100%;
}

/* line 106, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_forms.scss */
input[type="submit"]:hover,
button[type="submit"]:hover {
  outline: none;
  border: none;
  background: #0e52bd;
}

/*** Onboarding Modal ****/
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_modals.scss */
#onboarding-modal .modal-dialog {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 786px) {
  /* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_modals.scss */
  #onboarding-modal .modal-dialog {
    max-width: 90%;
    width: 100%;
  }
  /* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_modals.scss */
  #online-registration-modal .modal-dialog,
  #communication-modal .modal-dialog,
  #scheduling-modal .modal-dialog,
  #payments-modal .modal-dialog,
  #roster-modal .modal-dialog,
  #billing-modal .modal-dialog,
  #event-modal .modal-dialog,
  #governing-modal .modal-dialog {
    max-width: 70%;
    width: 100%;
  }
}

/*** Team Modal ****/
/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_modals.scss */
#team-modal .modal-dialog {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 786px) {
  /* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_modals.scss */
  #team-modal .modal-dialog {
    max-width: 50%;
    width: 100%;
  }
}

/**********************
-----------------------
Search Box
-----------------------
***********************/
/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
input[type="submit"],
button[type="submit"] {
  color: #fff;
  background-color: #70b645 !important;
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
input[type="submit"]:hover,
button[type="submit"]:hover,
input[type="submit"]:active,
button[type="submit"]:active {
  color: #fff;
  background-color: #599137 !important;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 0px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper.search-wrapper2 {
  width: auto;
  margin: 0;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper.search-wrapper2 input[type="text"] {
  padding: 5px 10px;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper .search-form {
  border: 1px solid #cfcfcf;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper input::placeholder {
  color: #666f7c;
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper input:placeholder-shown {
  border-width: 0;
  background: transparent;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper input[type="text"] {
  width: 100%;
  padding: 11px 20px;
  color: #4f5660;
  outline: none;
  border: 0;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper input[type="text"]:focus {
  border: none;
}

/* line 63, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper .placeholder-fix:focus::-webkit-input-placeholder {
  color: transparent;
}

/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.search-wrapper .placeholder-fix:focus::-moz-placeholder {
  color: transparent;
}

/* line 71, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.btn-search {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 80px !important;
  color: #fff;
  text-align: center;
  border-width: 0;
  -webkit-border-radius: 0px 5px 5px 0 !important;
  -moz-border-radius: 0px 5px 5px 0 !important;
  border-radius: 0px 5px 5px 0 !important;
  cursor: pointer;
  padding: 12px 20px !important;
}

/* line 86, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_searchbox.scss */
.btn-search.btn-search2 {
  padding: 6px 10px !important;
}

/*@media (max-width: 768px) {
  .btn-search {
    width: 100px;
  }
}*/


/********
Topbar Search
**********/
/* line 103, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_searchbox.scss */
.btn-small-search {
  font-size: 0.9em;
  background: none;
  border-radius: 30px;
  border: 1px solid #70b645;
  padding: 0px 12px;
  color: white;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease;
  overflow: hidden;
}

/* line 115, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_searchbox.scss */
.btn-small-search span {
  opacity: 0;
  display: inline-block;
  margin: 0px;
  max-width: 0;
  white-space: nowrap;
  transition: all 0.5s ease;
}

/* line 124, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_searchbox.scss */
.btn-small-search:hover {
  color: #70b645;
  transition: all 0.5s ease;
}

/* line 128, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_searchbox.scss */
.btn-small-search:hover span {
  opacity: 1;
  max-width: 150px;
  margin-left: 5px;
}




/*===============
Shape Animation
===============*/
/*.support-header {
  [class*="moveshape"] {
      background: lighten(black, 93%);
  }
  .moveshape-one {
    background: lighten(black, 98%);
  }
}*/
/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
[class*="moveshape"] {
  position: absolute;
  height: 15px;
  width: 15px;
  background: #0236ba;
  border-radius: 50%;
  z-index: -1;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.moveshape-one {
  left: 10%;
  top: 30%;
  background: #023dd3;
  animation: moveShape 20s linear 0s infinite alternate;
}

@keyframes moveShape {
  0% {
    left: 10%;
    top: 30%;
  }
  25% {
    left: 12%;
    top: 50%;
  }
  50% {
    left: 8%;
    top: 45%;
  }
  75% {
    left: 6%;
    top: 30%;
  }
  100% {
    left: 10%;
    top: 20%;
  }
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.moveshape-two {
  left: 50%;
  top: 30%;
  animation: moveShape2 20s linear 0s infinite alternate;
}

@keyframes moveShape2 {
  0% {
    left: 50%;
    top: 30%;
  }
  25% {
    left: 30%;
    top: 40%;
  }
  50% {
    left: 40%;
    top: 45%;
  }
  75% {
    left: 50%;
    top: 30%;
  }
  100% {
    left: 60%;
    top: 30%;
  }
}

/* line 89, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.moveshape-three {
  left: 30%;
  bottom: 20%;
  width: 30px;
  height: 30px;
  animation: moveShape3 20s linear 0s infinite alternate;
}

@keyframes moveShape3 {
  0% {
    left: 30%;
    bottom: 20%;
  }
  25% {
    left: 45%;
    bottom: 5%;
  }
  50% {
    left: 50%;
    bottom: 0%;
  }
  75% {
    left: 50%;
    bottom: 20%;
  }
  100% {
    left: 55%;
    bottom: 25%;
  }
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.moveshape-four {
  left: 75%;
  bottom: 35%;
  animation: moveShape4 20s linear 0s infinite;
}

@keyframes moveShape4 {
  0% {
    left: 75%;
    bottom: 35%;
  }
  25% {
    left: 85%;
    bottom: 45%;
  }
  50% {
    left: 95%;
    bottom: 50%;
  }
  75% {
    left: 75%;
    bottom: 40%;
  }
  100% {
    left: 80%;
    bottom: 30%;
  }
}

/* Used on Homepage */
/*==============
Arrow Bounce
===============*/
/* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.bounce-up-down {
  animation: MoveUpDown 2s ease-in-out infinite;
}

@keyframes MoveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* line 175, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.bounce-up-down-2 {
  animation: MoveUpDown 2.3s ease-in-out infinite;
}

@keyframes MoveUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/*==============
 Animation
 ===============*/
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  45% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes stop-pulsate {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/*-------------
Support Reboot Page
-------------*/
/* line 218, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.support-header .row {
  height: 500px;
  display: flex;
  align-items: top;
  padding-top: 35px;
}

/* line 225, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.support-header .support-img {
  position: absolute;
  bottom: -10px;
  right: 0;
}

/* line 230, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.support-header .support-img-1 {
  position: absolute;
  bottom: 129px;
  right: 320px;
  width: 40px;
  animation: MoveUpDown 2s ease-in-out infinite;
}

/* line 237, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.support-header .support-img-2 {
  position: absolute;
  bottom: 200px;
  right: 290px;
  width: 40px;
  animation: MoveUpDown 2.2s ease-in-out infinite;
}

/* line 244, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
.support-header .support-img-3 {
  position: absolute;
  bottom: 150px;
  right: 60px;
  width: 120px;
  animation: MoveUpDown 1.7s ease-in-out infinite;
}

@media (min-width: 576px) {
  /* line 256, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .row {
    padding-top: 70px;
  }
  /* line 259, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img {
    bottom: 0px;
    right: 10%;
  }
  /* line 263, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-1 {
    bottom: 129px;
    right: 490px;
  }
  /* line 267, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-2 {
    bottom: 210px;
    right: 430px;
  }
  /* line 271, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-3 {
    bottom: 150px;
    right: 190px;
  }
}

@media (min-width: 768px) {
  /* line 284, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img {
    right: 0;
  }
  /* line 287, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-1 {
    bottom: 129px;
    right: 400px;
  }
  /* line 291, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-2 {
    right: 360px;
  }
  /* line 294, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-3 {
    bottom: 150px;
    right: 90px;
  }
}

@media (min-width: 1200px) {
  /* line 304, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .row {
    align-items: center;
    padding-top: 0px;
  }
  /* line 308, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img {
    right: 10%;
  }
  /* line 311, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-1 {
    bottom: 129px;
    right: 550px;
  }
  /* line 315, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-2 {
    right: 530px;
  }
  /* line 318, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_animation.scss */
  .support-header .support-img-3 {
    right: 230px;
  }
}

/*========================
CIRCLE
=========================*/
/* My VARIABLES */
/*Competitions*/
/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-outer-container {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
#circle-tabContent-club i {
  color: #70b645;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
#circle-tabContent-comp i {
  color: #2d646b;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
#circle-tabContent-gov i {
  color: #41599e;
}

/* line 275, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container {
  position: relative;
  width: 18em;
  height: 18em;
  border-radius: 50%;
  padding: 0;
  list-style: none;
  margin: 1em auto 0;
  border: solid 2px #f5f7fb;
  background-image: url("../circle-club-solution.html");
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > * {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1.5em;
  width: 3em;
  height: 3em;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(1) {
  transform: rotate(0deg) translate(9em) rotate(0deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(2) {
  transform: rotate(45deg) translate(9em) rotate(-45deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(3) {
  transform: rotate(90deg) translate(9em) rotate(-90deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(4) {
  transform: rotate(135deg) translate(9em) rotate(-135deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(5) {
  transform: rotate(180deg) translate(9em) rotate(-180deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(6) {
  transform: rotate(225deg) translate(9em) rotate(-225deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(7) {
  transform: rotate(270deg) translate(9em) rotate(-270deg);
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container > *:nth-of-type(8) {
  transform: rotate(315deg) translate(9em) rotate(-315deg);
}

/* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3 {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 2em;
  transition: all ease 0.3s;
  transform: scale(1);
  z-index: 10;
  /*Style3 Version*/
  /*Style2 Version*/
}

/* line 99, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3 i {
  font-size: 1em;
  text-decoration: none;
  color: grey;
}

/* line 105, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3:before,
.circle-container li .icon-circle-3:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

/* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3:before {
  z-index: -1;
  border: 0.15em solid #01206e;
  opacity: 0;
  transform: scale(1);
  transition: transform 0.25s, opacity 0.2s;
}

/* line 125, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style3:before {
  border: 0.15em solid #41599e;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style3 i {
  color: #41599e;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style2:before {
  border: 0.15em solid #2d646b;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style2 i {
  color: #2d646b;
}

/* line 145, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li {
  /*  p.position-right {
    left:135%;
    top:40%;
    text-align: left;
  }
  p.position-left {
    right:135%;
    top:40%;
    text-align: right;
  }*/
  /*-------------
  Hover and Active Circle
  --------------*/
}

/* line 146, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li p {
  position: absolute;
  top: 120%;
  text-align: center;
  width: 150px;
  transition: all ease 0.3s;
  opacity: 0.4;
  font-size: 0.8em;
  color: #4f5660;
  /*span {
     color: #959595;
     display: block;
     font-size: 0.9em;
   }*/
}

/* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li p.position-bottom {
  left: -65%;
}

/* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li p.position-top {
  top: -50%;
  left: -55%;
}

/* line 182, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3 {
  /*Style3 Version*/
  /*Style2 Version*/
}

/* line 184, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style3.active {
  background: #41599e;
}

/* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style3.active p {
  color: #41599e;
}

/* line 191, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style2.active {
  background: #2d646b;
}

/* line 193, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.icon-circle-style2.active p {
  color: #2d646b;
}

/* line 198, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.active {
  cursor: pointer;
  background: #01206e;
  transition: all ease 0.3s;
  text-decoration: none;
  animation: none;
}

/* line 205, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.active i {
  color: white;
}

/* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.active:before {
  opacity: 1;
  transform: scale(1.2);
}

/* line 214, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.active p {
  opacity: 1;
  text-decoration: none;
  color: #01206e;
  transform: translateY(-5px);
  transition: all ease 0.3s;
}

/* line 220, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li .icon-circle-3.active p.position-bottom {
  transform: translateY(5px);
}

/* line 227, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3 {
  cursor: pointer;
  background: #01206e;
  transition: all ease 0.3s;
  text-decoration: none;
  animation: none;
  /*Style3 Version*/
  /*Style2 Version*/
}

/* line 234, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3 i {
  color: white;
}

/* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3:before {
  opacity: 1;
  transform: scale(1.2);
}

/* line 243, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3 p {
  opacity: 1;
  text-decoration: none;
  color: #01206e;
  transform: translateY(-5px);
  transition: all ease 0.3s;
}

/* line 249, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3 p.position-bottom {
  transform: translateY(5px);
}

/* line 254, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3.icon-circle-style3 {
  background: #41599e;
}

/* line 256, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3.icon-circle-style3 p {
  color: #41599e;
}

/* line 261, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3.icon-circle-style2 {
  background: #2d646b;
}

/* line 263, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container li:hover .icon-circle-3.icon-circle-style2 p {
  color: #2d646b;
}

/* line 282, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container.circle-tournaments {
  background-image: url("../circle-comp-solution.html");
}

/* line 285, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container.circle-governing {
  background-image: url("../circle-governing-solution.html");
}

/* line 288, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container img {
  display: block;
  max-width: 100%;
  border-radius: 50%;
  filter: grayscale(100%);
  transition: 0.15s;
}

/* line 295, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container img:hover {
  filter: grayscale(0);
}

/* line 300, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
.circle-container p {
  display: none;
}

@media (min-width: 786px) {
  /* line 306, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container {
    position: relative;
    width: 26em;
    height: 26em;
    border-radius: 50%;
    padding: 0;
    list-style: none;
    margin: 5em auto 0;
  }
  /* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > * {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -2.1em;
    width: 4.2em;
    height: 4.2em;
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(1) {
    transform: rotate(0deg) translate(13em) rotate(0deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(2) {
    transform: rotate(45deg) translate(13em) rotate(-45deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(3) {
    transform: rotate(90deg) translate(13em) rotate(-90deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(4) {
    transform: rotate(135deg) translate(13em) rotate(-135deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(5) {
    transform: rotate(180deg) translate(13em) rotate(-180deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(6) {
    transform: rotate(225deg) translate(13em) rotate(-225deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(7) {
    transform: rotate(270deg) translate(13em) rotate(-270deg);
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container > *:nth-of-type(8) {
    transform: rotate(315deg) translate(13em) rotate(-315deg);
  }
  /* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3 {
    width: 4.2em;
    height: 4.2em;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 2em;
    transition: all ease 0.3s;
    transform: scale(1);
    z-index: 10;
    /*Style3 Version*/
    /*Style2 Version*/
  }
  /* line 99, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3 i {
    font-size: 1.4em;
    text-decoration: none;
    color: grey;
  }
  /* line 105, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3:before,
  .circle-container li .icon-circle-3:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3:before {
    z-index: -1;
    border: 0.15em solid #01206e;
    opacity: 0;
    transform: scale(1);
    transition: transform 0.25s, opacity 0.2s;
  }
  /* line 125, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style3:before {
    border: 0.15em solid #41599e;
  }
  /* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style3 i {
    color: #41599e;
  }
  /* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style2:before {
    border: 0.15em solid #2d646b;
  }
  /* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style2 i {
    color: #2d646b;
  }
  /* line 145, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li {
    /*  p.position-right {
    left:135%;
    top:40%;
    text-align: left;
  }
  p.position-left {
    right:135%;
    top:40%;
    text-align: right;
  }*/
    /*-------------
  Hover and Active Circle
  --------------*/
  }
  /* line 146, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li p {
    position: absolute;
    top: 120%;
    text-align: center;
    width: 150px;
    transition: all ease 0.3s;
    opacity: 0.4;
    font-size: 0.8em;
    color: #4f5660;
    /*span {
     color: #959595;
     display: block;
     font-size: 0.9em;
   }*/
  }
  /* line 161, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li p.position-bottom {
    left: -65%;
  }
  /* line 165, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li p.position-top {
    top: -50%;
    left: -55%;
  }
  /* line 182, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3 {
    /*Style3 Version*/
    /*Style2 Version*/
  }
  /* line 184, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style3.active {
    background: #41599e;
  }
  /* line 186, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style3.active p {
    color: #41599e;
  }
  /* line 191, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style2.active {
    background: #2d646b;
  }
  /* line 193, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.icon-circle-style2.active p {
    color: #2d646b;
  }
  /* line 198, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.active {
    cursor: pointer;
    background: #01206e;
    transition: all ease 0.3s;
    text-decoration: none;
    animation: none;
  }
  /* line 205, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.active i {
    color: white;
  }
  /* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.active:before {
    opacity: 1;
    transform: scale(1.2);
  }
  /* line 214, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.active p {
    opacity: 1;
    text-decoration: none;
    color: #01206e;
    transform: translateY(-5px);
    transition: all ease 0.3s;
  }
  /* line 220, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li .icon-circle-3.active p.position-bottom {
    transform: translateY(5px);
  }
  /* line 227, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3 {
    cursor: pointer;
    background: #01206e;
    transition: all ease 0.3s;
    text-decoration: none;
    animation: none;
    /*Style3 Version*/
    /*Style2 Version*/
  }
  /* line 234, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3 i {
    color: white;
  }
  /* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3:before {
    opacity: 1;
    transform: scale(1.2);
  }
  /* line 243, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3 p {
    opacity: 1;
    text-decoration: none;
    color: #01206e;
    transform: translateY(-5px);
    transition: all ease 0.3s;
  }
  /* line 249, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3 p.position-bottom {
    transform: translateY(5px);
  }
  /* line 254, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3.icon-circle-style3 {
    background: #41599e;
  }
  /* line 256, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3.icon-circle-style3 p {
    color: #41599e;
  }
  /* line 261, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3.icon-circle-style2 {
    background: #2d646b;
  }
  /* line 263, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  .circle-container li:hover .icon-circle-3.icon-circle-style2 p {
    color: #2d646b;
  }
  /* line 311, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
  p {
    display: block !important;
  }
}

/* line 319, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_circle-nav-2.scss */
p:hover {
  text-decoration: none;
  color: inherit;
}

/* Club Integrated Circle */
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-col-left,
.integrated-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-circle {
  display: flex;
  margin: 10px 0;
  padding: 20px;
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-circle.bg-transparent {
  background: transparent;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-circle .integrated-text {
  flex: 1;
  /* default 0 */
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-circle .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-circle .icon-circle i {
  font-size: 1.6em;
  color: #70b645;
}

/* line 35, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-block {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 10px 0;
  margin: 0 2rem;
  text-align: center;
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-tools-block i {
  font-size: 1.6em;
  color: #70b645;
  margin-bottom: 15px;
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-col-left .integrated-text {
  text-align: right;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-col-left .integrated-tools-block .integrated-text {
  text-align: center;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-col-left .icon-circle {
  margin-left: 1rem;
}

/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.integrated-col-right .icon-circle {
  margin-right: 1rem;
}

/* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.icon-circle.icon-outline {
  background: transparent;
  border: 2px solid white;
  box-shadow: none;
  width: 80px;
  height: 80px;
}

/* line 79, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.icon-circle.icon-outline i {
  font-size: 1.6em;
  color: #70b645;
}

/* line 93, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
#menu {
  background-image: url("../circle-club-solution.html");
  background-position: center;
  display: block;
  margin: 0 auto;
  /*overflow: visible;*/
  /* uncomment this if you are using bouncing animations*/
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
a {
  cursor: pointer;
  /* SVG &lt;a&gt; elements don't get this by default, so you need to explicitly set it */
  outline: none;
}

/* You can change these default styles any way you want */
/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.item .sector {
  transition: all 0.1s linear;
  fill: #ccc;
  stroke: white;
}

/* line 115, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.item:hover .sector,
.item:focus .sector {
  fill: #eee;
}

/* line 119, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.menu-trigger {
  fill: transparent;
  pointer-events: auto;
  /* KEEP THIS to make sure it stays clickable even when SVG's pointer events is disabled */
}

/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
.menu-trigger:hover,
.menu-trigger:focus {
  cursor: pointer;
}

/* line 127, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_integration.scss */
symbol {
  overflow: visible;
  /* KEEP THIS so that text will not get cut off it it is wider than the icon width */
}

/*
This code is for generating the child menu in wordpress
Version 1: Has + and -
*/
/*Variables*/
/*--------------
Child menu links
------------*/
/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-link-container {
  background: white;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.navbar.children-links {
  display: flex;
  justify-content: flex-start;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.navbar.children-links span {
  display: none;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.navbar.children-links .navbar-nav {
  display: flex;
  flex-direction: row;
}

/* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.navbar.children-links .navbar-nav .page_item {
  flex: 0 0 auto;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.navbar.children-links .navbar-nav::-webkit-scrollbar {
  display: none;
}

/* line 37, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li {
  margin-right: 0px;
  padding: 20px 15px;
  display: block;
  position: relative;
  /*Adds + and - */
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li a:link,
.children-links li a:visited {
  display: block;
  color: #4f5660;
  text-decoration: none;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li a:link::after,
.children-links li a:visited::after {
  content: "";
  background: #01206e;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: 0;
  position: absolute;
  transition: 0.3s;
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li.page_item_has_children {
  padding-right: 30px;
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li:hover > a,
.children-links li a:hover,
.children-links li a:focus,
.children-links li a:active,
.children-links li a:active:focus {
  color: #01206e;
}

/* line 65, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li:hover > a::after,
.children-links li a:hover::after,
.children-links li a:focus::after,
.children-links li a:active::after,
.children-links li a:active:focus::after {
  content: "";
  background: #01206e;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: 0.3s;
}

/* line 77, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li.page_item_has_children::after {
  position: absolute;
  top: 30px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #4f5660;
  content: "";
  transition: all 0.25s ease;
}

/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li.page_item_has_children::before {
  position: absolute;
  top: 27px;
  right: 14px;
  width: 2px;
  height: 8px;
  display: block;
  background: #4f5660;
  content: "";
  transition: all 0.25s ease;
}

/* line 99, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li.page_item_has_children:hover::before {
  top: 30px;
  height: 0px;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links li.page_item_has_children:hover::after {
  background: #01206e;
}

/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links .parent-link {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ddd;
  font-style: 120%;
  font-weight: bold;
  color: #333;
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links .current_page_item > a:link,
.children-links .current_page_item a:visited {
  color: #01206e;
  cursor: default;
}

/* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links .current_page_item > a:link::after,
.children-links .current_page_item a:visited::after {
  content: "";
  background: #01206e;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  position: absolute;
  transition: 0.3s;
}

/* line 132, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links .current_page_item.page_item_has_children::before {
  background: #01206e;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.children-links .current_page_item.page_item_has_children::after {
  background: #01206e;
}

@media (min-width: 992px) {
  /* line 146, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
  .navbar.children-links li {
    margin-right: 20px;
  }
  /* line 149, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
  .navbar.children-links span {
    flex: 0 0 auto;
    display: block;
  }
  /* line 153, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
  .navbar.children-links .navbar-nav {
    display: flex;
    flex-wrap: wrap;
  }
  /* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
  .navbar.children-links .navbar-nav .page_item {
    flex: 0 0 auto;
  }
}

/*child drop menu
=====================*/
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}

/* line 181, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.page_item_has_children .children {
  width: 190px;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  z-index: 3000;
  top: 100%;
  left: 0;
  background: white;
  -webkit-box-shadow: 2px 6px 21px -2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 2px 6px 21px -2px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 6px 21px -2px rgba(0, 0, 0, 0.35);
}

/* line 194, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.page_item_has_children .children li {
  margin-right: 0;
  padding: 15px;
}

/* line 202, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.page_item_has_children:hover .children {
  display: block;
  animation: growDown 250ms ease-in-out forwards;
  transform-origin: top center;
}

/* line 212, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.current_page_item .children li a:link,
.current_page_item .children li a:visited {
  color: #4f5660;
}

/* line 215, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_child-menu-1.scss */
.current_page_item .children li a:hover,
.current_page_item .children li a:active {
  color: #01206e;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-container {
  position: relative;
  overflow-x: hidden;
  flex-grow: 1;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu {
  list-style: none;
  display: flex;
  /* [1] */
  /*transition: all 1s; //needed for menu scroll | SPEED
  left: 0; //needed for menu scroll*/
  position: relative;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  /* [3] */
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* [4] */
  /* hide scrollbar */
  scrollbar-width: none;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  width: 100%;
  position: relative;
  min-width: 150px;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li a {
  padding: 30px 10px 10px 10px;
  margin-top: 20px;
  color: #4f5660;
  font-size: 0.7em;
  line-height: 1.2em;
  text-transform: capitalize;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li a img {
  width: 25px !important;
  margin: 0 auto 5px auto;
  display: block;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li a:link,
.icon-menu li a:visited {
  text-decoration: none;
}

/* line 48, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.current,
.icon-menu li:hover {
  background: #eeeff0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.current a:link,
.icon-menu li.current a:visited,
.icon-menu li:hover a:link,
.icon-menu li:hover a:visited {
  color: #428dff;
}

/* line 61, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li a:before {
  content: "";
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
}

/* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-clubs a:before {
  background-image: url("../svg/club-2.svg");
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-tournaments a:before {
  background-image: url("../svg/tournaments-2.svg");
}

/* line 83, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-websites a:before {
  background-image: url("../svg/websites-2.svg");
}

/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-governing a:before {
  background-image: url("../svg/govern-2.svg");
}

.icon-menu li.software-gotsportlive a:before {
  background-image: url("../svg/gotsport-live-2.svg");
}

/* line 93, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-app a:before {
  background-image: url("../svg/app-2.svg");
}

/* line 98, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-analytics a:before {
  background-image: url("../svg/analytics.svg");
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-ticketing a:before {
  background-image: url("../svg/ticketing-2.svg");
}

/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-pro a:before {
  background-image: url("../svg/pro-sports-2.svg");
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-travel a:before {
  background-image: url("../svg/travel.svg");
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu li.software-referees a:before {
  background-image: url("../svg/referees.svg");
}

/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
.icon-menu::-webkit-scrollbar,
.icon-menu::-moz-scrollbar {
  display: none;
}

@media (min-width: 576px) {
  /* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
  .icon-menu {
    display: flex;
    justify-content: flex-start;
  }
}

@media (min-width: 992px) {
  /* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_icon-menu2.scss */
  .icon-menu {
    display: flex;
  }
}

/*===========
  Event Cards  - event Page
  ===========*/
/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card {
  background: white;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  transition: 0.5s all ease;
  height: 100%;
  border: none;
  border-radius: 5px;
  box-shadow: 5px 5px 40px 0px rgba(0, 0, 0, 0.1);
  /* .event-btns {
      display: flex;
      flex-direction: column;
      justify-content: center;
      .btn {
        display: block;
        width: 100%;
        margin: 5px 0px;
        &:first-child {
          margin-right: 2px;
        }
        &:last-child {
          margin-left: 2px;
        }
      }
    }*/
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .img-container {
  position: relative;
  max-height: 240px;
  border-radius: 5px 5px 0px 0px;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .img-container img {
  opacity: 0.9;
}

/* line 28, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  padding: 1rem;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .card-body h6 {
  color: #70b645;
  font-size: 15px;
  margin: 0 0 0.6rem;
}

/* line 39, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .card-body .event-age,
.card.event-card .card-body .event-location,
.card.event-card .card-body .event-date {
  margin-bottom: 0.25rem;
  font-size: 0.9em;
  color: #999;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card .card-body .event-age i,
.card.event-card .card-body .event-location i,
.card.event-card .card-body .event-date i {
  margin-right: 7px;
  color: #70b645;
}

/* line 72, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card.event-camp h6 {
  color: orange;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card.event-camp .event-age i,
.card.event-card.event-camp .event-location i,
.card.event-card.event-camp .event-date i {
  color: orange;
}

/* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card.event-camp .event-category {
  background: orange;
}

/* line 85, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card.event-card.event-camp .date-month {
  background: orange;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.card .card.event-card:hover .img-container img {
  opacity: 1;
}

/* line 101, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.date-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  text-transform: uppercase;
  z-index: 1;
  padding: 0px;
  margin: 0 0.5rem 0.5rem 0;
  background: white;
  text-align: center;
  border-radius: 3px;
  font-size: 0.9rem;
  box-shadow: 5px 5px 40px 0px rgba(0, 0, 0, 0.1);
}

/* line 115, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.date-container .date-month {
  color: #70b645;
  text-transform: uppercase;
  padding: 5px 15px;
  margin: 0;
  background: #70b645;
  color: white;
  border-radius: 3px 3px 0 0;
}

/* line 124, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.date-container .date {
  padding: 5px 15px;
  margin: 0;
  color: #4f5660;
}

/* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.event-category {
  /*position: absolute;
  top: 1rem;
  right: 1rem;
  text-transform: uppercase;
  z-index: 1;*/
  display: inline-block;
  margin-bottom: 0.9rem;
  background: #70b645;
  border-radius: 5px;
}

/* line 141, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_event-page.scss */
.event-category p {
  font-size: 0.7em;
  margin: 0;
  padding: 3px 10px;
  text-transform: capitalize;
  font-weight: bold;
  color: white;
}

/**End Event-Page */
/*
==========================
News  
==========================
*/
/* Category Colors
=================*/
/* Category
=================*/
/* line 22, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="category-news"] {
  padding: 0 10px;
  color: #fff;
  font-size: 0.8em;
  line-height: 22px;
  text-transform: uppercase;
  z-index: 1;
  background: #01206e;
  display: inline-block;
  margin-bottom: 10px;
}
/* line 34, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-partners {
  background: #ff9900;
}

/* line 37, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-rankings {
  display: inline-block;
  background: #5364d4;
}

/* line 41, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-software {
  display: inline-block;
  background: #0084ff;
}

/* line 45, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-important {
  display: inline-block;
  background: red;
}

/* line 49, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-event-announcement {
  display: inline-block;
  background: #70b645;
}

/* line 53, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-tips-tricks {
  display: inline-block;
  background: #00aba2;
}

/* line 57, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-success-stories {
  display: inline-block;
  background: pink;
}

/* line 62, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.category-news-absolute {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* News Card
=================*/
/* line 71, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.card.news-card {
  border: none;
}

/* line 74, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.card.news-card .card-text {
  padding: 1rem 0.5rem;
}

/* line 77, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.card.news-card .img-container {
  max-height: 240px;
  background-color: white;
}

/* line 80, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.card.news-card .img-container img {
  opacity: 1;
}

/* line 88, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.card.news-card:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.7;
}

/* line 97, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
aside .card.news-card .img-container {
  max-height: 121px;
}

/* Slider [Newsletter & Rankings News]
=================*/
/* line 105, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

/* line 112, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] .news-container {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 20px;
}

/* line 117, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] .news-container img {
  z-index: -1;
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* line 125, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] .news-container .news-content {
  position: absolute;
  padding: 20px;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* line 132, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] .news-container .news-content h1,
[class^="news-slide"] .news-container .news-content h2,
[class^="news-slide"] .news-container .news-content h3,
[class^="news-slide"] .news-container .news-content h4,
[class^="news-slide"] .news-container .news-content h5,
[class^="news-slide"] .news-container .news-content h6 {
  color: white;
  margin-bottom: 0;
}

/* line 141, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
[class^="news-slide"] .news-container .news-content p {
  display: none;
  color: #bfbfbf;
}

/* Media */
/* line 150, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.media-main-story {
  flex-direction: column;
}

/* line 152, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.media-main-story .media-img {
  width: 100%;
}

/* line 157, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.media-img {
  width: 40%;
  margin: 0 1rem 2rem 0;
}

/* line 160, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.media-img.media-img-lg {
  width: 100%;
}

/*********
REpsonsive
************/
@media (min-width: 576px) {
  /* Media */
  /* line 171, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  .media-main-story {
    flex-direction: row;
  }
  /* line 173, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  .media-main-story .media-img {
    width: 25%;
  }
  /* line 177, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  .media-img {
    width: 25%;
  }
  /* line 179, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  .media-img.media-img-lg {
    width: 50%;
  }
}

@media (min-width: 768px) {
  /* line 188, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  [class^="news-slide"] .news-container {
    height: 300px;
  }
}

@media (min-width: 1200px) {
  /* line 197, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
  [class^="news-slide"] .news-container {
    height: 400px;
  }
}

/* News Heading
=================*/
/* line 212, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1,
h2.news-heading-1,
h3.news-heading-1,
h4.news-heading-1,
h5.news-heading-1,
h6.news-heading-1 {
  background: #f0f0f0;
  border-left: 3px solid #01206e;
  padding: 9px 15px 10px;
  margin-bottom: 1.5rem;
}

/* line 217, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-partners,
h2.news-heading-1.heading-partners,
h3.news-heading-1.heading-partners,
h4.news-heading-1.heading-partners,
h5.news-heading-1.heading-partners,
h6.news-heading-1.heading-partners {
  border-left: 3px solid #ff9900;
}

/* line 220, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-rankings,
h2.news-heading-1.heading-rankings,
h3.news-heading-1.heading-rankings,
h4.news-heading-1.heading-rankings,
h5.news-heading-1.heading-rankings,
h6.news-heading-1.heading-rankings {
  border-left: 3px solid #5364d4;
}

/* line 223, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-software,
h2.news-heading-1.heading-software,
h3.news-heading-1.heading-software,
h4.news-heading-1.heading-software,
h5.news-heading-1.heading-software,
h6.news-heading-1.heading-software {
  border-left: 3px solid #0084ff;
}

/* line 226, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-important,
h2.news-heading-1.heading-important,
h3.news-heading-1.heading-important,
h4.news-heading-1.heading-important,
h5.news-heading-1.heading-important,
h6.news-heading-1.heading-important {
  border-left: 3px solid red;
}

/* line 229, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-event-announcement,
h2.news-heading-1.heading-event-announcement,
h3.news-heading-1.heading-event-announcement,
h4.news-heading-1.heading-event-announcement,
h5.news-heading-1.heading-event-announcement,
h6.news-heading-1.heading-event-announcement {
  border-left: 3px solid #70b645;
}

/* line 232, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-tips-tricks,
h2.news-heading-1.heading-tips-tricks,
h3.news-heading-1.heading-tips-tricks,
h4.news-heading-1.heading-tips-tricks,
h5.news-heading-1.heading-tips-tricks,
h6.news-heading-1.heading-tips-tricks {
  border-left: 3px solid #00aba2;
}

/* line 235, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
h1.news-heading-1.heading-success-stories,
h2.news-heading-1.heading-success-stories,
h3.news-heading-1.heading-success-stories,
h4.news-heading-1.heading-success-stories,
h5.news-heading-1.heading-success-stories,
h6.news-heading-1.heading-success-stories {
  border-left: 3px solid pink;
}

/* line 243, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* line 249, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  background-color: #70b645;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
}

/* line 258, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_news.scss */
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: #65a43e;
}

/*
 END News  
==========================
*/

/**********
Slider 2
***********/
/* -------------------------------- 

Main components 

-------------------------------- */
/* line 11, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-image-container {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0em auto;
}

/* line 18, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-image-container img {
  display: block;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-image-label {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
}

/* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-image-label.is-hidden {
  visibility: hidden;
}

/* line 43, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.is-visible .cd-image-label {
  opacity: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

/* line 52, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-resize-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-resize-img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
}

/* line 77, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}

/* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.is-visible .cd-resize-img {
  width: 50%;
  /* bounce in animation of the modified image */
  -webkit-animation: cd-bounce-in 0.7s;
  -moz-animation: cd-bounce-in 0.7s;
  animation: cd-bounce-in 0.7s;
}

@-webkit-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}

@-moz-keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}

@keyframes cd-bounce-in {
  0% {
    width: 0;
  }
  60% {
    width: 55%;
  }
  100% {
    width: 50%;
  }
}

/* line 122, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-handle {
  position: absolute;
  height: 44px;
  width: 44px;
  /* center the element */
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #70b645
    url("../cd-arrows.html")
    no-repeat center center;
  cursor: move;
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0);
  -moz-transform: translate3d(0, 0, 0) scale(0);
  -ms-transform: translate3d(0, 0, 0) scale(0);
  -o-transform: translate3d(0, 0, 0) scale(0);
  transform: translate3d(0, 0, 0) scale(0);
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.cd-handle.draggable {
  /* change background color when element is active */
  background-color: #445b7c;
}

/* line 147, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_comparison-slider-2.scss */
.is-visible .cd-handle {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -ms-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
  -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
  transition: transform 0.3s 0.7s, opacity 0s 0.7s;
}

/*********

Partnership Pricing Table

************/
/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item {
  background: #ffffff none repeat scroll 0 0;
  margin-bottom: 80px;
  position: relative;
  z-index: 9;
  border-radius: 10px;
  -moz-box-shadow: 0 0 5px #cccccc;
  -webkit-box-shadow: 0 0 5px #cccccc;
  -o-box-shadow: 0 0 5px #cccccc;
  box-shadow: 0 0 5px #cccccc;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  transition: 0.3s all ease;
  /*&:hover,
  &:active {
    transform: scale(1.01);
    -moz-box-shadow: 0 0 10px #cccccc;
    -webkit-box-shadow: 0 0 10px #cccccc;
    -o-box-shadow: 0 0 10px #cccccc;
    box-shadow: 0 0 10px #cccccc;
  }*/
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item ul li {
  line-height: 40px;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item ul li.software {
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item .icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 50px;
  height: 100px;
  left: 50%;
  line-height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100px;
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item .icon:after {
  background: #e9ecef none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item .icon i {
  color: #6c757d;
  cursor: inherit !important;
}

/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item span i {
  color: #999;
  margin-left: 2px;
  margin-right: 5px;
}

/* line 70, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item span i:hover {
  cursor: help;
}

/* line 75, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item .footer-table {
  padding: 20px 30px 30px;
}

/* line 89, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .pricing-header {
  background: #70b645 none repeat scroll 0 0;
  border-color: transparent;
  margin: 0;
  border-radius: 10px 10px 0 0;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .pricing-header h2,
.pricing-item.active .pricing-header h4,
.pricing-item.active .pricing-header span,
.pricing-item.active .pricing-header i {
  color: #ffffff;
}

/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .pricing-header p {
  color: white;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .pricing-header span.badge {
  background: #ffffff none repeat scroll 0 0;
  color: #323a45;
}

/* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .icon i {
  color: #ffffff !important;
}

/* line 112, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-item.active .icon::after {
  background: #70b645 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* line 128, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-header {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px !important;
  padding: 50px 30px 30px !important;
  background: #e9ecef;
}

/* line 133, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-header h4 {
  font-weight: 600;
  text-transform: uppercase;
  color: #323a45;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-header h2 {
  color: #323a45;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0;
}

/* line 146, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-header p {
  font-size: 0.9em;
  line-height: 1.3em;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 155, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-table.scss */
.pricing-header h2 sub {
  font-size: 18px;
  font-weight: 400;
  margin-left: -5px;
}

/*@media (min-width: 786px) {
  .pricing-item {
    ul {
      li {
        margin: 0 10px;
      }
    }
  }
}*/
/*.btn-sm {
  padding: 8px 35px;
  font-size: 12px;
}
.btn-dark {
  background-color: #323a45;
  color: #ffffff;
  border: 2px solid #323a45;
}

.btn-dark.border {
  background-color: transparent;
  color: #323a45;
  border: 2px solid #323a45;
}

.btn-dark.border:hover {
  background-color: #323a45;
  color: #ffffff !important;
  border: 2px solid #323a45;
}

.btn-theme {
  background-color: $secondary;
  color: #ffffff !important;
  border: 2px solid $secondary;
}
*/
/*********

/ END Pricing Table

************/
/*********

Tier Pricing Table

************/
/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead tr th {
  padding: 50px 30px 30px;
  border: none;
  vertical-align: middle;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-software {
  width: 34%;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-standard,
.tier-pricing-table thead .header-partner {
  width: 33%;
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-standard h3,
.tier-pricing-table thead .header-partner h3 {
  color: #2e3949;
  margin-bottom: 0;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .tier-description {
  font-size: 0.9em;
  font-weight: normal;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .tier-fine-print {
  font-size: 0.8em;
  font-weight: normal;
  font-style: italic;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-standard {
  background: #e9ecef;
  position: relative;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-partner {
  background: #70b645 none repeat scroll 0 0;
  position: relative;
}

/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-partner h3,
.tier-pricing-table thead .header-partner h6 {
  color: white;
}

/* line 45, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-partner .tier-description,
.tier-pricing-table thead .header-partner .tier-fine-print {
  color: white;
}

/* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-partner .icon i {
  color: #ffffff !important;
}

/* line 53, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .header-partner .icon::after {
  background: #70b645 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* line 68, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 25px;
  height: 50px;
  left: 50%;
  line-height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

/* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .icon:after {
  background: #e9ecef none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* line 95, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table thead .icon i {
  color: #6c757d;
  cursor: inherit !important;
}

/* line 103, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table td span i {
  color: #999;
  margin-left: 2px;
  margin-right: 5px;
}

/* line 107, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table td span i:hover {
  cursor: help;
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
.tier-pricing-table .row-heading {
  background: #e1f0d7;
  color: #426c29;
}

@media (max-width: 767px) {
  /* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
  .tier-pricing-table tr td:first-child,
  .tier-pricing-table tr th:first-child {
    display: none;
  }
  /* line 126, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
  .tier-pricing-table thead tr th {
    padding: 30px;
  }
  /* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
  .tier-pricing-table .icon {
    display: none;
  }
}

@media (min-width: 768px) {
  /* line 140, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
  .tier-pricing-table thead .header-standard,
  .tier-pricing-table thead .header-partner {
    width: 33%;
  }
  /* line 144, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_pricing-tiers-table.scss */
  .tier-pricing-table thead .icon {
    font-size: 50px;
    height: 100px;
    left: 50%;
    line-height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    width: 100px;
  }
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
#testimonials-slider {
  padding-top: 90px;
  display: flex;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
.testimonial-logo {
  background: white;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
.testimonial-logo img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

/* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
.client-testimonial {
  height: 100%;
  /*display: flex;
  flex-direction: column;
  justify-content: space-around;*/
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
.client-testimonial p.testimonial-quote {
  font-style: italic;
  font-size: 1em;
  line-height: 1.7em;
}

@media (min-width: 786px) {
  /* line 40, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/components/_testimonials.scss */
  .client-testimonial p.testimonial-quote {
    font-size: 0.9em;
  }
}


/** Pagination for Wordpress 
==============================*/
/* line 42, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_pagination.scss */
.pagination {
  text-align: center;
}

/* line 44, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_pagination.scss */
.pagination .page-numbers {
  padding: 5px 15px;
  color: #4f5660;
  border: none;
  font-family: "Poppins", sans-serif;
}

/* line 49, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_pagination.scss */
.pagination .page-numbers.current {
  padding: 5px 15px;
  color: #fff;
  background-color: #01206e;
  border-color: #01206e;
}

/* line 55, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/components/_pagination.scss */
.pagination .page-numbers:hover {
  color: #70b645;
}

/**Typewriter
===============*/
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.typewrite > .wrap {
  animation: blink-caret 0.5s step-end infinite;
  border-color: white;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: white;
  }
  50% {
    border-color: transparent;
  }
}

/* line 20, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.typed,
.typed-strings {
  display: inline-block;
}

/* line 24, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.typed-strings p {
  position: absolute;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*=========================================
Parallax 3d
https://www.css3transition.com/mouse-parallax-3d-tilt-effect/
=========================================*/
/*=========================================
Parallax
=========================================*/
/* line 77, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.parallax-3 .parallax-img {
  position: absolute;
  top: 0;
}

/*===============
Macbook + Icons
===============*/
/* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.macbook {
  margin-top: 0px;
  margin-top: var(--macbook-margin-top-mobile);
}

/* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.img-icon {
  max-width: 60px;
  margin-bottom: 20px;
}

/* line 97, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.macbook-container {
  position: relative;
  z-index: 10;
}

/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.macbook-container [class*="screen-"] {
  position: absolute;
  display: none;
}

/*==============
Responsive
===============*/
@media (min-width: 786px) {
  /* line 110, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook {
    margin-top: var(--macbook-margin-top);
  }
  /* line 114, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container {
    position: relative;
    /*  .screen-3 {
      width:40%;
      top: 30%;
      left:0%;
    }*/
  }
  /* line 116, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container [class*="screen-"] {
    position: absolute;
    display: block;
  }
  /* line 120, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container .screen-1 {
    width: var(--img-1-width);
    top: var(--img-1-top);
    right: var(--img-1-right);
  }
  /* line 125, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container .screen-2 {
    width: var(--img-2-width);
    top: var(--img-2-top);
    right: var(--img-2-right);
  }
  /* line 131, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container .screen-1 {
    width: 40%;
    top: 30%;
    right: 60%;
  }
  /* line 136, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .macbook-container .screen-2 {
    width: 40%;
    top: 6%;
    right: 3%;
  }
  /* line 149, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .img-icon {
    max-width: 70px;
    margin-bottom: 20px;
  }
}

/*===============
iPhone
===============*/
/* line 159, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.iphone {
  margin-top: 0px;
  margin-right: 0px;
}

/* line 163, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
[class*="iphone-tooltip"] {
  position: absolute;
  width: 110px;
}

/* line 167, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.iphone-tooltip1 {
  left: -10px;
  top: 100px;
}

/*
.iphone-tooltip2 {
  right: 45px;
  top:150px;
}
*/
@media (min-width: 992px) {
  /* line 179, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
  .iphone-tooltip1 {
    width: 140px;
  }
  /*  .iphone-tooltip2 {
    right: 60px;
    top:170px;
    width: 130px;
  }*/
}

/*
@media (min-width:768px) {
  .iphone-tooltip2 {
    left: -50px;
    top:30px;
  }
  .iphone-tooltip1 {
    right: 0px;
    top:90px;
  }

}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
  .iphone {
    margin-top: -160px;
  }
  .iphone-tooltip2 {
    left: -10px;
    top:-30px;
  }
  .iphone-tooltip1 {
    right: 80px;
    top:40px;
  }
}
*/
/* Client logo*/
/* line 221, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
[class*="client-logo"] img {
  transform: scale(1);
  transition: 0.25s all ease;
  max-height: 100px;
  padding: 0 0 10px 0;
}

/* line 230, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
[class*="client-logo"]:hover img {
  transform: scale(1.1);
}

/* Client Logos */
/* line 238, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.client-logo-2 img {
  filter: grayscale(100);
  transition: all 0.3s ease-in-out;
}

/* line 244, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_homepage.scss */
.client-logo-2:hover img {
  filter: grayscale(0);
}

/*===============
 Homepage V2 -index2.html
 ===============*/
/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.homepage-hero3 {
  background-image: url("../jpg/bg-particles.jpg");
  background-size: cover;
  background-position: center;
  padding: 10rem 0px 7rem;
  z-index: 2;
}

/*=========================================
  Parallax
  =========================================*/
/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.parallax-3 {
  position: relative;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.parallax-3 .parallax-img-2 {
  position: absolute;
  right: 0px;
  top: 80px;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.parallax-3 .parallax-img-2 img {
  width: 250px;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.parallax-3 .parallax-img-3 {
  position: absolute;
  left: 0px;
  top: 200px;
}

/* line 33, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.parallax-3 .parallax-img-3 img {
  width: 220px;
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_index3.scss */
.card.card-animate-2.version2 .img-container img {
  opacity: 0.4;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-section {
  background-image: url("../bg-kids-2.html");
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 250px);
}

/* line 8, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-section2 {
  background-image: url("../jpg/soccer-player-action-stadium_1150-14606.jpg");
  background-size: cover;
  background-position: center;
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-col {
  background-size: cover;
  background-position: center;
  padding: 10px 10px 30px 10px;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-content {
  position: relative;
  padding: 0px 10px 30px 10px;
  color: white;
  /*min-height: calc(100vh - 250px);*/
}

/* line 26, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-content .card {
  color: #4f5660;
}

/* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
.login-wrap {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 50px;
  padding: 30px 35px;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

/* line 46, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
input[type="submit"].btn-login-2,
button[type="submit"].btn-login-2 {
  color: #fff;
  background-color: #01206e;
  padding: 15px;
  border-radius: 100px;
  width: 100%;
  display: block;
  transition: all 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
input[type="submit"]:hover.btn-login-2,
button[type="submit"]:hover.btn-login-2,
input[type="submit"]:active.btn-login-2,
button[type="submit"]:active.btn-login-2 {
  background-color: #01113b;
}

@media (min-width: 768px) {
  /* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
  .login-wrap {
    padding: 30px;
    margin-top: 0px;
  }
  /* line 73, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
  .login-col {
    padding: 50px 50px 30px 50px;
  }
  /* line 76, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
  .login-content {
    padding: 50px 50px 30px 50px;
  }
}

@media (min-width: 992px) {
  /* line 83, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
  .login-content {
    padding: 90px 50px 30px 50px;
  }
}

/* line 88, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
p.event-promo-links {
  z-index: 100;
  font-size: 0.9em;
  position: absolute;
  top: 10px;
  right: 20px;
}

/* line 94, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login.scss */
p.event-promo-links a:link {
  margin-right: 10px;
}

/* line 1, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
body.full-page {
  margin-bottom: 0px !important;
  display: flex;
  flex-direction: column;
  /* Arrange children vertically */
  min-height: 100vh;
  /* Ensure the body fills the full viewport height */
  margin: 0;
  /* Remove any default margins */
}

/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
.ad-takeover {
  background: url("../login-bg.html")
    no-repeat right center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* line 17, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
.main {
  flex: 1;
  /* Expand to fill the remaining vertical space */
  /*background:red;*/
  /*Make container and row 100% also*/
  display: flex;
  flex-direction: column;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
.main .ad-row {
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  /* line 31, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
  .main .ad-row {
    justify-content: start;
  }
}

/*===============
Navigation bar
===============*/
/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
#nav-header.nav-takeover {
  background: transparent;
}

/*===============
Parallax
===============*/
/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
.parallax-ad-container {
  margin-top: -200px;
}

/*===============
 BG Video Section
===============*/
/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_login-takeover.scss */
.bg-video.video-takeover {
  height: 100%;
  padding: 0;
}

/* Software Page */
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.dashboard-container {
  position: relative;
}

/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.dashboard-container .img-player {
  position: absolute;
  top: 30px;
  right: 0;
  width: 40%;
}

/* line 21, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.img-relative {
  position: relative;
}

/* line 25, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.payment-img-1 {
  width: 100%;
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.payment-img-2 {
  position: absolute;
  left: 0;
  top: 40px;
  width: 70%;
}

@media (min-width: 768px) {
  /* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
  .payment-img-1 {
    width: 90%;
  }
  /* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
  .payment-img-2 {
    position: absolute;
    left: -8%;
    top: 60px;
    width: 60%;
  }
}

@media (min-width: 992px) {
  /* line 50, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
  .payment-img-2 {
    position: absolute;
    top: 70px;
  }
}

/***************
Onboarding Logos
 ***************/
/* line 66, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
a.state-logos img {
  max-width: 40px;
  transform: scale(1);
  -webkit-transition: 0.25s all ease;
  -moz-transition: 0.25s all ease;
  transition: 0.25s all ease;
  padding: 10px 0;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
a.state-logos:hover img {
  transform: scale(1.1);
}

/* Partner Logos */
/*
.client-logo {
  img {
      filter: grayscale(10);
      transition: all ease 0.5s;
  }
  img:hover {
      filter: grayscale(0);
  }
}*/
/***************
Circle Integration
***************/
/* line 104, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.circle-integration img {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 110, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.circle-integration img:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

/* line 118, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
/*.circle-integration .integrated-right {
  margin-left: -15px;
}*/

/* line 121, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_club-management.scss */
.circle-integration .integrated-left {
  margin-left: 15px;
}

/*===============
Event-Promos
===============*/
/*===============
Event-Promos Variables
===============*/
/* line 4, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-variables.scss */
:root {
  --event-primary-color: blue;
  --event-secondary-color: red;
  --event-banner-band: var(--event-primary-color);
  --event-header-overlay: var(--event-primary-color);
  --header-overlay-opacity: 0.6;
  --event-header-height: 45%;
  --event-banner-background: black;
  --event-footer-color: black;
  --event-btn-custom: red;
  --event-logo-size: 500px;
  --event-dates-bg: var(--event-primary-color);
}

/*----------
Template 2
-------------*/
/* line 7, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body {
  /*margin-bottom: 170px !important;*/
  /*=================
  Buttons
  ==================*/
  /*Outer Glow for btns */
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-primary {
  color: white !important;
  background-color: var(--event-primary-color);
  border-color: var(--event-primary-color);
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-primary:hover,
body.event-body .btn-primary:active,
body.event-body .btn-primary:focus,
body.event-body .btn-primary.focus {
  color: white !important;
  background-color: var(--event-primary-color);
  background-color: var(--event-primary-color);
  border-color: var(--event-primary-color);
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-primary:not(:disabled):not(.disabled):active,
body.event-body .btn-primary:not(:disabled):not(.disabled).active,
body.event-body .show > .btn-primary.dropdown-toggle {
  background-color: var(--event-primary-color);
  border-color: var(--event-primary-color);
}

/* line 42, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-primary:focus,
body.event-body .btn-primary.focus,
body.event-body .btn-secondary:focus,
body.event-body .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* line 49, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-primary:not(:disabled):not(.disabled):active:focus,
body.event-body .btn-primary:not(:disabled):not(.disabled).active:focus,
body.event-body .show > .btn-primary.dropdown-toggle:focus,
body.event-body .btn-secondary:not(:disabled):not(.disabled):active:focus,
body.event-body .btn-secondary:not(:disabled):not(.disabled).active:focus,
body.event-body .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

/* line 58, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-secondary {
  color: white !important;
  background-color: var(--event-secondary-color);
  border-color: var(--event-secondary-color);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-secondary:hover,
body.event-body .btn-secondary:active,
body.event-body .btn-secondary:focus,
body.event-body .btn-secondary.focus {
  color: white !important;
  background-color: var(--event-secondary-color);
  background-color: var(--event-secondary-color);
  border-color: var(--event-secondary-color);
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* line 82, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-secondary:not(:disabled):not(.disabled):active,
body.event-body .btn-secondary:not(:disabled):not(.disabled).active,
body.event-body .show > .btn-secondary.dropdown-toggle {
  background-color: var(--event-secondary-color);
  border-color: var(--event-secondary-color);
}

/* line 90, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-custom {
  color: white !important;
}

/* line 96, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
body.event-body .btn-custom:hover,
body.event-body .btn-custom:active,
body.event-body .btn-custom:focus,
body.event-body .btn-custom.focus {
  color: white !important;
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/*===============
Banner Top
===============*/
/*===============
Event Background Image/Video / Logo
===============*/
/* line 120, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-body .gotsport-logo {
  padding: 10px;
  display: flex;
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-body .gotsport-logo img {
  max-height: 35px;
}

/* line 129, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-header {
  margin-top: 0px;
  padding: 0;
  position: relative;
  background: url("../bg-title.html")
    no-repeat center bottom;
  background-size: cover;
  z-index: 0;
}

/* line 136, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-header .video-container,
.event-header .event-img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

/* line 144, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-header .video-container video,
.event-header .video-container img,
.event-header .event-img-container video,
.event-header .event-img-container img {
  /* Make video to at least 100% wide and tall */
  min-width: 100%;
  min-height: 100%;
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-header img.event-logo {
  width: var(--event-logo-size);
  max-width: 70%;
  margin-top: 20px;
  z-index: 100;
}

/* line 169, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.bg-overlay-event {
  height: 100%;
  width: 100%;
  background: var(--event-header-overlay);
  opacity: var(--header-overlay-opacity);
}

/* line 177, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.gotsport-banner .banner-logo {
  background: black;
}

/* line 180, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.gotsport-banner .banner-band {
  background: var(--event-banner-band);
}

/*=================
Heading Text
==================*/
/* line 189, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading {
  padding: 25px 0;
}

/* line 191, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading .pre-title {
  color: var(--event-primary-color);
}

/* line 194, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h1.title {
  font-size: 4em;
}

/* line 197, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h1.custom-title {
  font-size: 4em;
}

/* line 200, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h2.title {
  font-size: 3.5em;
}

/* line 203, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h3.title {
  font-size: 3em;
}

/* line 206, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h4.title {
  font-size: 2.7em;
}

/* line 209, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h5.title {
  font-size: 2.4em;
}

/* line 212, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-heading h6.title {
  font-size: 2em;
}

@media (min-height: 768px) {
  /* line 219, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
  .event-heading h1.custom-title {
    font-size: var(--event-title-custom-font);
    color: white;
  }
}

/*=================
Banner Boxes Section
==================*/
/* line 230, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes {
  background: var(--event-banner-background);
  /* Option 1 */
  /* Option 2 */
}

/* line 233, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-1 {
  border-top: 2px solid var(--banner-highlight-color);
  border-bottom: 2px solid var(--banner-highlight-color);
}

/* line 236, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-1 .banner-text {
  text-align: left;
  padding: 0 20px;
  height: 100%;
}

/* line 240, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-1 .banner-text .info-heading {
  color: white;
  font-weight: normal;
  font-size: 0.9em;
}

/* line 244, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-1 .banner-text .info-heading i {
  color: var(--banner-highlight-color);
  margin-left: 10px;
}

/* line 249, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-1 .banner-text .info-details {
  color: var(--banner-highlight-color);
  text-transform: uppercase;
}

/* line 256, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 {
  border: none;
}

/* line 258, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 .banner-text {
  text-align: center;
  height: auto;
  font-size: 0.9em;
  background: white;
  border-radius: 5px;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
}

/* line 270, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 .banner-text .info-heading {
  display: none;
}

/* line 273, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 .banner-text .info {
  padding: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  flex-grow: 1;
}

/* line 280, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 .banner-text .circle-icon {
  background: var(--banner-highlight-color);
  border-radius: 50%;
  padding: 0.2em;
  margin-right: 5px;
}

/* line 285, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-banner-boxes.banner-option-2 .banner-text .circle-icon i {
  width: 1.5em;
  height: 1em;
  color: white;
}

@media (min-width: 786px) {
  /* line 298, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
  .event-banner-boxes.banner-option-1 .banner-row {
    border-left: 3px solid var(--banner-highlight-color);
  }
  /* line 300, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
  .event-banner-boxes.banner-option-1 .banner-row .banner-text {
    border-right: 3px solid var(--banner-highlight-color);
  }
  /* line 306, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
  .event-banner-boxes.banner-option-2 .banner-text {
    margin-bottom: 0;
  }
}

/*=================
Event Details Section
==================*/
/* line 317, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-details {
  background: url("../bg-title.html")
    no-repeat center -150px;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}

/* line 322, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-details h3,
.event-details h4 {
  margin-top: 30px;
}

/* line 326, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-details h1,
.event-details h2,
.event-details h3,
.event-details h4,
.event-details h5 {
  color: var(--header-font-color);
}

/* line 333, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.event-details p {
  color: var(--body-font-color);
}

/*=================
Footer
=================*/
/* line 342, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos.scss */
.footer.footer-event-promo {
  /* height: 180px;*/
  background: var(--event-footer-color);
}

/*===============
Event-Promos
===============*/
/*===============
Header & Heading Section
===============*/
/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-classic.scss */
.event-template-classic .top-bar {
  background: var(--event-banner-band);
}

/* line 14, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-classic.scss */
.event-template-classic .event-header h1,
.event-template-classic .event-header h2,
.event-template-classic .event-header h3,
.event-template-classic .event-header h4,
.event-template-classic .event-header h5,
.event-template-classic .event-header .sub-title {
  color: white;
}

/* line 23, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-classic.scss */
.event-template-classic img.event-logo {
  width: var(--event-logo-size);
  max-width: 70%;
  margin-top: 20px;
  z-index: 100;
}

/*===============
Event-Promos
===============*/
/*===============
Header & Heading Section
===============*/
/* line 9, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-template-1 {
  /*.event-header {
    //height: var(--event-header-height); //only for template 1 not classic
  }*/
  /*.event-logo-container {
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    img.event-logo {
      width: $event-logo-size;
      max-width: 70%;
      margin-top:20px;
      z-index: 100;
    }
  }*/
}

/* line 13, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-template-1 .video-container,
.event-template-1 .event-img-container {
  height: var(--event-header-height);
}

/* line 29, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-template-1 img.event-logo {
  width: var(--event-logo-size);
  max-width: 70%;
  margin-top: 20px;
  z-index: 100;
}

/*=================
Banner Boxes Section
==================*/
/* line 41, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes {
  background: var(--event-banner-background);
  /* Option 1 */
  /* Option 2 */
}

/* line 44, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-1 {
  border-top: 2px solid var(--banner-highlight-color);
  border-bottom: 2px solid var(--banner-highlight-color);
}

/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-1 .banner-text {
  text-align: left;
  padding: 0 20px;
  height: 100%;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-1 .banner-text .info-heading {
  color: white;
  font-weight: normal;
  font-size: 0.9em;
}

/* line 55, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-1 .banner-text .info-heading i {
  color: var(--banner-highlight-color);
  margin-left: 10px;
}

/* line 60, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-1 .banner-text .info {
  color: var(--banner-highlight-color);
  text-transform: uppercase;
}

/* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 {
  border: none;
}

/* line 69, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 .banner-text {
  text-align: center;
  height: auto;
  font-size: 0.9em;
  background: white;
  border-radius: 5px;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
}

/* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 .banner-text .info-heading {
  display: none;
}

/* line 84, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 .banner-text .info {
  padding: 0;
  margin-bottom: 0;
  text-transform: uppercase;
  flex-grow: 1;
}

/* line 91, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 .banner-text .circle-icon {
  background: var(--banner-highlight-color);
  border-radius: 50%;
  padding: 0.2em;
  margin-right: 5px;
}

/* line 96, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
.event-banner-boxes.banner-option-2 .banner-text .circle-icon i {
  width: 1.5em;
  height: 1em;
  color: white;
}

@media (min-width: 786px) {
  /* line 109, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
  .event-banner-boxes.banner-option-1 .banner-row {
    border-left: 3px solid var(--banner-highlight-color);
  }
  /* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
  .event-banner-boxes.banner-option-1 .banner-row .banner-text {
    border-right: 3px solid var(--banner-highlight-color);
  }
  /* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-1.scss */
  .event-banner-boxes.banner-option-2 .banner-text {
    margin-bottom: 0;
  }
}

/*===============
Event-Promos
===============*/
/* line 6, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .event-heading {
  padding: 0;
  display: flex;
}

/* line 10, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .event-logo {
  position: relative;
  padding: 2.5rem;
  margin-top: 20px;
}

/* line 15, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .scheduled-by {
  position: relative;
  text-align: center;
  padding: 20px;
}

/* line 19, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .scheduled-by h4 {
  color: white;
}

/* line 22, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .scheduled-by .logo-bottom {
  width: 30%;
}

/* line 27, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .gotsport-banner .banner-logo {
  width: 50px;
  height: 50px;
}

/* line 30, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .gotsport-banner .banner-logo #gotsport-logo-square {
  width: auto;
}

/* line 34, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .gotsport-banner .banner-band {
  height: 40%;
}

/* line 38, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-template-2 .event-details {
  text-align: left;
  padding: 50px 40px;
}

/*===============
Header
===============*/
/* line 47, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-full-page {
  position: relative;
}

/* line 51, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-row {
  height: 100%;
  position: relative;
}

/* line 54, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-row .event-col {
  height: 100%;
}

/* line 56, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-row .event-col:last-child {
  background: var(--event-secondary-color);
}

/* line 62, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.calendar-col {
  width: 100%;
}

@media (min-width: 768px) {
  /* line 67, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
  .event-row {
    height: 100vh;
  }
  /* line 71, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
  .event-template-2 .event-logo {
    width: 100%;
    height: auto;
    margin-top: -70px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
  }
  /* line 81, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
  .event-template-2 .scheduled-by {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    z-index: 100;
  }
  /* line 87, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
  .event-template-2 .scheduled-by .logo-bottom {
    width: 100%;
  }
  /* line 92, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
  .calendar-col {
    width: 300px;
  }
}

/*===============
Calendar-v2
===============*/
/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-calendar-container {
  padding: 1rem;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar {
  display: flex;
  justify-content: center;
}

/* line 111, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar table {
  width: 100%;
}

/* line 113, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar table th {
  font-size: 0.8em;
  text-align: center;
}

/* line 117, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar table td {
  font-size: 0.8em;
  text-align: center;
  padding: 0.2rem 0.5rem;
  background-color: #f6f6f6;
  border: 5px white solid;
}

/* line 123, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar table td.event-dates {
  background: var(--event-dates-bg);
  color: white;
}

/* line 127, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
#calendar table td.next-date,
#calendar table td.prev-date {
  background: #e2e2e2;
}

/* line 135, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container {
  background: var(--event-primary-color);
  padding: 25px;
}

/* line 138, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container h3 {
  color: white;
}

/* line 141, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container .map-container {
  position: relative;
}

/* line 143, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container .map-container .hotsport {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 100px;
  left: 175px;
}

/* line 153, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container .us-map {
  fill: #0b143b;
}

/* line 156, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container p {
  color: white;
  padding: 0;
  margin: 0;
}

/* line 160, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.event-location-container p span {
  font-weight: bold;
}

/* line 166, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.more-info-container {
  background: var(--event-secondary-color);
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

/* line 172, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/pages/_event-promos-2.scss */
.more-info-container img.logo-bottom {
  width: 80%;
}

/* line 74, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#placement_624801_0 {
  position: relative;
}

/* line 76, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#placement_624801_0 .wallpaper {
  height: 100%;
}

/* line 78, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#placement_624801_0 .wallpaper img {
  position: absolute;
  width: 100%;
}

/*.dropdown-toggle::after {
  display: none !important;
}*/
/* line 90, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.5s;
}

/* line 96, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.bg {
  background: red;
}

/* line 100, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.bg2 {
  background: blue;
}

/* Elementor */
/* Elementor Seciton */
/* line 108, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
section.elementor-section {
  padding: 0;
}

/* accrodian content - list */
/* line 114, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
ul.faq-list li {
  margin: 15px 0;
}

/*============ Circle

.circle-container2 {
  width: 200px;
  height: 200px;
  background: $primary;
  border-radius: 50%;
  background-image: url('/wp-content/themes/gotsport-website/assets/img/circle.svg');
  .tick {
  position: absolute;
  left: 50%;
  top: 50%;
  //margin-left: -5px;
  //margin-top: -5px;
  transform: translate(-50%, -50%);
  .inner {
    text-align: center;
  }
  img.logo-icon {
    width: 25px;
    display: block;
    margin: 0 auto;
  }
}
  .tick:nth-child(1) {
  transform: rotate(0deg) translate(100px);
  .inner {
    transform: translate(-50%, -50%);
    }
  }
  .tick:nth-child(2) {
  transform: rotate(90deg) translate(100px);
  .inner {
    transform: rotate(-90deg)  translate(-50%, -50%);
    }
  }
  .tick:nth-child(3) {
  transform: rotate(180deg) translate(100px);
  .inner {
    transform: rotate(-180deg) translate(-50%, -50%);
    }
  }
  .tick:nth-child(4) {
  transform: rotate(270deg) translate(100px);
    .inner {
      transform: rotate(-270deg) translate(-50%, -50%);
    }
  }
}

@media (min-width:768px) {
  .circle-container2 {
    width: 400px;
    height: 400px;
    background: $primary;
    border-radius: 50%;
    background-image: url('/wp-content/themes/gotsport-website/assets/img/circle.svg');
    .tick {
    position: absolute;
    left: 50%;
    top: 50%;
    //margin-left: -5px;
    //margin-top: -5px;
    transform: translate(-50%, -50%);
    img.logo-icon {
      width: 25px;
        display: inline-block;
    }
  }
    .tick:nth-child(1) {
    transform: rotate(0deg) translate(200px);
    .inner {
      transform: translate(-50%, -50%);
      }
    }
    .tick:nth-child(2) {
    transform: rotate(90deg) translate(200px);
    .inner {
      transform: rotate(-90deg)  translate(-50%, -50%);
      }
    }
    .tick:nth-child(3) {
    transform: rotate(180deg) translate(200px);
    .inner {
      transform: rotate(-180deg) translate(-50%, -50%);
      }
    }
    .tick:nth-child(4) {
    transform: rotate(270deg) translate(200px);
      .inner {
        transform: rotate(-270deg) translate(-50%, -50%);
      }
    }
  }
}

============*/
/***************
GotSport



.outer-circle {
  width:500px;
  height:500px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  background:$primary;
  position: relative;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;


    .software {
    position: absolute;
    left: 50%;
    top: 50%;
    //margin-left: -5px;
    //margin-top: -5px;
    transform: translate(-50%, -50%);
      .inner {
        text-align: center;
      }
    }

    .software:nth-child(1) {
      transform: rotate(0deg) translate(250px);
    .inner {
      transform: translate(-50%, -50%);
      }
    }
    .software:nth-child(2) {
    transform: rotate(90deg) translate(250px);
    .inner {
      transform: rotate(-90deg)  translate(-50%, -50%);
      }
    }
    .software:nth-child(3) {
    transform: rotate(180deg) translate(250px);
    .inner {
      transform: rotate(-180deg) translate(-50%, -50%);
      }
    }
    .software:nth-child(4) {
    transform: rotate(270deg) translate(250px);
      .inner {
        transform: rotate(-270deg) translate(-50%, -50%);
      }
    }

}

.circle-container {
  width:400px;
  height:400px;
  position: relative;
  margin-right: auto;
  margin-left: auto;


  .circle-logo {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background: $primary;
    z-index: 100;
    height:80px;
    width: 80px;
    border-radius: 50%;
    img {
      width:100%;
    }
  }
  .quarter {
    width:200px;
    height:200px;
    display: flex;
    justify-content: center;
    align-items: center;
    p {
      color:white;
    }
  }

  .top-left {
    border-top-left-radius:100%;;
    background:#09f;
    position: absolute;
    left:0;
    p {
      margin-top:30px;
    }
  }

  .top-right {
    border-top-right-radius:100%;;
    background:#666;
    position: absolute;
    right: 0;
    p {
      margin-top:30px;
    }
  }

  .bottom-left {
    border-bottom-left-radius:100%;;
    background:#aaa;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .bottom-right {
    border-bottom-right-radius:100%;;
    background:#333;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .top-left:hover {
    background:red;
  }
  .top-right:hover {
    background:red;
  }
  .bottom-left:hover {
    background:red;
  }
  .bottom-right:hover {
    background:red;
  }
}

***************/
/* -------------------------------
Category Select Dropdown
------------------------------------ */
/* line 365, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.category-container select {
  padding: 8px 12px;
  color: #333333;
  background: white;
  border: 1px solid #dddddd;
  cursor: pointer;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearnace: none;
  margin-bottom: 10px;
  background-image: url(../arrow.html);
  /* Add custom arrow */
  background-position: right 10px top 50%;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 30px;
}

/* -------------------------------
Support


 .icon-support {
   i {
     font-size: 3rem;
     color: $secondary;
     margin-bottom: 1em;
   }
 }
------------------------------------ */
/*
.bg-pulse {
  animation: pulsing-animation 2s infinite;
}
*/
/*
@keyframes pulsing-animation {
  0% {
  box-shadow: 0 0px 0px rgba(97, 176, 67, 0.3);
  }
  50% {
    box-shadow: 0 0px 20px rgba(97, 176, 67, 0.3);
  }
  100% {
  box-shadow: 0 0px 0px rgba(97, 176, 67, 0.1);
  }
}*/
/*
.icon-menu {
  list-style: none;
  li {
    text-align: center;
    font-size: 0.8em;
    padding: 15px 10px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition:  all 0.3s;
    a {
      color: $font-color;
      img {
        width: 40px !important;
        margin: 0 auto 10px auto;
      }
    }
    &.current, &:hover {
       box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.3);
       transition: all 0.3s;
       -webkit-transition: all 0.3s;
       -moz-transition:  all 0.3s;
    }
  }

}
*/
/* line 445, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.promo-img {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.3);
}

/*
.icon-menu {
  transition: all 0.4s;
  left: 0;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  li {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition:  all 0.3s;
    padding: 15px 20px;å
    a {
      font-size: 0.8em;
      //padding: 15px 20px;
      display: flex;
      flex-direction: column;
      text-align: center;
      color: $font-color;
      img {
        width: 40px !important;
        margin: 0 auto 10px auto;
      }
    }
    &.current, &:hover {
       box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.3);
       transition: all 0.3s;
       -webkit-transition: all 0.3s;
       -moz-transition:  all 0.3s;
    }
  }

}
*/
/* line 484, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.img-app {
  position: relative;
  z-index: 100;
  height: 500px;
}

/* line 488, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.img-app img {
  height: 100%;
}

@media (min-width: 786px) {
  /* line 494, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
  .img-app {
    position: absolute;
    right: 0;
  }
}

@media (min-width: 992px) {
  /* line 501, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
  .img-app {
    right: 25%;
    top: -65px;
  }
}

/* line 508, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#website-carousel img {
  margin: 10px;
  border-radius: 0px;
  box-shadow: 2px 1px 37px -5px rgba(0, 0, 0, 0.43);
  -webkit-box-shadow: 2px 1px 17px -5px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 2px 1px 17px -5px rgba(0, 0, 0, 0.43);
}

/* line 518, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.fixed-top-padding {
  padding-top: 175px;
}

@media (min-width: 1200px) {
  /* line 523, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
  .fixed-top-padding {
    padding-top: 95px;
  }
}

/* line 529, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
ul.list-text-smaller li {
  font-size: 0.9em;
}

/*

.integrated-col-left, .integrated-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .integrated-tools {
    display: flex;
    margin: 10px 0;
    .integrated-text {
      flex: 1;
    }
    .integrated-img {
        padding-top: 10px;
      flex: 1;
    }
  }
}


.integrated-col-left  {
  .integrated-text {
    text-align:right;
  }
  .integrated-img {
    padding-left:10px;
  }
}

.integrated-col-right {
  .integrated-img {
    padding-right:10px;
  }
}*/
/* line 570, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.img-absolute {
  position: absolute;
}

/**********
Chat Bot
*************/
/* line 578, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.container-bot {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* line 586, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.chat {
  height: 300px;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* line 595, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
::-webkit-input-placeholder {
  color: 0.711;
}

/* line 599, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
input {
  border: 0;
  padding: 15px;
  margin-left: auto;
  border-radius: 10px;
}

/* line 606, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.messages {
  display: flex;
  flex-direction: column;
  overflow: scroll;
  height: 90%;
  width: 100%;
  background-color: white;
  padding: 15px;
  margin: 15px;
  border-radius: 10px;
}

/* line 618, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#bot {
  margin-right: auto;
}

/* line 622, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#user {
  margin-left: auto;
}

/* line 626, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.bot {
  font-family: Consolas, "Courier New", Menlo, source-code-pro, Monaco,
    monospace;
}

/* line 631, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.avatar {
  height: 25px;
}

/* line 635, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
.response {
  display: flex;
  align-items: center;
  margin: 1%;
}

/* Mobile */
@media only screen and (max-width: 980px) {
  /* line 644, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
  .container-bot {
    flex-direction: column;
    justify-content: flex-start;
  }
  /* line 648, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
  .chat {
    width: 75vw;
    margin: 10vw;
  }
}

/* line 656, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#customPrompt {
  font-family: Arial, sans-serif;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* line 661, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#findOutMore {
  color: #007bff;
  text-decoration: underline;
  margin-left: 10px;
}

/* line 667, ../../../../../Users/sheuneenta/Library/CloudStorage/OneDrive-GotSoccer,LLC/01.GotSport/00.SITES/GotSport 2023/scss/style.scss */
#findOutMore:hover {
  color: #0056b3;
  text-decoration: none;
}


/**********
Wallpaper Ad
*************/


/* line 1, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
#wallpaper-ad {
  position: absolute;
  /* Fixed position to cover the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

}

/* line 8, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
#wallpaper-ad img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  /* Ensures the image covers the whole area */
}

/* line 16, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
.login-header {
  background: rgba(1, 32, 110, 0.4);
}

/* line 16, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
.login-header,
.top-bar,
#announcement {
  position: relative;
  z-index: 5;
  /* Ensure it is above the wallpaper but below the nav */
}

#event-promo-slider {
  position: relative; /* must add to display above "absolute" wallpaper */
  z-index: 100 !important;
}

/* line 23, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
.login-wrap {
  z-index: 30;
}

/* line 39, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
footer {
  z-index: 10;
}

/* line 43, ../../../../../Volumes/LaCie_SD/00.GOTSPORT-ALL/01.SITES/GotSport 2024/scss/pages/_login-wallpaper.scss */
.content-login {
  z-index: 100;
}


/*--
========================
GOTSPORT LIVE 
=========================
---*/
#logo-live {
  height: 50px;
}

.navbar-live .navbar-nav .nav-item,
.navbar-nav.navbar-live .nav-item.active {
  /*------------------------------------------------------------*/
  /*	NAVBAR TOGGLER
  /*==================================================*/
}

.navbar-live .navbar-nav .nav-item .nav-link,
.navbar-nav.navbar-live .nav-item.active .nav-link {
  color: black;
  margin-right: 15px;
  padding: 15px;
}

.navbar-live .navbar-nav .nav-item .nav-link:hover,
.navbar-nav.navbar-live .nav-item.active .nav-link:hover {
  background: #e1e1e1;
}

.navbar-live .navbar-nav .nav-item.active > .nav-link,
.navbar-live .navbar-nav .nav-item:active > .nav-link,
.navbar-live .navbar-nav .nav-item:active:focus > .nav-link,
.navbar-live .navbar-nav .nav-item:focus > .nav-link,
.navbar-live .navbar-nav .nav-item:hover > .nav-link,
.navbar-nav.navbar-live .nav-item.active.active > .nav-link,
.navbar-nav.navbar-live .nav-item.active:active > .nav-link,
.navbar-nav.navbar-live .nav-item.active:active:focus > .nav-link,
.navbar-nav.navbar-live .nav-item.active:focus > .nav-link,
.navbar-nav.navbar-live .nav-item.active:hover > .nav-link {
  color: black;
}

.navbar-live .navbar-nav .nav-item.active > .nav-link > .caret,
.navbar-live .navbar-nav .nav-item:active > .nav-link > .caret,
.navbar-live .navbar-nav .nav-item:active:focus > .nav-link > .caret,
.navbar-live .navbar-nav .nav-item:focus > .nav-link > .caret,
.navbar-live .navbar-nav .nav-item:hover > .nav-link > .caret,
.navbar-nav.navbar-live .nav-item.active.active > .nav-link > .caret,
.navbar-nav.navbar-live .nav-item.active:active > .nav-link > .caret,
.navbar-nav.navbar-live .nav-item.active:active:focus > .nav-link > .caret,
.navbar-nav.navbar-live .nav-item.active:focus > .nav-link > .caret,
.navbar-nav.navbar-live .nav-item.active:hover > .nav-link > .caret {
  border-top-color: black;
}

.navbar-live .navbar-toggler .navbar-toggler-icon, .navbar-live .navbar-toggler .navbar-toggler-icon::after, .navbar-live .navbar-toggler .navbar-toggler-icon::before {
  background-color: black;
}

@media (min-width: 768px) {
  .navbar-live .navbar-nav .nav-item,
  .navbar-nav.navbar-live .nav-item.active {
    /*------------------------------------------------
      nav-callout
    ------------------------------------------------*/
  }
  .navbar-live .navbar-nav .nav-item .nav-link:hover,
  .navbar-nav.navbar-live .nav-item.active .nav-link:hover {
    background: none;
  }
  .navbar-live .navbar-nav .nav-item.active > .nav-link,
  .navbar-live .navbar-nav .nav-item:active > .nav-link,
  .navbar-live .navbar-nav .nav-item:active:focus > .nav-link,
  .navbar-live .navbar-nav .nav-item:focus > .nav-link,
  .navbar-live .navbar-nav .nav-item:hover > .nav-link,
  .navbar-nav.navbar-live .nav-item.active.active > .nav-link,
  .navbar-nav.navbar-live .nav-item.active:active > .nav-link,
  .navbar-nav.navbar-live .nav-item.active:active:focus > .nav-link,
  .navbar-nav.navbar-live .nav-item.active:focus > .nav-link,
  .navbar-nav.navbar-live .nav-item.active:hover > .nav-link {
    color: purple;
  }
  .navbar-live .navbar-nav .nav-item.active > .nav-link > .caret,
  .navbar-live .navbar-nav .nav-item:active > .nav-link > .caret,
  .navbar-live .navbar-nav .nav-item:active:focus > .nav-link > .caret,
  .navbar-live .navbar-nav .nav-item:focus > .nav-link > .caret,
  .navbar-live .navbar-nav .nav-item:hover > .nav-link > .caret,
  .navbar-nav.navbar-live .nav-item.active.active > .nav-link > .caret,
  .navbar-nav.navbar-live .nav-item.active:active > .nav-link > .caret,
  .navbar-nav.navbar-live .nav-item.active:active:focus > .nav-link > .caret,
  .navbar-nav.navbar-live .nav-item.active:focus > .nav-link > .caret,
  .navbar-nav.navbar-live .nav-item.active:hover > .nav-link > .caret {
    border-top-color: purple;
  }
  .navbar-live .navbar-nav .nav-item.nav-callout .nav-link,
  .navbar-nav.navbar-live .nav-item.active.nav-callout .nav-link {
    color: #fff;
    padding: 7px 25px;
    margin: 0;
  }
  .navbar-live .navbar-nav .nav-item.nav-callout .nav-link:hover,
  .navbar-nav.navbar-live .nav-item.active.nav-callout .nav-link:hover {
    background: green;
  }
}

.hero-live {
  background-image: url("../bg-live-2024.html");
  background-size: cover;
  background-position: top left;
  background-color: #1f0363;
  padding: 2rem 0px 6rem;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-live {
    padding: 4rem 0px 6rem;
  }
}

.live-iphone {
  margin-top: -80px;
  padding-top: 30px;
}

.gotsport-live-iphone {
  position: relative;
}

.gotsport-live-iphone img.iphone-blank {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0;
  margin: 0;
}

[class*="icon-purple"] {
  background: linear-gradient(135deg, #990fc3 0, #760fc3 16%, #652ec3 52%, #652ec3 52%, #0dd3c5 100%, #7db9e8 100%);
}

.icon-purple-right {
  border-radius: 25px 25px 0 25px;
}

.icon-purple-left {
  border-radius: 25px 25px 25px 0;
}

.video-icon-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.video-icon {
  width: 92px;
  height: 92px;
  border: 2px solid #fff;
  border-radius: 50% 50%;
  display: inline-block;
  background: transparent;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  background: red;
}

.video-icon i {
  font-size: 46px;
  line-height: 92px;
  color: #fff;
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.video-icon:before {
  content: "";
  width: 92px;
  height: 92px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 100%;
  left: 50%;
  margin-left: -46px;
  bottom: 10%;
  margin-bottom: -9px;
  -webkit-animation: doublePulsation 1.9s ease infinite;
  animation: doublePulsation 1.9s ease infinite;
  z-index: 0;
}


.video-icon:hover {
  background: #fff;
}

.video-icon:hover i {
  color: red;
}

.info {
  font-family: monospace;
  position: absolute;
  line-height: 20px;
  font-size: 14px;
  left: 20px;
  top: 20px;
}



/*--
  ========================
  END GOTSPORT LIVE 
  =========================
  ---*/