

/* Start:/local/templates/gazpromcup/assets/css/photoswipe.css?17764147787423*/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/* End */


/* Start:/local/templates/gazpromcup/assets/css/main.min.css?1777654202360848*/

@charset "UTF-8";@-webkit-keyframes splide-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes splide-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@-webkit-keyframes crossfadeDirect{0%,35%,to{opacity:1}50%,85%{opacity:0}}@keyframes crossfadeDirect{0%,35%,to{opacity:1}50%,85%{opacity:0}}@-webkit-keyframes crossfade{0%,35%,to{opacity:1}50%,85%{opacity:0}}@keyframes crossfade{0%,35%,to{opacity:1}50%,85%{opacity:0}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.splide__list{-webkit-backface-visibility:hidden;backface-visibility:hidden;display:-ms-flexbox;display:-webkit-box;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;-webkit-box-align:center;align-items:center;display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img,.table>thead{vertical-align:bottom}.splide__spinner{-webkit-animation:splide-loading 1s linear infinite;animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@font-face{font-family:"Mulish-Regular";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:"Mulish-Medium";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-Medium.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:"Mulish-ExtraBold";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-ExtraBold.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:"Mulish-ExtraBoldItalic";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-ExtraBoldItalic.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:"Mulish-Black";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-Black.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:"Mulish-BlackItalic";src:url(/local/templates/gazpromcup/assets/css/../fonts/Mulish-BlackItalic.woff) format("woff");font-weight:500;font-style:normal}:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-red-basic:#EF3E3B;--bs-blue-basic:#3878DB;--bs-dark-blue-basic:#11294D;--bs-gray-20:#D7D7D7;--bs-orange-100:#EB6D01;--bs-blue-100:#2787F5;--bs-dark-blue-100:#005D94;--bs-dark-blue-90:#0073B7;--bs-primary-rgb:13, 110, 253;--bs-secondary-rgb:108, 117, 125;--bs-success-rgb:25, 135, 84;--bs-info-rgb:13, 202, 240;--bs-warning-rgb:255, 193, 7;--bs-danger-rgb:220, 53, 69;--bs-light-rgb:248, 249, 250;--bs-dark-rgb:33, 37, 41;--bs-red-basic-rgb:239, 62, 59;--bs-blue-basic-rgb:56, 120, 219;--bs-dark-blue-basic-rgb:17, 41, 77;--bs-gray-20-rgb:215, 215, 215;--bs-orange-100-rgb:235, 109, 1;--bs-blue-100-rgb:39, 135, 245;--bs-dark-blue-100-rgb:0, 93, 148;--bs-dark-blue-90-rgb:0, 115, 183;--bs-primary-text-emphasis:rgb(5.2, 44, 101.2);--bs-secondary-text-emphasis:rgb(43.2, 46.8, 50);--bs-success-text-emphasis:rgb(10, 54, 33.6);--bs-info-text-emphasis:rgb(5.2, 80.8, 96);--bs-warning-text-emphasis:rgb(102, 77.2, 2.8);--bs-danger-text-emphasis:rgb(88, 21.2, 27.6);--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:rgb(206.6, 226, 254.6);--bs-secondary-bg-subtle:rgb(225.6, 227.4, 229);--bs-success-bg-subtle:rgb(209, 231, 220.8);--bs-info-bg-subtle:rgb(206.6, 244.4, 252);--bs-warning-bg-subtle:rgb(255, 242.6, 205.4);--bs-danger-bg-subtle:rgb(248, 214.6, 217.8);--bs-light-bg-subtle:rgb(251.5, 252, 252.5);--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:rgb(158.2, 197, 254.2);--bs-secondary-border-subtle:rgb(196.2, 199.8, 203);--bs-success-border-subtle:rgb(163, 207, 186.6);--bs-info-border-subtle:rgb(158.2, 233.8, 249);--bs-warning-border-subtle:rgb(255, 230.2, 155.8);--bs-danger-border-subtle:rgb(241, 174.2, 180.6);--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255, 255, 255;--bs-black-rgb:0, 0, 0;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:"Mulish-Regular", sans-serif;--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33, 37, 41;--bs-body-bg:#fff;--bs-body-bg-rgb:255, 255, 255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0, 0, 0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33, 37, 41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233, 236, 239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33, 37, 41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248, 249, 250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13, 110, 253;--bs-link-decoration:underline;--bs-link-hover-color:rgb(10.4, 88, 202.4);--bs-link-hover-color-rgb:10, 88, 202;--bs-code-color:#d63384;--bs-highlight-color:#212529;--bs-highlight-bg:rgb(255, 242.6, 205.4);--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222, 226, 230;--bs-body-bg:#212529;--bs-body-bg-rgb:33, 37, 41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255, 255, 255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222, 226, 230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52, 58, 64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222, 226, 230;--bs-tertiary-bg:rgb(42.5, 47.5, 52.5);--bs-tertiary-bg-rgb:43, 48, 53;--bs-primary-text-emphasis:rgb(109.8, 168, 253.8);--bs-secondary-text-emphasis:rgb(166.8, 172.2, 177);--bs-success-text-emphasis:rgb(117, 183, 152.4);--bs-info-text-emphasis:rgb(109.8, 223.2, 246);--bs-warning-text-emphasis:rgb(255, 217.8, 106.2);--bs-danger-text-emphasis:rgb(234, 133.8, 143.4);--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:rgb(2.6, 22, 50.6);--bs-secondary-bg-subtle:rgb(21.6, 23.4, 25);--bs-success-bg-subtle:rgb(5, 27, 16.8);--bs-info-bg-subtle:rgb(2.6, 40.4, 48);--bs-warning-bg-subtle:rgb(51, 38.6, 1.4);--bs-danger-bg-subtle:rgb(44, 10.6, 13.8);--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:rgb(7.8, 66, 151.8);--bs-secondary-border-subtle:rgb(64.8, 70.2, 75);--bs-success-border-subtle:rgb(15, 81, 50.4);--bs-info-border-subtle:rgb(7.8, 121.2, 144);--bs-warning-border-subtle:rgb(153, 115.8, 4.2);--bs-danger-border-subtle:rgb(132, 31.8, 41.4);--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:rgb(109.8, 168, 253.8);--bs-link-hover-color:rgb(138.84, 185.4, 254.04);--bs-link-color-rgb:110, 168, 254;--bs-link-hover-color-rgb:139, 185, 254;--bs-code-color:rgb(230.4, 132.6, 181.2);--bs-highlight-color:#dee2e6;--bs-highlight-bg:rgb(102, 77.2, 2.8);--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:rgb(117, 183, 152.4);--bs-form-valid-border-color:rgb(117, 183, 152.4);--bs-form-invalid-color:rgb(234, 133.8, 143.4);--bs-form-invalid-border-color:rgb(234, 133.8, 143.4)}*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h3,.h4,.h5,.h6,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}.h1,.h2,dd,h1,h2{margin-bottom:.5rem}.h1,.h2,h1,h2{margin-top:0;color:var(--bs-heading-color)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}address,dl,ol,p,ul{margin-bottom:1rem}dl,ol,ul{margin-top:0}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-left:0}blockquote,figure{margin:0 0 1rem}.small,small{font-size:.875em}.mark,mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity, 1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace)}samp{font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto}pre code{font-size:inherit;word-break:normal}code,kbd,pre{font-size:.875em}code{color:var(--bs-code-color);word-wrap:break-word}a>code,pre code{color:inherit}kbd{padding:.1875rem .375rem;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:1rem;padding-bottom:1rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label,output{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}.form-control[type=file]:not(:disabled):not([readonly]),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;line-height:inherit;font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button{cursor:pointer;-webkit-filter:grayscale(1);filter:grayscale(1)}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-weight:300;line-height:1.2;font-size:calc(1.625rem + 4.5vw)}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-weight:300;line-height:1.2;font-size:calc(1.575rem + 3.9vw)}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-weight:300;line-height:1.2;font-size:calc(1.525rem + 3.3vw)}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-weight:300;line-height:1.2;font-size:calc(1.475rem + 2.7vw)}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-weight:300;line-height:1.2;font-size:calc(1.425rem + 2.1vw)}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-weight:300;line-height:1.2;font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child,.footer-content p:last-child,.news-detail-text ul li:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-2xl,.container-3xl,.container-4xl,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media (min-width:36rem){.container,.container-sm{max-width:32rem}}@media (min-width:48rem){.container,.container-md,.container-sm{max-width:45rem}}@media (min-width:62rem){.container,.container-lg,.container-md,.container-sm{max-width:58rem}}@media (min-width:75rem){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:72rem}}@media (min-width:90rem){.container,.container-2xl,.container-lg,.container-md,.container-sm,.container-xl{max-width:82rem}}@media (min-width:100rem){.container,.container-2xl,.container-3xl,.container-lg,.container-md,.container-sm,.container-xl{max-width:86rem}}@media (min-width:125rem){.container,.container-2xl,.container-3xl,.container-4xl,.container-lg,.container-md,.container-sm,.container-xl{max-width:92rem}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:36rem;--bs-breakpoint-md:48rem;--bs-breakpoint-lg:62rem;--bs-breakpoint-xl:75rem;--bs-breakpoint-2xl:90rem;--bs-breakpoint-3xl:100rem;--bs-breakpoint-4xl:125rem}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-.5*var(--bs-gutter-x));margin-left:calc(-.5*var(--bs-gutter-x))}.row>*{-ms-flex-negative:0;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.col{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-1>*,.row-cols-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-1>*{width:100%}.row-cols-2>*,.row-cols-3>*,.row-cols-4>*,.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-3>*,.row-cols-4>*,.row-cols-5>*{width:33.33333333%}.row-cols-4>*,.row-cols-5>*{width:25%}.row-cols-5>*{width:20%}.col-1,.col-2,.col-3,.col-4,.col-5,.col-auto,.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-1,.col-2,.col-3,.col-4,.col-5,.col-auto{width:auto}.col-1,.col-2,.col-3,.col-4,.col-5{width:8.33333333%}.col-2,.col-3,.col-4,.col-5{width:16.66666667%}.col-3,.col-4,.col-5{width:25%}.col-4,.col-5{width:33.33333333%}.col-5{width:41.66666667%}.col-10,.col-11,.col-12,.col-6,.col-7,.col-8,.col-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.col-10,.col-11,.col-12,.col-7,.col-8,.col-9{width:58.33333333%}.col-10,.col-11,.col-12,.col-8,.col-9{width:66.66666667%}.col-10,.col-11,.col-12,.col-9{width:75%}.col-10,.col-11,.col-12{width:83.33333333%}.col-11,.col-12{width:91.66666667%}.col-12{width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}.g-6,.gx-6{--bs-gutter-x:4rem}.g-6,.gy-6{--bs-gutter-y:4rem}.g-7,.gx-7{--bs-gutter-x:5rem}.g-7,.gy-7{--bs-gutter-y:5rem}.g-8,.gx-8{--bs-gutter-x:6rem}.g-8,.gy-8{--bs-gutter-y:6rem}@media (min-width:36rem){.col-sm{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-sm-1>*,.row-cols-sm-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-sm-1>*{width:100%}.row-cols-sm-2>*,.row-cols-sm-3>*,.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-sm-3>*,.row-cols-sm-4>*{width:33.33333333%}.row-cols-sm-4>*{width:25%}.col-sm-1,.col-sm-auto,.row-cols-sm-5>*,.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.col-sm-1,.col-sm-auto,.row-cols-sm-6>*{width:16.66666667%}.col-sm-1,.col-sm-auto{width:auto}.col-sm-1{width:8.33333333%}.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7{width:25%}.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7{width:33.33333333%}.col-sm-5,.col-sm-6,.col-sm-7{width:41.66666667%}.col-sm-6,.col-sm-7{width:50%}.col-sm-7{width:58.33333333%}.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-8,.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-9{width:75%}.col-sm-10,.col-sm-11,.col-sm-12{width:83.33333333%}.col-sm-11,.col-sm-12{width:91.66666667%}.col-sm-12{width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}.g-sm-6,.gx-sm-6{--bs-gutter-x:4rem}.g-sm-6,.gy-sm-6{--bs-gutter-y:4rem}.g-sm-7,.gx-sm-7{--bs-gutter-x:5rem}.g-sm-7,.gy-sm-7{--bs-gutter-y:5rem}.g-sm-8,.gx-sm-8{--bs-gutter-x:6rem}.g-sm-8,.gy-sm-8{--bs-gutter-y:6rem}}@media (min-width:48rem){.col-md{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-md-1>*,.row-cols-md-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-md-1>*{width:100%}.row-cols-md-2>*,.row-cols-md-3>*,.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-md-3>*,.row-cols-md-4>*{width:33.33333333%}.row-cols-md-4>*{width:25%}.col-md-1,.col-md-auto,.row-cols-md-5>*,.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.col-md-1,.col-md-auto,.row-cols-md-6>*{width:16.66666667%}.col-md-1,.col-md-auto{width:auto}.col-md-1{width:8.33333333%}.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7{width:25%}.col-md-4,.col-md-5,.col-md-6,.col-md-7{width:33.33333333%}.col-md-5,.col-md-6,.col-md-7{width:41.66666667%}.col-md-6,.col-md-7{width:50%}.col-md-7{width:58.33333333%}.col-md-10,.col-md-11,.col-md-12,.col-md-8,.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-md-10,.col-md-11,.col-md-12,.col-md-9{width:75%}.col-md-10,.col-md-11,.col-md-12{width:83.33333333%}.col-md-11,.col-md-12{width:91.66666667%}.col-md-12{width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}.g-md-6,.gx-md-6{--bs-gutter-x:4rem}.g-md-6,.gy-md-6{--bs-gutter-y:4rem}.g-md-7,.gx-md-7{--bs-gutter-x:5rem}.g-md-7,.gy-md-7{--bs-gutter-y:5rem}.g-md-8,.gx-md-8{--bs-gutter-x:6rem}.g-md-8,.gy-md-8{--bs-gutter-y:6rem}}@media (min-width:62rem){.col-lg{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-lg-1>*,.row-cols-lg-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-lg-1>*{width:100%}.row-cols-lg-2>*,.row-cols-lg-3>*,.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-lg-3>*,.row-cols-lg-4>*{width:33.33333333%}.row-cols-lg-4>*{width:25%}.col-lg-1,.col-lg-auto,.row-cols-lg-5>*,.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.col-lg-1,.col-lg-auto,.row-cols-lg-6>*{width:16.66666667%}.col-lg-1,.col-lg-auto{width:auto}.col-lg-1{width:8.33333333%}.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7{width:25%}.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7{width:33.33333333%}.col-lg-5,.col-lg-6,.col-lg-7{width:41.66666667%}.col-lg-6,.col-lg-7{width:50%}.col-lg-7{width:58.33333333%}.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-8,.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-9{width:75%}.col-lg-10,.col-lg-11,.col-lg-12{width:83.33333333%}.col-lg-11,.col-lg-12{width:91.66666667%}.col-lg-12{width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}.g-lg-6,.gx-lg-6{--bs-gutter-x:4rem}.g-lg-6,.gy-lg-6{--bs-gutter-y:4rem}.g-lg-7,.gx-lg-7{--bs-gutter-x:5rem}.g-lg-7,.gy-lg-7{--bs-gutter-y:5rem}.g-lg-8,.gx-lg-8{--bs-gutter-x:6rem}.g-lg-8,.gy-lg-8{--bs-gutter-y:6rem}}@media (min-width:75rem){.col-xl{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-xl-1>*,.row-cols-xl-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-xl-1>*{width:100%}.row-cols-xl-2>*,.row-cols-xl-3>*,.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.row-cols-xl-3>*,.row-cols-xl-4>*{width:33.33333333%}.row-cols-xl-4>*{width:25%}.col-xl-1,.col-xl-auto,.row-cols-xl-5>*,.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:20%}.col-xl-1,.col-xl-auto,.row-cols-xl-6>*{width:16.66666667%}.col-xl-1,.col-xl-auto{width:auto}.col-xl-1{width:8.33333333%}.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7{width:25%}.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7{width:33.33333333%}.col-xl-5,.col-xl-6,.col-xl-7{width:41.66666667%}.col-xl-6,.col-xl-7{width:50%}.col-xl-7{width:58.33333333%}.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-8,.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-9{width:75%}.col-xl-10,.col-xl-11,.col-xl-12{width:83.33333333%}.col-xl-11,.col-xl-12{width:91.66666667%}.col-xl-12{width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}.g-xl-6,.gx-xl-6{--bs-gutter-x:4rem}.g-xl-6,.gy-xl-6{--bs-gutter-y:4rem}.g-xl-7,.gx-xl-7{--bs-gutter-x:5rem}.g-xl-7,.gy-xl-7{--bs-gutter-y:5rem}.g-xl-8,.gx-xl-8{--bs-gutter-x:6rem}.g-xl-8,.gy-xl-8{--bs-gutter-y:6rem}}@media (min-width:90rem){.col-2xl{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-2xl-1>*,.row-cols-2xl-2>*,.row-cols-2xl-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-2xl-1>*,.row-cols-2xl-2>*{width:100%}.row-cols-2xl-2>*{width:50%}.row-cols-2xl-3>*,.row-cols-2xl-4>*,.row-cols-2xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-2xl-4>*,.row-cols-2xl-5>*{width:25%}.row-cols-2xl-5>*{width:20%}.col-2xl-1,.col-2xl-2,.col-2xl-auto,.row-cols-2xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-2xl-1,.col-2xl-2,.col-2xl-auto{width:auto}.col-2xl-1,.col-2xl-2{width:8.33333333%}.col-2xl-2{width:16.66666667%}.col-2xl-3,.col-2xl-4,.col-2xl-5,.col-2xl-6,.col-2xl-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-2xl-4,.col-2xl-5,.col-2xl-6,.col-2xl-7{width:33.33333333%}.col-2xl-5,.col-2xl-6,.col-2xl-7{width:41.66666667%}.col-2xl-6,.col-2xl-7{width:50%}.col-2xl-7{width:58.33333333%}.col-2xl-10,.col-2xl-11,.col-2xl-12,.col-2xl-8,.col-2xl-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-2xl-10,.col-2xl-11,.col-2xl-12,.col-2xl-9{width:75%}.col-2xl-10,.col-2xl-11,.col-2xl-12{width:83.33333333%}.col-2xl-11,.col-2xl-12{width:91.66666667%}.col-2xl-12{width:100%}.offset-2xl-0{margin-left:0}.offset-2xl-1{margin-left:8.33333333%}.offset-2xl-2{margin-left:16.66666667%}.offset-2xl-3{margin-left:25%}.offset-2xl-4{margin-left:33.33333333%}.offset-2xl-5{margin-left:41.66666667%}.offset-2xl-6{margin-left:50%}.offset-2xl-7{margin-left:58.33333333%}.offset-2xl-8{margin-left:66.66666667%}.offset-2xl-9{margin-left:75%}.offset-2xl-10{margin-left:83.33333333%}.offset-2xl-11{margin-left:91.66666667%}.g-2xl-0,.gx-2xl-0{--bs-gutter-x:0}.g-2xl-0,.gy-2xl-0{--bs-gutter-y:0}.g-2xl-1,.gx-2xl-1{--bs-gutter-x:0.25rem}.g-2xl-1,.gy-2xl-1{--bs-gutter-y:0.25rem}.g-2xl-2,.gx-2xl-2{--bs-gutter-x:0.5rem}.g-2xl-2,.gy-2xl-2{--bs-gutter-y:0.5rem}.g-2xl-3,.gx-2xl-3{--bs-gutter-x:1rem}.g-2xl-3,.gy-2xl-3{--bs-gutter-y:1rem}.g-2xl-4,.gx-2xl-4{--bs-gutter-x:1.5rem}.g-2xl-4,.gy-2xl-4{--bs-gutter-y:1.5rem}.g-2xl-5,.gx-2xl-5{--bs-gutter-x:3rem}.g-2xl-5,.gy-2xl-5{--bs-gutter-y:3rem}.g-2xl-6,.gx-2xl-6{--bs-gutter-x:4rem}.g-2xl-6,.gy-2xl-6{--bs-gutter-y:4rem}.g-2xl-7,.gx-2xl-7{--bs-gutter-x:5rem}.g-2xl-7,.gy-2xl-7{--bs-gutter-y:5rem}.g-2xl-8,.gx-2xl-8{--bs-gutter-x:6rem}.g-2xl-8,.gy-2xl-8{--bs-gutter-y:6rem}}@media (min-width:100rem){.col-3xl{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-3xl-1>*,.row-cols-3xl-2>*,.row-cols-3xl-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-3xl-1>*,.row-cols-3xl-2>*{width:100%}.row-cols-3xl-2>*{width:50%}.row-cols-3xl-3>*,.row-cols-3xl-4>*,.row-cols-3xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-3xl-4>*,.row-cols-3xl-5>*{width:25%}.row-cols-3xl-5>*{width:20%}.col-3xl-1,.col-3xl-2,.col-3xl-auto,.row-cols-3xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-3xl-1,.col-3xl-2,.col-3xl-auto{width:auto}.col-3xl-1,.col-3xl-2{width:8.33333333%}.col-3xl-2{width:16.66666667%}.col-3xl-3,.col-3xl-4,.col-3xl-5,.col-3xl-6,.col-3xl-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-3xl-4,.col-3xl-5,.col-3xl-6,.col-3xl-7{width:33.33333333%}.col-3xl-5,.col-3xl-6,.col-3xl-7{width:41.66666667%}.col-3xl-6,.col-3xl-7{width:50%}.col-3xl-7{width:58.33333333%}.col-3xl-10,.col-3xl-11,.col-3xl-12,.col-3xl-8,.col-3xl-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-3xl-10,.col-3xl-11,.col-3xl-12,.col-3xl-9{width:75%}.col-3xl-10,.col-3xl-11,.col-3xl-12{width:83.33333333%}.col-3xl-11,.col-3xl-12{width:91.66666667%}.col-3xl-12{width:100%}.offset-3xl-0{margin-left:0}.offset-3xl-1{margin-left:8.33333333%}.offset-3xl-2{margin-left:16.66666667%}.offset-3xl-3{margin-left:25%}.offset-3xl-4{margin-left:33.33333333%}.offset-3xl-5{margin-left:41.66666667%}.offset-3xl-6{margin-left:50%}.offset-3xl-7{margin-left:58.33333333%}.offset-3xl-8{margin-left:66.66666667%}.offset-3xl-9{margin-left:75%}.offset-3xl-10{margin-left:83.33333333%}.offset-3xl-11{margin-left:91.66666667%}.g-3xl-0,.gx-3xl-0{--bs-gutter-x:0}.g-3xl-0,.gy-3xl-0{--bs-gutter-y:0}.g-3xl-1,.gx-3xl-1{--bs-gutter-x:0.25rem}.g-3xl-1,.gy-3xl-1{--bs-gutter-y:0.25rem}.g-3xl-2,.gx-3xl-2{--bs-gutter-x:0.5rem}.g-3xl-2,.gy-3xl-2{--bs-gutter-y:0.5rem}.g-3xl-3,.gx-3xl-3{--bs-gutter-x:1rem}.g-3xl-3,.gy-3xl-3{--bs-gutter-y:1rem}.g-3xl-4,.gx-3xl-4{--bs-gutter-x:1.5rem}.g-3xl-4,.gy-3xl-4{--bs-gutter-y:1.5rem}.g-3xl-5,.gx-3xl-5{--bs-gutter-x:3rem}.g-3xl-5,.gy-3xl-5{--bs-gutter-y:3rem}.g-3xl-6,.gx-3xl-6{--bs-gutter-x:4rem}.g-3xl-6,.gy-3xl-6{--bs-gutter-y:4rem}.g-3xl-7,.gx-3xl-7{--bs-gutter-x:5rem}.g-3xl-7,.gy-3xl-7{--bs-gutter-y:5rem}.g-3xl-8,.gx-3xl-8{--bs-gutter-x:6rem}.g-3xl-8,.gy-3xl-8{--bs-gutter-y:6rem}}@media (min-width:125rem){.col-4xl{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0}.row-cols-4xl-1>*,.row-cols-4xl-2>*,.row-cols-4xl-auto>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.row-cols-4xl-1>*,.row-cols-4xl-2>*{width:100%}.row-cols-4xl-2>*{width:50%}.row-cols-4xl-3>*,.row-cols-4xl-4>*,.row-cols-4xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:33.33333333%}.row-cols-4xl-4>*,.row-cols-4xl-5>*{width:25%}.row-cols-4xl-5>*{width:20%}.col-4xl-1,.col-4xl-2,.col-4xl-auto,.row-cols-4xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:16.66666667%}.col-4xl-1,.col-4xl-2,.col-4xl-auto{width:auto}.col-4xl-1,.col-4xl-2{width:8.33333333%}.col-4xl-2{width:16.66666667%}.col-4xl-3,.col-4xl-4,.col-4xl-5,.col-4xl-6,.col-4xl-7{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.col-4xl-4,.col-4xl-5,.col-4xl-6,.col-4xl-7{width:33.33333333%}.col-4xl-5,.col-4xl-6,.col-4xl-7{width:41.66666667%}.col-4xl-6,.col-4xl-7{width:50%}.col-4xl-7{width:58.33333333%}.col-4xl-10,.col-4xl-11,.col-4xl-12,.col-4xl-8,.col-4xl-9{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:66.66666667%}.col-4xl-10,.col-4xl-11,.col-4xl-12,.col-4xl-9{width:75%}.col-4xl-10,.col-4xl-11,.col-4xl-12{width:83.33333333%}.col-4xl-11,.col-4xl-12{width:91.66666667%}.col-4xl-12{width:100%}.offset-4xl-0{margin-left:0}.offset-4xl-1{margin-left:8.33333333%}.offset-4xl-2{margin-left:16.66666667%}.offset-4xl-3{margin-left:25%}.offset-4xl-4{margin-left:33.33333333%}.offset-4xl-5{margin-left:41.66666667%}.offset-4xl-6{margin-left:50%}.offset-4xl-7{margin-left:58.33333333%}.offset-4xl-8{margin-left:66.66666667%}.offset-4xl-9{margin-left:75%}.offset-4xl-10{margin-left:83.33333333%}.offset-4xl-11{margin-left:91.66666667%}.g-4xl-0,.gx-4xl-0{--bs-gutter-x:0}.g-4xl-0,.gy-4xl-0{--bs-gutter-y:0}.g-4xl-1,.gx-4xl-1{--bs-gutter-x:0.25rem}.g-4xl-1,.gy-4xl-1{--bs-gutter-y:0.25rem}.g-4xl-2,.gx-4xl-2{--bs-gutter-x:0.5rem}.g-4xl-2,.gy-4xl-2{--bs-gutter-y:0.5rem}.g-4xl-3,.gx-4xl-3{--bs-gutter-x:1rem}.g-4xl-3,.gy-4xl-3{--bs-gutter-y:1rem}.g-4xl-4,.gx-4xl-4{--bs-gutter-x:1.5rem}.g-4xl-4,.gy-4xl-4{--bs-gutter-y:1.5rem}.g-4xl-5,.gx-4xl-5{--bs-gutter-x:3rem}.g-4xl-5,.gy-4xl-5{--bs-gutter-y:3rem}.g-4xl-6,.gx-4xl-6{--bs-gutter-x:4rem}.g-4xl-6,.gy-4xl-6{--bs-gutter-y:4rem}.g-4xl-7,.gx-4xl-7{--bs-gutter-x:5rem}.g-4xl-7,.gy-4xl-7{--bs-gutter-y:5rem}.g-4xl-8,.gx-4xl-8{--bs-gutter-x:6rem}.g-4xl-8,.gy-4xl-8{--bs-gutter-y:6rem}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(var(--bs-primary-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(var(--bs-secondary-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(var(--bs-success-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-info{color:#000!important;background-color:RGBA(var(--bs-info-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(var(--bs-warning-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(var(--bs-danger-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-light{color:#000!important;background-color:RGBA(var(--bs-light-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(var(--bs-dark-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-red-basic{color:#000!important;background-color:RGBA(var(--bs-red-basic-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-blue-basic{color:#000!important;background-color:RGBA(var(--bs-blue-basic-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-dark-blue-basic{color:#fff!important;background-color:RGBA(var(--bs-dark-blue-basic-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-gray-20{color:#000!important;background-color:RGBA(var(--bs-gray-20-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-orange-100{color:#000!important;background-color:RGBA(var(--bs-orange-100-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-blue-100{color:#000!important;background-color:RGBA(var(--bs-blue-100-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-dark-blue-100{color:#fff!important;background-color:RGBA(var(--bs-dark-blue-100-rgb),var(--bs-bg-opacity, 1))!important}.text-bg-dark-blue-90{color:#fff!important;background-color:RGBA(var(--bs-dark-blue-90-rgb),var(--bs-bg-opacity, 1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity, 1))!important}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity, 1))!important}.link-secondary{color:RGBA(var(--bs-secondary-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity, 1))!important}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity, 1))!important}.link-success{color:RGBA(var(--bs-success-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity, 1))!important}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity, 1))!important}.link-info{color:RGBA(var(--bs-info-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity, 1))!important}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity, 1))!important}.link-warning{color:RGBA(var(--bs-warning-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity, 1))!important}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity, 1))!important}.link-danger{color:RGBA(var(--bs-danger-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity, 1))!important}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity, 1))!important}.link-light{color:RGBA(var(--bs-light-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity, 1))!important}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity, 1))!important}.link-dark{color:RGBA(var(--bs-dark-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity, 1))!important}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity, 1))!important}.link-red-basic{color:RGBA(var(--bs-red-basic-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-red-basic-rgb),var(--bs-link-underline-opacity, 1))!important}.link-red-basic:focus,.link-red-basic:hover{color:RGBA(242,101,98,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(242,101,98,var(--bs-link-underline-opacity, 1))!important}.link-blue-basic{color:RGBA(var(--bs-blue-basic-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-blue-basic-rgb),var(--bs-link-underline-opacity, 1))!important}.link-blue-basic:focus,.link-blue-basic:hover{color:RGBA(96,147,226,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(96,147,226,var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-basic{color:RGBA(var(--bs-dark-blue-basic-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-dark-blue-basic-rgb),var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-basic:focus,.link-dark-blue-basic:hover{color:RGBA(14,33,62,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(14,33,62,var(--bs-link-underline-opacity, 1))!important}.link-gray-20{color:RGBA(var(--bs-gray-20-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-gray-20-rgb),var(--bs-link-underline-opacity, 1))!important}.link-gray-20:focus,.link-gray-20:hover{color:RGBA(223,223,223,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(223,223,223,var(--bs-link-underline-opacity, 1))!important}.link-orange-100{color:RGBA(var(--bs-orange-100-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-orange-100-rgb),var(--bs-link-underline-opacity, 1))!important}.link-orange-100:focus,.link-orange-100:hover{color:RGBA(239,138,52,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(239,138,52,var(--bs-link-underline-opacity, 1))!important}.link-blue-100{color:RGBA(var(--bs-blue-100-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-blue-100-rgb),var(--bs-link-underline-opacity, 1))!important}.link-blue-100:focus,.link-blue-100:hover{color:RGBA(82,159,247,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(82,159,247,var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-100{color:RGBA(var(--bs-dark-blue-100-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-dark-blue-100-rgb),var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-100:focus,.link-dark-blue-100:hover{color:RGBA(0,74,118,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(0,74,118,var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-90{color:RGBA(var(--bs-dark-blue-90-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-dark-blue-90-rgb),var(--bs-link-underline-opacity, 1))!important}.link-dark-blue-90:focus,.link-dark-blue-90:hover{color:RGBA(0,92,146,var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(0,92,146,var(--bs-link-underline-opacity, 1))!important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity, 1))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity, 1))!important}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity, 0.75))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity, 0.75))!important}.focus-ring:focus{outline:0;-webkit-box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:.375rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity, 0.5));text-underline-offset:.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{-ms-flex-negative:0;flex-shrink:0;width:1em;height:1em;fill:currentcolor;-webkit-transition:.2s ease-in-out transform;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{-webkit-transition:none;transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{-webkit-transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio,.ratio>*{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-2x1{--bs-aspect-ratio:50%}.ratio-3x1{--bs-aspect-ratio:33.3333333333%}.ratio-4x1{--bs-aspect-ratio:25%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-bottom,.fixed-top{position:fixed;right:0;left:0;z-index:1030}.fixed-top{top:0}.fixed-bottom{bottom:0}.sticky-bottom,.sticky-top{position:sticky;z-index:1020}.sticky-top{top:0}.sticky-bottom{bottom:0}@media (min-width:36rem){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:48rem){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:62rem){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:75rem){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:90rem){.sticky-2xl-top{position:sticky;top:0;z-index:1020}.sticky-2xl-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:100rem){.sticky-3xl-top{position:sticky;top:0;z-index:1020}.sticky-3xl-bottom{position:sticky;bottom:0;z-index:1020}}@media (min-width:125rem){.sticky-4xl-top{position:sticky;top:0;z-index:1020}.sticky-4xl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack,.vstack{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-direction:normal;-ms-flex-item-align:stretch;align-self:stretch}.hstack{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.vstack{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){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}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.visually-hidden *,.visually-hidden-focusable:not(:focus):not(:focus-within) *{overflow:hidden!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;-ms-flex-item-align:stretch;align-self:stretch;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:.25}.table{--bs-table-color-type:initial;--bs-table-bg-type:initial;--bs-table-color-state:initial;--bs-table-bg-state:initial;--bs-table-color:var(--bs-emphasis-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-emphasis-color);--bs-table-striped-bg:rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color:var(--bs-emphasis-color);--bs-table-active-bg:rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color:var(--bs-emphasis-color);--bs-table-hover-bg:rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:1rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);-webkit-box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table-group-divider{border-top:calc(var(--bs-border-width)*2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-active{--bs-table-color-state:var(--bs-table-active-color);--bs-table-bg-state:var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state:var(--bs-table-hover-color);--bs-table-bg-state:var(--bs-table-hover-bg)}.table-primary,.table-secondary{--bs-table-color:#000;--bs-table-striped-color:#000;--bs-table-active-color:#000;--bs-table-hover-color:#000}.table-primary{--bs-table-bg:rgb(206.6, 226, 254.6);--bs-table-border-color:rgb(165.28, 180.8, 203.68);--bs-table-striped-bg:rgb(196.27, 214.7, 241.87);--bs-table-active-bg:rgb(185.94, 203.4, 229.14);--bs-table-hover-bg:rgb(191.105, 209.05, 235.505);color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-bg:rgb(225.6, 227.4, 229);--bs-table-border-color:rgb(180.48, 181.92, 183.2);--bs-table-striped-bg:rgb(214.32, 216.03, 217.55);--bs-table-active-bg:rgb(203.04, 204.66, 206.1);--bs-table-hover-bg:rgb(208.68, 210.345, 211.825)}.table-info,.table-secondary,.table-success{color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:rgb(209, 231, 220.8);--bs-table-border-color:rgb(167.2, 184.8, 176.64);--bs-table-striped-bg:rgb(198.55, 219.45, 209.76);--bs-table-striped-color:#000;--bs-table-active-bg:rgb(188.1, 207.9, 198.72);--bs-table-active-color:#000;--bs-table-hover-bg:rgb(193.325, 213.675, 204.24);--bs-table-hover-color:#000}.table-info{--bs-table-bg:rgb(206.6, 244.4, 252);--bs-table-border-color:rgb(165.28, 195.52, 201.6);--bs-table-striped-bg:rgb(196.27, 232.18, 239.4);--bs-table-active-bg:rgb(185.94, 219.96, 226.8);--bs-table-hover-bg:rgb(191.105, 226.07, 233.1)}.table-danger,.table-info,.table-warning{--bs-table-color:#000;--bs-table-striped-color:#000;--bs-table-active-color:#000;--bs-table-hover-color:#000}.table-warning{--bs-table-bg:rgb(255, 242.6, 205.4);--bs-table-border-color:rgb(204, 194.08, 164.32);--bs-table-striped-bg:rgb(242.25, 230.47, 195.13);--bs-table-active-bg:rgb(229.5, 218.34, 184.86);--bs-table-hover-bg:rgb(235.875, 224.405, 189.995);color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-bg:rgb(248, 214.6, 217.8);--bs-table-border-color:rgb(198.4, 171.68, 174.24);--bs-table-striped-bg:rgb(235.6, 203.87, 206.91);--bs-table-active-bg:rgb(223.2, 193.14, 196.02);--bs-table-hover-bg:rgb(229.4, 198.505, 201.465)}.table-danger,.table-dark,.table-light{color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:rgb(198.4, 199.2, 200);--bs-table-striped-bg:rgb(235.6, 236.55, 237.5);--bs-table-striped-color:#000;--bs-table-active-bg:rgb(223.2, 224.1, 225);--bs-table-active-color:#000;--bs-table-hover-bg:rgb(229.4, 230.325, 231.25);--bs-table-hover-color:#000}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:rgb(77.4, 80.6, 83.8);--bs-table-striped-bg:rgb(44.1, 47.9, 51.7);--bs-table-striped-color:#fff;--bs-table-active-bg:rgb(55.2, 58.8, 62.4);--bs-table-active-color:#fff;--bs-table-hover-bg:rgb(49.65, 53.35, 57.05);--bs-table-hover-color:#fff}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:35.98rem){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:47.98rem){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:61.98rem){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:74.98rem){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:89.98rem){.table-responsive-2xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:99.98rem){.table-responsive-3xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:124.98rem){.table-responsive-4xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label,.news-detail-text ul li{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem 1.5rem;font-family:"Inter-SemiBold",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:2rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{-webkit-transition:none;transition:none}}.form-control[type=file]{overflow:hidden}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;-webkit-box-shadow:none;box-shadow:none}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::-webkit-input-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::-moz-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:-ms-input-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::-ms-input-placeholder{color:var(--bs-secondary-color);opacity:1}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem 1.5rem;margin:-.375rem -1.5rem;-webkit-margin-end:1.5rem;margin-inline-end:1.5rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem 1.5rem;margin:-.375rem -1.5rem;-webkit-margin-end:1.5rem;margin-inline-end:1.5rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width)*2));padding:.25rem 1rem;font-size:.875rem;border-radius:1.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem 1rem;margin:-.25rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-sm::file-selector-button{padding:.25rem 1rem;margin:-.25rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width)*2));padding:.5rem 2rem;font-size:1.25rem;border-radius:3rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 2rem;margin:-.5rem -2rem;-webkit-margin-end:2rem;margin-inline-end:2rem}.form-control-lg::file-selector-button{padding:.5rem 2rem;margin:-.5rem -2rem;-webkit-margin-end:2rem;margin-inline-end:2rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width)*2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width)*2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width)*2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width)*2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:2rem}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:2rem}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width)*2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width)*2))}.form-select{--bs-form-select-bg-img: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");display:block;width:100%;padding:.375rem 4.5rem .375rem 1.5rem;font-family:"Inter-SemiBold",sans-serif;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon, none);background-repeat:no-repeat;background-position:right 1.5rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:2rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-select{-webkit-transition:none;transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;-webkit-box-shadow:0 0 0 .25rem rgba(13,110,253,.25);box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:1.5rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:1rem;font-size:.875rem;border-radius:1.5rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:2rem;font-size:1.25rem;border-radius:3rem}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);-ms-flex-negative:0;flex-shrink:0;width:1em;height:1em;margin-top:.25em;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-print-color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{-webkit-filter:brightness(90%);filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;-webkit-box-shadow:0 0 0 .25rem rgba(13,110,253,.25);box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-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-input:checked[type=radio]{--bs-form-check-bg-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-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;-webkit-filter:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;-webkit-transition:background-position .15s ease-in-out;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{-webkit-transition:none;transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;-webkit-filter:none;filter:none;opacity:.25}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,none;box-shadow:0 0 0 1px #fff,none}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,none}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;-webkit-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;-moz-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width)*2));min-height:calc(3.5rem + calc(var(--bs-border-width)*2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;max-width:100%;height:100%;padding:1rem 1.5rem;overflow:hidden;color:rgba(var(--bs-body-color-rgb),.65);text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:opacity .1s ease-in-out,-webkit-transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out;transition:opacity .1s ease-in-out,transform .1s ease-in-out,-webkit-transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{-webkit-transition:none;transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem 1.5rem}.form-floating>.form-control-plaintext::-webkit-input-placeholder,.form-floating>.form-control::-webkit-input-placeholder{color:transparent}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext:-ms-input-placeholder,.form-floating>.form-control:-ms-input-placeholder{color:transparent}.form-floating>.form-control-plaintext::-ms-input-placeholder,.form-floating>.form-control::-ms-input-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder),.form-floating>.form-control-plaintext:not(:-ms-input-placeholder),.form-floating>.form-control:not(:-moz-placeholder),.form-floating>.form-control:not(:-ms-input-placeholder){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem;padding-left:1.5rem}.form-floating>.form-control:not(:-moz-placeholder)~label{transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:not(:-ms-input-placeholder)~label{-ms-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);-ms-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{-webkit-transform:scale(.85) translateY(-.5rem) translateX(.15rem);transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>textarea:not(:-moz-placeholder)~label::after,.form-floating>textarea:not(:-ms-input-placeholder)~label::after{position:absolute;inset:1rem .75rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:2rem}.form-floating>textarea:focus~label::after,.form-floating>textarea:not(:placeholder-shown)~label::after{position:absolute;inset:1rem .75rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:2rem}.form-floating>textarea:disabled~label::after{background-color:var(--bs-secondary-bg)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>.form-control:disabled~label,.form-floating>:disabled~label{color:#6c757d}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem 1.5rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:2rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 2rem;font-size:1.25rem;border-radius:3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem 1rem;font-size:.875rem;border-radius:1.5rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:6rem}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(-1*var(--bs-border-width));border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.75rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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.1'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.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.1'/%3e%3c/svg%3e");padding-right:8.25rem;background-position:right 1.5rem center,center right 4.5rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.75rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:8.25rem;background-position:right 1.5rem center,center right 4.5rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{-webkit-box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn,.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg)}.btn{--bs-btn-padding-x:1.5rem;--bs-btn-padding-y:0.5rem;--bs-btn-font-family:Inter-SemiBold, sans-serif;--bs-btn-font-size:0.85rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:2rem;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-disabled-opacity:0.25;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg)}.btn-check:focus-visible+.btn,.btn:focus-visible{border-color:var(--bs-btn-hover-border-color);outline:0;-webkit-box-shadow:var(--bs-btn-focus-box-shadow);box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{-webkit-box-shadow:var(--bs-btn-focus-box-shadow);box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked:focus-visible+.btn{-webkit-box-shadow:var(--bs-btn-focus-box-shadow);box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-bg:rgb(11.05, 93.5, 215.05);--bs-btn-hover-border-color:rgb(10.4, 88, 202.4);--bs-btn-focus-shadow-rgb:49, 132, 253;--bs-btn-active-bg:rgb(10.4, 88, 202.4);--bs-btn-active-border-color:rgb(9.75, 82.5, 189.75);--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-primary,.btn-secondary,.btn-success{--bs-btn-color:#fff;--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#fff}.btn-secondary{--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-bg:rgb(91.8, 99.45, 106.25);--bs-btn-hover-border-color:rgb(86.4, 93.6, 100);--bs-btn-focus-shadow-rgb:130, 138, 145;--bs-btn-active-bg:rgb(86.4, 93.6, 100);--bs-btn-active-border-color:rgb(81, 87.75, 93.75);--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-bg:rgb(21.25, 114.75, 71.4);--bs-btn-hover-border-color:rgb(20, 108, 67.2);--bs-btn-focus-shadow-rgb:60, 153, 110;--bs-btn-active-bg:rgb(20, 108, 67.2);--bs-btn-active-border-color:rgb(18.75, 101.25, 63);--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info,.btn-warning{--bs-btn-color:#000;--bs-btn-hover-color:#000;--bs-btn-active-color:#000;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#000}.btn-info{--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-bg:rgb(49.3, 209.95, 242.25);--bs-btn-hover-border-color:rgb(37.2, 207.3, 241.5);--bs-btn-focus-shadow-rgb:11, 172, 204;--bs-btn-active-bg:rgb(61.4, 212.6, 243);--bs-btn-active-border-color:rgb(37.2, 207.3, 241.5);--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-bg:rgb(255, 202.3, 44.2);--bs-btn-hover-border-color:rgb(255, 199.2, 31.8);--bs-btn-focus-shadow-rgb:217, 164, 6;--bs-btn-active-bg:rgb(255, 205.4, 56.6);--bs-btn-active-border-color:rgb(255, 199.2, 31.8);--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:rgb(187, 45.05, 58.65);--bs-btn-hover-border-color:rgb(176, 42.4, 55.2);--bs-btn-focus-shadow-rgb:225, 83, 97;--bs-btn-active-color:#fff;--bs-btn-active-bg:rgb(176, 42.4, 55.2);--bs-btn-active-border-color:rgb(165, 39.75, 51.75);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-danger,.btn-dark,.btn-light{--bs-btn-active-shadow:none}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:rgb(210.8, 211.65, 212.5);--bs-btn-hover-border-color:rgb(198.4, 199.2, 200);--bs-btn-focus-shadow-rgb:211, 212, 213;--bs-btn-active-color:#000;--bs-btn-active-bg:rgb(198.4, 199.2, 200);--bs-btn-active-border-color:rgb(186, 186.75, 187.5);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:rgb(66.3, 69.7, 73.1);--bs-btn-hover-border-color:rgb(55.2, 58.8, 62.4);--bs-btn-focus-shadow-rgb:66, 70, 73;--bs-btn-active-color:#fff;--bs-btn-active-bg:rgb(77.4, 80.6, 83.8);--bs-btn-active-border-color:rgb(55.2, 58.8, 62.4);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-blue-basic,.btn-red-basic{--bs-btn-color:#000;--bs-btn-hover-color:#000;--bs-btn-active-color:#000;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#000}.btn-red-basic{--bs-btn-bg:#EF3E3B;--bs-btn-border-color:#EF3E3B;--bs-btn-hover-bg:rgb(241.4, 90.95, 88.4);--bs-btn-hover-border-color:rgb(240.6, 81.3, 78.6);--bs-btn-focus-shadow-rgb:203, 53, 50;--bs-btn-active-bg:rgb(242.2, 100.6, 98.2);--bs-btn-active-border-color:rgb(240.6, 81.3, 78.6);--bs-btn-disabled-bg:#EF3E3B;--bs-btn-disabled-border-color:#EF3E3B}.btn-blue-basic{--bs-btn-bg:#3878DB;--bs-btn-border-color:#3878DB;--bs-btn-hover-bg:rgb(85.85, 140.25, 224.4);--bs-btn-hover-border-color:rgb(75.9, 133.5, 222.6);--bs-btn-focus-shadow-rgb:48, 102, 186;--bs-btn-active-bg:rgb(95.8, 147, 226.2);--bs-btn-active-border-color:rgb(75.9, 133.5, 222.6);--bs-btn-disabled-bg:#3878DB;--bs-btn-disabled-border-color:#3878DB}.btn-dark-blue-basic{--bs-btn-color:#fff;--bs-btn-bg:#11294D;--bs-btn-border-color:#11294D;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:rgb(14.45, 34.85, 65.45);--bs-btn-hover-border-color:rgb(13.6, 32.8, 61.6);--bs-btn-focus-shadow-rgb:53, 73, 104;--bs-btn-active-color:#fff;--bs-btn-active-bg:rgb(13.6, 32.8, 61.6);--bs-btn-active-border-color:rgb(12.75, 30.75, 57.75);--bs-btn-active-shadow:none;--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#11294D;--bs-btn-disabled-border-color:#11294D}.btn-gray-20{--bs-btn-bg:#D7D7D7;--bs-btn-border-color:#D7D7D7;--bs-btn-hover-bg:#dddddd;--bs-btn-hover-border-color:#dbdbdb;--bs-btn-focus-shadow-rgb:183, 183, 183;--bs-btn-active-bg:#dfdfdf;--bs-btn-active-border-color:#dbdbdb;--bs-btn-disabled-bg:#D7D7D7;--bs-btn-disabled-border-color:#D7D7D7}.btn-blue-100,.btn-gray-20,.btn-orange-100{--bs-btn-color:#000;--bs-btn-hover-color:#000;--bs-btn-active-color:#000;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#000}.btn-orange-100{--bs-btn-bg:#EB6D01;--bs-btn-border-color:#EB6D01;--bs-btn-hover-bg:rgb(238, 130.9, 39.1);--bs-btn-hover-border-color:rgb(237, 123.6, 26.4);--bs-btn-focus-shadow-rgb:200, 93, 1;--bs-btn-active-bg:rgb(239, 138.2, 51.8);--bs-btn-active-border-color:rgb(237, 123.6, 26.4);--bs-btn-disabled-bg:#EB6D01;--bs-btn-disabled-border-color:#EB6D01}.btn-blue-100{--bs-btn-bg:#2787F5;--bs-btn-border-color:#2787F5;--bs-btn-hover-bg:rgb(71.4, 153, 246.5);--bs-btn-hover-border-color:rgb(60.6, 147, 246);--bs-btn-focus-shadow-rgb:33, 115, 208;--bs-btn-active-bg:rgb(82.2, 159, 247);--bs-btn-active-border-color:rgb(60.6, 147, 246);--bs-btn-disabled-bg:#2787F5;--bs-btn-disabled-border-color:#2787F5}.btn-dark-blue-100,.btn-dark-blue-90{--bs-btn-color:#fff;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#fff}.btn-dark-blue-100{--bs-btn-bg:#005D94;--bs-btn-border-color:#005D94;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:rgb(0, 79.05, 125.8);--bs-btn-hover-border-color:rgb(0, 74.4, 118.4);--bs-btn-focus-shadow-rgb:38, 117, 164;--bs-btn-active-color:#fff;--bs-btn-active-bg:rgb(0, 74.4, 118.4);--bs-btn-active-border-color:rgb(0, 69.75, 111);--bs-btn-disabled-bg:#005D94;--bs-btn-disabled-border-color:#005D94}.btn-dark-blue-90{--bs-btn-bg:#0073B7;--bs-btn-border-color:#0073B7;--bs-btn-hover-bg:rgb(0, 97.75, 155.55);--bs-btn-hover-border-color:rgb(0, 92, 146.4);--bs-btn-focus-shadow-rgb:38, 136, 194;--bs-btn-active-bg:rgb(0, 92, 146.4);--bs-btn-active-border-color:rgb(0, 86.25, 137.25);--bs-btn-disabled-bg:#0073B7;--bs-btn-disabled-border-color:#0073B7}.btn-dark-blue-90,.btn-outline-primary,.btn-outline-secondary{--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13, 110, 253;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108, 117, 125;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-outline-info,.btn-outline-secondary,.btn-outline-success,.btn-outline-warning{--bs-btn-active-shadow:none;--bs-btn-disabled-bg:transparent;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25, 135, 84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-disabled-color:#198754;--bs-btn-disabled-border-color:#198754}.btn-outline-info,.btn-outline-warning{--bs-btn-hover-color:#000;--bs-btn-active-color:#000}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13, 202, 240;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255, 193, 7;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220, 53, 69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-outline-danger,.btn-outline-dark,.btn-outline-light{--bs-btn-active-shadow:none;--bs-btn-disabled-bg:transparent;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248, 249, 250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33, 37, 41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-disabled-color:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-red-basic{--bs-btn-color:#EF3E3B;--bs-btn-border-color:#EF3E3B;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#EF3E3B;--bs-btn-hover-border-color:#EF3E3B;--bs-btn-focus-shadow-rgb:239, 62, 59;--bs-btn-active-color:#000;--bs-btn-active-bg:#EF3E3B;--bs-btn-active-border-color:#EF3E3B;--bs-btn-disabled-color:#EF3E3B;--bs-btn-disabled-border-color:#EF3E3B}.btn-outline-blue-basic,.btn-outline-dark-blue-basic,.btn-outline-red-basic{--bs-btn-active-shadow:none;--bs-btn-disabled-bg:transparent;--bs-gradient:none}.btn-outline-blue-basic{--bs-btn-color:#3878DB;--bs-btn-border-color:#3878DB;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#3878DB;--bs-btn-hover-border-color:#3878DB;--bs-btn-focus-shadow-rgb:56, 120, 219;--bs-btn-active-color:#000;--bs-btn-active-bg:#3878DB;--bs-btn-active-border-color:#3878DB;--bs-btn-disabled-color:#3878DB;--bs-btn-disabled-border-color:#3878DB}.btn-outline-dark-blue-basic{--bs-btn-color:#11294D;--bs-btn-border-color:#11294D;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#11294D;--bs-btn-hover-border-color:#11294D;--bs-btn-focus-shadow-rgb:17, 41, 77;--bs-btn-active-color:#fff;--bs-btn-active-bg:#11294D;--bs-btn-active-border-color:#11294D;--bs-btn-disabled-color:#11294D;--bs-btn-disabled-border-color:#11294D}.btn-outline-gray-20,.btn-outline-orange-100{--bs-btn-hover-color:#000;--bs-btn-active-color:#000}.btn-outline-gray-20{--bs-btn-color:#D7D7D7;--bs-btn-border-color:#D7D7D7;--bs-btn-hover-bg:#D7D7D7;--bs-btn-hover-border-color:#D7D7D7;--bs-btn-focus-shadow-rgb:215, 215, 215;--bs-btn-active-bg:#D7D7D7;--bs-btn-active-border-color:#D7D7D7;--bs-btn-active-shadow:none;--bs-btn-disabled-color:#D7D7D7;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#D7D7D7;--bs-gradient:none}.btn-outline-orange-100{--bs-btn-color:#EB6D01;--bs-btn-border-color:#EB6D01;--bs-btn-hover-bg:#EB6D01;--bs-btn-hover-border-color:#EB6D01;--bs-btn-focus-shadow-rgb:235, 109, 1;--bs-btn-active-bg:#EB6D01;--bs-btn-active-border-color:#EB6D01;--bs-btn-disabled-color:#EB6D01;--bs-btn-disabled-border-color:#EB6D01}.btn-outline-blue-100,.btn-outline-dark-blue-100,.btn-outline-dark-blue-90,.btn-outline-orange-100{--bs-btn-active-shadow:none;--bs-btn-disabled-bg:transparent;--bs-gradient:none}.btn-outline-blue-100{--bs-btn-color:#2787F5;--bs-btn-border-color:#2787F5;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#2787F5;--bs-btn-hover-border-color:#2787F5;--bs-btn-focus-shadow-rgb:39, 135, 245;--bs-btn-active-color:#000;--bs-btn-active-bg:#2787F5;--bs-btn-active-border-color:#2787F5;--bs-btn-disabled-color:#2787F5;--bs-btn-disabled-border-color:#2787F5}.btn-outline-dark-blue-100,.btn-outline-dark-blue-90{--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff}.btn-outline-dark-blue-100{--bs-btn-color:#005D94;--bs-btn-border-color:#005D94;--bs-btn-hover-bg:#005D94;--bs-btn-hover-border-color:#005D94;--bs-btn-focus-shadow-rgb:0, 93, 148;--bs-btn-active-bg:#005D94;--bs-btn-active-border-color:#005D94;--bs-btn-disabled-color:#005D94;--bs-btn-disabled-border-color:#005D94}.btn-outline-dark-blue-90{--bs-btn-color:#0073B7;--bs-btn-border-color:#0073B7;--bs-btn-hover-bg:#0073B7;--bs-btn-hover-border-color:#0073B7;--bs-btn-focus-shadow-rgb:0, 115, 183;--bs-btn-active-bg:#0073B7;--bs-btn-active-border-color:#0073B7;--bs-btn-disabled-color:#0073B7;--bs-btn-disabled-border-color:#0073B7}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49, 132, 253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg,.btn-sm{--bs-btn-padding-x:1rem}.btn-lg{--bs-btn-padding-y:0.75rem;--bs-btn-font-size:0.85rem;--bs-btn-border-radius:3rem}.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:1.5rem}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{-webkit-transition:none;transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;-webkit-box-shadow:0 0 0 .25rem rgba(13,110,253,.25);box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:0;--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1*var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1*var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.badge{--bs-badge-padding-x:0.45rem;--bs-badge-padding-y:0.125rem;--bs-badge-font-size:0.75rem;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0.75rem;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color:var(--bs-body-color);--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:var(--bs-box-shadow-sm);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{-webkit-transform:translate(0,4rem);-ms-transform:translate(0,4rem);transform:translate(0,4rem);-webkit-transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;-ms-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);-ms-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin)*2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-content,.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex}.modal-dialog-centered{-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - var(--bs-modal-margin)*2)}.modal-content{position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);margin-top:calc(-.5*var(--bs-modal-header-padding-y));margin-right:calc(-.5*var(--bs-modal-header-padding-x));margin-bottom:calc(-.5*var(--bs-modal-header-padding-y));margin-left:auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap)*.5)}@media (min-width:36rem){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:var(--bs-box-shadow)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:62rem){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:75rem){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:35.98rem){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:47.98rem){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:61.98rem){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:74.98rem){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:89.98rem){.modal-fullscreen-2xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-2xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-2xl-down .modal-footer,.modal-fullscreen-2xl-down .modal-header{border-radius:0}.modal-fullscreen-2xl-down .modal-body{overflow-y:auto}}@media (max-width:99.98rem){.modal-fullscreen-3xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-3xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-3xl-down .modal-footer,.modal-fullscreen-3xl-down .modal-header{border-radius:0}.modal-fullscreen-3xl-down .modal-body{overflow-y:auto}}@media (max-width:124.98rem){.modal-fullscreen-4xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-4xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-4xl-down .modal-footer,.modal-fullscreen-4xl-down .modal-header{border-radius:0}.modal-fullscreen-4xl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:10rem;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.75rem;--bs-tooltip-color:var(--bs-black);--bs-tooltip-bg:var(--bs-gray-300);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:1;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:"Mulish-Regular",sans-serif;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1*var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1*var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-none{display:none!important}.shadow{-webkit-box-shadow:var(--bs-box-shadow)!important;box-shadow:var(--bs-box-shadow)!important}.shadow-sm{-webkit-box-shadow:var(--bs-box-shadow-sm)!important;box-shadow:var(--bs-box-shadow-sm)!important}.shadow-lg{-webkit-box-shadow:var(--bs-box-shadow-lg)!important;box-shadow:var(--bs-box-shadow-lg)!important}.shadow-none{-webkit-box-shadow:none!important;box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.focus-ring-red-basic{--bs-focus-ring-color:rgba(var(--bs-red-basic-rgb), var(--bs-focus-ring-opacity))}.focus-ring-blue-basic{--bs-focus-ring-color:rgba(var(--bs-blue-basic-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark-blue-basic{--bs-focus-ring-color:rgba(var(--bs-dark-blue-basic-rgb), var(--bs-focus-ring-opacity))}.focus-ring-gray-20{--bs-focus-ring-color:rgba(var(--bs-gray-20-rgb), var(--bs-focus-ring-opacity))}.focus-ring-orange-100{--bs-focus-ring-color:rgba(var(--bs-orange-100-rgb), var(--bs-focus-ring-opacity))}.focus-ring-blue-100{--bs-focus-ring-color:rgba(var(--bs-blue-100-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark-blue-100{--bs-focus-ring-color:rgba(var(--bs-dark-blue-100-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark-blue-90{--bs-focus-ring-color:rgba(var(--bs-dark-blue-90-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{-webkit-transform:translate(-50%,-50%)!important;-ms-transform:translate(-50%,-50%)!important;transform:translate(-50%,-50%)!important}.translate-middle-x{-webkit-transform:translateX(-50%)!important;-ms-transform:translateX(-50%)!important;transform:translateX(-50%)!important}.translate-middle-y{-webkit-transform:translateY(-50%)!important;-ms-transform:translateY(-50%)!important;transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary,.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-info,.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-danger,.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-dark,.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-blue-basic,.border-red-basic{--bs-border-opacity:1;border-color:rgba(var(--bs-red-basic-rgb),var(--bs-border-opacity))!important}.border-blue-basic{border-color:rgba(var(--bs-blue-basic-rgb),var(--bs-border-opacity))!important}.border-dark-blue-basic,.border-gray-20{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-blue-basic-rgb),var(--bs-border-opacity))!important}.border-gray-20{border-color:rgba(var(--bs-gray-20-rgb),var(--bs-border-opacity))!important}.border-blue-100,.border-orange-100{--bs-border-opacity:1;border-color:rgba(var(--bs-orange-100-rgb),var(--bs-border-opacity))!important}.border-blue-100{border-color:rgba(var(--bs-blue-100-rgb),var(--bs-border-opacity))!important}.border-dark-blue-100,.border-dark-blue-90{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-blue-100-rgb),var(--bs-border-opacity))!important}.border-dark-blue-90{border-color:rgba(var(--bs-dark-blue-90-rgb),var(--bs-border-opacity))!important}.border-black,.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-column,.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-column-reverse,.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-6{margin:4rem!important}.m-7{margin:5rem!important}.m-8{margin:6rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-6{margin-right:4rem!important;margin-left:4rem!important}.mx-7{margin-right:5rem!important;margin-left:5rem!important}.mx-8{margin-right:6rem!important;margin-left:6rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-6{margin-top:4rem!important}.mt-7{margin-top:5rem!important}.mt-8{margin-top:6rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-6{margin-right:4rem!important}.me-7{margin-right:5rem!important}.me-8{margin-right:6rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-6{margin-bottom:4rem!important}.mb-7{margin-bottom:5rem!important}.mb-8{margin-bottom:6rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-6{margin-left:4rem!important}.ms-7{margin-left:5rem!important}.ms-8{margin-left:6rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.p-6{padding:4rem!important}.p-7{padding:5rem!important}.p-8{padding:6rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.px-6{padding-right:4rem!important;padding-left:4rem!important}.px-7{padding-right:5rem!important;padding-left:5rem!important}.px-8{padding-right:6rem!important;padding-left:6rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pt-6{padding-top:4rem!important}.pt-7{padding-top:5rem!important}.pt-8{padding-top:6rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pe-6{padding-right:4rem!important}.pe-7{padding-right:5rem!important}.pe-8{padding-right:6rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.pb-6{padding-bottom:4rem!important}.pb-7{padding-bottom:5rem!important}.pb-8{padding-bottom:6rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.ps-6{padding-left:4rem!important}.ps-7{padding-left:5rem!important}.ps-8{padding-left:6rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.gap-6{gap:4rem!important}.gap-7{gap:5rem!important}.gap-8{gap:6rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.row-gap-6{row-gap:4rem!important}.row-gap-7{row-gap:5rem!important}.row-gap-8{row-gap:6rem!important}.column-gap-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!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:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary,.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-info,.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-danger,.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-dark,.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-blue-basic,.text-red-basic{--bs-text-opacity:1;color:rgba(var(--bs-red-basic-rgb),var(--bs-text-opacity))!important}.text-blue-basic{color:rgba(var(--bs-blue-basic-rgb),var(--bs-text-opacity))!important}.text-dark-blue-basic,.text-gray-20{--bs-text-opacity:1;color:rgba(var(--bs-dark-blue-basic-rgb),var(--bs-text-opacity))!important}.text-gray-20{color:rgba(var(--bs-gray-20-rgb),var(--bs-text-opacity))!important}.text-blue-100,.text-orange-100{--bs-text-opacity:1;color:rgba(var(--bs-orange-100-rgb),var(--bs-text-opacity))!important}.text-blue-100{color:rgba(var(--bs-blue-100-rgb),var(--bs-text-opacity))!important}.text-dark-blue-100{--bs-text-opacity:1;color:rgba(var(--bs-dark-blue-100-rgb),var(--bs-text-opacity))!important}.text-black,.text-dark-blue-90{--bs-text-opacity:1;color:rgba(var(--bs-dark-blue-90-rgb),var(--bs-text-opacity))!important}.text-black{color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-body,.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50,.text-white-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10,.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25,.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50,.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75,.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100,.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1,.link-offset-1-hover:hover{text-underline-offset:.125em!important}.link-offset-2,.link-offset-2-hover:hover{text-underline-offset:.25em!important}.link-offset-3,.link-offset-3-hover:hover{text-underline-offset:.375em!important}.link-underline-primary,.link-underline-secondary{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info,.link-underline-success{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger,.link-underline-warning{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark,.link-underline-light{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline-blue-basic,.link-underline-red-basic{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-red-basic-rgb),var(--bs-link-underline-opacity))!important}.link-underline-blue-basic{text-decoration-color:rgba(var(--bs-blue-basic-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark-blue-basic,.link-underline-gray-20{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-dark-blue-basic-rgb),var(--bs-link-underline-opacity))!important}.link-underline-gray-20{text-decoration-color:rgba(var(--bs-gray-20-rgb),var(--bs-link-underline-opacity))!important}.link-underline-blue-100,.link-underline-orange-100{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-orange-100-rgb),var(--bs-link-underline-opacity))!important}.link-underline-blue-100{text-decoration-color:rgba(var(--bs-blue-100-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark-blue-100,.link-underline-dark-blue-90{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-dark-blue-100-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark-blue-90{text-decoration-color:rgba(var(--bs-dark-blue-90-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity, 1))!important}.link-underline-opacity-0,.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10,.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25,.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50,.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75,.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100,.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary,.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-info,.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-danger,.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-dark,.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-blue-basic,.bg-red-basic{--bs-bg-opacity:1;background-color:rgba(var(--bs-red-basic-rgb),var(--bs-bg-opacity))!important}.bg-blue-basic{background-color:rgba(var(--bs-blue-basic-rgb),var(--bs-bg-opacity))!important}.bg-dark-blue-basic,.bg-gray-20{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-blue-basic-rgb),var(--bs-bg-opacity))!important}.bg-gray-20{background-color:rgba(var(--bs-gray-20-rgb),var(--bs-bg-opacity))!important}.bg-blue-100,.bg-orange-100{--bs-bg-opacity:1;background-color:rgba(var(--bs-orange-100-rgb),var(--bs-bg-opacity))!important}.bg-blue-100{background-color:rgba(var(--bs-blue-100-rgb),var(--bs-bg-opacity))!important}.bg-dark-blue-100{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-blue-100-rgb),var(--bs-bg-opacity))!important}.bg-black,.bg-dark-blue-90{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-blue-90-rgb),var(--bs-bg-opacity))!important}.bg-black{background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-body,.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:36rem){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit: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-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-column,.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-column-reverse,.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-sm-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-sm-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-sm-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-sm-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-sm-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-sm-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-sm-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-sm-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-sm-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-sm-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-sm-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-sm-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-sm-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-6{margin:4rem!important}.m-sm-7{margin:5rem!important}.m-sm-8{margin:6rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-6{margin-right:4rem!important;margin-left:4rem!important}.mx-sm-7{margin-right:5rem!important;margin-left:5rem!important}.mx-sm-8{margin-right:6rem!important;margin-left:6rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-sm-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-sm-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-6{margin-top:4rem!important}.mt-sm-7{margin-top:5rem!important}.mt-sm-8{margin-top:6rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-6{margin-right:4rem!important}.me-sm-7{margin-right:5rem!important}.me-sm-8{margin-right:6rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-6{margin-bottom:4rem!important}.mb-sm-7{margin-bottom:5rem!important}.mb-sm-8{margin-bottom:6rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-6{margin-left:4rem!important}.ms-sm-7{margin-left:5rem!important}.ms-sm-8{margin-left:6rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.p-sm-6{padding:4rem!important}.p-sm-7{padding:5rem!important}.p-sm-8{padding:6rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.px-sm-6{padding-right:4rem!important;padding-left:4rem!important}.px-sm-7{padding-right:5rem!important;padding-left:5rem!important}.px-sm-8{padding-right:6rem!important;padding-left:6rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-sm-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-sm-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-sm-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pt-sm-6{padding-top:4rem!important}.pt-sm-7{padding-top:5rem!important}.pt-sm-8{padding-top:6rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pe-sm-6{padding-right:4rem!important}.pe-sm-7{padding-right:5rem!important}.pe-sm-8{padding-right:6rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.pb-sm-6{padding-bottom:4rem!important}.pb-sm-7{padding-bottom:5rem!important}.pb-sm-8{padding-bottom:6rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.ps-sm-6{padding-left:4rem!important}.ps-sm-7{padding-left:5rem!important}.ps-sm-8{padding-left:6rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.gap-sm-6{gap:4rem!important}.gap-sm-7{gap:5rem!important}.gap-sm-8{gap:6rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.row-gap-sm-6{row-gap:4rem!important}.row-gap-sm-7{row-gap:5rem!important}.row-gap-sm-8{row-gap:6rem!important}.column-gap-sm-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-sm-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-sm-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-sm-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:48rem){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit: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-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-column,.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-column-reverse,.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-md-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-md-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-md-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-md-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-md-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-md-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-md-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-md-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-md-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-md-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-md-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-md-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-md-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-6{margin:4rem!important}.m-md-7{margin:5rem!important}.m-md-8{margin:6rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-6{margin-right:4rem!important;margin-left:4rem!important}.mx-md-7{margin-right:5rem!important;margin-left:5rem!important}.mx-md-8{margin-right:6rem!important;margin-left:6rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-md-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-md-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-6{margin-top:4rem!important}.mt-md-7{margin-top:5rem!important}.mt-md-8{margin-top:6rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-6{margin-right:4rem!important}.me-md-7{margin-right:5rem!important}.me-md-8{margin-right:6rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-6{margin-bottom:4rem!important}.mb-md-7{margin-bottom:5rem!important}.mb-md-8{margin-bottom:6rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-6{margin-left:4rem!important}.ms-md-7{margin-left:5rem!important}.ms-md-8{margin-left:6rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.p-md-6{padding:4rem!important}.p-md-7{padding:5rem!important}.p-md-8{padding:6rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.px-md-6{padding-right:4rem!important;padding-left:4rem!important}.px-md-7{padding-right:5rem!important;padding-left:5rem!important}.px-md-8{padding-right:6rem!important;padding-left:6rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-md-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-md-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-md-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pt-md-6{padding-top:4rem!important}.pt-md-7{padding-top:5rem!important}.pt-md-8{padding-top:6rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pe-md-6{padding-right:4rem!important}.pe-md-7{padding-right:5rem!important}.pe-md-8{padding-right:6rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.pb-md-6{padding-bottom:4rem!important}.pb-md-7{padding-bottom:5rem!important}.pb-md-8{padding-bottom:6rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.ps-md-6{padding-left:4rem!important}.ps-md-7{padding-left:5rem!important}.ps-md-8{padding-left:6rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.gap-md-6{gap:4rem!important}.gap-md-7{gap:5rem!important}.gap-md-8{gap:6rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.row-gap-md-6{row-gap:4rem!important}.row-gap-md-7{row-gap:5rem!important}.row-gap-md-8{row-gap:6rem!important}.column-gap-md-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-md-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-md-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-md-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:62rem){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit: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-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-column,.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-column-reverse,.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-lg-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-lg-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-lg-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-lg-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-lg-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-lg-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-lg-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-lg-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-lg-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-lg-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-lg-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-lg-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-lg-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-6{margin:4rem!important}.m-lg-7{margin:5rem!important}.m-lg-8{margin:6rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-6{margin-right:4rem!important;margin-left:4rem!important}.mx-lg-7{margin-right:5rem!important;margin-left:5rem!important}.mx-lg-8{margin-right:6rem!important;margin-left:6rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-lg-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-lg-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-6{margin-top:4rem!important}.mt-lg-7{margin-top:5rem!important}.mt-lg-8{margin-top:6rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-6{margin-right:4rem!important}.me-lg-7{margin-right:5rem!important}.me-lg-8{margin-right:6rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-6{margin-bottom:4rem!important}.mb-lg-7{margin-bottom:5rem!important}.mb-lg-8{margin-bottom:6rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-6{margin-left:4rem!important}.ms-lg-7{margin-left:5rem!important}.ms-lg-8{margin-left:6rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.p-lg-6{padding:4rem!important}.p-lg-7{padding:5rem!important}.p-lg-8{padding:6rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.px-lg-6{padding-right:4rem!important;padding-left:4rem!important}.px-lg-7{padding-right:5rem!important;padding-left:5rem!important}.px-lg-8{padding-right:6rem!important;padding-left:6rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-lg-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-lg-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-lg-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pt-lg-6{padding-top:4rem!important}.pt-lg-7{padding-top:5rem!important}.pt-lg-8{padding-top:6rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pe-lg-6{padding-right:4rem!important}.pe-lg-7{padding-right:5rem!important}.pe-lg-8{padding-right:6rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.pb-lg-6{padding-bottom:4rem!important}.pb-lg-7{padding-bottom:5rem!important}.pb-lg-8{padding-bottom:6rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.ps-lg-6{padding-left:4rem!important}.ps-lg-7{padding-left:5rem!important}.ps-lg-8{padding-left:6rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.gap-lg-6{gap:4rem!important}.gap-lg-7{gap:5rem!important}.gap-lg-8{gap:6rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.row-gap-lg-6{row-gap:4rem!important}.row-gap-lg-7{row-gap:5rem!important}.row-gap-lg-8{row-gap:6rem!important}.column-gap-lg-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-lg-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-lg-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-lg-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:75rem){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-column,.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-column-reverse,.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-xl-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-xl-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-xl-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-xl-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-xl-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-xl-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-xl-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-xl-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-xl-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-6{margin:4rem!important}.m-xl-7{margin:5rem!important}.m-xl-8{margin:6rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-6{margin-right:4rem!important;margin-left:4rem!important}.mx-xl-7{margin-right:5rem!important;margin-left:5rem!important}.mx-xl-8{margin-right:6rem!important;margin-left:6rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-xl-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-xl-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-6{margin-top:4rem!important}.mt-xl-7{margin-top:5rem!important}.mt-xl-8{margin-top:6rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-6{margin-right:4rem!important}.me-xl-7{margin-right:5rem!important}.me-xl-8{margin-right:6rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-6{margin-bottom:4rem!important}.mb-xl-7{margin-bottom:5rem!important}.mb-xl-8{margin-bottom:6rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-6{margin-left:4rem!important}.ms-xl-7{margin-left:5rem!important}.ms-xl-8{margin-left:6rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.p-xl-6{padding:4rem!important}.p-xl-7{padding:5rem!important}.p-xl-8{padding:6rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.px-xl-6{padding-right:4rem!important;padding-left:4rem!important}.px-xl-7{padding-right:5rem!important;padding-left:5rem!important}.px-xl-8{padding-right:6rem!important;padding-left:6rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-xl-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-xl-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-xl-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pt-xl-6{padding-top:4rem!important}.pt-xl-7{padding-top:5rem!important}.pt-xl-8{padding-top:6rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pe-xl-6{padding-right:4rem!important}.pe-xl-7{padding-right:5rem!important}.pe-xl-8{padding-right:6rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.pb-xl-6{padding-bottom:4rem!important}.pb-xl-7{padding-bottom:5rem!important}.pb-xl-8{padding-bottom:6rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.ps-xl-6{padding-left:4rem!important}.ps-xl-7{padding-left:5rem!important}.ps-xl-8{padding-left:6rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.gap-xl-6{gap:4rem!important}.gap-xl-7{gap:5rem!important}.gap-xl-8{gap:6rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.row-gap-xl-6{row-gap:4rem!important}.row-gap-xl-7{row-gap:5rem!important}.row-gap-xl-8{row-gap:6rem!important}.column-gap-xl-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-xl-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-xl-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-xl-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:90rem){.float-2xl-start{float:left!important}.float-2xl-end{float:right!important}.float-2xl-none{float:none!important}.object-fit-2xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-2xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-2xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-2xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-2xl-none{-o-object-fit:none!important;object-fit:none!important}.d-2xl-inline{display:inline!important}.d-2xl-inline-block{display:inline-block!important}.d-2xl-block{display:block!important}.d-2xl-grid{display:grid!important}.d-2xl-inline-grid{display:inline-grid!important}.d-2xl-table{display:table!important}.d-2xl-table-row{display:table-row!important}.d-2xl-table-cell{display:table-cell!important}.d-2xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-2xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-2xl-none{display:none!important}.flex-2xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-2xl-column,.flex-2xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-2xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-2xl-column-reverse,.flex-2xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-2xl-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-2xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-2xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-2xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-2xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-2xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-2xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-2xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-2xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-2xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-2xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-2xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-2xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-2xl-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-2xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-2xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-2xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-2xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-2xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-2xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-2xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-2xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-2xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-2xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-2xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-2xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-2xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-2xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-2xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-2xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-2xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-2xl-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-2xl-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-2xl-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-2xl-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-2xl-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-2xl-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-2xl-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-2xl-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-2xl-0{margin:0!important}.m-2xl-1{margin:.25rem!important}.m-2xl-2{margin:.5rem!important}.m-2xl-3{margin:1rem!important}.m-2xl-4{margin:1.5rem!important}.m-2xl-5{margin:3rem!important}.m-2xl-6{margin:4rem!important}.m-2xl-7{margin:5rem!important}.m-2xl-8{margin:6rem!important}.m-2xl-auto{margin:auto!important}.mx-2xl-0{margin-right:0!important;margin-left:0!important}.mx-2xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-2xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-2xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-2xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-2xl-6{margin-right:4rem!important;margin-left:4rem!important}.mx-2xl-7{margin-right:5rem!important;margin-left:5rem!important}.mx-2xl-8{margin-right:6rem!important;margin-left:6rem!important}.mx-2xl-auto{margin-right:auto!important;margin-left:auto!important}.my-2xl-0{margin-top:0!important;margin-bottom:0!important}.my-2xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-2xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-2xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-2xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-2xl-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-2xl-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-2xl-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-2xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-2xl-0{margin-top:0!important}.mt-2xl-1{margin-top:.25rem!important}.mt-2xl-2{margin-top:.5rem!important}.mt-2xl-3{margin-top:1rem!important}.mt-2xl-4{margin-top:1.5rem!important}.mt-2xl-5{margin-top:3rem!important}.mt-2xl-6{margin-top:4rem!important}.mt-2xl-7{margin-top:5rem!important}.mt-2xl-8{margin-top:6rem!important}.mt-2xl-auto{margin-top:auto!important}.me-2xl-0{margin-right:0!important}.me-2xl-1{margin-right:.25rem!important}.me-2xl-2{margin-right:.5rem!important}.me-2xl-3{margin-right:1rem!important}.me-2xl-4{margin-right:1.5rem!important}.me-2xl-5{margin-right:3rem!important}.me-2xl-6{margin-right:4rem!important}.me-2xl-7{margin-right:5rem!important}.me-2xl-8{margin-right:6rem!important}.me-2xl-auto{margin-right:auto!important}.mb-2xl-0{margin-bottom:0!important}.mb-2xl-1{margin-bottom:.25rem!important}.mb-2xl-2{margin-bottom:.5rem!important}.mb-2xl-3{margin-bottom:1rem!important}.mb-2xl-4{margin-bottom:1.5rem!important}.mb-2xl-5{margin-bottom:3rem!important}.mb-2xl-6{margin-bottom:4rem!important}.mb-2xl-7{margin-bottom:5rem!important}.mb-2xl-8{margin-bottom:6rem!important}.mb-2xl-auto{margin-bottom:auto!important}.ms-2xl-0{margin-left:0!important}.ms-2xl-1{margin-left:.25rem!important}.ms-2xl-2{margin-left:.5rem!important}.ms-2xl-3{margin-left:1rem!important}.ms-2xl-4{margin-left:1.5rem!important}.ms-2xl-5{margin-left:3rem!important}.ms-2xl-6{margin-left:4rem!important}.ms-2xl-7{margin-left:5rem!important}.ms-2xl-8{margin-left:6rem!important}.ms-2xl-auto{margin-left:auto!important}.p-2xl-0{padding:0!important}.p-2xl-1{padding:.25rem!important}.p-2xl-2{padding:.5rem!important}.p-2xl-3{padding:1rem!important}.p-2xl-4{padding:1.5rem!important}.p-2xl-5{padding:3rem!important}.p-2xl-6{padding:4rem!important}.p-2xl-7{padding:5rem!important}.p-2xl-8{padding:6rem!important}.px-2xl-0{padding-right:0!important;padding-left:0!important}.px-2xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-2xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-2xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-2xl-5{padding-right:3rem!important;padding-left:3rem!important}.px-2xl-6{padding-right:4rem!important;padding-left:4rem!important}.px-2xl-7{padding-right:5rem!important;padding-left:5rem!important}.px-2xl-8{padding-right:6rem!important;padding-left:6rem!important}.py-2xl-0{padding-top:0!important;padding-bottom:0!important}.py-2xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-2xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-2xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-2xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-2xl-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-2xl-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-2xl-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-2xl-0{padding-top:0!important}.pt-2xl-1{padding-top:.25rem!important}.pt-2xl-2{padding-top:.5rem!important}.pt-2xl-3{padding-top:1rem!important}.pt-2xl-4{padding-top:1.5rem!important}.pt-2xl-5{padding-top:3rem!important}.pt-2xl-6{padding-top:4rem!important}.pt-2xl-7{padding-top:5rem!important}.pt-2xl-8{padding-top:6rem!important}.pe-2xl-0{padding-right:0!important}.pe-2xl-1{padding-right:.25rem!important}.pe-2xl-2{padding-right:.5rem!important}.pe-2xl-3{padding-right:1rem!important}.pe-2xl-4{padding-right:1.5rem!important}.pe-2xl-5{padding-right:3rem!important}.pe-2xl-6{padding-right:4rem!important}.pe-2xl-7{padding-right:5rem!important}.pe-2xl-8{padding-right:6rem!important}.pb-2xl-0{padding-bottom:0!important}.pb-2xl-1{padding-bottom:.25rem!important}.pb-2xl-2{padding-bottom:.5rem!important}.pb-2xl-3{padding-bottom:1rem!important}.pb-2xl-4{padding-bottom:1.5rem!important}.pb-2xl-5{padding-bottom:3rem!important}.pb-2xl-6{padding-bottom:4rem!important}.pb-2xl-7{padding-bottom:5rem!important}.pb-2xl-8{padding-bottom:6rem!important}.ps-2xl-0{padding-left:0!important}.ps-2xl-1{padding-left:.25rem!important}.ps-2xl-2{padding-left:.5rem!important}.ps-2xl-3{padding-left:1rem!important}.ps-2xl-4{padding-left:1.5rem!important}.ps-2xl-5{padding-left:3rem!important}.ps-2xl-6{padding-left:4rem!important}.ps-2xl-7{padding-left:5rem!important}.ps-2xl-8{padding-left:6rem!important}.gap-2xl-0{gap:0!important}.gap-2xl-1{gap:.25rem!important}.gap-2xl-2{gap:.5rem!important}.gap-2xl-3{gap:1rem!important}.gap-2xl-4{gap:1.5rem!important}.gap-2xl-5{gap:3rem!important}.gap-2xl-6{gap:4rem!important}.gap-2xl-7{gap:5rem!important}.gap-2xl-8{gap:6rem!important}.row-gap-2xl-0{row-gap:0!important}.row-gap-2xl-1{row-gap:.25rem!important}.row-gap-2xl-2{row-gap:.5rem!important}.row-gap-2xl-3{row-gap:1rem!important}.row-gap-2xl-4{row-gap:1.5rem!important}.row-gap-2xl-5{row-gap:3rem!important}.row-gap-2xl-6{row-gap:4rem!important}.row-gap-2xl-7{row-gap:5rem!important}.row-gap-2xl-8{row-gap:6rem!important}.column-gap-2xl-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-2xl-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-2xl-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-2xl-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-2xl-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-2xl-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-2xl-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-2xl-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-2xl-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-2xl-start{text-align:left!important}.text-2xl-end{text-align:right!important}.text-2xl-center{text-align:center!important}}@media (min-width:100rem){.float-3xl-start{float:left!important}.float-3xl-end{float:right!important}.float-3xl-none{float:none!important}.object-fit-3xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-3xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-3xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-3xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-3xl-none{-o-object-fit:none!important;object-fit:none!important}.d-3xl-inline{display:inline!important}.d-3xl-inline-block{display:inline-block!important}.d-3xl-block{display:block!important}.d-3xl-grid{display:grid!important}.d-3xl-inline-grid{display:inline-grid!important}.d-3xl-table{display:table!important}.d-3xl-table-row{display:table-row!important}.d-3xl-table-cell{display:table-cell!important}.d-3xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-3xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-3xl-none{display:none!important}.flex-3xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-3xl-column,.flex-3xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-3xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-3xl-column-reverse,.flex-3xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-3xl-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-3xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-3xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-3xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-3xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-3xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-3xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-3xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-3xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-3xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-3xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-3xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-3xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-3xl-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-3xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-3xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-3xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-3xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-3xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-3xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-3xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-3xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-3xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-3xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-3xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-3xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-3xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-3xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-3xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-3xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-3xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-3xl-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-3xl-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-3xl-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-3xl-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-3xl-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-3xl-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-3xl-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-3xl-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-3xl-0{margin:0!important}.m-3xl-1{margin:.25rem!important}.m-3xl-2{margin:.5rem!important}.m-3xl-3{margin:1rem!important}.m-3xl-4{margin:1.5rem!important}.m-3xl-5{margin:3rem!important}.m-3xl-6{margin:4rem!important}.m-3xl-7{margin:5rem!important}.m-3xl-8{margin:6rem!important}.m-3xl-auto{margin:auto!important}.mx-3xl-0{margin-right:0!important;margin-left:0!important}.mx-3xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-3xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-3xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-3xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-3xl-6{margin-right:4rem!important;margin-left:4rem!important}.mx-3xl-7{margin-right:5rem!important;margin-left:5rem!important}.mx-3xl-8{margin-right:6rem!important;margin-left:6rem!important}.mx-3xl-auto{margin-right:auto!important;margin-left:auto!important}.my-3xl-0{margin-top:0!important;margin-bottom:0!important}.my-3xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-3xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-3xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-3xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-3xl-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-3xl-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-3xl-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-3xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-3xl-0{margin-top:0!important}.mt-3xl-1{margin-top:.25rem!important}.mt-3xl-2{margin-top:.5rem!important}.mt-3xl-3{margin-top:1rem!important}.mt-3xl-4{margin-top:1.5rem!important}.mt-3xl-5{margin-top:3rem!important}.mt-3xl-6{margin-top:4rem!important}.mt-3xl-7{margin-top:5rem!important}.mt-3xl-8{margin-top:6rem!important}.mt-3xl-auto{margin-top:auto!important}.me-3xl-0{margin-right:0!important}.me-3xl-1{margin-right:.25rem!important}.me-3xl-2{margin-right:.5rem!important}.me-3xl-3{margin-right:1rem!important}.me-3xl-4{margin-right:1.5rem!important}.me-3xl-5{margin-right:3rem!important}.me-3xl-6{margin-right:4rem!important}.me-3xl-7{margin-right:5rem!important}.me-3xl-8{margin-right:6rem!important}.me-3xl-auto{margin-right:auto!important}.mb-3xl-0{margin-bottom:0!important}.mb-3xl-1{margin-bottom:.25rem!important}.mb-3xl-2{margin-bottom:.5rem!important}.mb-3xl-3{margin-bottom:1rem!important}.mb-3xl-4{margin-bottom:1.5rem!important}.mb-3xl-5{margin-bottom:3rem!important}.mb-3xl-6{margin-bottom:4rem!important}.mb-3xl-7{margin-bottom:5rem!important}.mb-3xl-8{margin-bottom:6rem!important}.mb-3xl-auto{margin-bottom:auto!important}.ms-3xl-0{margin-left:0!important}.ms-3xl-1{margin-left:.25rem!important}.ms-3xl-2{margin-left:.5rem!important}.ms-3xl-3{margin-left:1rem!important}.ms-3xl-4{margin-left:1.5rem!important}.ms-3xl-5{margin-left:3rem!important}.ms-3xl-6{margin-left:4rem!important}.ms-3xl-7{margin-left:5rem!important}.ms-3xl-8{margin-left:6rem!important}.ms-3xl-auto{margin-left:auto!important}.p-3xl-0{padding:0!important}.p-3xl-1{padding:.25rem!important}.p-3xl-2{padding:.5rem!important}.p-3xl-3{padding:1rem!important}.p-3xl-4{padding:1.5rem!important}.p-3xl-5{padding:3rem!important}.p-3xl-6{padding:4rem!important}.p-3xl-7{padding:5rem!important}.p-3xl-8{padding:6rem!important}.px-3xl-0{padding-right:0!important;padding-left:0!important}.px-3xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-3xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-3xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-3xl-5{padding-right:3rem!important;padding-left:3rem!important}.px-3xl-6{padding-right:4rem!important;padding-left:4rem!important}.px-3xl-7{padding-right:5rem!important;padding-left:5rem!important}.px-3xl-8{padding-right:6rem!important;padding-left:6rem!important}.py-3xl-0{padding-top:0!important;padding-bottom:0!important}.py-3xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-3xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-3xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-3xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-3xl-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-3xl-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-3xl-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-3xl-0{padding-top:0!important}.pt-3xl-1{padding-top:.25rem!important}.pt-3xl-2{padding-top:.5rem!important}.pt-3xl-3{padding-top:1rem!important}.pt-3xl-4{padding-top:1.5rem!important}.pt-3xl-5{padding-top:3rem!important}.pt-3xl-6{padding-top:4rem!important}.pt-3xl-7{padding-top:5rem!important}.pt-3xl-8{padding-top:6rem!important}.pe-3xl-0{padding-right:0!important}.pe-3xl-1{padding-right:.25rem!important}.pe-3xl-2{padding-right:.5rem!important}.pe-3xl-3{padding-right:1rem!important}.pe-3xl-4{padding-right:1.5rem!important}.pe-3xl-5{padding-right:3rem!important}.pe-3xl-6{padding-right:4rem!important}.pe-3xl-7{padding-right:5rem!important}.pe-3xl-8{padding-right:6rem!important}.pb-3xl-0{padding-bottom:0!important}.pb-3xl-1{padding-bottom:.25rem!important}.pb-3xl-2{padding-bottom:.5rem!important}.pb-3xl-3{padding-bottom:1rem!important}.pb-3xl-4{padding-bottom:1.5rem!important}.pb-3xl-5{padding-bottom:3rem!important}.pb-3xl-6{padding-bottom:4rem!important}.pb-3xl-7{padding-bottom:5rem!important}.pb-3xl-8{padding-bottom:6rem!important}.ps-3xl-0{padding-left:0!important}.ps-3xl-1{padding-left:.25rem!important}.ps-3xl-2{padding-left:.5rem!important}.ps-3xl-3{padding-left:1rem!important}.ps-3xl-4{padding-left:1.5rem!important}.ps-3xl-5{padding-left:3rem!important}.ps-3xl-6{padding-left:4rem!important}.ps-3xl-7{padding-left:5rem!important}.ps-3xl-8{padding-left:6rem!important}.gap-3xl-0{gap:0!important}.gap-3xl-1{gap:.25rem!important}.gap-3xl-2{gap:.5rem!important}.gap-3xl-3{gap:1rem!important}.gap-3xl-4{gap:1.5rem!important}.gap-3xl-5{gap:3rem!important}.gap-3xl-6{gap:4rem!important}.gap-3xl-7{gap:5rem!important}.gap-3xl-8{gap:6rem!important}.row-gap-3xl-0{row-gap:0!important}.row-gap-3xl-1{row-gap:.25rem!important}.row-gap-3xl-2{row-gap:.5rem!important}.row-gap-3xl-3{row-gap:1rem!important}.row-gap-3xl-4{row-gap:1.5rem!important}.row-gap-3xl-5{row-gap:3rem!important}.row-gap-3xl-6{row-gap:4rem!important}.row-gap-3xl-7{row-gap:5rem!important}.row-gap-3xl-8{row-gap:6rem!important}.column-gap-3xl-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-3xl-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-3xl-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-3xl-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-3xl-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-3xl-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-3xl-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-3xl-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-3xl-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-3xl-start{text-align:left!important}.text-3xl-end{text-align:right!important}.text-3xl-center{text-align:center!important}}@media (min-width:125rem){.float-4xl-start{float:left!important}.float-4xl-end{float:right!important}.float-4xl-none{float:none!important}.object-fit-4xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-4xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-4xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-4xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-4xl-none{-o-object-fit:none!important;object-fit:none!important}.d-4xl-inline{display:inline!important}.d-4xl-inline-block{display:inline-block!important}.d-4xl-block{display:block!important}.d-4xl-grid{display:grid!important}.d-4xl-inline-grid{display:inline-grid!important}.d-4xl-table{display:table!important}.d-4xl-table-row{display:table-row!important}.d-4xl-table-cell{display:table-cell!important}.d-4xl-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-4xl-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-4xl-none{display:none!important}.flex-4xl-fill{-webkit-box-flex:1!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-4xl-column,.flex-4xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-4xl-column{-webkit-box-orient:vertical!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-4xl-column-reverse,.flex-4xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-4xl-column-reverse{-webkit-box-orient:vertical!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-4xl-grow-0{-webkit-box-flex:0!important;-ms-flex-positive:0!important;flex-grow:0!important}.flex-4xl-grow-1{-webkit-box-flex:1!important;-ms-flex-positive:1!important;flex-grow:1!important}.flex-4xl-shrink-0{-ms-flex-negative:0!important;flex-shrink:0!important}.flex-4xl-shrink-1{-ms-flex-negative:1!important;flex-shrink:1!important}.flex-4xl-wrap{-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-4xl-nowrap{-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-4xl-wrap-reverse{-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-4xl-start{-webkit-box-pack:start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-4xl-end{-webkit-box-pack:end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-4xl-center{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-4xl-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-4xl-around{-ms-flex-pack:distribute!important;justify-content:space-around!important}.justify-content-4xl-evenly{-webkit-box-pack:space-evenly!important;-ms-flex-pack:space-evenly!important;justify-content:space-evenly!important}.align-items-4xl-start{-webkit-box-align:start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-4xl-end{-webkit-box-align:end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-4xl-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-4xl-baseline{-webkit-box-align:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-4xl-stretch{-webkit-box-align:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-4xl-start{-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-4xl-end{-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-4xl-center{-ms-flex-line-pack:center!important;align-content:center!important}.align-content-4xl-between{-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-4xl-around{-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-4xl-stretch{-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-4xl-auto{-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-4xl-start{-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-4xl-end{-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-4xl-center{-ms-flex-item-align:center!important;align-self:center!important}.align-self-4xl-baseline{-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-4xl-stretch{-ms-flex-item-align:stretch!important;align-self:stretch!important}.order-4xl-first{-webkit-box-ordinal-group:0!important;-ms-flex-order:-1!important;order:-1!important}.order-4xl-0{-webkit-box-ordinal-group:1!important;-ms-flex-order:0!important;order:0!important}.order-4xl-1{-webkit-box-ordinal-group:2!important;-ms-flex-order:1!important;order:1!important}.order-4xl-2{-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important}.order-4xl-3{-webkit-box-ordinal-group:4!important;-ms-flex-order:3!important;order:3!important}.order-4xl-4{-webkit-box-ordinal-group:5!important;-ms-flex-order:4!important;order:4!important}.order-4xl-5{-webkit-box-ordinal-group:6!important;-ms-flex-order:5!important;order:5!important}.order-4xl-last{-webkit-box-ordinal-group:7!important;-ms-flex-order:6!important;order:6!important}.m-4xl-0{margin:0!important}.m-4xl-1{margin:.25rem!important}.m-4xl-2{margin:.5rem!important}.m-4xl-3{margin:1rem!important}.m-4xl-4{margin:1.5rem!important}.m-4xl-5{margin:3rem!important}.m-4xl-6{margin:4rem!important}.m-4xl-7{margin:5rem!important}.m-4xl-8{margin:6rem!important}.m-4xl-auto{margin:auto!important}.mx-4xl-0{margin-right:0!important;margin-left:0!important}.mx-4xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-4xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-4xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-4xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-4xl-6{margin-right:4rem!important;margin-left:4rem!important}.mx-4xl-7{margin-right:5rem!important;margin-left:5rem!important}.mx-4xl-8{margin-right:6rem!important;margin-left:6rem!important}.mx-4xl-auto{margin-right:auto!important;margin-left:auto!important}.my-4xl-0{margin-top:0!important;margin-bottom:0!important}.my-4xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-4xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-4xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-4xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-4xl-6{margin-top:4rem!important;margin-bottom:4rem!important}.my-4xl-7{margin-top:5rem!important;margin-bottom:5rem!important}.my-4xl-8{margin-top:6rem!important;margin-bottom:6rem!important}.my-4xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-4xl-0{margin-top:0!important}.mt-4xl-1{margin-top:.25rem!important}.mt-4xl-2{margin-top:.5rem!important}.mt-4xl-3{margin-top:1rem!important}.mt-4xl-4{margin-top:1.5rem!important}.mt-4xl-5{margin-top:3rem!important}.mt-4xl-6{margin-top:4rem!important}.mt-4xl-7{margin-top:5rem!important}.mt-4xl-8{margin-top:6rem!important}.mt-4xl-auto{margin-top:auto!important}.me-4xl-0{margin-right:0!important}.me-4xl-1{margin-right:.25rem!important}.me-4xl-2{margin-right:.5rem!important}.me-4xl-3{margin-right:1rem!important}.me-4xl-4{margin-right:1.5rem!important}.me-4xl-5{margin-right:3rem!important}.me-4xl-6{margin-right:4rem!important}.me-4xl-7{margin-right:5rem!important}.me-4xl-8{margin-right:6rem!important}.me-4xl-auto{margin-right:auto!important}.mb-4xl-0{margin-bottom:0!important}.mb-4xl-1{margin-bottom:.25rem!important}.mb-4xl-2{margin-bottom:.5rem!important}.mb-4xl-3{margin-bottom:1rem!important}.mb-4xl-4{margin-bottom:1.5rem!important}.mb-4xl-5{margin-bottom:3rem!important}.mb-4xl-6{margin-bottom:4rem!important}.mb-4xl-7{margin-bottom:5rem!important}.mb-4xl-8{margin-bottom:6rem!important}.mb-4xl-auto{margin-bottom:auto!important}.ms-4xl-0{margin-left:0!important}.ms-4xl-1{margin-left:.25rem!important}.ms-4xl-2{margin-left:.5rem!important}.ms-4xl-3{margin-left:1rem!important}.ms-4xl-4{margin-left:1.5rem!important}.ms-4xl-5{margin-left:3rem!important}.ms-4xl-6{margin-left:4rem!important}.ms-4xl-7{margin-left:5rem!important}.ms-4xl-8{margin-left:6rem!important}.ms-4xl-auto{margin-left:auto!important}.p-4xl-0{padding:0!important}.p-4xl-1{padding:.25rem!important}.p-4xl-2{padding:.5rem!important}.p-4xl-3{padding:1rem!important}.p-4xl-4{padding:1.5rem!important}.p-4xl-5{padding:3rem!important}.p-4xl-6{padding:4rem!important}.p-4xl-7{padding:5rem!important}.p-4xl-8{padding:6rem!important}.px-4xl-0{padding-right:0!important;padding-left:0!important}.px-4xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-4xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-4xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-4xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-4xl-5{padding-right:3rem!important;padding-left:3rem!important}.px-4xl-6{padding-right:4rem!important;padding-left:4rem!important}.px-4xl-7{padding-right:5rem!important;padding-left:5rem!important}.px-4xl-8{padding-right:6rem!important;padding-left:6rem!important}.py-4xl-0{padding-top:0!important;padding-bottom:0!important}.py-4xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-4xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-4xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-4xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.py-4xl-6{padding-top:4rem!important;padding-bottom:4rem!important}.py-4xl-7{padding-top:5rem!important;padding-bottom:5rem!important}.py-4xl-8{padding-top:6rem!important;padding-bottom:6rem!important}.pt-4xl-0{padding-top:0!important}.pt-4xl-1{padding-top:.25rem!important}.pt-4xl-2{padding-top:.5rem!important}.pt-4xl-3{padding-top:1rem!important}.pt-4xl-4{padding-top:1.5rem!important}.pt-4xl-5{padding-top:3rem!important}.pt-4xl-6{padding-top:4rem!important}.pt-4xl-7{padding-top:5rem!important}.pt-4xl-8{padding-top:6rem!important}.pe-4xl-0{padding-right:0!important}.pe-4xl-1{padding-right:.25rem!important}.pe-4xl-2{padding-right:.5rem!important}.pe-4xl-3{padding-right:1rem!important}.pe-4xl-4{padding-right:1.5rem!important}.pe-4xl-5{padding-right:3rem!important}.pe-4xl-6{padding-right:4rem!important}.pe-4xl-7{padding-right:5rem!important}.pe-4xl-8{padding-right:6rem!important}.pb-4xl-0{padding-bottom:0!important}.pb-4xl-1{padding-bottom:.25rem!important}.pb-4xl-2{padding-bottom:.5rem!important}.pb-4xl-3{padding-bottom:1rem!important}.pb-4xl-4{padding-bottom:1.5rem!important}.pb-4xl-5{padding-bottom:3rem!important}.pb-4xl-6{padding-bottom:4rem!important}.pb-4xl-7{padding-bottom:5rem!important}.pb-4xl-8{padding-bottom:6rem!important}.ps-4xl-0{padding-left:0!important}.ps-4xl-1{padding-left:.25rem!important}.ps-4xl-2{padding-left:.5rem!important}.ps-4xl-3{padding-left:1rem!important}.ps-4xl-4{padding-left:1.5rem!important}.ps-4xl-5{padding-left:3rem!important}.ps-4xl-6{padding-left:4rem!important}.ps-4xl-7{padding-left:5rem!important}.ps-4xl-8{padding-left:6rem!important}.gap-4xl-0{gap:0!important}.gap-4xl-1{gap:.25rem!important}.gap-4xl-2{gap:.5rem!important}.gap-4xl-3{gap:1rem!important}.gap-4xl-4{gap:1.5rem!important}.gap-4xl-5{gap:3rem!important}.gap-4xl-6{gap:4rem!important}.gap-4xl-7{gap:5rem!important}.gap-4xl-8{gap:6rem!important}.row-gap-4xl-0{row-gap:0!important}.row-gap-4xl-1{row-gap:.25rem!important}.row-gap-4xl-2{row-gap:.5rem!important}.row-gap-4xl-3{row-gap:1rem!important}.row-gap-4xl-4{row-gap:1.5rem!important}.row-gap-4xl-5{row-gap:3rem!important}.row-gap-4xl-6{row-gap:4rem!important}.row-gap-4xl-7{row-gap:5rem!important}.row-gap-4xl-8{row-gap:6rem!important}.column-gap-4xl-0{-webkit-column-gap:0!important;-moz-column-gap:0!important;column-gap:0!important}.column-gap-4xl-1{-webkit-column-gap:.25rem!important;-moz-column-gap:.25rem!important;column-gap:.25rem!important}.column-gap-4xl-2{-webkit-column-gap:.5rem!important;-moz-column-gap:.5rem!important;column-gap:.5rem!important}.column-gap-4xl-3{-webkit-column-gap:1rem!important;-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4xl-4{-webkit-column-gap:1.5rem!important;-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-4xl-5{-webkit-column-gap:3rem!important;-moz-column-gap:3rem!important;column-gap:3rem!important}.column-gap-4xl-6{-webkit-column-gap:4rem!important;-moz-column-gap:4rem!important;column-gap:4rem!important}.column-gap-4xl-7{-webkit-column-gap:5rem!important;-moz-column-gap:5rem!important;column-gap:5rem!important}.column-gap-4xl-8{-webkit-column-gap:6rem!important;-moz-column-gap:6rem!important;column-gap:6rem!important}.text-4xl-start{text-align:left!important}.text-4xl-end{text-align:right!important}.text-4xl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important}.d-print-none{display:none!important}}a.a--wrap::after,blockquote::before{position:absolute;top:0;left:0;content:""}a.a--wrap::after{right:0;bottom:0;z-index:1;pointer-events:auto;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.min-height-vp{min-height:var(--window-height)}.height-vp{height:var(--window-height)}.min-height-vp-live{min-height:var(--window-height-live)}.height-vp-live{height:var(--window-height-live)}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;border:0;padding:0;clip:rect(0 0 0 0);overflow:hidden}blockquote{position:relative;padding-left:1.5rem}blockquote::before{width:.25rem;height:100%;background:#eb6d01}:root:not(.is-touch) a:not(.btn).link-light:hover{opacity:.65}.gsap-marker-end,.gsap-marker-scroller-end,.gsap-marker-scroller-start,.gsap-marker-start{z-index:9999!important}:root,body{overflow-x:hidden}.wrapper,main.main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.wrapper{background:var(--bg-url) repeat-y 0 0;min-height:var(--window-height-live);-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch}@media (orientation:landscape){.wrapper{background-size:100% auto}}@media (orientation:portrait){.wrapper{background-size:200% auto;background-position:top right}}main.main{position:relative;width:100%;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}section.main-section{padding-bottom:2.5rem}@media (min-width:48rem){section.main-section{padding-bottom:3.5rem}}@media (min-width:75rem){section.main-section{padding-bottom:4rem}}section.main-section .h1-wrapper,section.main-section .h2-wrapper{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:.625rem}@media (min-width:48rem){section.main-section .h1-wrapper,section.main-section .h2-wrapper{margin-bottom:.875rem}}section.main-section .h1-wrapper .h1,section.main-section .h1-wrapper .h2,section.main-section .h1-wrapper h1,section.main-section .h1-wrapper h2,section.main-section .h2-wrapper .h1,section.main-section .h2-wrapper .h2,section.main-section .h2-wrapper h1,section.main-section .h2-wrapper h2{margin-bottom:0}section.main-section .h1-wrapper .h1+.h1-shadow,section.main-section .h1-wrapper .h2+.h2-shadow,section.main-section .h1-wrapper h1+.h1-shadow,section.main-section .h1-wrapper h2+.h2-shadow,section.main-section .h2-wrapper .h1+.h1-shadow,section.main-section .h2-wrapper .h2+.h2-shadow,section.main-section .h2-wrapper h1+.h1-shadow,section.main-section .h2-wrapper h2+.h2-shadow{pointer-events:none;position:absolute;font-family:"Mulish-BlackItalic",sans-serif;font-weight:500;font-size:3.125rem;line-height:1;color:#2787f5;opacity:.05;top:-.625rem;left:-.625rem;white-space:nowrap}@media (min-width:48rem){section.main-section .h1-wrapper .h1+.h1-shadow,section.main-section .h1-wrapper .h2+.h2-shadow,section.main-section .h1-wrapper h1+.h1-shadow,section.main-section .h1-wrapper h2+.h2-shadow,section.main-section .h2-wrapper .h1+.h1-shadow,section.main-section .h2-wrapper .h2+.h2-shadow,section.main-section .h2-wrapper h1+.h1-shadow,section.main-section .h2-wrapper h2+.h2-shadow{font-size:4.25rem;top:-1.375rem;left:-1.25rem}}@media (min-width:75rem){section.main-section .h1-wrapper .h1+.h1-shadow,section.main-section .h1-wrapper .h2+.h2-shadow,section.main-section .h1-wrapper h1+.h1-shadow,section.main-section .h1-wrapper h2+.h2-shadow,section.main-section .h2-wrapper .h1+.h1-shadow,section.main-section .h2-wrapper .h2+.h2-shadow,section.main-section .h2-wrapper h1+.h1-shadow,section.main-section .h2-wrapper h2+.h2-shadow{font-size:6.25rem;top:-2.625rem;left:-2rem}}section.main-section .h1-wrapper-right-column,section.main-section .h2-wrapper-right-column{position:relative;margin-left:auto;margin-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:1rem}section.main-section .h1-wrapper-right-column a,section.main-section .h2-wrapper-right-column a{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500}section.main-section.is-dark{padding-top:2.5rem;padding-bottom:2.5rem}@media (min-width:48rem){section.main-section.is-dark{padding-top:3.5rem;padding-bottom:3.5rem}}@media (min-width:75rem){section.main-section.is-dark{padding-top:4rem;padding-bottom:4rem}}section.main-section.is-dark{background:#005d94;background-image:var(--bg-url);background-position:0 0;background-size:100% auto}section.main-section.is-dark+section.main-section:not(.is-dark){padding-top:2.5rem}@media (min-width:48rem){section.main-section.is-dark+section.main-section:not(.is-dark){padding-top:3.5rem}}@media (min-width:75rem){section.main-section.is-dark+section.main-section:not(.is-dark){padding-top:4rem}}section.main-section.is-dark .h1-wrapper .h1,section.main-section.is-dark .h1-wrapper .h2,section.main-section.is-dark .h1-wrapper h1,section.main-section.is-dark .h1-wrapper h2,section.main-section.is-dark .h2-wrapper .h1,section.main-section.is-dark .h2-wrapper .h2,section.main-section.is-dark .h2-wrapper h1,section.main-section.is-dark .h2-wrapper h2{color:#fff}section.main-section.no-padding,section.main-section.no-padding .container{padding:0}.video-container>div{display:-webkit-box;display:-ms-flexbox;display:flex}.card-media>div,.video-container>div>iframe,.video-container>div>video{width:100%;height:100%}.main-intro{margin-bottom:2rem}@media (min-width:75rem){.main-intro{margin-bottom:4rem}}.main-intro-content{position:relative}@media (max-width:47.98rem){.main-intro-content{height:115vw}}@media (min-width:48rem){.main-intro-content{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.main-intro-content__pattern{width:100vw;margin-left:calc(var(--bs-gutter-x)*-.5)}@media (min-width:36rem){.main-intro-content__pattern{margin-left:calc((100vw - 32rem)*-.5 + var(--bs-gutter-x)*-.5)}}@media (min-width:48rem){.main-intro-content__pattern{margin-left:unset;-webkit-box-flex:0;-ms-flex:0 0 40%;flex:0 0 40%;width:40%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;-webkit-transform:translateX(calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5));-ms-transform:translateX(calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5));transform:translateX(calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5))}}@media (min-width:62rem){.main-intro-content__pattern{-webkit-transform:unset;-ms-transform:unset;transform:unset;margin-left:8%;-webkit-box-flex:0;-ms-flex:0 0 32%;flex:0 0 32%;width:32%}}.main-intro-content__pattern .pattern-grid{width:100%;height:100%;display:grid;grid-template:repeat(5,1fr)/repeat(5,1fr)}@media (max-width:47.98rem){.main-intro-content__pattern .pattern-grid{padding:0 0 25vw 25vw}}.main-intro-content__pattern .pattern-grid-cell{position:relative}.main-intro-content__pattern .pattern-grid-cell.cell-1{grid-column:3/4;grid-row:1/2}.main-intro-content__pattern .pattern-grid-cell.cell-2{grid-column:4/6;grid-row:1/3}.main-intro-content__pattern .pattern-grid-cell.cell-3{grid-column:2/3;grid-row:2/4}.main-intro-content__pattern .pattern-grid-cell.cell-4{grid-column:3/4;grid-row:2/3}.main-intro-content__pattern .pattern-grid-cell.cell-5{grid-column:3/4;grid-row:3/4}.main-intro-content__pattern .pattern-grid-cell.cell-6{grid-column:4/5;grid-row:3/4}.main-intro-content__pattern .pattern-grid-cell.cell-7{grid-column:5/6;grid-row:3/4}.main-intro-content__pattern .pattern-grid-cell.cell-8{grid-column:3/4;grid-row:4/5}.main-intro-content__pattern .pattern-grid-cell.cell-9{grid-column:4/5;grid-row:4/5}.main-intro-content__pattern .pattern-grid-cell.cell-10{grid-column:5/6;grid-row:4/5}.main-intro-content__pattern .pattern-grid-cell.cell-11{grid-column:1/3;grid-row:4/6;-webkit-transform:translateX(-25%);-ms-transform:translateX(-25%);transform:translateX(-25%)}.main-intro-content__pattern .pattern-grid-cell.cell-12{grid-column:1/2;grid-row:3/4;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.main-intro-content__pattern .pattern-grid-cell img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top center;object-position:top center}.main-intro-content__pattern .pattern-grid-cell.cell-age img{margin-top:50%;width:50%;height:50%}.main-intro-content__pattern .pattern-grid-cell.animation-1 img{-webkit-animation:crossfadeDirect 14s infinite;animation:crossfadeDirect 14s infinite}.main-intro-content__pattern .pattern-grid-cell.animation-1 .img-1{-webkit-animation-delay:0s;animation-delay:0s}.main-intro-content__pattern .pattern-grid-cell.animation-1 .img-2{-webkit-animation-delay:3.5s;animation-delay:3.5s}.main-intro-content__pattern .pattern-grid-cell.animation-1 .img-3{-webkit-animation-delay:7s;animation-delay:7s}.main-intro-content__pattern .pattern-grid-cell.animation-1 .img-4{-webkit-animation-delay:10.5s;animation-delay:10.5s}.main-intro-content__pattern .pattern-grid-cell.animation-2 img{-webkit-animation:crossfadeDirect 10.5s infinite;animation:crossfadeDirect 10.5s infinite}.main-intro-content__pattern .pattern-grid-cell.animation-2 .img-1{-webkit-animation-delay:3s;animation-delay:3s}.main-intro-content__pattern .pattern-grid-cell.animation-2 .img-2{-webkit-animation-delay:6.5s;animation-delay:6.5s}.main-intro-content__pattern .pattern-grid-cell.animation-2 .img-3{-webkit-animation-delay:10s;animation-delay:10s}.main-intro-content__pattern .pattern-grid-cell.animation-3 img{-webkit-animation:crossfade 10s infinite;animation:crossfade 10s infinite}.main-intro-content__pattern .pattern-grid-cell.animation-3 .img-1{-webkit-animation-delay:5s;animation-delay:5s}.main-intro-content__pattern .pattern-grid-cell.animation-3 .img-2{-webkit-animation-delay:10s;animation-delay:10s}.main-intro-content__slogan{width:100%;height:35vw;position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;bottom:0}@media (min-width:48rem){.main-intro-content__slogan{position:relative;height:unset;padding:4rem 2rem 4rem 0;-webkit-box-flex:0;-ms-flex:0 0 60%;flex:0 0 60%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.main-intro-content__slogan img{width:100%;max-width:45rem;height:auto}.news-detail-date{color:#eb6d01;font-family:"Mulish-Black",sans-serif;font-weight:500}.news-detail-cover{margin:1.5rem 0}@media (min-width:75rem){.news-detail-cover{margin:2rem 0}}.news-detail-cover img{width:100%;height:auto}.news-detail-lead,.news-detail-text{color:#005d94}.news-detail-lead .h2,.news-detail-lead .h3,.news-detail-lead .h4,.news-detail-lead .h5,.news-detail-lead h2,.news-detail-lead h3,.news-detail-lead h4,.news-detail-lead h5,.news-detail-lead p,.news-detail-text .h2,.news-detail-text .h3,.news-detail-text .h4,.news-detail-text .h5,.news-detail-text h2,.news-detail-text h3,.news-detail-text h4,.news-detail-text h5,.news-detail-text p{color:#005d94!important}.news-detail-lead p{font-family:"Mulish-Black",sans-serif;font-weight:500}.news-detail-text .h2,.news-detail-text .h3,.news-detail-text .h4,.news-detail-text .h5,.news-detail-text h2,.news-detail-text h3,.news-detail-text h4,.news-detail-text h5{margin-top:2rem!important;margin-bottom:1.5rem!important;font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:1.25rem!important}.team-detail{padding-bottom:0!important}.team-detail .team-photo{position:relative}@media (max-width:35.98rem){.team-detail .team-photo{width:100vw;margin-left:calc(var(--bs-gutter-x)*-.5)}}.page-404-bg img,.team-detail .team-photo__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.team-detail .team-photo__img,.team-detail .team-photo__img img{position:relative}.team-detail .team-photo__img::after{position:absolute;content:"";left:0;bottom:0;right:0;width:100%;height:50%;background:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.85)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.85),transparent)}.team-detail .team-photo__arrows,.team-detail .team-photo__info{position:absolute;bottom:0}.team-detail .team-photo__info{padding-right:2rem;left:0;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.team-detail .team-photo__info .info-logo{-webkit-box-flex:0;-ms-flex:0 0 3.75rem;flex:0 0 3.75rem}@media (min-width:48rem){.team-detail .team-photo__info .info-logo{-webkit-box-flex:0;-ms-flex:0 0 6.25rem;flex:0 0 6.25rem}}@media (min-width:75rem){.team-detail .team-photo__info .info-logo{-webkit-box-flex:0;-ms-flex:0 0 10rem;flex:0 0 10rem}}.team-detail .team-photo__info .info-logo img{-o-object-position:center;object-position:center}.team-detail .team-photo__info .info-name{padding-left:.5rem;color:#fff}@media (min-width:48rem){.team-detail .team-photo__info .info-name{padding-left:1rem}}.team-detail .team-photo__info .info-name .name{font-family:"Mulish-BlackItalic",sans-serif;font-weight:500;text-transform:uppercase;line-height:1;font-size:1rem}@media (min-width:48rem){.team-detail .team-photo__info .info-name .name{font-size:2rem}}@media (min-width:75rem){.team-detail .team-photo__info .info-name .name{font-size:3.5rem}}.team-detail .team-photo__info .info-name .city{font-family:"Mulish-BlackItalic",sans-serif;font-weight:500;font-size:.875rem}@media (min-width:48rem){.team-detail .team-photo__info .info-name .city{font-size:1rem}}@media (min-width:75rem){.team-detail .team-photo__info .info-name .city{font-size:1.5rem}}.page-404,.team-detail .team-photo__arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.team-detail .team-photo__arrows{z-index:20;right:0;height:auto}@media (min-width:48rem){.team-detail .team-photo__arrows{height:6.25rem;row-gap:.5rem;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}@media (min-width:75rem){.team-detail .team-photo__arrows{height:10rem;row-gap:1rem}}.team-detail .team-photo__arrows .btn{padding-left:0;padding-right:0}@media (min-width:75rem){.team-detail .team-photo__arrows .btn{width:3rem;height:3rem}}.page-404{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.page-404-bg{position:absolute;top:10%;left:10%;right:10%;width:80%;height:100%}.page-404-bg img{-o-object-position:top center;object-position:top center}.page-404-text,.page-404-title{position:relative;font-family:"Mulish-BlackItalic",sans-serif;font-weight:500;text-align:center;line-height:1.25}.page-404-title{color:#2787f5;font-size:6.25rem}@media (min-width:48rem){.page-404-title{font-size:7.5rem}}.page-404-text{margin-top:1rem;color:#005d94;font-size:1rem}@media (min-width:48rem){.page-404-text{font-size:1.25rem}}.icon{display:inline-block;width:100%}.icon__svg{display:block;width:inherit;height:inherit;fill:currentColor}.icon--empty{border-radius:50%;background:#ddd}.badge.badge-label{padding:.125rem .75rem}@media (min-width:75rem){.badge.badge-label{padding:.25rem 1rem}}.banner{width:100%;background:#d7d7d7;--bs-aspect-ratio:30%}.banner>div img,.team-detail .team-photo__info .info-logo img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.breadcrumbs{margin:1.5rem 0 0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.25rem;list-style-type:none;font-size:.75rem}@media (min-width:75rem){.breadcrumbs{margin:2rem 0 0;font-size:.875rem}}.breadcrumbs__item{color:#005d94}.breadcrumbs__item span.is-current{color:rgba(0,93,148,.5)}.btn.button-badged{position:relative;background:0 0!important;border:0!important;color:#fff!important;height:1.5rem}.btn.button-badged span.icon{width:1.5rem;height:1.5rem}.btn.button-badged span.badge{position:absolute;z-index:20;top:-.5rem;left:50%}.btn{border:0;border-radius:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-transform:uppercase;letter-spacing:.025rem}.btn.btn-blue-basic,.btn.btn-orange-100,.btn.btn-red-basic{color:#fff}.btn.btn-blue-basic:focus,.btn.btn-blue-basic:focus:active,.btn.btn-blue-basic:hover{background:#215093}.btn span.icon{margin-right:12px;display:inline-block;width:20px;height:20px;-webkit-transform:translateY(-2%);-ms-transform:translateY(-2%);transform:translateY(-2%)}.btn span.icon svg{fill:currentColor!important}.btn span.icon img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center center;object-position:center center}.btn-sm span.icon,.btn-xs span.icon{width:16px;height:16px}.btn-lg span.icon{margin-right:16px;width:32px;height:32px}.btn-icon-only{padding:0 calc(var(--bs-btn-padding-x)*.5)}.btn-icon-only span.icon{margin-right:0}.btn:not(.btn-icon-only) span.icon{position:relative;height:1px}.btn:not(.btn-icon-only) span.icon img,.btn:not(.btn-icon-only) span.icon svg{position:absolute;width:20px;height:20px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.btn:not(.btn-icon-only).btn-sm span.icon img,.btn:not(.btn-icon-only).btn-sm span.icon svg,.btn:not(.btn-icon-only).btn-xs span.icon img,.btn:not(.btn-icon-only).btn-xs span.icon svg{width:16px;height:16px}.btn:not(.btn-icon-only).btn-lg span.icon img,.btn:not(.btn-icon-only).btn-lg span.icon svg{width:32px;height:32px}.btn.btn-plain-icon{padding:0;border-radius:0}.card-media,.card-news{position:relative}.card-media .media-play,.card-news .news-img .media-play{position:absolute;top:0;left:0;background:rgba(0,0,0,.25);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.card-media .media-play img,.card-news .news-img .media-play img{width:2rem;height:2rem}.card-media .media-img,.card-media .media-play,.card-news .news-img,.card-news .news-img .media-play,.card-news .news-title{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex}.card-media .media-img>img,.card-news .news-img>img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.card-media .media-img>img{margin:0;position:relative;display:block;-o-object-position:top center;object-position:top center}.card-news{height:100%}.card-news .news-img,.card-news .news-title{position:relative}.card-news .news-img>img{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;-o-object-position:center;object-position:center}.card-news .news-title{position:absolute;padding:1rem;bottom:0;left:0;height:auto;color:#fff;background:rgba(39,135,245,.9);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:.5rem}.card-news .news-title .date,.card-news .news-title .title{font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:.75rem}.card-news .news-title .title{font-family:"Mulish-ExtraBold",sans-serif;line-height:1.25}@media (min-width:75rem){.card-news .news-title .title{font-size:.875rem}}.card-news.is-dark .news-title{background:rgba(0,93,148,.9)}@media (min-width:48rem){.has-half .card-news{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.has-half .card-news .news-img,.has-half .card-news .news-title{position:relative;width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;height:100%;inset:unset}.has-half .card-news:nth-child(odd) .news-img{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.is-not-slider .has-half .card-news{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.is-not-slider .has-half .card-news .news-img,.is-not-slider .has-half .card-news .news-title{position:relative;width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;height:100%;inset:unset}.is-not-slider .has-half .card-news:nth-child(odd) .news-img{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.fade-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#000;opacity:0;pointer-events:none}.fade-overlay.is-active{opacity:.75;cursor:pointer;pointer-events:auto}.footer{position:relative;margin-top:auto;margin-bottom:0;padding-top:1.5rem;padding-bottom:1.5rem;background:#004c78}@media (min-width:48rem){.footer{padding-top:2rem;padding-bottom:2rem}}@media (min-width:75rem){.footer{padding-top:2.5rem;padding-bottom:2.5rem}}.footer{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;color:#fff;font-size:.875rem}@media (min-width:75rem){.footer{font-size:1rem}}.footer-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1.5rem}@media (min-width:48rem){.footer-content{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.footer-content p{margin-bottom:.5rem}.footer-content__partners{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;margin-bottom:1.5rem}.footer-content__partners .partners-list:not(:first-child){margin-top:1.5rem}.footer-content__partners .partners-list .list-title{margin-bottom:1rem}.footer-content__partners .partners-list .list-items{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:2rem;width:auto;height:4rem}.footer-content__partners .partners-list .list-items .item{width:auto;height:100%}.footer-content__partners .partners-list .list-items .item img{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;height:100%}.footer-content__partners .partners-list .list-items .item.ska-academy{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:scale(1.35);-ms-transform:scale(1.35);transform:scale(1.35)}.footer-content__copy-and-social{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media (min-width:48rem){.footer-content__copy-and-social{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media (min-width:75rem){.footer-content__copy-and-social{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}}@media (min-width:48rem){.footer-content__copy-and-social .copy{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}}.footer-content__copy-and-social .copy .logo-gazprom-cup{margin-bottom:1rem;width:2.5rem}.footer-content__copy-and-social .copy .logo-gazprom-cup img{width:100%;height:auto}.footer-content__copy-and-social .social{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:1rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:48rem){.footer-content__copy-and-social .social{-webkit-box-flex:0;-ms-flex:0 0 33.33%;flex:0 0 33.33%;margin-top:1.5rem}}@media (min-width:75rem){.footer-content__copy-and-social .social{position:absolute;top:0;right:0;margin-top:0}}.footer-content__copy-and-social .social-item{position:relative}.footer-content__copy-and-social .social-item.item-age{margin-right:1rem;font-size:1.25rem}@media (min-width:48rem){.footer-content__copy-and-social .social-item.item-age{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10;margin-left:1rem}}@media (min-width:75rem){.footer-content__copy-and-social .social-item.item-age{font-size:1.625rem;-webkit-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}}.footer-content__copy-and-social .social-item img,.modal.players-modal .modal-dialog .modal-content .modal-close button.btn span.icon{width:1.5rem;height:1.5rem}@media (min-width:75rem){.footer-content__copy-and-social .social-item img{width:2rem;height:2rem}}.footer-content__contacts{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}@media (min-width:48rem){.footer-content__contacts{-webkit-box-flex:0;-ms-flex:0 0 33.33%;flex:0 0 33.33%}}@media (min-width:75rem){.footer-content__contacts{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.footer-content__contacts p.contacts-address{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}}@media (min-width:75rem) and (min-width:75rem){.footer-content__contacts p.contacts-address{margin-top:.5rem;margin-bottom:0}}.footer-content__links{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}@media (min-width:48rem){.footer-content__links{-webkit-box-flex:0;-ms-flex:0 0 33.33%;flex:0 0 33.33%}}@media (min-width:75rem){.footer-content__links{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}}.boxscore{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;row-gap:1.5rem}@media (min-width:75rem){.boxscore{row-gap:3rem}}.boxscore-info,.boxscore-teams{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.boxscore-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:"Mulish-BlackItalic",sans-serif;font-weight:500}.boxscore-info-group{color:#eb6d01;font-size:.875rem;-ms-flex-item-align:end;align-self:flex-end}@media (min-width:48rem){.boxscore-info-group{font-size:1rem;-ms-flex-item-align:unset;align-self:unset;-webkit-transform:translateX(15rem);-ms-transform:translateX(15rem);transform:translateX(15rem)}}.boxscore-info-title{color:#2787f5;text-transform:uppercase;font-size:2rem}@media (min-width:48rem){.boxscore-info-title{font-size:3rem}}.boxscore-info-date{color:#005d94;text-transform:uppercase;font-size:1rem}@media (min-width:48rem){.boxscore-info-date{font-size:1.25rem}}.boxscore-teams,.boxscore-teams .team{display:-webkit-box;display:-ms-flexbox;display:flex}.boxscore-teams{gap:.0625rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.boxscore-teams .team{position:relative;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;height:9.125rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (min-width:48rem){.boxscore-teams .team{height:11.875rem}}@media (min-width:75rem){.boxscore-teams .team{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:6.25rem}}.boxscore-teams .team-logo{width:3.75rem;height:3.75rem}@media (min-width:48rem){.boxscore-teams .team-logo{width:6.25rem;height:6.25rem}}@media (min-width:75rem){.boxscore-teams .team-logo{min-width:6.25rem;background:rgba(39,135,245,.05)}}.boxscore-teams .team-logo img,.game-card__team-and-score .team__logo img{width:100%;height:auto}.boxscore-teams .team-name{width:100%}.boxscore-teams .team-name .city,.boxscore-teams .team-name .name{padding:.5rem}.boxscore-teams .team-name .name{height:3.375rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:.75rem;line-height:1;font-family:"Mulish-Black",sans-serif;font-weight:500;color:#005d94;background:#fff}@media (min-width:48rem){.boxscore-teams .team-name .name{text-transform:uppercase;height:3.5rem;font-size:1rem;line-height:1.25}}@media (min-width:75rem){.boxscore-teams .team-name .name{height:4.125rem}}.boxscore-teams .team-name .city{height:2rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:.75rem;font-family:"Mulish-Medium",sans-serif;font-weight:500;color:#fff;background:-webkit-gradient(linear,left top,right top,color-stop(38.36%,#005d94),color-stop(135.23%,#2787f5));background:linear-gradient(90deg,#005d94 38.36%,#2787f5 135.23%)}@media (min-width:48rem){.boxscore-teams .team-name .city{height:2.125rem;font-size:.875rem}}.boxscore-teams .team.team-b{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}@media (min-width:75rem){.boxscore-teams .team.team-b{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.boxscore-teams .team.team-b .team-logo{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}}.boxscore-teams .team.team-b .city,.boxscore-teams .team.team-b .name{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.boxscore-teams .team.team-b .city{background:-webkit-gradient(linear,right top,left top,color-stop(38.36%,#005d94),color-stop(135.23%,#2787f5));background:linear-gradient(270deg,#005d94 38.36%,#2787f5 135.23%)}.boxscore-teams .fullscore,.team-logo-img>div{display:-webkit-box;display:-ms-flexbox;display:flex}.boxscore-teams .fullscore{-webkit-box-flex:0;-ms-flex:0 0 6rem;flex:0 0 6rem;height:9.125rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}@media (min-width:48rem){.boxscore-teams .fullscore{-webkit-box-flex:0;-ms-flex:0 0 10rem;flex:0 0 10rem;height:11.875rem}}@media (min-width:75rem){.boxscore-teams .fullscore{-webkit-box-flex:0;-ms-flex:0 0 12.5rem;flex:0 0 12.5rem;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;height:auto}}.boxscore-teams .fullscore-state{margin-bottom:.5rem;font-size:.625rem;font-family:"Mulish-Black",sans-serif;font-weight:500;text-transform:uppercase;text-align:center}@media (min-width:48rem){.boxscore-teams .fullscore-state{font-size:.75rem}}@media (min-width:75rem){.boxscore-teams .fullscore-state{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10;margin-top:.5rem}}.boxscore-teams .fullscore-score{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.0625rem}.boxscore-teams .fullscore-periods,.boxscore-teams .fullscore-score .score{font-weight:500;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.boxscore-teams .fullscore-score .score{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;height:3.375rem;background:#fff;font-size:2rem;font-family:"Mulish-Black",sans-serif;color:#005d94}@media (min-width:48rem){.boxscore-teams .fullscore-score .score{height:3.5rem}}@media (min-width:75rem){.boxscore-teams .fullscore-score .score{height:4.125rem;font-size:3.125rem}}.boxscore-teams .fullscore-score .score-b{position:absolute;color:#eb6d01;font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:.625rem;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (min-width:48rem){.boxscore-teams .fullscore-score .score-b{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:.875rem}}.boxscore-teams .fullscore-periods{height:2rem;background:#005d94;color:#fff;font-family:"Mulish-Medium",sans-serif;font-size:.625rem;-webkit-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}@media (min-width:48rem){.boxscore-teams .fullscore-periods{height:2.125rem;font-size:.75rem}}.team-logo-img{position:relative;width:100%;min-width:24px;border-radius:50%;border:1px solid #dee2e6;background:0 0}.team-logo-img>div{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.team-logo-img img{width:90%;height:90%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.main-section-gamesheet{background:#fff;padding-top:32px;padding-bottom:32px}@media (min-width:62rem){.main-section-gamesheet{padding-top:64px;padding-bottom:64px}}.gamesheet-header{position:relative;z-index:100;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-transition:opacity .25s;transition:opacity .25s}@media (max-width:61.98rem){.gamesheet-header{display:none}}.gamesheet-header__team{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:-webkit-transform .25s;transition:transform .25s;transition:transform .25s,-webkit-transform .25s}.gamesheet-header__team:last-child{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.gamesheet-header__team .team-logo{-webkit-box-flex:0;-ms-flex:0 0 64px;flex:0 0 64px;width:64px}.gamesheet-header.is-pinned .team-logo .team-logo-img,.gamesheet-header__team .team-logo-img{background:#fff}.gamesheet-header__team .team-name{margin:0 16px}.gamesheet-header__team .team-name span.text-notes{padding:2px 16px;border-radius:16px;background:#2787f5;color:#fff;-webkit-transition:background .25s,color .25s;transition:background .25s,color .25s}.gamesheet-header.is-pinned .team-a{-webkit-transform:translateX(-32px);-ms-transform:translateX(-32px);transform:translateX(-32px)}.gamesheet-header.is-pinned .team-b{-webkit-transform:translateX(32px);-ms-transform:translateX(32px);transform:translateX(32px)}.gamesheet-header.is-hidden,.gamesheet-header.is-pinned .team-name{opacity:0}.gamesheet,.gamesheet .event .team{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.gamesheet{margin-top:24px;color:rgba(255,255,255,.9);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}@media (max-width:61.98rem){.gamesheet{margin-top:0}}.gamesheet .event{position:relative;width:100%;min-height:80px;height:auto;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:12px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#004a76;overflow:hidden}.gamesheet .event .team{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;margin-top:8px;-ms-flex-wrap:nowrap;flex-wrap:nowrap}@media (min-width:62rem){.gamesheet .event .team{-webkit-box-flex:1;-ms-flex:1 1 40%;flex:1 1 40%;margin-top:0}}.gamesheet .event .team-event-video{position:absolute;top:0;-webkit-transform:translateY(-.5rem);-ms-transform:translateY(-.5rem);transform:translateY(-.5rem)}@media (min-width:62rem){.gamesheet .event .team-event-video{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}}.gamesheet .event .team-event-video button>span{pointer-events:none}.gamesheet .event .team-event-data{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:61.98rem){.gamesheet .event .team-event-data{padding-left:88px}}.gamesheet .event,.gamesheet .event .team-event-data .data-additional,.gamesheet .event .team-event-data .data-player{display:-webkit-box;display:-ms-flexbox;display:flex}.gamesheet .event .team-event-data .data-additional{margin-top:4px;-ms-flex-wrap:wrap;flex-wrap:wrap}.gamesheet .event .team-event-data .data-additional span.extra-small,.gamesheet-header__team .team-name span.text-notes{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.gamesheet .event .team-event-data .data-additional span.extra-small:not(:last-child){margin-right:16px}.gamesheet .event .team-a{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media (min-width:62rem){.gamesheet .event .team-a{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;padding-right:48px;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.gamesheet .event .team-a .team-event-video{left:0}.gamesheet .event .team-a .team-event-data{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}}.gamesheet .event .team-b{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}@media (min-width:62rem){.gamesheet .event .team-b{padding-left:48px}.gamesheet .event .team-b .team-event-video{right:0}}.gamesheet .event .state{position:relative;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;pointer-events:none}@media (min-width:62rem){.gamesheet .event .state{-webkit-box-flex:0;-ms-flex:0 0 160px;flex:0 0 160px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.gamesheet .event .state-gametime{-webkit-box-flex:0;-ms-flex:0 0 64px;flex:0 0 64px}@media (min-width:62rem){.gamesheet .event .state-gametime{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}}.gamesheet .event .state-gametime .gametime{padding:4px 8px;width:64px;border:1px solid rgba(255,255,255,.15);text-align:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gamesheet .event .state-desc{position:relative;margin-left:24px;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:62rem){.gamesheet .event .state-desc{height:56px;margin-left:unset}}.gamesheet .event .state-desc .desc-icon,.gamesheet .event .state-desc .desc-icon span.icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gamesheet .event .state-desc .desc-icon{position:relative;-webkit-box-flex:0;-ms-flex:0 0 22px;flex:0 0 22px;pointer-events:auto}@media (min-width:75rem){.gamesheet .event .state-desc .desc-icon{-webkit-box-flex:0;-ms-flex:0 0 32px;flex:0 0 32px}}.gamesheet .event .state-desc .desc-icon img{width:22px;height:22px}@media (min-width:75rem){.gamesheet .event .state-desc .desc-icon img{width:32px;height:32px}}.gamesheet .event .state-desc .desc-icon span.icon{width:28px;height:28px;border-radius:50%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:1px solid rgba(255,255,255,.15)}.gamesheet .event .state-desc .desc-icon span.icon svg,.gamesheet .event-shootout .shootout-try__state .shootout-state-icon span.icon svg{width:24px;height:24px;fill:#fff}.gamesheet .event .state-desc .desc-team-logo{-webkit-box-flex:0;-ms-flex:0 0 40px;flex:0 0 40px;margin-left:16px;width:40px;height:40px}@media (min-width:62rem){.gamesheet .event .state-desc .desc-team-logo{display:none}}.gamesheet .event .state-desc .desc-result,.gamesheet .event .state-desc .desc-result .result-score{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gamesheet .event .state-desc .desc-result{margin-left:16px;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (min-width:62rem){.gamesheet .event .state-desc .desc-result{position:absolute;top:0;left:0;width:100%;height:100%;margin-left:0;-ms-flex-wrap:wrap;flex-wrap:wrap}}.gamesheet .event .state-desc .desc-result .result-score{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:2rem;line-height:1;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}@media (min-width:62rem){.gamesheet .event .state-desc .desc-result .result-score{font-size:2.5rem;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:100%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gamesheet .event .state-desc .desc-result .result-score .score-a,.gamesheet .event .state-desc .desc-result .result-score .score-b,.gamesheet .event .state-desc .desc-result .result-score .score-colon{opacity:.5}@media (max-width:61.98rem){.gamesheet .event .state-desc .desc-result .result-score .score-a,.gamesheet .event .state-desc .desc-result .result-score .score-b,.gamesheet .event .state-desc .desc-result .result-score .score-colon{margin:0 4px}}@media (min-width:62rem){.gamesheet .event .state-desc .desc-result .result-score .score-a,.gamesheet .event .state-desc .desc-result .result-score .score-b,.gamesheet .event .state-desc .desc-result .result-score .score-colon{-webkit-box-flex:0;-ms-flex:0 0 28px;flex:0 0 28px;width:28px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;overflow:visible}}.gamesheet .event .state-desc .desc-result .result-score .score-a.score-change,.gamesheet .event .state-desc .desc-result .result-score .score-b.score-change,.gamesheet .event .state-desc .desc-result .result-score .score-colon.score-change{opacity:1}@media (min-width:62rem){.gamesheet .event .state-desc .desc-result .result-score .score-colon{display:none}}.gamesheet .event .state-desc .desc-result .result-note{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:62rem){.gamesheet .event .state-desc .desc-result .result-note{position:absolute;left:0;bottom:-.25rem;width:100%}.gamesheet .event .state-desc .desc-result .result-note span{font-size:.65rem!important}.gamesheet .event .state+.state{position:absolute;top:calc(50% + 12px);left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:160px;height:100%}}.gamesheet .event .state+.state .state-gametime .gametime{display:none}@media (min-width:62rem){.gamesheet .event .state-b .state-desc{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.gamesheet .event-time{background:#005d94;min-height:48px;height:auto}@media (min-width:62rem){.gamesheet .event-time{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.gamesheet .event-stat{background:#e9ecef}.gamesheet .event-stat .stats-heading,.gamesheet .event-stat .stats-list,.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-img{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gamesheet .event-stat .stats-heading,.gamesheet .event-stat .stats-list{display:-webkit-box;display:-ms-flexbox;display:flex}.gamesheet .event-stat .stats-list{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:61.98rem){.gamesheet .event-stat .stats-list{-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:scroll;min-width:100%;width:100vw!important;margin-left:calc(var(--bs-gutter-x)/-2);padding-left:calc(var(--bs-gutter-x)/2);padding-right:0;padding-bottom:16px;-webkit-box-flex:1;-ms-flex:1 0 100vw;flex:1 0 100vw}.gamesheet .event-stat .stats-list::-webkit-scrollbar{background:0 0;height:4px}.gamesheet .event-stat .stats-list::-webkit-scrollbar-thumb{background:#ced4da;background:-webkit-gradient(linear,left top,right top,color-stop(0,transparent),color-stop(transparent),color-stop(#fff),color-stop(#fff),to(transparent));background:linear-gradient(to right,transparent 0,transparent calc(var(--bs-gutter-x)*.5),#fff calc(var(--bs-gutter-x)*.5),#fff calc(100% - var(--bs-gutter-x)*.5),transparent calc(100% - var(--bs-gutter-x)*.5))}.gamesheet .event-stat .stats-list::-webkit-scrollbar-track{background:rgba(255,255,255,.15)}}.gamesheet .event-stat .stats-list__item{-webkit-box-flex:1;-ms-flex:1 1 30%;flex:1 1 30%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-right:24px;margin-top:16px}@media (min-width:62rem){.gamesheet .event-stat .stats-list__item{-webkit-box-flex:0;-ms-flex:0 1 25%;flex:0 1 25%}.gamesheet .event-stat .stats-list__item:nth-child(4n){padding-right:0;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.gamesheet .event-shootout,.gamesheet .event-stat .stats-list__item .item-data,.gamesheet .event-stat .stats-list__item .item-data .data-a,.gamesheet .event-stat .stats-list__item .item-data .data-b,.gamesheet .event-stat .stats-list__item .item-data .data-between,.gamesheet .event-stat .stats-list__item .item-title{display:-webkit-box;display:-ms-flexbox;display:flex}.gamesheet .event-stat .stats-list__item .item-title{color:#80aeca;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;margin-bottom:4px;white-space:nowrap}.gamesheet .event-stat .stats-list__item .item-data{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.gamesheet .event-stat .stats-list__item .item-data .data-between{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin:0 4px}.gamesheet .event-goalie .goalie-arrow{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin:0 4px}.gamesheet .event-goalie .empty-net{position:relative}.gamesheet .event-goalie .empty-net::before{position:absolute;content:"";width:110%;height:1px;background:#fff;top:50%;left:-5%}.gamesheet .event-goalie .icon.goalies-change svg{-webkit-transform:scale(.75) rotate(90deg);-ms-transform:scale(.75) rotate(90deg);transform:scale(.75) rotate(90deg)}@media (min-width:62rem){.gamesheet .event-goalie .team-a .data-additional span.extra-small{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.gamesheet .event-goalie .team-a .data-additional span.extra-small .goalie-arrow{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.gamesheet .event-goalie .state-b .icon.goalies-change svg{-webkit-transform:scale(-.75,.75) rotate(-90deg);-ms-transform:scale(-.75,.75) rotate(-90deg);transform:scale(-.75,.75) rotate(-90deg)}}@media (max-width:61.98rem){.gamesheet .event-goalie .icon.goalies-change svg{-webkit-transform:scale(-.75,.75) rotate(-90deg);-ms-transform:scale(-.75,.75) rotate(-90deg);transform:scale(-.75,.75) rotate(-90deg)}}.gamesheet .event-goal .state-gametime .gametime{border-color:#ee0c0c!important}@media (min-width:62rem){.gamesheet .event-goal .desc-icon{position:absolute!important;left:50%;top:8px;-webkit-transform:translate(-50%,-50%) scale(.75);-ms-transform:translate(-50%,-50%) scale(.75);transform:translate(-50%,-50%) scale(.75)}}.gamesheet .event-goal .desc-icon span.icon{background:#ee0c0c;outline:0!important}@media (max-width:61.98rem){.gamesheet .event .state-a+.state-b{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:16px}}.gamesheet .event-shootout{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}@media (min-width:62rem){.gamesheet .event-shootout .shootout-score,.gamesheet .event-shootout .shootout-try{width:100%}}@media (max-width:61.98rem){.gamesheet .event-shootout .shootout-score{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10;margin-left:88px;margin-bottom:16px;-ms-flex-item-align:start;align-self:flex-start}}@media (min-width:62rem){.gamesheet .event-shootout .shootout-score{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.gamesheet .event-shootout .shootout-score-after-try,.gamesheet .event-shootout .shootout-try__state .shootout-state-icon span.icon{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gamesheet .event-shootout .shootout-score-after-try{padding:2px 8px;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;width:64px;background:rgba(255,255,255,.15);border-radius:4px;text-align:center;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;font-size:1.25rem}@media (min-width:62rem){.gamesheet .event-shootout .shootout-score-after-try{font-size:1rem}}.gamesheet .event-shootout .shootout-try{margin-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try{-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gamesheet .event-shootout .shootout-try:first-child{margin-top:8px;margin-bottom:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gamesheet .event-shootout .shootout-try:nth-child(2){-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-bottom:8px}}.gamesheet .event-shootout .shootout-try__player,.gamesheet .event-shootout .shootout-try__state{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gamesheet .event-shootout .shootout-try__state{height:40px}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__player,.gamesheet .event-shootout .shootout-try__state{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:unset}}.gamesheet .event-shootout .shootout-try__player{padding-left:88px;height:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__player{-webkit-box-flex:1;-ms-flex:1 1 40%;flex:1 1 40%;padding-left:48px}}@media (max-width:61.98rem){.gamesheet .event-shootout .shootout-try__player.player--goalie,.gamesheet .event-shootout .shootout-try__player.player--shooter{margin-top:8px}.gamesheet .event-shootout .shootout-try__player.player--goalie{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.gamesheet .event-shootout .shootout-try__player.player--shooter{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;margin-bottom:16px}}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__player.shootout-team-a{padding-right:48px;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}.gamesheet .event-shootout .shootout-try__state{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__state{-webkit-box-flex:0;-ms-flex:0 0 80px;flex:0 0 80px}}.gamesheet .event-shootout .shootout-try__state .shootout-state-icon{position:relative;-webkit-box-flex:0;-ms-flex:0 0 28px;flex:0 0 28px}.gamesheet .event-shootout .shootout-try__state .shootout-state-icon span.icon{width:28px;height:28px;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;outline:1px solid rgba(255,255,255,.15)}.gamesheet .event-shootout .shootout-try__state .shootout-state-icon.icon-shootout-deny span.icon,.gamesheet .event-shootout .shootout-try__state .shootout-state-icon.icon-shootout-in span.icon{opacity:.75}.gamesheet .event-shootout .shootout-try__state .shootout-state-icon.icon-shootout-deny span.icon svg{fill:#ee0c0c;width:22px;height:22px;margin:1px 0 0 1px}.gamesheet .event-shootout .shootout-try__state .shootout-state-icon.icon-shootout-in span.icon svg{fill:#2787f5;width:20px;height:20px;margin-right:1px}.gamesheet .event-shootout .shootout-try__state .shootout-state-team-logo{-webkit-box-flex:0;-ms-flex:0 0 40px;flex:0 0 40px;margin-left:58px;margin-bottom:2px;width:40px;height:40px}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__state .shootout-state-team-logo{display:none}}@media (max-width:61.98rem){.gamesheet .event-shootout .shootout-try__state.state--shooter::after{position:absolute;content:"";top:40px;left:13px;width:1px;height:48px;border-left:1px dashed #ced4da}}@media (min-width:62rem){.gamesheet .event-shootout .shootout-try__state.shootout-state-a::after{position:absolute;content:"";top:13px;left:36px;width:88px;height:1px;border-top:1px dotted #ced4da}.gamesheet .event-shootout .shootout-try__state.shootout-state-b{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}}@media (max-width:61.98rem){.gamesheet .event-shootout .shootout-try .shootout-state-a,.gamesheet .event-shootout .shootout-try .shootout-state-b{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gamesheet .event-shootout .shootout-try .shootout-team.player--goalie{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.gamesheet .event-shootout .shootout-try .shootout-team.player--goalie+.shootout-try__state,.gamesheet .event-shootout .shootout-try .shootout-team.player--shooter~.shootout-try__state{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.gamesheet .event-shootout .shootout-try .shootout-team.player--shooter{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.gamesheet .event-shootout .shootout-try .shootout-team.player--shooter+.shootout-try__state{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}.gamesheet.is-light{color:#212529}.gamesheet.is-light .event,table tbody,table thead{background:#fff}.gamesheet.is-light .event .state .gametime{border:1px solid #ced4da;color:#212529}.gamesheet.is-light .event .state .desc-icon span.icon{outline:1px solid #ced4da}.gamesheet.is-light .event .state .desc-icon span.icon svg{fill:#343a40}.gamesheet.is-light .event-time{color:#fff;background:#2787f5}.gamesheet.is-light .event-stat .stats-list::-webkit-scrollbar{background:#f8f9fa;height:4px}.gamesheet.is-light .event-stat .stats-list::-webkit-scrollbar-thumb{background:#ced4da;background:-webkit-gradient(linear,left top,right top,color-stop(0,transparent),color-stop(transparent),color-stop(#ced4da),color-stop(#ced4da),to(transparent));background:linear-gradient(to right,transparent 0,transparent calc(var(--bs-gutter-x)*.5),#ced4da calc(var(--bs-gutter-x)*.5),#ced4da calc(100% - var(--bs-gutter-x)*.5),transparent calc(100% - var(--bs-gutter-x)*.5))}.gamesheet.is-light .event-stat .stats-list::-webkit-scrollbar-track{background:#e9ecef}.gamesheet.is-light .event-stat .stats-list .item-title{color:#6c757d}.gamesheet.is-light .event-goalie .empty-net::before{background:#000}.gamesheet.is-light .event-goal .state-gametime .gametime{color:#d60b0b!important;border-color:#d60b0b!important}.gamesheet.is-light .event-goal .desc-icon span.icon{background:#ee0c0c}.gamesheet.is-light .event-goal .desc-icon span.icon svg{fill:#fff!important}.gamesheet.is-light .event-shootout .shootout-score-after-try{background:#e9ecef}.gamesheet.is-light .event-shootout .shootout-try__state span.icon{outline:1px solid #ced4da}.gamesheet.is-light .event-shootout .shootout-try__state span.icon svg{fill:#000}.gamesheet.is-light .event-shootout .shootout-try__state.icon-shootout-deny span.icon,.gamesheet.is-light .event-shootout .shootout-try__state.icon-shootout-in span.icon{opacity:.75}.gamesheet.is-light .event-shootout .shootout-try__state.icon-shootout-deny span.icon svg{fill:#ee0c0c}.gamesheet.is-light .event-shootout .shootout-try__state.icon-shootout-in span.icon svg{fill:#2787f5}@media (max-width:61.98rem){.gamesheet.is-light .event-shootout .shootout-try__state.state--shooter::after{border-left:1px dashed #ced4da}}@media (min-width:62rem){.gamesheet.is-light .event-shootout .shootout-try__state.shootout-state-a::after{border-top:1px dashed #ced4da}}.gamesheet:not(.is-online) .event.time-end+.event-stat{border-bottom:0}.gamesheet:not(.is-online) .event:not(.event-time){border-top:1px solid #2787f5}.gamesheet:not(.is-online) .event.time-start+.event:not(.event-time){border-top:0}.gamesheet:not(.is-online) .event:not(.event-time)+.event.event-time{border-top:2px solid #2787f5}.gamesheet:not(.is-online) .event+.time-start{margin-top:2rem;border-top:0!important}.gamesheet.is-dark.is-online,.gamesheet.is-online{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.gamesheet.is-online .event.event-stat+.time-start,.gamesheet.is-online .event.time-end+.event-stat,.gamesheet.is-online .event.time-end+.time-start,.gamesheet.is-online .event.time-start+.time-start{border-bottom:2px solid #2787f5}.gamesheet.is-online .event.time-end+.event-stat{border-top:0}.gamesheet.is-online .event:not(.event-time){border-bottom:1px solid #2787f5}.gamesheet.is-online .event.time-start+.event:not(.event-time){border-bottom:0}.gamesheet.is-online .event+.time-end{margin-top:2rem}.gamesheet.is-dark.is-online .event.event-stat{display:none}.gamesheet.is-dark.is-online .event.event-stat+.time-start,.gamesheet.is-dark.is-online .event.time-end+.event-stat,.gamesheet.is-dark.is-online .event.time-end+.time-start,.gamesheet.is-dark.is-online .event.time-start+.time-start{border-bottom:2px solid rgba(255,255,255,.25)}.gamesheet.is-dark.is-online .event:not(.event-time){border-bottom:1px solid rgba(255,255,255,.15)}.gamesheet.is-dark.is-online .event .team-logo-img{border-color:rgba(255,255,255,.15)}.goals{margin-top:1.5rem;margin-bottom:1.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-column-gap:.25rem;-moz-column-gap:.25rem;column-gap:.25rem;width:100vw;overflow-x:scroll;margin-left:calc(var(--bs-gutter-x)*-.5);padding:0 calc(var(--bs-gutter-x)*.5)}@media (min-width:36rem){.goals{margin-left:calc((100vw - 32rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 32rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:48rem){.goals{-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;overflow-x:unset;margin-left:unset;padding:unset;-webkit-column-gap:unset;-moz-column-gap:unset;column-gap:unset}}@media (min-width:75rem){.goals{padding:0 6.25rem}}.goals::-webkit-scrollbar,.timeline-wrap::-webkit-scrollbar{display:none}.goals .goal{padding:.5rem;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;row-gap:.5rem;background:rgba(255,255,255,.5)}@media (min-width:48rem){.goals .goal{padding:.5rem 0;-webkit-box-flex:0;-ms-flex:0 0 45%;flex:0 0 45%;-webkit-box-ordinal-group:var(--goal-order);-ms-flex-order:var(--goal-order);order:var(--goal-order);-ms-flex-wrap:nowrap;flex-wrap:nowrap;background:0 0;-webkit-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}}.goals .goal-score,.goals .goal-time{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:.875rem}@media (min-width:48rem){.goals .goal-score,.goals .goal-time{-ms-flex:0 1 auto;flex:0 1 auto}.goals .goal-score{-webkit-box-flex:0}.goals .goal-time{-webkit-box-flex:0;-ms-flex:0 0 2.75rem;flex:0 0 2.75rem}}.goals .goal-score{text-align:right;color:#005d94}@media (min-width:48rem){.goals .goal-score{display:none}}.goals .goal-player,.rosters{display:-webkit-box;display:-ms-flexbox;display:flex}.goals .goal-player{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;-ms-flex-wrap:nowrap;flex-wrap:nowrap;font-size:.75rem}@media (min-width:48rem){.goals .goal-player{font-size:.875rem;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}}.goals .goal-player-jn{-webkit-box-flex:0;-ms-flex:0 0 1.5rem;flex:0 0 1.5rem;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500}@media (min-width:48rem){.goals .goal-player-jn{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}}.goals .goal-player-name{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}@media (min-width:48rem){.goals .goal.goal-a{margin-right:10%}}.goals .goal.goal-a .goal-time{color:#eb6d01}@media (min-width:48rem){.goals .goal.goal-b{margin-left:auto;margin-right:0;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.goals .goal.goal-b .goal-player-jn{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}.goals .goal.goal-b .goal-time{color:#2787f5}@media (min-width:48rem){.goals .goal.goal-b .goal-time{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.goals .line-break{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-ordinal-group:var(--goal-order);-ms-flex-order:var(--goal-order);order:var(--goal-order)}}.rosters{margin-top:.75rem;-ms-flex-wrap:wrap;flex-wrap:wrap}.rosters .roster{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;width:100%;margin-bottom:32px}@media (min-width:62rem){.rosters .roster{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%;width:50%;margin-bottom:0}}.rosters .roster__coaches,.rosters .roster__team{display:-webkit-box;display:-ms-flexbox;display:flex}.rosters .roster__team{position:relative;margin-bottom:32px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.rosters .roster__team .team-logo{-webkit-box-flex:0;-ms-flex:0 0 60px;flex:0 0 60px;width:60px;height:60px}.rosters .roster__team .team-logo img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.rosters .roster__team .team-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;margin:0 16px}.rosters .roster__team .team-name .name{font-family:"Mulish-Black",sans-serif;font-weight:500;text-transform:uppercase}.rosters .roster__team .team-name .city{font-size:.85rem}.rosters .roster__table .table-title{margin-bottom:24px;padding-left:16px;font-weight:500;font-size:.85rem;text-transform:uppercase;color:#495057}.rosters .roster__table .table-title.title--skaters{margin-top:36px}.rosters .roster__coaches{margin-top:1.5rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;row-gap:1rem}.rosters .roster__coaches .coach-position{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:1.125rem}.rosters .roster__coaches .coach-name,table{font-size:.875rem}@media (min-width:62rem){.rosters .roster--a{padding-right:34px}}@media (max-width:61.98rem){.rosters .roster--b{margin-top:2rem}}@media (min-width:62rem){.rosters .roster--b .roster__team .team-logo{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.rosters .roster--b .roster__team .team-name{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;text-align:right}.rosters .roster--b .roster__coaches{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;text-align:right}}.timeline-wrap{width:100vw;overflow-x:scroll;margin-left:calc(var(--bs-gutter-x)*-.5);padding:0 calc(var(--bs-gutter-x)*.5)}@media (min-width:36rem){.timeline-wrap{margin-left:calc((100vw - 32rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 32rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:48rem){.timeline-wrap{margin-left:calc((100vw - 45rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:62rem){.timeline-wrap{margin-left:unset;padding:unset;width:100%}}.timeline-wrap .timeline{margin-top:80px;margin-bottom:80px;position:relative;min-width:48rem}.timeline-wrap .timeline__team{position:absolute;left:0;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:1rem;color:#fff}.timeline-wrap .timeline__team.team--a{top:-5rem}.timeline-wrap .timeline__team.team--b{bottom:-5rem}.timeline-wrap .timeline .timeline__time{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.timeline-wrap .timeline .timeline__time-b,.timeline-wrap .timeline .timeline__time-ot,.timeline-wrap .timeline .timeline__time-period{position:relative;margin-right:4px;height:20px}.timeline-wrap .timeline .timeline__time-period::before{position:absolute;bottom:-24px;left:0;font-size:.75rem;font-weight:700;color:#343a40}.timeline-wrap .timeline .timeline__time-b::before,.timeline-wrap .timeline .timeline__time-ot::before{position:absolute;bottom:-24px;left:0;font-size:.75rem;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;color:#fff;content:"ОТ"}.timeline-wrap .timeline .timeline__time-period{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:auto;background:#f8f9fa}.timeline-wrap .timeline .timeline__time-period.period--1::before{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;color:#fff;content:"1"}.timeline-wrap .timeline .timeline__time-period.period--2::before,.timeline-wrap .timeline .timeline__time-period.period--3::before{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;color:#fff;content:"2"}.timeline-wrap .timeline .timeline__time-period.period--3::before{content:"3"}.timeline-wrap .timeline .timeline__time-ot{-webkit-box-flex:0;-ms-flex:0 0 88px;flex:0 0 88px;width:88px;background:#dee2e6}.timeline-wrap .timeline .timeline__time-b{-webkit-box-flex:0;-ms-flex:0 0 44px;flex:0 0 44px;width:44px;background:#dee2e6}.timeline-wrap .timeline .timeline__time-b::before{content:"Б"}.timeline-wrap .timeline .timeline__time-b .timeline__time-event{left:50%;margin-left:-4px}.timeline-wrap .timeline .timeline__time div:last-child{margin-right:0}.timeline-wrap .timeline .timeline__time-event{position:absolute;top:6px;width:8px;height:8px;background:#005d94;outline:2px solid #84bbf9}.timeline-wrap .timeline .timeline__time-event.event--a .timeline__time-event-info{top:-40px;background:#eb6d01}.timeline-wrap .timeline .timeline__time-event.event--b .timeline__time-event-info{top:24px;background:#2787f5}.timeline-wrap .timeline .timeline__time-event-info{position:absolute;width:24px;height:24px;top:0;left:-8px;display:-webkit-box;display:-ms-flexbox;display:flex}.timeline-wrap .timeline .timeline__time-event-info::after{position:absolute;content:"";top:100%;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:.5rem;height:.5rem;border:4px solid transparent;border-top:4px solid #eb6d01}.game-card,.timeline-wrap .timeline .timeline__time-event-info a{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;display:-webkit-box;display:-ms-flexbox;display:flex}.timeline-wrap .timeline .timeline__time-event span.icon img,.timeline-wrap .timeline .timeline__time-event-info a{width:100%;height:100%}.timeline-wrap .timeline .timeline__time-event-info span.icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:5% 0 0 5%;width:90%;height:90%}.timeline-wrap .timeline .timeline__time-event.event--b .timeline__time-event-info::after{top:unset;bottom:100%;border:4px solid transparent;border-bottom:4px solid #2787f5}.game-card{position:relative;padding:.75rem 1rem;background:#fff;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:.75rem}@media (min-width:48rem){.game-card{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .375rem);flex:0 0 calc(50% - .375rem)}}@media (min-width:62rem){.game-card{-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - .5rem);flex:0 0 calc(33.3333333333% - .5rem)}}@media (min-width:90rem){.game-card{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - .75rem);flex:0 0 calc(25% - .75rem)}}.game-card__info,.game-card__team-and-score{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.game-card__info{-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:.5rem}.game-card__info .info-date{font-size:.75rem;color:#888686}.game-card__info .info-broadcast{margin-left:auto;margin-right:0}.game-card__info .info-broadcast a.btn.broadcast-open{padding:0;color:#eb6d01}.game-card__info .info-gamecenter a.btn{padding:.25rem .5rem;font-size:.75rem;text-transform:none;white-space:nowrap}.game-card__info .info-gamecenter a.btn span.dot{margin-right:.5rem;font-size:2rem;line-height:1rem}.game-card__team-and-score{gap:1rem}.game-card__team-and-score .team{height:2.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.75rem}.game-card__team-and-score .team__logo{-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}.game-card__team-and-score .team__name{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.game-card__team-and-score .team__name .name{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:.875rem;line-height:1.25}.game-card__b,.game-card__team-and-score .team__name .city{font-size:.75rem}.game-card__team-and-score .score{margin-left:auto;margin-right:0;font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:1.25rem;line-height:1.25rem}.game-card__b{position:absolute;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;bottom:3.625rem;right:1.125rem;color:#adb5bd}.games-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.5rem}@media (min-width:48rem){.games-list{gap:.75rem}}@media (min-width:90rem){.games-list{gap:1rem}}@media (max-width:61.98rem){.games-playoff-grid{width:100vw;overflow-x:scroll;margin-left:calc(var(--bs-gutter-x)*-.5);padding:0 calc(var(--bs-gutter-x)*.5)}.games-playoff-grid::-webkit-scrollbar{display:none}}@media (min-width:36rem){.games-playoff-grid{margin-left:calc((100vw - 32rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 32rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:48rem){.games-playoff-grid{margin-left:calc((100vw - 45rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:62rem){.games-playoff-grid{margin-left:unset;padding:unset}}.games-playoff-grid__dates,.games-playoff-grid__games{-webkit-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}@media (min-width:75rem){.games-playoff-grid__dates,.games-playoff-grid__games{-webkit-column-gap:5rem;-moz-column-gap:5rem;column-gap:5rem}}.games-playoff-grid__dates .date-col,.games-playoff-grid__games .date-col{-webkit-box-flex:0;-ms-flex:0 1 33.3333333333%;flex:0 1 33.3333333333%;min-width:16.25rem}.games-playoff-grid__dates{height:2.875rem;background:#fff}@media (max-width:61.98rem){.games-playoff-grid__dates{min-width:51.75rem}}.games-playoff-grid__dates .date{width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:.875rem;color:#eb6d01}.games-playoff-grid__dates .date-col:first-child .date{padding-left:1.5rem}.games-playoff-grid__games{margin-top:1.5rem}.games-playoff-grid__games .heading-gap{height:2.75rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:1.125rem;color:#fff}.games-playoff-grid__games .game{position:relative;margin-bottom:1.5rem;height:5.5rem}.games-playoff-grid__games .game__team-and-score{background:#fff;padding:0 1rem;height:2.75rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.games-playoff-grid__games .game__team-and-score:first-child{border-bottom:1px solid #005d94}.games-playoff-grid__games .game__team-and-score.is-winner,ul.nav-tabs li.nav-item a.btn.active,ul.nav-tabs li.nav-item button.btn.active{background:#2787f5;color:#fff}.games-playoff-grid__games .game__team-and-score .team,.games-playoff-grid__games .game__team-and-score .team__logo{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.games-playoff-grid__games .game__team-and-score .team{position:relative;height:2.75rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.75rem}.games-playoff-grid__games .game__team-and-score .team__logo{-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.games-playoff-grid__games .game__team-and-score .team__logo img,.header-content__address .address-icon img,.header-content__logo img{width:100%;height:auto}.games-playoff-grid__games .game__team-and-score .team__logo img.no-team{width:80%}.games-playoff-grid__games .game__team-and-score .team__name{padding-right:1rem;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.games-playoff-grid__games .game__team-and-score .team__name .name{font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:.875rem;line-height:1}@media (min-width:75rem){.games-playoff-grid__games .game__team-and-score .team__name .name{font-size:1rem}}.games-playoff-grid__games .game__team-and-score .team__name .city{font-size:.75rem}.games-playoff-grid__games .game__team-and-score .score{margin-left:auto;margin-right:0;font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:1.5rem;line-height:1.25rem}.games-playoff-grid__games .game__b{position:absolute;right:1rem;bottom:2.125rem;font-size:.625rem;width:1rem;height:1rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:#aeaeae;border-radius:50%}.header{width:100%;z-index:1020;background:0 0}.games-playoff-grid__games .game__b,.header-content,.header-content__nav-toggle button.btn.nav-toggle-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header-content,.header-content__nav-toggle button.btn.nav-toggle-button{height:3rem}.header-content{position:relative;padding-left:3rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.5rem}@media (min-width:48rem){.header-content{padding-left:0;height:3.25rem;gap:.75rem}}@media (min-width:75rem){.header-content{height:3.75rem;width:75%}}.header-content::before{position:absolute;content:"";width:100vw;height:100%;background:#fff;top:0;left:50%;z-index:10;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}@media (min-width:75rem){.header-content::before{left:unset;-webkit-transform:unset;-ms-transform:unset;transform:unset;right:0}}.header-content__nav-toggle{position:relative;z-index:20}@media (max-width:47.98rem){.header-content__nav-toggle{position:absolute;top:0;left:0;margin-left:calc(var(--bs-gutter-x)*-.5)}}@media (min-width:36rem) and (max-width:47.98rem){.header-content__nav-toggle{margin-left:calc((100vw - 32rem)*-.5 - var(--bs-gutter-x)*.5)}}@media (min-width:48rem) and (max-width:61.98rem){.header-content__nav-toggle{margin-left:calc((100vw - 45rem)*-.5 - var(--bs-gutter-x)*.5)}}.header-content__nav-toggle button.btn.nav-toggle-button{padding:0;border-radius:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:3rem}@media (min-width:48rem){.header-content__nav-toggle button.btn.nav-toggle-button{width:3.25rem;height:3.25rem}}@media (min-width:75rem){.header-content__nav-toggle button.btn.nav-toggle-button{width:3.75rem;height:3.75rem}}.header-content__nav-toggle button.btn.nav-toggle-button:active,.header-content__nav-toggle button.btn.nav-toggle-button:focus,.header-content__nav-toggle button.btn.nav-toggle-button:focus:active{background:#2787f5!important}.header-content__nav-toggle button.btn.nav-toggle-button .icon{margin-right:0;position:relative;width:1.5rem;height:1.5rem}.header-content__nav-toggle button.btn.nav-toggle-button .icon__bars{position:relative;width:1.5rem;height:1.5rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;row-gap:.375rem}.header-content__nav-toggle button.btn.nav-toggle-button .icon__bars span.bar{width:100%;-webkit-box-flex:0;-ms-flex:0 0 .125rem;flex:0 0 .125rem;height:.125rem;background:#fff;border-radius:.125rem;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transition:-webkit-transform .15s linear;transition:transform .15s linear;transition:transform .15s linear,-webkit-transform .15s linear}.header-content__nav-toggle button.btn.nav-toggle-button[aria-expanded=true] .icon__bars .bar:nth-child(1){-webkit-transform:translateY(.5rem) rotate(45deg);-ms-transform:translateY(.5rem) rotate(45deg);transform:translateY(.5rem) rotate(45deg)}.header-content__nav-toggle button.btn.nav-toggle-button[aria-expanded=true] .icon__bars .bar:nth-child(2){opacity:0}.header-content__nav-toggle button.btn.nav-toggle-button[aria-expanded=true] .icon__bars .bar:nth-child(3){-webkit-transform:translateY(-.5rem) rotate(-45deg);-ms-transform:translateY(-.5rem) rotate(-45deg);transform:translateY(-.5rem) rotate(-45deg)}.header-content__nav-toggle .nav{position:absolute;padding:2rem .5rem 2rem 2.5rem;left:0;width:100vw;background:#2787f5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:47.98rem){.header-content__nav-toggle .nav{height:75vw}}@media (min-width:48rem){.header-content__nav-toggle .nav{padding:2rem .5rem 2rem 3.25rem;width:auto;min-width:23.4375rem}}@media (min-width:62rem){.header-content__nav-toggle .nav{padding-left:3.75rem}}.header-content__nav-toggle .nav-list{width:100%;margin:0;padding:0;list-style-type:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:1.5rem}.header-content__nav-toggle .nav-list__item{color:#fff;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:1.25rem}@media (min-width:48rem){.header-content__nav-toggle .nav-list__item{font-size:1.25rem}}.header-content__nav-toggle .nav-address{width:100%;margin-top:2rem;color:#fff;font-size:.875rem;line-height:1.5}@media (min-width:48rem){.header-content__nav-toggle .nav-address{display:none}}.header-content__nav-toggle .nav[aria-expanded=false]{opacity:0;pointer-events:none}.header-content__nav-toggle .nav[aria-expanded=true]{opacity:1;pointer-events:auto}.header-content__logo{position:relative;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:20}.header-content__logo.logo-gazprom-cup{z-index:20;-webkit-box-flex:0;-ms-flex:0 0 2rem;flex:0 0 2rem}@media (min-width:48rem){.header-content__logo.logo-gazprom-cup{-webkit-box-flex:0;-ms-flex:0 0 2rem;flex:0 0 2rem;margin-left:.5rem;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media (min-width:75rem){.header-content__logo.logo-gazprom-cup{-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}}.header-content__logo.logo-gazprom{z-index:20;-webkit-box-ordinal-group:81;-ms-flex-order:80;order:80;margin-left:auto;margin-bottom:0;-webkit-box-flex:0;-ms-flex:0 0 3.75rem;flex:0 0 3.75rem}@media (min-width:48rem){.header-content__logo.logo-gazprom{-webkit-box-flex:0;-ms-flex:0 0 4.5rem;flex:0 0 4.5rem}}@media (min-width:75rem){.header-content__logo.logo-gazprom{-webkit-box-flex:0;-ms-flex:0 0 5rem;flex:0 0 5rem}}.header-content__logo.logo-ska-academy{-webkit-box-ordinal-group:101;-ms-flex-order:100;order:100;-webkit-box-flex:0;-ms-flex:0 0 2.625rem;flex:0 0 2.625rem}@media (min-width:48rem){.header-content__logo.logo-ska-academy{-webkit-box-flex:0;-ms-flex:0 0 2.625rem;flex:0 0 2.625rem}}@media (min-width:75rem){.header-content__logo.logo-ska-academy{-webkit-box-flex:0;-ms-flex:0 0 3.125rem;flex:0 0 3.125rem}}.header-content__logo.logo-ska{margin-left:auto;margin-bottom:0;-webkit-box-ordinal-group:91;-ms-flex-order:90;order:90;-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}@media (min-width:48rem){.header-content__logo.logo-ska{-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}}@media (min-width:75rem){.header-content__logo.logo-ska{-webkit-box-flex:0;-ms-flex:0 0 3rem;flex:0 0 3rem}}@media (max-width:47.98rem){.header-content__address{display:none}}@media (min-width:48rem){.header-content__address{z-index:20;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:.75rem;color:#005d94}}.header-content__address .address-icon,.logo-ska-shop{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header-content__address .address-icon{-webkit-box-flex:0;-ms-flex:0 0 1.5rem;flex:0 0 1.5rem}.header-content__address .address-text{font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:.875rem}@media (min-width:75rem){.header.is-fw .header-content{width:100%}.header.is-fw .header-content::before{left:50%;z-index:10;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}.logo-ska-shop{width:100%;height:2.5rem;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}.logo-ska-shop__img{width:1.5rem;-webkit-box-flex:0;-ms-flex:0 0 1.5rem;flex:0 0 1.5rem}@media (min-width:75rem){.logo-ska-shop__img{width:2.5rem;-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}}.logo-ska-shop__img img{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center}.logo-ska-shop__descriptor{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-transform:uppercase;font-size:.625rem;line-height:.875rem;color:#fff}@media (min-width:75rem){.logo-ska-shop__descriptor{font-size:.75rem;line-height:1.25rem}}.pswp-gallery{margin-top:2rem;margin-bottom:2rem;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.75rem}@media (min-width:75rem){.pswp-gallery{gap:1.5rem;margin-bottom:4rem}}.pswp-gallery.splide__list{-ms-flex-wrap:unset;flex-wrap:unset}@media (max-width:35.98rem){.pswp-gallery.splide__list .splide__slide{max-width:40%}}.pswp-gallery__item{margin:0;padding:0;position:relative;overflow:hidden;background-image:linear-gradient(45deg,#f8f9fa,#e9ecef);-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .375rem);flex:0 0 calc(50% - .375rem)}@media (min-width:48rem){.pswp-gallery__item{-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - .5rem);flex:0 0 calc(33.3333333333% - .5rem)}}@media (min-width:75rem){.pswp-gallery__item{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - 1.125rem);flex:0 0 calc(25% - 1.125rem)}}.pswp-gallery__item .item-img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top center;object-position:top center;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transition:-webkit-transform .25s linear;transition:transform .25s linear;transition:transform .25s linear,-webkit-transform .25s linear;border:0}.pswp-gallery__item .item-img[src=""],.pswp__counter{display:none}:root:not(.is-touch) .pswp-gallery__item:hover .item-img{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}.pswp__counter-custom{position:absolute;left:50%;bottom:24px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:64px;height:32px;border-radius:16px;font-size:.85rem;background:rgba(0,0,0,.75);color:#fff;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.partners,.partners__item,.pswp__counter-custom{display:-webkit-box;display:-ms-flexbox;display:flex}.partners{margin-top:1.5rem;position:relative;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1rem}.partners__item{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:48rem){.partners__item{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}}@media (min-width:75rem){.partners__item{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%}}.partners__item img{width:100%;height:auto}.main-section-coaches{position:relative;padding:2rem 0}@media (min-width:75rem){.main-section-coaches{background:-webkit-gradient(linear,right top,left top,from(transparent),to(#005d94))!important;background:linear-gradient(-90deg,transparent calc((100% - 72rem)*.5 + .75rem),#005d94 calc((100% - 72rem)*.5 + .75rem))!important}}@media (min-width:90rem){.main-section-coaches{background:-webkit-gradient(linear,right top,left top,from(transparent),to(#005d94))!important;background:linear-gradient(-90deg,transparent calc((100% - 82rem)*.5 + .75rem),#005d94 calc((100% - 82rem)*.5 + .75rem))!important}}@media (min-width:100rem){.main-section-coaches{background:-webkit-gradient(linear,right top,left top,from(transparent),to(#005d94))!important;background:linear-gradient(-90deg,transparent calc((100% - 86rem)*.5 + .75rem),#005d94 calc((100% - 86rem)*.5 + .75rem))!important}}@media (min-width:125rem){.main-section-coaches{background:-webkit-gradient(linear,right top,left top,from(transparent),to(#005d94))!important;background:linear-gradient(-90deg,transparent calc((100% - 92rem)*.5 + .75rem),#005d94 calc((100% - 92rem)*.5 + .75rem))!important}}.main-section-coaches::before{position:absolute;content:"";top:0;left:0;width:100vw;height:100%;background-image:var(--bg-url);background-position:center;background-size:100% auto}@media (min-width:75rem){.main-section-coaches::before{margin-left:calc((100vw - 72rem)*-.5 - .75rem)}}@media (min-width:90rem){.main-section-coaches::before{margin-left:calc((100vw - 82rem)*-.5 - .75rem)}}@media (min-width:100rem){.main-section-coaches::before{margin-left:calc((100vw - 86rem)*-.5 - .75rem)}}@media (min-width:125rem){.main-section-coaches::before{margin-left:calc((100vw - 92rem)*-.5 - .75rem)}}.main-section-coaches .h2-wrapper{max-width:65%}@media (min-width:75rem){.main-section-coaches .h2-wrapper{position:absolute!important;width:min(16.25rem,25%)}}.coaches-list{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:6.25% 0 2rem}@media (min-width:48rem){.coaches-list{margin:12.5% 0 0}}@media (min-width:75rem){.coaches-list{margin-top:.4375rem;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}}@media (min-width:90rem){.coaches-list{margin-top:1.0625rem}}@media (min-width:100rem){.coaches-list{margin-top:1.3125rem}}@media (min-width:125rem){.coaches-list{margin-top:1.6875rem}}.coaches-list__item{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap}@media (min-width:48rem){.coaches-list__item{-webkit-box-flex:0;-ms-flex:0 0 40%;flex:0 0 40%}}@media (min-width:75rem){.coaches-list__item{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}}.coaches-list__item .item-img,.coaches-list__item .item-info{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.coaches-list__item .item-img img,.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-img img,.players-list__item .item-img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top center;object-position:top center}.coaches-list-circle,.coaches-list__item .item-info{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.coaches-list__item .item-info{position:relative;padding:1rem;background:#2787f5;color:#fff;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;row-gap:1rem}.coaches-list__item .item-info-name{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:.875rem}.coaches-list__item .item-info-position{font-size:.75rem}.coaches-list__item .item-info::after{position:absolute;content:"";top:50%;left:0;-webkit-transform:translate(-100%,-50%);-ms-transform:translate(-100%,-50%);transform:translate(-100%,-50%);width:1.25rem;height:1.25rem;border:10px solid transparent;border-right:10px solid #2787f5}@media (max-width:47.98rem){.coaches-list__item:nth-child(even) .item-img{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.coaches-list__item:nth-child(even) .item-info{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.coaches-list__item:nth-child(even) .item-info::after{position:absolute;content:"";top:50%;left:100%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);width:1.25rem;height:1.25rem;border:10px solid transparent;border-left:10px solid #2787f5}}@media (min-width:48rem){.coaches-list__item:first-child{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.coaches-list__item:nth-child(2){-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}.coaches-list__item:hover{cursor:pointer}.coaches-list__item:hover .item-info{background:#3d8bfd}.coaches-list-circle{position:absolute;width:20%;top:0;right:0;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}@media (min-width:48rem){.coaches-list-circle{position:relative;-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;width:20%;inset:unset;-webkit-transform:unset;-ms-transform:unset;transform:unset;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (min-width:75rem){.coaches-list-circle{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%}}.coaches-list-circle img{width:100%;height:100%}@media (min-width:48rem){.coaches-list-circle img{width:60%;height:60%}}.coaches-list-puck{position:absolute;top:100%;left:0;width:10%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (min-width:48rem){.coaches-list-puck{top:0;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}}@media (min-width:75rem){.coaches-list-puck{left:unset;width:6.25%;right:50%;-webkit-transform:translate(-100%,-100%);-ms-transform:translate(-100%,-100%);transform:translate(-100%,-100%)}}.coaches-list-puck img{width:100%;height:100%}@media (min-width:48rem){.coaches-list.more-than-two{margin-top:0}.coaches-list.more-than-two .coaches-list__item:first-child{margin-left:40%;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.coaches-list.more-than-two .coaches-list__item:nth-child(2){-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.coaches-list.more-than-two .coaches-list__item:nth-child(3){-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}}@media (min-width:75rem){.coaches-list.more-than-two .coaches-list__item:first-child{margin-left:50%;margin-right:25%}.coaches-list.more-than-two .coaches-list__item:nth-child(2){margin-left:37.5%}}@media (min-width:48rem){.coaches-list.more-than-two .coaches-list-circle{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.coaches-list.more-than-two .coaches-list-puck{top:50%;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}}@media (min-width:75rem){.coaches-list.more-than-two .coaches-list-puck{left:unset;width:6.25%;right:50%;-webkit-transform:translate(-100%,-100%);-ms-transform:translate(-100%,-100%);transform:translate(-100%,-100%)}}.players-list{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.75rem}.players-list__item{position:relative;-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .375rem);flex:0 0 calc(50% - .375rem);cursor:pointer}@media (min-width:48rem){.players-list__item{-webkit-box-flex:0;-ms-flex:0 0 calc(25% - .5625rem);flex:0 0 calc(25% - .5625rem)}}@media (min-width:75rem){.players-list__item{-webkit-box-flex:0;-ms-flex:0 0 calc(16.6666666667% - .625rem);flex:0 0 calc(16.6666666667% - .625rem)}}.players-list__item .item-img{background:#f8f9fa}.players-list__item .item-info{padding:1rem 1rem 0;background:#307fe5;background-image:var(--bg-url);background-position:0 0;background-size:100% auto;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:.875rem}@media (min-width:75rem){.players-list__item .item-info{font-size:1rem;padding-bottom:.75rem}}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-name .jn,.player-card-in-td,.players-list__item .item-info-jn{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.players-list__item .item-info-jn{background:#eb6d01;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-flex:0;-ms-flex:0 0 40px;flex:0 0 40px;height:56px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.players-list__item:hover{cursor:pointer}.players-list__item:hover .item-info{background:#3d8bfd}@media (min-width:48rem){.modal.players-modal .modal-dialog{max-width:40rem}}@media (min-width:75rem){.modal.players-modal .modal-dialog{max-width:45rem}}.modal.players-modal .modal-dialog .modal-content{border-radius:0;border:0;background:0 0}.modal.players-modal .modal-dialog .modal-content .modal-close{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.modal.players-modal .modal-dialog .modal-content .modal-close button.btn{padding:0;margin:0;width:1.5rem;height:1.5rem;background:#fff;color:#2787f5}.modal.players-modal .modal-dialog .modal-content .modal-body{padding:0;background:#fff}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:48rem){.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}@media (min-width:48rem){.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-img{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info{-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (min-width:48rem){.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-data,.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-name,.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-position{padding:1rem}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-name{position:relative;font-family:"Mulish-Black",sans-serif;font-weight:500;text-transform:uppercase;font-size:1rem;color:#fff;background:#2787f5}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-name .jn{position:absolute;top:1rem;right:1rem;background:#eb6d01;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:4rem;height:5.5rem;font-size:1.5rem}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-position{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:1rem;color:#fff;background:-webkit-gradient(linear,left top,right top,color-stop(38.36%,#005d94),color-stop(135.23%,#2787f5));background:linear-gradient(90deg,#005d94 38.36%,#2787f5 135.23%)}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-data{background-image:var(--bg-url);background-size:100% auto;background-repeat:repeat-y;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:start;align-content:flex-start;row-gap:1.5rem;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-data .data-block{-webkit-box-flex:1;-ms-flex:1 1 50%;flex:1 1 50%}.modal.players-modal .modal-dialog .modal-content .modal-body .players-modal-content .content-info .info-data .data-block-title{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500}.modal.players-modal[data-modal-type=coach] [data-modal-type-only=player],.modal.players-modal[data-modal-type=player] [data-modal-type-only=coach]{display:none!important}.modal-backdrop.fade.show{opacity:.75}.player-card-in-td{-ms-flex-wrap:nowrap;flex-wrap:nowrap;height:2rem;-webkit-column-gap:.5rem;-moz-column-gap:.5rem;column-gap:.5rem}@media (min-width:48rem){.player-card-in-td{height:2.5rem;-webkit-column-gap:.625rem;-moz-column-gap:.625rem;column-gap:.625rem}}@media (min-width:75rem){.player-card-in-td{height:3.5rem;-webkit-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}}.player-card-in-td__img{-webkit-box-flex:0;-ms-flex:0 0 2rem;flex:0 0 2rem}@media (min-width:48rem){.player-card-in-td__img{-webkit-box-flex:0;-ms-flex:0 0 2.5rem;flex:0 0 2.5rem}}@media (min-width:75rem){.player-card-in-td__img{-webkit-box-flex:0;-ms-flex:0 0 3.5rem;flex:0 0 3.5rem}}.player-card-in-td__img img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:top center;object-position:top center}@media (min-width:48rem){.player-card-in-td__name{font-size:.875rem}}@media (min-width:75rem){.player-card-in-td__name{font-size:1rem}}.player-card-in-td:hover{cursor:pointer;background:rgba(255,255,255,.25)}.rules .rules-block{position:relative}.rules .rules-block__bg{position:absolute;top:0;left:0}.rules .rules-block__text{position:relative}.rules .rules-block__bg,.rules .rules-block__text,table tbody tr td .team__logo img{width:100%;height:auto}@media (min-width:36rem){.rules .rules-block.is-mobile-xs{display:none}}.rules .rules-block.is-mobile-xs .rules-block__bg{width:auto;height:100%}.rules .rules-block.is-mobile{display:none}@media (min-width:36rem){.rules .rules-block.is-mobile{display:block}}@media (min-width:62rem){.rules .rules-block.is-mobile{display:none}}.rules .rules-block.is-desktop{display:none}@media (min-width:62rem){.rules .rules-block.is-desktop{display:block}}.slider-grid{width:100vw;overflow-x:scroll;margin-left:calc(var(--bs-gutter-x)*-.5);padding:0 calc(var(--bs-gutter-x)*.5)}@media (min-width:36rem){.slider-grid{margin-left:calc((100vw - 32rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 32rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:48rem){.slider-grid{margin-left:calc((100vw - 45rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:62rem){.slider-grid{margin-left:calc((100vw - 58rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 58rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:75rem){.slider-grid{margin-left:calc((100vw - 72rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 72rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:90rem){.slider-grid{margin-left:calc((100vw - 82rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 82rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:100rem){.slider-grid{margin-left:calc((100vw - 86rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 86rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:125rem){.slider-grid{margin-left:calc((100vw - 92rem)*-.5 - var(--bs-gutter-x)*.5);padding:0 calc((100vw - 92rem)*.5 + var(--bs-gutter-x)*.5)}}.slider-grid::-webkit-scrollbar,.table-responsive::-webkit-scrollbar,ul.nav-tabs::-webkit-scrollbar{display:none}.slider-grid-arrows{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.25rem}@media (max-width:47.98rem){.slider-grid-arrows{display:none}}.slider-grid-arrows button.btn{padding-left:0;padding-right:0;width:2.5rem;height:2.5rem}.slider-grid-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.5rem}.slider-grid-list__square{position:relative;-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;width:75%}@media (min-width:48rem){.slider-grid-list__square{-webkit-box-flex:0;-ms-flex:0 0 45%;flex:0 0 45%;width:45%}}@media (min-width:75rem){.slider-grid-list__square{-webkit-box-flex:0;-ms-flex:0 0 30%;flex:0 0 30%;width:30%}}.slider-grid-list__square .card-media{height:100%}@media (min-width:48rem){.slider-grid-list__square .card-media{height:100%}}@media (max-width:47.98rem){.slider-grid-list__square.has-half{-webkit-box-flex:0;-ms-flex:0 0 calc(150% + .5rem);flex:0 0 calc(150% + .5rem);width:calc(150% + .5rem)}.slider-grid-list__square.has-half::before{display:none}.slider-grid-list__square.has-half>div{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.5rem}.slider-grid-list__square.has-half .card-media,.slider-grid-list__square.has-half .card-news{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;height:100%}}@media (min-width:48rem){.slider-grid-list__square.has-half>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;gap:.5rem}.slider-grid-list__square.has-half .card-media,.slider-grid-list__square.has-half .card-news{position:relative;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;width:100%;height:calc(50% - .25rem)}}@media (max-width:47.98rem){.slider-grid-list__square.has-c,.slider-grid-list__square.has-u{-webkit-box-flex:0;-ms-flex:0 0 calc(225% + 1rem);flex:0 0 calc(225% + 1rem);width:calc(225% + 1rem)}.slider-grid-list__square.has-c::before,.slider-grid-list__square.has-u::before{display:none}.slider-grid-list__square.has-c>div,.slider-grid-list__square.has-u>div{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-ms-flex-direction:row!important;flex-direction:row!important;-ms-flex-wrap:nowrap;flex-wrap:nowrap;gap:.5rem}.slider-grid-list__square.has-c .card-media,.slider-grid-list__square.has-u .card-media{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;height:100%}}@media (min-width:48rem){.slider-grid-list__square.has-c>div,.slider-grid-list__square.has-u>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.5rem}.slider-grid-list__square.has-c .card-media,.slider-grid-list__square.has-u .card-media{width:auto;height:calc(50% - .25rem)}.slider-grid-list__square.has-u .card-media{position:relative}.slider-grid-list__square.has-u .card-media:nth-child(1),.slider-grid-list__square.has-u .card-media:nth-child(2){-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .25rem);flex:0 0 calc(50% - .25rem)}.slider-grid-list__square.has-u .card-media:nth-child(3){-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.slider-grid-list__square.has-c>div{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@media (min-width:48rem){.slider-grid-list__square.has-c .card-media{position:relative;width:calc(50% - .25rem)}.slider-grid-list__square.has-c .card-media:nth-child(1){-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.slider-grid-list__square.has-c .card-media:nth-child(2),.slider-grid-list__square.has-c .card-media:nth-child(3){-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .25rem);flex:0 0 calc(50% - .25rem)}}.slider-grid-list__square:last-child::after{position:absolute;top:0;left:100%;content:"";height:100%;pointer-events:none;width:calc(var(--bs-gutter-x)*.5)}@media (min-width:36rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 32rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:48rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 45rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:62rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 58rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:75rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 72rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:90rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 82rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:100rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 86rem)*.5 + var(--bs-gutter-x)*.5)}}@media (min-width:125rem){.slider-grid-list__square:last-child::after{width:calc((100vw - 92rem)*.5 + var(--bs-gutter-x)*.5)}}.slider-grid.is-not-slider{width:100%;overflow:unset;margin:0;padding:0}.slider-grid.is-not-slider .slider-grid-list{width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.5rem}@media (min-width:48rem){.slider-grid.is-not-slider .slider-grid-list{gap:.75rem}}@media (min-width:75rem){.slider-grid.is-not-slider .slider-grid-list{gap:.75rem}}@media (min-width:48rem){.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - .375rem);flex:0 0 calc(50% - .375rem);width:calc(50% - .375rem)}}@media (min-width:75rem){.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square{-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - .5rem);flex:0 0 calc(33.3333333333% - .5rem);width:calc(33.3333333333% - .5rem)}}@media (max-width:47.98rem){.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}@media (max-width:47.98rem) and (max-width:47.98rem){.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half::before{display:block}.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half>div{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:.5rem}.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half .card-media,.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half .card-news{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;height:calc(50% - .5rem)}}@media (max-width:47.98rem) and (min-width:48rem){.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:stretch;-ms-flex-pack:stretch;justify-content:stretch;gap:.5rem}.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half .card-media,.slider-grid.is-not-slider .slider-grid-list .slider-grid-list__square.has-half .card-news{position:relative;-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;width:100%;height:calc(50% - .25rem)}}table tbody tr,table thead tr{color:currentColor;border-color:#005d94!important}table tbody tr td,table tbody tr th,table thead tr td,table thead tr th{color:currentColor!important;white-space:nowrap;padding-top:.75rem!important;padding-bottom:.75rem!important;vertical-align:middle;border-width:0!important}table tbody tr td:first-child,table tbody tr th:first-child,table thead tr td:first-child,table thead tr th:first-child{position:sticky;left:0;z-index:10;background:#fff}b,strong,table tbody tr td.values,table tbody tr th.values,table thead,table thead tr td.values,table thead tr th.values{font-family:"Mulish-Black",sans-serif;font-weight:500}table thead{color:#eb6d01;font-family:"Mulish-ExtraBold",sans-serif}table tbody tr td .team{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:.5rem}table tbody tr td .team__logo{-webkit-box-flex:0;-ms-flex:0 0 2rem;flex:0 0 2rem}table.table-roster{width:100%;border-collapse:separate;border-spacing:0 .125rem}table.table-roster td:first-child{background:0 0}table.table-roster thead{background:#005d94;background-image:var(--bg-url);background-size:100% auto;background-position:100% 0}table.table-roster thead td,table.table-roster thead tr{background:0 0;color:#fff}table.table-roster .td--jn{width:2.5rem;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500}table.table-roster tbody{background:0 0}table.table-roster tbody tr{background:rgba(39,135,245,.15)}ul.table-legend{margin:.5rem 0 1.5rem;padding:0;list-style-type:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-column-gap:1.5rem;-moz-column-gap:1.5rem;column-gap:1.5rem;row-gap:.5rem;font-size:.75rem}@media (min-width:48rem){ul.table-legend{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;font-size:.875rem}}ul.table-legend li.table-legend__item{line-height:1;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}@media (min-width:48rem){ul.table-legend li.table-legend__item{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}}ul.table-legend li.table-legend__item .item-abbr{color:#005d94;font-family:"Mulish-Black",sans-serif;font-weight:500}ul.nav-tabs{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:scroll}@media (max-width:35.98rem){ul.nav-tabs li.nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}ul.nav-tabs li.nav-item a.btn,ul.nav-tabs li.nav-item button.btn{padding-left:0;padding-right:0;width:100%}}ul.nav-tabs li.nav-item a.btn,ul.nav-tabs li.nav-item button.btn{color:#2787f5;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:.875rem;text-transform:none;white-space:nowrap}ul.nav-tabs li.nav-item a.btn:not(.active):hover,ul.nav-tabs li.nav-item button.btn:not(.active):hover{background:#e9ecef}ul.nav-tabs.is-dark li.nav-item button.btn{color:#fff}ul.nav-tabs.is-dark li.nav-item button.btn.active{background:#2787f5}ul.nav-tabs.is-dark li.nav-item button.btn:not(.active):hover{background:#f8f9fa;color:#3878db}.tab-content>.tab-pane{padding-top:0!important}.teams,.teams-item{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.teams{-ms-flex-wrap:wrap;flex-wrap:wrap}.teams-item{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;padding:1rem .25rem;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;border:1px solid #f1f1f1}@media (min-width:48rem){.teams-item{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}}@media (min-width:75rem){.teams-item{-webkit-box-flex:0;-ms-flex:0 0 12.5%;flex:0 0 12.5%}}.teams-item__img{-webkit-box-flex:0;-ms-flex:0 0 6.25rem;flex:0 0 6.25rem;width:6.25rem}.teams-item__img img{width:100%;height:100%;-o-object-position:center;object-position:center;-o-object-fit:contain;object-fit:contain}.teams-item__title .title-city,.teams-item__title .title-name{text-align:center}.teams-item__title .title-name{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:.875rem;color:#121212}.teams-item__title .title-city{margin-top:.375rem;font-family:"Mulish-Medium",sans-serif;font-weight:500;font-size:.75rem;color:#515151}a:not(.btn),a:not(.btn):active,a:not(.btn):focus,a:not(.btn):focus:active,a:not(.btn):hover{text-decoration:none;border-bottom:0}a:not(.btn).link-inherit,a:not(.btn).link-inherit:active,a:not(.btn).link-inherit:focus,a:not(.btn).link-inherit:focus:active,a:not(.btn).link-inherit:hover{color:currentColor}a:not(.btn).link-inherit:hover{border-bottom:1px solid currentColor!important}blockquote p.person{margin-bottom:0;font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:1rem}.text-notes,blockquote p.position{margin-bottom:0;font-family:"Mulish-Regular",sans-serif;font-weight:400;font-size:.875rem}.text-notes{font-family:"Mulish-ExtraBold",sans-serif;font-weight:500;font-size:.95rem;letter-spacing:.0125rem;line-height:1.25}.text-notes-xs{font-size:.65rem;letter-spacing:.0125rem}.text-notes-lg,.text-notes-sm{font-size:.75rem;letter-spacing:.0125rem}.text-notes-lg{font-size:1rem}.text-notes-lowercase{text-transform:unset;letter-spacing:unset}.extra-small{font-size:.75rem}.h1,h1{font-family:"Mulish-BlackItalic",sans-serif;font-weight:500;font-size:1.5rem;line-height:1;color:#2787f5;text-transform:uppercase}@media (min-width:75rem){.h1,h1{font-size:2rem}}.h1.detail,h1.detail{text-transform:unset;color:#005d94}.h2,h2{font-family:"Mulish-Black",sans-serif;font-weight:500;font-size:1.5rem;line-height:1;color:#2787f5}@media (min-width:75rem){.h2,h2{font-size:2rem}}
/* End */


/* Start:/local/templates/gazpromcup/components/bitrix/news.list/socials_list/style.css?1775726966150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */
/* /local/templates/gazpromcup/assets/css/photoswipe.css?17764147787423 */
/* /local/templates/gazpromcup/assets/css/main.min.css?1777654202360848 */
/* /local/templates/gazpromcup/components/bitrix/news.list/socials_list/style.css?1775726966150 */
