/**
 * This file will be included in header in every page after reboot.
 * It should be used for content that relates
 * to your site as a whole, it should not be used for plugin-specific css.
 */
html {
    overflow-y: scroll;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body > .contentRender {
    min-height: 100%;
    height: 100%;
}

/* This ensures that the page always has a scrollbar to ensure that some headers load correctly without FOUC */
html, body {
    height: 100%;
    font-family: var(--font-body);
    color: var(--sw-text-color);
}

body {
    background: var(--sw-body-bg);
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Skip links */
.skip-link[href] {
    z-index: 5000000;
    display: block;
    margin: 0;
    padding: var(--space-8) var(--space-12);
    width: auto;
    height: auto;
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    color: var(--gray-100);
    text-align: center;
    border: 4px dashed var(--gray-100);
    background: var(--gray-900);
    opacity: 0;
    clip: auto;
    white-space: normal;
    pointer-events: none;
    transition: opacity 200ms cubic-bezier(0,0,0.3,1);
}

.skip-link[href]:focus-visible {
    opacity: 1;
    pointer-events: all;
}

.js-loaded {
	opacity: 1 !important;
	transition: opacity var(--transition-appendix);
}

/* Set General max-width of site content */
.contentRender_name_plugins_core_textbox,
.contentRender_name_plugins_nav_sitemap,
.contentRender_name_plugins_search_results,
.contentRender_name_plugins_common_button,
.contentRender_name_plugins_collections_template_custom_list,
.contentRender_name_plugins_collections_template_custom_contacts,
.contentRender_name_plugins_blog_leisure_blog_posts,
.contentRender_name_plugins_blog_articles_posts,
.contentRender_name_plugins_crm_formbuilder,
.contentRender_name_plugins_events_submitevent,
.contentRender_name_plugins_crm_rfp,
.contentRender_name_plugins_crm_rsvp {
    width: 100%;
    padding: 0 var(--space-5);
    margin: 0 auto;
}

.contentRender_name_plugins_core_textbox {
    padding: var(--space-8) var(--space-5);
}

.contentRender_name_plugins_crm_dms_formbuilder {
	margin: 0 auto;
	max-width: var(--width-base);
}


.contentRender_name_plugins_crm_formbuilder,
.contentRender_name_plugins_events_submitevent,
.contentRender_name_plugins_crm_rfp,
.contentRender_name_plugins_crm_rsvp {
    max-width: var(--width-comfortable);
}

@media (min-width: 64em) {
    .contentRender_name_plugins_core_textbox,
    .contentRender_name_plugins_search_results,
    .contentRender_name_plugins_nav_sitemap,
    .contentRender_name_plugins_common_button,
    .contentRender_name_plugins_collections_template_custom_list,
    .contentRender_name_plugins_collections_template_custom_contacts {
        max-width: var(--width-base);
    }

}

/* Panels */
.panel-page {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;

	&.sports {
		--sky-blue: #6dcff6;
		--blue: #248dc1;
		--dark-blue: #002145;
		--pink: #e31d93;
		--dark-pink: #d61a69;

		background-color: #002145;
	}
}


.panel-navigation-share {
	--width-base: 1378px;
    display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: var(--width-base);
    padding: 0 var(--space-5);
	margin: var(--space-3) auto var(--space-8);
}

.panel-navigation-share .navigation-container { 
	display: none; 
}

.panel-navigation-share .share-container { 
	margin-left: auto;
}

.panel-intro {
    max-width: var(--width-comfortable);
    margin: 0 auto;
    margin-bottom: var(--space-16);
    padding: 0 var(--space-5);
}

.panel-social {
	max-width: 1380px;
	margin: 0 auto var(--space-10);
	padding: 0 var(--space-5);

	.header-container {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.title-container h2 {
		font-family: var(--font-pridi);
		font-weight: 600;
		font-size: var(--text-4xl);
		line-height: var(--leading-none);
		color: var(--pink);
		text-align: center;
	}

	.hashtag {
		font-family: var(--font-inter);
		font-weight: 600;
		font-size: 1.063rem;
		text-transform: uppercase;
		color: var(--black-20);
		text-align: center;
		background: var(--blue-light);
		padding: var(--space-6) var(--space-3);
	}

	@media (min-width: 64em) {
		& {
			margin-bottom: 100px;
		}
		.header-container {
			flex-direction: row;
			align-items: center;
			justify-content: space-between;
			gap: var(--space-2);
		}
		.social-container {
			order: -1;
		}
	}
	@media (min-width: 85em) {
		.title-container h2 {
			font-size: 3.75rem;
		}

		.hashtag {
			font-size: var(--text-2xl);
			padding: var(--space-5) var(--space-8);
		}
		.social-container .social-links {
			padding: 0;
			justify-content: flex-start;

			& a {
				width: 50px;
				height: 50px;
			}
		}
	}
}

.panel-three-column,
.panel-two-column {
    max-width: var(--width-base);
    padding: 0;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-three-column :is(.left-container, .center-container, .right-container),
.panel-two-column :is(.left-container, .right-container) {
    padding: 0 var(--space-5);
}

:is(.panel-intro, .panel-social, .panel-three-column, .panel-two-column) .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.sv-col > .contentRender > .sv-panel {
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
}

@media (min-width: 64em) {
    .panel-navigation-share .navigation-container { display: block; }

    .panel-three-column,
    .panel-two-column {
        display: flex;
    }

    .panel-two-column.sidebar-left .left-container {
        order: 1;
        flex-basis: 40%;
    }

    .panel-two-column.sidebar-left .right-container {
        order: 2;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .left-container {
        order: 1;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .right-container {
        order: 2;
        flex-basis: 40%;
    }

    .panel-two-column.even :is(.left-container, .right-container) {
        flex-basis: 50%;
    }

    .panel-three-column > * { flex-basis: calc(100% / 3); }
}

/* Inputs */

:is(input, button, select, textarea, a):focus-visible {
    outline: var(--sw-focus-color) solid 1px;
    outline-offset: 2px;
}

/* Video Play Button */

.shared-play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
	width: 3.75rem;
	aspect-ratio: 1;
	padding: 0;
	margin: 0;
	background-color: var(--pink);
	border: none;
	border-radius: var(--rounded-circle);
	font-size: var(--text-lg);
	line-height: 1;
	text-align: center;
	color: var(--white);
	pointer-events: none;
}

@media (hover: hover) {
    .contentRender[class*="contentRender_name_plugins_collections"] .slide-top:hover .shared-play-button,
    .image-box-with-caption .slide-pic:hover .shared-play-button {
        color: var(--white);
		background-color: var(--pink);
    }
}

/* Image/Video Credits */

.slide-top .credits,
.related-content .credits,
.ccl-widget .credits,
.editorial-gallery .credits,
.image-box-with-caption .credits,
.panel-intro-cta .credits,
.panel-intro-3-images .credits,
.panel-intro-4-images .credits,
.panel-intro-5 .credits,
.core-v2-featured-information .credits {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: var(--space-2) var(--space-3);
	font-family: var(--font-body);
	font-size: .66rem;
	font-style: italic;
	text-shadow: 0 0 10px var(--black);
	color: var(--white);
	pointer-events: none;
	z-index: 10;
}
.credits a, .credits a:hover {
    color: inherit;
    position: relative;
    z-index: 100;
    pointer-events: all;
}

.credits a:hover {
    text-decoration: underline;
}

/* Slider Arrows */

.glide__arrows {
	display: flex;
	align-items: center;
	gap: 10px;
	pointer-events: none;
}

.glide__arrow,
.sv-lightbox .arrow {
    --arrow-color: var(--black-20);
	--arrow-bg-color: var(--blue-light);

	--arrow-color-hover: var(--blue-light);
	--arrow-bg-hover: var(--black-20);

	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	width: 2.6875rem;
	aspect-ratio: 1;
	flex-shrink: 0;
	padding: 0;
	margin: 0;
	background-color: var(--arrow-bg-color);
	border-radius: var(--rounded-circle);
	font-size: 1.1875rem;
	line-height: 1;
	color: var(--arrow-color);
	pointer-events: all;
    transition:
        color var(--transition-appendix),
        background-color var(--transition-appendix);

	&::before {
		font: var(--fa-font-solid);
		content: '\f0d9';
	}
}

.glide__arrow--right,
.sv-lightbox .arrow-next {
	&::before {
		content: '\f0da';
	}
}

.glide__arrow i,
.sv-lightbox .arrow i {
	display: none;
}

@media (hover: hover) {
	.glide__arrow:hover,
	.sv-lightbox .arrow:hover {
		color: var(--arrow-color-hover);
		background-color: var(--arrow-bg-hover);
	}
}

/* Fade effect for glide sliders */

.glide.fade .glide__slides {
	transform: none !important;
	display: block;
	width: auto !important;
}

.glide.fade .glide__slide {
	position: absolute;
	left: 0; 
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 800ms ease;
}

.glide.fade .glide__slide:first-child {
	position: relative;
}

.glide.fade .glide__slide--active {
	z-index: 2;
	opacity: 1;
}

/* responsive image */

.slide-img {
    background-color: #eee;
    background-position: 130% 0;
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(to right, #eee 45%, #f6f6f6, #eee 65%);
    animation: img-loading 1200ms infinite ease-in-out;
}

.slide-img.loaded {
    animation: none;
}
      
@keyframes img-loading {
    to {
        background-position: -30% 0;
    }
}

/* Body Overlay */

.body-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background-color: rgba(0, 0, 0, .2);
    z-index: 3;
}

.hamburger-open .body-overlay {
    display: block;
}

@media (min-width: 64em) {
    .hamburger-open .body-overlay {
        display: none;
    }
}

/* Shared Scrollbar Styles - use .styled-scrollbar to add styles to any element*/

.styled-scrollbar {
    scrollbar-color: var(--sw-scrollbar-thumb-color) var(--sw-scrollbar-track-color);
    scrollbar-width: thin;
}

.styled-scrollbar::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.styled-scrollbar::-webkit-scrollbar-track {
    background-color: var(--sw-scrollbar-track-color);
}

.styled-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--sw-scrollbar-thumb-color);
    border-radius: var(--rounded-md);
    border: 2px solid var(--sw-scrollbar-track-color);
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: var(--sw-scrollbar-thumb-hover);
}

.styled-scrollbar::-webkit-scrollbar-thumb:active {
    background-color: var(--sw-scrollbar-thumb-active);
}

/*----- date -----*/

.core-date-list .date,
.layoutjs .layout .item .image .mini-date-container,
.ccl-v2-widget .mini-date-section,
.custom-side-by-side .mini-date-section,
.custom-full-width-marquee .mini-date-section,
.custom-marquee-grid .mini-date-section,
.custom-listicle .mini-date-section,
.tabbed-tiles .mini-date-section {
	--font-family: var(--font-body);
	--month-size: 0.6875rem;
	--day-size: 1.625rem;
	
	color: var(--sw-mini-date-color);
	background-color: var(--sw-mini-date-bg);
}

.layoutjs .layout .item .image .mini-date-container,
.ccl-v2-widget .mini-date-section,
.custom-side-by-side .mini-date-section,
.custom-full-width-marquee .mini-date-section,
.custom-marquee-grid .mini-date-section,
.custom-listicle .mini-date-section,
.tabbed-tiles .mini-date-section {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 23px 10px;
	pointer-events: none;
	font-family: var(--font-family);
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}

.custom-full-width-marquee .mini-date-section,
.custom-listicle .mini-date-section,
.tabbed-tiles .mini-date-section {
	--month-size: 0.5rem;
	--day-size: var(--text-xl);
	
	padding: 14px 6px 14px;
}

.custom-full-width-marquee .mini-date-section {
	position: static;
	text-transform: none;
}

.layoutjs .layout .item .image .mini-date-container .month,
.layoutjs .layout .item .image .mini-date-container .day,
.core-date-list .date .month,
.core-date-list .date .day,
.ccl-v2-widget .mini-date-section .date-month,
.ccl-v2-widget .mini-date-section .date-day,
.custom-side-by-side .mini-date-section .date-month,
.custom-side-by-side .mini-date-section .date-day,
.custom-full-width-marquee .mini-date-section .date-month,
.custom-full-width-marquee .mini-date-section .date-day,
.custom-marquee-grid .mini-date-section .date-month,
.custom-marquee-grid .mini-date-section .date-day,
.custom-listicle .mini-date-section .date-month,
.custom-listicle .mini-date-section .date-day,
.tabbed-tiles .mini-date-section .date-month,
.tabbed-tiles .mini-date-section .date-day {
	line-height: var(--leading-none);
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums;
}

.layoutjs .layout .item .image .mini-date-container .month,
.ccl-v2-widget .mini-date-section .date-month,
.custom-side-by-side .mini-date-section .date-month,
.custom-full-width-marquee .mini-date-section .date-month,
.custom-marquee-grid .mini-date-section .date-month,
.custom-listicle .mini-date-section .date-month,
.tabbed-tiles .mini-date-section .date-month {
	font-weight: var(--font-weight-semibold);
	font-size: var(--month-size);
}

.layoutjs .layout .item .image .mini-date-container .day,
.ccl-v2-widget .mini-date-section .date-day,
.custom-side-by-side .mini-date-section .date-day,
.custom-full-width-marquee .mini-date-section .date-day,
.custom-marquee-grid .mini-date-section .date-day,
.custom-listicle .mini-date-section .date-day,
.tabbed-tiles .mini-date-section .date-day {
	font-weight: var(--font-weight-bold);
	font-size: var(--day-size);
}

@container (min-width: 40em) {
	.custom-full-width-marquee .mini-date-section,
	.custom-listicle .mini-date-section,
	.tabbed-tiles .mini-date-section {
		--month-size: var(--text-xs);
		--day-size: var(--text-3xl);

		padding: var(--space-6) 9px 22px
	}
}

@media (min-width: 64em) {
	.core-date-list .date,
	.layoutjs .layout .item .image .mini-date-container,
	.ccl-v2-widget .mini-date-section,
	.custom-side-by-side .mini-date-section,
	.custom-marquee-grid .mini-date-section,
	.custom-listicle .mini-date-section,
	.tabbed-tiles .mini-date-section {
		--month-size: var(--text-sm);
		--day-size: var(--text-4xl);
	}

	.layoutjs .layout .item .image .mini-date-container,
	.ccl-v2-widget .mini-date-section,
	.custom-side-by-side .mini-date-section,
	.custom-marquee-grid .mini-date-section,
	.custom-listicle .mini-date-section,
	.tabbed-tiles .mini-date-section {
		padding: 28px var(--space-3);
		gap: 2px;
	}
}

/*----- video player -----*/

.video-player {
	--plyr-color-main: var(--blue);

	.title {
		font-weight: var(--font-weight-semibold);
	}
}

/*----- visitors -----*/

.visitorsPluginContainer {
	.login_or,
	.fb-login-button {
		display: none;
	}
}

/*----- tripbuilder -----*/

.tripbuilder-page .step:nth-child(2) i {
	font-weight: 900;
}

/*----- announcements -----*/

.announcements h4,
.announcements h4 a {
	font-weight: var(--font-weight-semibold)
}

/*----- booking embed -----*/

.booking-embed {
	padding-bottom: var(--space-20);
}

/*----- g-translate -----*/

#gt_float_wrapper {
	z-index: 12 !important;
}

/*==========================================*/
/*=====----- SHARED BUTTON STYLES -----=====*/
/*==========================================*/

.button-default,
.custom-button .button-link,
.button-underline,
.blog-container .post-link,
.blog-container .related-posts .related-item a.read-more-link,
.cookie-banner .button,
.ccl-v2-widget .widget-view-all,
.custom-full-width-marquee .widget-view-all,
.custom-listicle .widget-view-all,
.icon-tiles .widget-view-all,
.quickview-detail .action-item,
.ccl-v2-widget:not(.core-v2-hero-slideshow) .slide-footer .read-more,
.custom-marquee-grid .slide-footer .read-more,
.visitorsPluginContainer button.submit,
.announcements .content-section .read-more,
.storyteller .cta-link {
	display: inline-block;
	margin: 0;
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-base);
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none !important;
}

/*----- rectangle button -----*/

.button-default,
.custom-button:not([data-style="alternate"]) .button-link,
.cookie-banner .button,
.quickview-detail .action-item,
.ccl-v2-widget:not(.core-v2-preview-slider-with-header) .widget-view-all,
.custom-full-width-marquee .widget-view-all,
.icon-tiles .widget-view-all,
.custom-listicle .widget-view-all,
.ccl-v2-widget:is(
	.core-v2-hero-image,
	.imagebox-v2-1-across,
	.side-by-side-v2-1-across,
	.cards-v2-2-across
) .slide-footer .read-more,
.visitorsPluginContainer button.submit,
.storyteller .cta-link,
.thematic-map .header a.view-all {
	--text-color: var(--white);
	--background: var(--pink);

	--text-color-hover: var(--pink);
	--background-hover: var(--white);

	position: relative;
	z-index: 2;
	padding: var(--space-3) 25px;
	color: var(--text-color);
	background: none;
	border: none;
	transition:
		color var(--transition-appendix);

	&::before {
		position: absolute;
		inset: 0;
		z-index: -1;
		display: block;
		background-color: var(--background);
		border: 2px solid var(--background);
		border-radius: 3px;
		content: '';
		transition:
			scale var(--transition-appendix),
			background-color var(--transition-appendix);
	}
}

.ccl-v2-widget:is(.slider-v2-4-across) .widget-view-all,
.custom-listicle .widget-view-all {
	--text-color-hover: var(--white);
	--background-hover: var(--pink);
}

.button-default.blue {
	--background: var(--blue);
}

@media (hover: hover) {
	.button-default:hover,
	.quickview-detail .action-item:hover,
	.custom-button:not([data-style="alternate"]) .button-link:hover,
	.cookie-banner .button:hover,
	.ccl-v2-widget:not(.core-v2-preview-slider-with-header) .widget-view-all:hover,
	.custom-full-width-marquee .widget-view-all:hover,
	.custom-listicle .widget-view-all:hover,
	.icon-tiles .widget-view-all:hover,
	.ccl-v2-widget:is(
		.core-v2-hero-image,
		.imagebox-v2-1-across,
		.side-by-side-v2-1-across,
		.cards-v2-2-across
	) .slide-footer .read-more:hover,
	.visitorsPluginContainer button.submit:hover,
	.storyteller .cta-link:hover,
	.thematic-map .header a.view-all:hover {
		color: var(--text-color-hover);

		&::before {
			scale: 1 1.2;
			background-color: var(--background-hover);
		}
	}
}

/*----- underline button -----*/

.button-underline,
.custom-button[data-style="alternate"] .button-link,
.blog-container .post-link,
.blog-container .related-posts .related-item a.read-more-link,
.ccl-v2-widget:not(
	.core-v2-hero-image,
	.core-v2-hero-slideshow,
	.imagebox-v2-1-across,
	.side-by-side-v2-1-across,
	.cards-v2-2-across
) .slide-footer .read-more,
.custom-marquee-grid .slide-footer .read-more,
.ccl-v2-widget:is(.core-v2-preview-slider-with-header) .widget-view-all,
.announcements .content-section .read-more {
	--text-color: var(--black-20);
	--background: var(--pink);

	--text-color-hover: var(--white);

	position: relative;
	display: inline-block;
	padding: 6px 3px;
	color: var(--text-color);
	background-color: transparent;
	border: none;
	border-radius: 3px;
	transition:
		color var(--transition-appendix),
		background-color var(--transition-appendix);

	&::before {
		position: absolute;
		inset: auto 0 0;
		display: block;
		height: 2px;
		background: var(--background);
		pointer-events: none;
		content: '';
		transition: opacity var(--transition-appendix);
	}
}

.announcements .content-section .read-more {
	color: inherit;
}

.announcements .content-section .read-more i {
	display: none;
}

.button-underline.white,
.ccl-v2-widget:is(
	.imagebox-v2-1-across-fullwidth,
	.slider-v2-1-across,
	.cards-v2-3-across
) .slide-footer .read-more,
.ccl-v2-widget:is(.core-v2-preview-slider-with-header) .widget-view-all {
	--text-color: var(--white);
}

@media (hover: hover) {
	.button-underline:hover,
	.blog-container .post-link:hover,
	.blog-container .related-posts .related-item a.read-more-link:hover,
	.custom-button[data-style="alternate"] .button-link:hover,
	.ccl-v2-widget:not(
		.core-v2-hero-image,
		.core-v2-hero-slideshow,
		.imagebox-v2-1-across,
		.side-by-side-v2-1-across,
		.cards-v2-2-across
	) .slide-footer .read-more:hover,
	.custom-marquee-grid .slide-footer .read-more:hover,
	.ccl-v2-widget:is(.core-v2-preview-slider-with-header) .widget-view-all:hover,
	.announcements .content-section .read-more:hover {
		color: var(--text-color-hover);
		background-color: var(--background);

		&::before {
			opacity: 0;
		}
	}
}

/*==========================*/
/*=====----- BLOG -----=====*/
/*==========================*/

.blog-container {
	& a.prev-post,
	& a.next-post {
		text-decoration: none;
	}

	& .related-posts .related-item a.read-more-link,
	& .post-link {
		text-decoration: none;
		margin: 0 11px 16px;
		
		& i {
			display: none;
		}
	}
	
	& .related-posts .related-item a.read-more-link {
		font-size: 0.625rem;
	}

	& .paging-buttons .paging-button a {
		text-decoration: none;
	}
}

@media screen and (min-width: 64em) {
	.blog-container .related-posts .related-item a.read-more-link {
		font-size: 1rem;
	}
}

/***************/

/* Sports Site Panel Header */

/***************/

.header-sports {
	display: grid;
	grid-template-columns: 185px 1fr;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2000;
	padding: 5px 15px;
	border-bottom: 1px solid rgba(255,255,255,0.25);
}

.header-sports .sports-logo-main img {
	min-width: 200px;
	min-height: 36px;
}

.header-sports .sports-logo-alt {
	display: none;
}

.header-sports.sticky {
	position: fixed;
	backdrop-filter: blur(8px);
	min-height: 65px;
}

.header-sports.sticky .sports-logo-main {
	display: none;
}

.header-sports.sticky .sports-logo-alt {
	display: block;
}

.header-sports .sentinel {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.sports-page-links {
	display: flex;
	justify-content: flex-end;
}

.sports-page-links a {
	display: none;
	font-weight: bold;
	text-decoration: none;
}

.sports-page-links a:last-child {
	display: block;
	padding: 5px 15px;
	background-color: #e31d93;
	color: white;
	transition: background-color 0.3s, color 0.3s;
}

.sports-page-links a:not(:last-child) {
	transition: color 0.3s;
}

@media (min-width: 800px) {
	.sports-page-links a {
		display: inline;
		color: white;
		font-weight: bold;
	}

	.sports-page-links {
		justify-content: flex-end;
		align-items: center;
		padding-left: 20px;
	}

	.sports-page-links a {
		margin-left: 25px;
	}
}

@media (hover: hover) {
	.sports-page-links a:last-child:hover {
		background-color: white;
		color: #e31d93;
	}

	.sports-page-links a:not(:last-child):hover {
		color: #5fbbe2;
	}
}

/* Sports Footer */

.sports-footer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #228fbd;
	padding: 20px;
}

.sports-footer .content {
	margin-bottom: 12px;
	text-align: center;
}

.sports-footer .content::before {
	content: "\00A9";
	color: white;
}

.sports-footer .content span,
.sports-footer .content a {
	color: white;
	font-size: 12px;
}

.sports-footer .social-links-cont {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sports-footer .social-links-cont .social-links {
	gap: var(--space-4);
	padding: 0 var(--space-2);

	a {
		color: white;
		margin: 0;
		padding: 0;
		font-size: 1.6rem;
		height: unset;
		width: unset;
		background: transparent;
	}
}

.sports-footer .social-links-cont .anchor {
	padding: 0 0.5rem;
}

@media (min-width: 850px) {
	.sports-footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}