@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap");
:root {
  --tpr-red: #D2042D;
  --tpr-red-dark: #9E0221;
  --tpr-accent-red: #FF0000;
  --tpr-white: #FFFFFF;
  --tpr-soft-white: #F8F9FA;
  --tpr-pale-white: #FAFAFA;
  --tpr-black: #111111;
  --tpr-gray-muted: #6C757D;
  --tpr-border-color: #DEE2E6;
  --border-radius: 6px;
  --border-radius-lg: 6px;
}

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

html {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  height: 100%;
}

body, html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #F8F9FA;
  color: #111111;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

main {
  flex-grow: 1;
  display: block;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

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

hr {
  margin: 1.5rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #DEE2E6;
  opacity: 1;
}

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

a {
  color: #D2042D;
  text-decoration: none;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
a:hover {
  color: #9E0221;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

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

button,
select {
  text-transform: none;
}

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

.custom-list {
  list-style: none;
}
.custom-list li {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 8px;
}
.custom-list li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50%;
  height: 1px;
  background-color: #111111;
  margin-left: -25%;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.093ee89be9ed.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.fcc40ae9a542.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Italic";
  src: url("../fonts/Poppins-BlackItalic.e9c5c588e39d.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.header-large, .header-medium {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: inherit;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1, .h1 {
  font-size: clamp(1.6rem, 4vw + 0.8rem, 2.25rem);
}

h2, .h2 {
  font-size: clamp(1.35rem, 3vw + 0.6rem, 1.85rem);
}

h3, .h3 {
  font-size: clamp(1.2rem, 2.5vw + 0.4rem, 1.5rem);
}

h4, .h4 {
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.25rem);
}

h5, .h5 {
  font-size: clamp(1rem, 1.5vw + 0.2rem, 1.1rem);
  font-weight: 700;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
}

.header-large {
  font-size: clamp(1.6rem, 4vw + 0.8rem, 2.25rem);
}

.header-medium {
  font-size: clamp(1.15rem, 2.5vw + 0.4rem, 1.35rem);
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

@media (min-width: 576px) {
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .text-md-start {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-end {
    text-align: right !important;
  }
}
@media (min-width: 992px) {
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
}
.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 800 !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-primary, .text-danger {
  color: #D2042D !important;
}

.text-dark {
  color: #111111 !important;
}

.text-muted {
  color: #6C757D !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-success {
  color: #198754 !important;
}

.text-warning {
  color: #d39e00 !important;
}

.text-info {
  color: #0aa2c0 !important;
}

.text-secondary {
  color: #6C757D !important;
}

.red-hover:hover {
  color: #FF0000 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.small, small {
  font-size: 0.85em;
}

.fs-1 {
  font-size: 2.25rem !important;
}

.fs-2 {
  font-size: 1.85rem !important;
}

.fs-3 {
  font-size: 1.5rem !important;
}

.fs-4 {
  font-size: 1.25rem !important;
}

.fs-5 {
  font-size: 1.1rem !important;
}

.fs-6 {
  font-size: 0.95rem !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.6 !important;
}

.lh-lg {
  line-height: 1.8 !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.unified-page-shell {
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}
@media (max-width: 576px) {
  .unified-page-shell {
    padding: 1rem 0.75rem;
  }
}

.unified-page-shell-sm {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}
@media (max-width: 576px) {
  .unified-page-shell-sm {
    padding: 1rem 0.75rem;
  }
}

.unified-page-shell-lg {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}
@media (max-width: 576px) {
  .unified-page-shell-lg {
    padding: 1rem 0.75rem;
  }
}

.full-section {
  width: 100%;
  position: relative;
}

.responsive-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .responsive-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .responsive-grid.responsive-grid-equal {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .responsive-grid.responsive-grid-3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .responsive-grid.responsive-grid-sidebar-left {
    grid-template-columns: 1fr 2fr;
  }
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.g-0, .gx-0 {
  --gutter-x: 0;
}

.g-0, .gy-0 {
  --gutter-y: 0;
}

.g-1, .gx-1 {
  --gutter-x: 0.25rem;
}

.g-1, .gy-1 {
  --gutter-y: 0.25rem;
}

.g-2, .gx-2 {
  --gutter-x: 0.5rem;
}

.g-2, .gy-2 {
  --gutter-y: 0.5rem;
}

.g-3, .gx-3 {
  --gutter-x: 1rem;
}

.g-3, .gy-3 {
  --gutter-y: 1rem;
}

.g-4, .gx-4 {
  --gutter-x: 1.5rem;
}

.g-4, .gy-4 {
  --gutter-y: 1.5rem;
}

.g-5, .gx-5 {
  --gutter-x: 3rem;
}

.g-5, .gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 768px) {
  .g-md-3, .gx-md-3 {
    --gutter-x: 1rem;
  }
  .g-md-3, .gy-md-3 {
    --gutter-y: 1rem;
  }
  .g-md-4, .gx-md-4 {
    --gutter-x: 1.5rem;
  }
  .g-md-4, .gy-md-4 {
    --gutter-y: 1.5rem;
  }
}
.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.666667%;
}

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

.col-4 {
  flex: 0 0 auto;
  width: 33.333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.666667%;
}

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

.col-7 {
  flex: 0 0 auto;
  width: 58.333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.666667%;
}

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

.col-10 {
  flex: 0 0 auto;
  width: 83.333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.666667%;
}

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

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.d-none {
  display: none !important;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
}
.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

@media (min-width: 576px) {
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 768px) {
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
}
.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

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

.align-items-stretch {
  align-items: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

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

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-last {
  order: 6 !important;
}

@media (min-width: 768px) {
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

@media (min-width: 576px) {
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
}
@media (min-width: 768px) {
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

@media (min-width: 576px) {
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.w-50 {
  width: 50% !important;
}

.w-25 {
  width: 25% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vh-100 {
  height: 100vh !important;
}

@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }
}
.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.position-static {
  position: static !important;
}

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

.top-50 {
  top: 50% !important;
}

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

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

.start-50 {
  left: 50% !important;
}

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

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

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

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

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

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

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

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

@media (min-width: 768px) {
  .border-end-md {
    border-right: 1px solid #DEE2E6 !important;
  }
}
.border-danger {
  border-color: #D2042D !important;
}

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

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

.border-4 {
  border-width: 4px !important;
}

.rounded {
  border-radius: 6px !important;
}

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

.rounded-1 {
  border-radius: 4px !important;
}

.rounded-2 {
  border-radius: 6px !important;
}

.rounded-3 {
  border-radius: 12px !important;
}

.rounded-4 {
  border-radius: 16px !important;
}

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

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

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

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

.bg-dark {
  background-color: #111111 !important;
  color: #FFFFFF !important;
}

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

.bg-success {
  background-color: #198754 !important;
  color: #FFFFFF !important;
}

.bg-secondary {
  background-color: #6C757D !important;
  color: #FFFFFF !important;
}

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

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio, 56.25%);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16-9 {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.ratio-16-9 img, .ratio-16-9 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-4-3 {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.ratio-4-3 img, .ratio-4-3 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-team-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .ratio-team-photo {
    aspect-ratio: 16/9;
  }
}
.ratio-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-mobile-4x3-desktop-16x9 {
  --aspect-ratio: 75%;
}
@media (min-width: 768px) {
  .ratio-mobile-4x3-desktop-16x9 {
    --aspect-ratio: 56.25%;
  }
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none !important;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.15s ease-in-out;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus-visible {
  outline: 0;
  border-color: #D2042D;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.15);
}
.btn:disabled, .btn.disabled {
  pointer-events: none;
  opacity: 0.65;
  box-shadow: none;
}

.btn-primary,
.btn-danger {
  background-color: #D2042D;
  border-color: #D2042D;
  color: #FFFFFF !important;
}
.btn-primary:hover,
.btn-danger:hover {
  background-color: #9E0221;
  border-color: #9E0221;
  color: #FFFFFF !important;
}
.btn-primary:active,
.btn-danger:active {
  background-color: rgb(132.81875, 1.68125, 27.740625);
  border-color: rgb(132.81875, 1.68125, 27.740625);
}

.btn-dark {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
}
.btn-dark:hover {
  background-color: rgb(47.6, 47.6, 47.6);
  border-color: rgb(47.6, 47.6, 47.6);
  color: #FFFFFF !important;
}

.btn-light {
  background-color: #FFFFFF;
  border-color: #DEE2E6;
  color: #111111 !important;
}
.btn-light:hover {
  background-color: #F8F9FA;
  border-color: rgb(192.9827586207, 200.5, 208.0172413793);
  color: #111111 !important;
}

.btn-secondary {
  background-color: #6C757D;
  border-color: #6C757D;
  color: #FFFFFF !important;
}
.btn-secondary:hover {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}

.btn-success {
  background-color: #198754;
  border-color: #198754;
  color: #FFFFFF !important;
}
.btn-success:hover {
  background-color: rgb(18.625, 100.575, 62.58);
  border-color: rgb(18.625, 100.575, 62.58);
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #111111 !important;
}
.btn-warning:hover {
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-link {
  background-color: transparent;
  border-color: transparent;
  color: #D2042D;
  font-weight: 500;
}
.btn-link:hover {
  color: #9E0221;
  text-decoration: underline !important;
}

.btn-outline-primary,
.btn-outline-danger {
  background-color: transparent;
  border-color: #D2042D;
  color: #D2042D !important;
}
.btn-outline-primary:hover,
.btn-outline-danger:hover {
  background-color: #D2042D;
  border-color: #D2042D;
  color: #FFFFFF !important;
}

.btn-outline-dark {
  background-color: transparent;
  border-color: #111111;
  color: #111111 !important;
}
.btn-outline-dark:hover {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF !important;
}

.btn-outline-light {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #FFFFFF !important;
}
.btn-outline-light:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #111111 !important;
}

.btn-sm {
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.1rem;
  border-radius: 6px;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #111111;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 4px;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}
.btn-close:hover {
  opacity: 1;
}
.btn-close:focus {
  outline: 0;
  opacity: 1;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.25);
}

.store-button {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: #D2042D;
  border-color: #D2042D;
  color: #FFFFFF !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.store-button:hover {
  background-color: #9E0221;
  border-color: #9E0221;
}

@media (max-width: 768px) {
  .btn:not(.btn-sm):not(.btn-close):not(.btn-create-match-report) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.form-label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6C757D;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.85em;
  color: #6C757D;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.55rem 0.95rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid #DEE2E6;
  border-radius: 6px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form-control:focus {
  color: #111111;
  background-color: #FFFFFF;
  outline: 0;
  border-color: #D2042D;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.15);
}
.form-control::placeholder {
  color: rgb(147.4356223176, 155.1802575107, 162.0643776824);
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #F8F9FA;
  opacity: 1;
}

textarea.form-control {
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.55rem 2.25rem 0.55rem 0.95rem;
  -moz-padding-start: calc(0.95rem - 3px);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111111;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px 12px;
  border: 1px solid #DEE2E6;
  border-radius: 6px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  appearance: none;
}
.form-select:focus {
  outline: 0;
  border-color: #D2042D;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.15);
}
.form-select:disabled {
  background-color: #F8F9FA;
}

.form-check {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-check .form-check-input {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-right: 0.65rem;
  vertical-align: top;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #DEE2E6;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form-check .form-check-input[type=checkbox] {
  border-radius: 4px;
}
.form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check .form-check-input:focus {
  outline: 0;
  border-color: #D2042D;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.15);
}
.form-check .form-check-input:checked {
  background-color: #D2042D;
  border-color: #D2042D;
}
.form-check .form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check .form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check .form-check-label {
  cursor: pointer;
  font-size: 0.95rem;
  color: #111111;
  user-select: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:not(:last-child),
.input-group > .form-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .form-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6C757D;
  text-align: center;
  white-space: nowrap;
  background-color: #F8F9FA;
  border: 1px solid #DEE2E6;
  border-radius: 6px;
}
.input-group .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.is-invalid {
  border-color: #D2042D !important;
}
.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.25) !important;
}

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

.is-invalid ~ .invalid-feedback,
.is-invalid + .invalid-feedback {
  display: block;
}

.select2-container {
  width: 100% !important;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  min-height: 42px;
  border: 1px solid #DEE2E6 !important;
  border-radius: 6px !important;
  padding: 0.4rem 0.75rem;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.select2-container .select2-selection--single .select2-selection__rendered,
.select2-container .select2-selection--multiple .select2-selection__rendered {
  color: #111111;
  padding-left: 0;
  line-height: 1.6;
}
.select2-container .select2-selection--single .select2-selection__arrow,
.select2-container .select2-selection--multiple .select2-selection__arrow {
  height: 40px;
  right: 8px;
}
.select2-container.select2-container--focus .select2-selection--single, .select2-container.select2-container--open .select2-selection--single, .select2-container.select2-container--focus .select2-selection--multiple, .select2-container.select2-container--open .select2-selection--multiple {
  border-color: #D2042D !important;
  box-shadow: 0 0 0 0.25rem rgba(210, 4, 45, 0.15);
  outline: 0;
}

.select2-dropdown {
  border: 1px solid #DEE2E6 !important;
  border-radius: 6px !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.select2-results__option {
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
}
.select2-results__option--highlighted[aria-selected] {
  background-color: #D2042D !important;
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime-local],
  select,
  textarea,
  .form-control,
  .form-select,
  .select2-container .select2-selection--single {
    font-size: 16px !important;
    min-height: 44px;
  }
}
#id_password1_helptext ul {
  text-align: left;
  list-style-type: disc;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.5rem;
}

#div_id_remember {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
#div_id_remember .form-check-input {
  margin: 0;
}
#div_id_remember .form-check-label {
  margin-left: 0.5em;
}

.navbar {
  background-color: #FAFAFA !important;
  border-bottom: 1px solid #DEE2E6;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nav-full-section {
  width: 100%;
}

.navbar-actions-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand {
  padding: 10px 0 15px 35px;
  margin-right: 60px;
  color: #D2042D;
  display: flex !important;
  align-items: center;
  text-decoration: none;
}
.navbar-brand:hover {
  color: #111111;
}
.navbar-brand .navbar-brand-logo,
.navbar-brand .navbar-brand-svg {
  height: 110px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .navbar-brand {
    padding: 10px 0 15px 25px;
    margin-right: 30px;
  }
  .navbar-brand .navbar-brand-logo,
  .navbar-brand .navbar-brand-svg {
    height: 90px;
  }
}
@media (max-width: 576px) {
  .navbar-brand {
    padding: 15px 0 15px 15px;
    margin-right: 20px;
  }
  .navbar-brand .navbar-brand-logo,
  .navbar-brand .navbar-brand-svg {
    height: 76px;
  }
}

.nav,
.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav {
  flex-wrap: wrap;
}

.nav-item {
  list-style: none;
}

.navbar-nav {
  flex-direction: column;
}
@media (min-width: 768px) {
  .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
}

.nav-link {
  font-family: "Poppins-Italic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  color: #D2042D;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease-in-out;
}
.nav-link:hover {
  color: #111111;
}
.nav-link.show, .nav-link:focus {
  color: #D2042D !important;
}

@media (min-width: 768px) {
  .navbar .nav-link {
    margin-right: 20px;
  }
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-pills .nav-link {
  font-size: 0.95rem;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #6C757D;
  border-radius: 50rem;
  padding: 0.4rem 1rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
  background: transparent;
}
@media (min-width: 768px) {
  .nav-pills .nav-link {
    font-size: 1rem;
  }
}
.nav-pills .nav-link:hover {
  color: #111111;
  background-color: rgba(0, 0, 0, 0.04);
}
.nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover {
  color: #FFFFFF !important;
  background-color: #D2042D !important;
}

.navbar-toggler {
  padding: 0;
  border: none;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
}
.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon-custom {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 15px;
}
.navbar-toggler-icon-custom span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D2042D;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.navbar-toggler-icon-custom .top-bar {
  top: 0;
}
.navbar-toggler-icon-custom .middle-bar {
  top: 8px;
}
.navbar-toggler-icon-custom .bottom-bar {
  top: 16px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-custom .top-bar {
  top: 8px;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-custom .middle-bar {
  opacity: 0;
  transform: translateX(-20px);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon-custom .bottom-bar {
  top: 8px;
  transform: rotate(-45deg);
}

.navbar-account-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-account-actions .nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #D2042D;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  background: transparent;
  border: 1px solid transparent;
}
.navbar-account-actions .nav-icon-btn:hover {
  color: #111111;
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.navbar-account-actions .nav-icon-btn:active {
  transform: translateY(0);
}
.navbar-account-actions .nav-icon-btn:focus-visible {
  outline: 2px solid #D2042D;
  outline-offset: 2px;
}
.navbar-account-actions .nav-icon-btn.nav-icon-logout:hover {
  color: #9E0221;
  background-color: rgba(210, 4, 45, 0.08);
}

.collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
  overflow: hidden;
}
.collapse:not(.show) {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.collapse > * {
  min-height: 0;
  overflow: hidden;
}
.collapse.show {
  grid-template-rows: 1fr;
  opacity: 1;
}

.mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  cursor: pointer;
  user-select: none;
  color: #D2042D;
  transition: color 0.2s ease-in-out;
}
.mobile-accordion-trigger span {
  line-height: 1.2;
}
.mobile-accordion-trigger i {
  font-size: 0.85rem;
  color: #D2042D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease-in-out;
  transform-origin: center;
}
.mobile-accordion-trigger:hover, .mobile-accordion-trigger:focus {
  color: #111111;
}
.mobile-accordion-trigger:hover i, .mobile-accordion-trigger:focus i {
  color: #111111;
}
.mobile-accordion-trigger[aria-expanded=true] {
  color: #D2042D;
}
.mobile-accordion-trigger[aria-expanded=true] i {
  color: #D2042D;
  transform: rotate(180deg);
}

#mobile-u11-submenu {
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
}
#mobile-u11-submenu .nav-link {
  font-size: 1.05rem;
  padding: 0.35rem 0;
  color: #D2042D;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
#mobile-u11-submenu .nav-link:hover, #mobile-u11-submenu .nav-link:focus {
  color: #111111;
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .navbar-collapse {
    display: flex !important;
    grid-template-rows: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
  }
  .navbar-collapse > * {
    overflow: visible;
  }
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    border-top: 1px solid #DEE2E6;
    margin-top: 0.5rem;
  }
  .navbar-collapse .navbar-nav {
    padding: 1rem 0 1.5rem 20px;
  }
  .navbar-collapse .nav-link {
    font-size: 1.05rem;
    padding: 0.4rem 0;
  }
}
@media (max-width: 575.98px) {
  .navbar-collapse .navbar-nav {
    padding-left: 10px;
  }
}
.sub-nav-bar {
  background-color: #FAFAFA;
  overflow: hidden;
  max-height: 0;
  border-top: 0 solid #D2042D;
  border-bottom: 0 solid #DEE2E6;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.sub-nav-bar.active {
  max-height: 100px;
  border-top: 2px solid #D2042D;
  border-bottom: 1px solid #DEE2E6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.sub-nav-bar .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sub-nav-bar .nav-item {
  list-style: none;
}
.sub-nav-bar .nav-link {
  font-family: "Poppins-Italic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  padding: 0.85rem 0;
  margin-right: 2.5rem;
  color: #D2042D;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}
.sub-nav-bar .nav-link:hover {
  color: #111111;
}

.navbar-partner-bar {
  background-color: #FAFAFA;
  background-image: linear-gradient(45deg, rgba(17, 17, 17, 0.03) 25%, transparent 25%, transparent 50%, rgba(17, 17, 17, 0.03) 50%, rgba(17, 17, 17, 0.03) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
  min-height: 120px;
  border-bottom: 1px solid #DEE2E6;
  width: 100%;
}
.navbar-partner-bar .sponsor-glass-container {
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: none;
  background: transparent;
  border: none;
  padding-left: 0 !important;
}
.navbar-partner-bar .sponsor-label {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.55rem;
  margin-bottom: 0;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.navbar-partner-bar .navbar-partner-logo {
  max-height: 102px;
  width: auto;
  object-fit: contain;
}
.navbar-partner-bar .navbar-sponsor-logo {
  max-height: 25px !important;
  width: auto;
  object-fit: contain;
}
.navbar-partner-bar .navbar-partner-content {
  padding-left: 0;
  justify-content: center;
}
@media (max-width: 768px) {
  .navbar-partner-bar {
    min-height: 95px;
  }
  .navbar-partner-bar .navbar-partner-logo {
    max-height: 78px;
  }
  .navbar-partner-bar .navbar-sponsor-logo {
    max-height: 22px !important;
  }
}

.diagonal-pattern-light, .red-section {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
}

.diagonal-pattern-dark, .tpr-card-textured, .white-section {
  background-image: linear-gradient(45deg, rgba(17, 17, 17, 0.03) 25%, transparent 25%, transparent 50%, rgba(17, 17, 17, 0.03) 50%, rgba(17, 17, 17, 0.03) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
}

.red-section {
  background-color: #D2042D;
  color: #FFFFFF;
  border-bottom: 3px solid #9E0221;
}
.red-section a:not(.nav-link):not(.btn):not(.player-profile-card):not(.match-card):not(.list-group-item):not(.match-result-badge) {
  color: #FFFFFF;
  text-decoration: underline;
}
.red-section a:not(.nav-link):not(.btn):not(.player-profile-card):not(.match-card):not(.list-group-item):not(.match-result-badge):hover {
  color: #F8F9FA;
}

.white-section {
  background-color: #FAFAFA;
  color: #111111;
  border-bottom: 1px solid #DEE2E6;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FFFFFF;
  background-clip: border-box;
  border: 1px solid #DEE2E6;
  border-radius: 6px;
}
.card .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
  color: #111111;
}
.card .card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: transparent;
  border-bottom: 1px solid #DEE2E6;
}
.card .card-footer {
  padding: 0.75rem 1.25rem;
  background-color: transparent;
  border-top: 1px solid #DEE2E6;
}
.card .card-img-top {
  width: 100%;
  border-top-left-radius: calc(6px - 1px);
  border-top-right-radius: calc(6px - 1px);
}

.tpr-card, .philosophy-section, .tpr-card-textured {
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
  border-radius: 6px;
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
  color: #111111;
  background-image: none !important;
}
@media (max-width: 768px) {
  .tpr-card, .philosophy-section, .tpr-card-textured {
    padding: 1rem;
  }
}

.tpr-card-textured {
  background-color: #FAFAFA;
  background-image: inherit !important;
}

.hover-lift {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
}
.hover-lift:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.overlap-photo-container {
  z-index: 20;
  margin: 0 auto;
}

.overlap-section {
  z-index: 20;
  position: relative;
  margin-top: 0;
}

.sponsor-glass-container {
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-width: 160px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.sponsor-glass-container.horizontal {
  flex-direction: row;
  min-width: auto;
  padding: 1rem 2rem;
  gap: 2rem;
}

.sponsor-label {
  font-family: "Poppins-Italic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: -0.5rem;
}

.alert {
  position: relative;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.alert ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0;
  list-style: none;
}
.alert.alert-dismissible {
  padding-right: 3.5rem;
}
.alert.alert-dismissible .btn-close {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.alert-success {
  color: #9E0221;
  background-color: #fdf2f4;
  border-color: #f5c2c7;
}

.alert-danger,
.alert-error {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-debug {
  color: #111111;
  background-color: #FFFFFF;
  border-color: #d6e9c6;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 4px;
}
.badge.rounded-pill {
  border-radius: 50rem;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.tab-pane.fade {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.tab-pane.fade.show {
  opacity: 1;
}

@media (min-width: 992px) {
  #mobileContentTabsContent .tab-pane.fade {
    display: block !important;
    opacity: 1 !important;
  }
}
.score-display {
  min-width: 140px;
  white-space: nowrap;
  background-color: #ffffff;
  color: #D2042D;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: none;
}
.score-display .score-text {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #D2042D;
  line-height: 1;
}

.match-meta-pill {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
}

.motm-banner {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border: 1px solid #ffeeba;
  border-radius: 6px;
  padding: 0.75rem 1rem;
}
.motm-banner .motm-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #856404;
}
.motm-banner .motm-player-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.goal-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.goal-item:last-child {
  border-bottom: none;
}
.goal-item .goal-scorer-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.25;
}
.goal-item .goal-assist-text {
  font-size: 0.78rem;
  color: #6C757D;
}
.goal-item .goal-minute-badge {
  font-size: 0.75rem;
  font-weight: 400;
  background-color: #f8f9fa;
  color: #6C757D;
  border: 1px solid #DEE2E6;
  padding: 0.15rem 0.45rem;
  border-radius: 50rem;
  min-width: 30px;
  text-align: center;
}

.report-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #111111;
  letter-spacing: 0.01em;
}

.manager-quote-box {
  background-color: #fafafa;
  border-left: 4px solid #D2042D !important;
}

.author-avatar-chip {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(210, 4, 45, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.team-display {
  padding: 0.5rem 1rem;
}
.team-display .header-large {
  line-height: 1.15;
}

.summary-stat-box {
  min-width: 48px;
  padding: 0.25rem 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .summary-stat-box {
    min-width: 60px;
    padding: 0.5rem 1rem;
  }
}
.summary-stat-box .stat-key {
  font-size: 0.6rem;
}
@media (min-width: 768px) {
  .summary-stat-box .stat-key {
    font-size: 0.7rem;
  }
}
.summary-stat-box .stat-value {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .summary-stat-box .stat-value {
    font-size: 1.25rem;
  }
}

.btn-create-match-report {
  min-height: auto;
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  font-weight: 500;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-create-match-report:hover {
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .btn-create-match-report {
    font-size: 0.875rem;
    padding: 0.45rem 1.15rem;
  }
}

.match-card {
  border: none;
  border-bottom: 1px solid #DEE2E6;
  transition: background-color 0.2s ease;
  color: #111111 !important;
  text-decoration: none !important;
}
.match-card:last-child {
  border-bottom: none;
}
.match-card:hover {
  background-color: #F8F9FA;
  color: #111111 !important;
}
.match-card .match-card-header {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .match-card .match-card-header {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }
}
.match-card .match-teams-score {
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .match-card .match-teams-score {
    font-size: 1.35rem;
  }
}
.match-card .match-teams-score .team-name-left,
.match-card .match-teams-score .team-name-right {
  max-width: 110px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
}
@media (min-width: 576px) {
  .match-card .match-teams-score .team-name-left,
  .match-card .match-teams-score .team-name-right {
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .match-card .match-teams-score .team-name-left,
  .match-card .match-teams-score .team-name-right {
    max-width: 320px;
    font-weight: 400;
  }
}
.match-card .match-teams-score .match-score-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.55rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .match-card .match-teams-score .match-score-badge {
    font-size: 1.2rem;
    padding: 0.4rem 1.25rem;
  }
}
.match-card .match-result-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  min-width: 28px;
  font-weight: 500;
  display: inline-block;
}
@media (min-width: 768px) {
  .match-card .match-result-badge {
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
    min-width: 40px;
  }
}

.squad-list {
  max-width: 500px;
}
.squad-list .squad-player-item {
  border-color: rgba(0, 0, 0, 0.08) !important;
  padding: 0.75rem 1rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .squad-list .squad-player-item {
    padding: 0.6rem 0.75rem;
  }
}
.squad-list .squad-player-item .player-icon-wrapper {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .squad-list .squad-player-item .player-icon-wrapper {
    width: 36px;
    height: 36px;
    margin-right: 0.9rem;
  }
}
.squad-list .squad-player-item .player-icon-wrapper i {
  font-size: 1.5rem;
  color: #6C757D;
}
@media (max-width: 576px) {
  .squad-list .squad-player-item .player-icon-wrapper i {
    font-size: 1.2rem;
  }
}
.squad-list .squad-player-item .player-icon-wrapper .squad-number-overlay {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.72rem;
  font-weight: 800;
  color: #111111;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.9), 0 0 2px rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
@media (max-width: 576px) {
  .squad-list .squad-player-item .player-icon-wrapper .squad-number-overlay {
    font-size: 0.62rem;
  }
}
.squad-list .squad-player-item .player-name {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111111;
  text-align: left;
  transition: color 0.2s ease;
}
@media (max-width: 576px) {
  .squad-list .squad-player-item .player-name {
    font-size: 0.85rem;
  }
}
.squad-list .squad-player-item:hover {
  background-color: rgba(210, 4, 45, 0.04) !important;
}
.squad-list .squad-player-item:hover .player-icon-wrapper {
  background-color: #D2042D;
}
.squad-list .squad-player-item:hover .player-icon-wrapper i {
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
}
.squad-list .squad-player-item:hover .player-icon-wrapper .squad-number-overlay {
  color: #D2042D;
  text-shadow: none;
}
.squad-list .squad-player-item:hover .player-name {
  color: #D2042D !important;
}

.club-kit-jersey,
.club-kit-jersey-card {
  display: inline-block;
  background: linear-gradient(to right, #D2042D 50%, #FFFFFF 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
}

.club-kit-jersey {
  font-size: 1.4rem;
  vertical-align: middle;
}

.club-kit-jersey-card {
  font-size: 1.5rem;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 6px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  color: #111111;
  text-decoration: none;
  background-color: #FFFFFF;
  border: 1px solid #DEE2E6;
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-action {
  width: 100%;
  color: #111111;
  text-align: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.list-group-item-action:hover {
  color: #111111;
  background-color: #F8F9FA;
}

.tpr-tabs {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border-bottom: 2px solid #DEE2E6 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.tpr-tabs .nav-item {
  margin: 0 !important;
  flex: 1 1 auto;
  text-align: center;
}
.tpr-tabs .nav-link {
  border: none !important;
  border-radius: 0 !important;
  color: #6C757D !important;
  background: transparent !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  border-bottom: 3px solid transparent !important;
  margin-bottom: -2px !important;
  white-space: nowrap !important;
  min-height: 40px !important;
  text-decoration: none !important;
}
.tpr-tabs .nav-link:hover {
  color: #111111 !important;
  background-color: rgba(0, 0, 0, 0.03) !important;
}
.tpr-tabs .nav-link.active {
  color: #D2042D !important;
  border-bottom-color: #D2042D !important;
  background-color: transparent !important;
  font-weight: 800 !important;
}

.footer {
  background-color: #FAFAFA;
  border-top: 1px solid #DEE2E6;
  padding: 3rem 0 2rem 0;
  width: 100%;
}
.footer h5 {
  color: #111111;
}
.footer p, .footer a {
  color: #6C757D;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer a:hover {
  color: #D2042D !important;
}
.footer i.text-danger {
  color: #D2042D !important;
}
.footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer .footer-social-link:hover {
  background-color: rgba(210, 4, 45, 0.08);
  color: #D2042D !important;
}

.home-page-authenticated {
  display: flex;
  min-height: 50vh;
  margin: 1rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .home-page-authenticated {
    flex-direction: column;
  }
}

.home-page-authenticated-half-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  .home-page-authenticated-half-section {
    padding: 2rem 1rem;
  }
}

.logo-sponsor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .logo-sponsor-container {
    gap: 3rem;
    flex-direction: column;
  }
}

.home-page-authenticated-club-logo,
.home-page-not-authenticated-logo:first-child,
.info-page-logo:first-child {
  max-height: 450px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .home-page-authenticated-club-logo,
  .home-page-not-authenticated-logo:first-child,
  .info-page-logo:first-child {
    max-width: 80%;
    max-height: 180px;
  }
}

.home-page-authenticated-sponsor-logo,
.home-page-not-authenticated-logo:last-child {
  max-height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .home-page-authenticated-sponsor-logo,
  .home-page-not-authenticated-logo:last-child {
    max-width: 100%;
    max-height: 45px;
  }
}

.google-map-iframe {
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.teams-page {
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .teams-page {
    padding: 1.5rem 0.5rem;
  }
}

.teams-page-team-photo {
  max-width: 80%;
  height: auto;
  padding: 3rem 0;
}
@media (max-width: 768px) {
  .teams-page-team-photo {
    max-width: 100%;
    padding: 1rem 0;
  }
}

.stats-list {
  max-width: 300px;
  width: 100%;
}

.match-report-page {
  display: flex;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .match-report-page {
    flex-direction: column;
  }
}

.match-report-page-half-section .header-large {
  display: inline-block;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom: 6px solid #111111;
}

.match-form-page label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6C757D;
  margin-bottom: 0.4rem;
}
.match-form-page textarea.form-control {
  line-height: 1.6;
  min-height: 180px;
}

.player-avatar-circle {
  border-radius: 50%;
  object-fit: cover;
}

.info-page-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .info-page-logo-container {
    flex-direction: column;
    gap: 1rem;
  }
}

.info-page-logo {
  max-width: 45%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .info-page-logo {
    max-width: 60%;
  }
}

.general-page-background {
  display: flex;
  min-height: 100vh;
  position: relative;
  background-color: #D2042D;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
  background-size: 50px 50px;
}
.general-page-background .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #FFFFFF;
  padding: 1rem;
  border-radius: 6px;
  z-index: 1;
  width: 80%;
}
@media (max-width: 576px) {
  .general-page-background {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .general-page-background .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 2rem auto;
    width: 90%;
    padding: 1.5rem;
    border: 1px solid #DEE2E6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .general-page-background .container h1, .general-page-background .container h2, .general-page-background .container h3 {
    font-size: 1.5rem;
  }
}

.auth-page .logo-sponsor-container {
  gap: 2.25rem;
}
@media (max-width: 576px) {
  .auth-page .logo-sponsor-container {
    flex-direction: row;
    align-items: center;
  }
}
.auth-page .home-page-authenticated-club-logo,
.auth-page .home-page-authenticated-sponsor-logo {
  max-height: 250px;
  width: auto;
}
@media (max-width: 576px) {
  .auth-page .home-page-authenticated-club-logo,
  .auth-page .home-page-authenticated-sponsor-logo {
    max-height: 120px;
  }
}

/*# sourceMappingURL=style.css.daac94b79557.map */
