/* NOTACIÓN BEM CSS */
/* Importamos las fuentes */
@import url("//fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("//fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,800,700,900");
@import url("//fonts.cdnfonts.com/css/eurostile");
@import url("//fonts.googleapis.com/css?family=Fira Sans Condensed");
@import url("//fonts.cdnfonts.com/css/fira-sans-book");
/*@import url("//cdn.jsdelivr.net/npm/@xz/fonts@1/serve/fira-sans.min.css");*/
@import url("//fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Raíz */
:root {
	--black: #000;
	--black2: #151515;
	--black3: #121212;
	--black4: #222222;
	--light2: #d6d6d6;
	--light3: #ededed;
	--light4: #ced4da;
	--light5: #efefef;
	--gray: #adb5bd;
	--gray2: #727272;
	--gray3: #414141;
	--gray4: #949597;
	--gray5: #1e1e1e;
	--gray6: #343537;
	--orange: #E37C20;
	--red: #cd122d; 
	--red2: #8c1a17;
	--purple: #563d7c;
	--blue: #0b57d0;
	--blue2: #002f87;
	--google: #dc4e41; 
	--facebook: #3b5998;
	--twitter: #1da1f2;
	--instagram: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
	--primary: #F8D548;
	--secondary: #1D2443;
	--text-primary: #000;
	--text-secondary: #FFF;
	--primary-opacity-50: #F8D54880;
	--primary-opacity-25: #F8D54840;
	--font-family-eurostyle-bold: "Eurostile-bold", sans-serif;
	--font-family-eurostyle: "Eurostile", sans-serif;
	--font-family-raleway: "Raleway", sans-serif;
	--font-family-titilium-web: "Titillium Web", sans-serif;
	--font-family-fira-sans-condensed: "Fira Sans Condensed", sans-serif;
	--font-family-fira-sans-book: "Fira Sans Book", sans-serif; 
	--font-family-fira-sans: "Fira Sans", sans-serif; 
	--aspect-ratio-1-1: 100%;
	--aspect-ratio-16-9: 56.25%;
	--aspect-ratio-4-3: 75%;
	--aspect-ratio-3-2: 66.66%;
	--aspect-ratio-8-5: 62.5%;
}

body {
	/* background-color: #ccc; */
	padding-right: 0 !important;
}
a, a:hover, a:focus {
	text-decoration: none;
	color: inherit;
}

/* FORM */
.form-check-input,
.form-check-label {
	cursor: pointer;
}

/* WRAPPER */
.wrapper {
	font-family: var(--font-family-fira-sans);
	position: relative;
}

/* HEADER */
.header {
	color: var(--white);
	box-shadow: 10px 10px 50px rgba(0, 0, 0, .15);
}

/* SOCIAL MEDIA PLATFORMS */
.header__social-media {
	/* border-bottom: 3px solid var(--light3); */
} 
.social-media {
	position: relative;
	background-color: var(--primary);
	padding: .5rem .75rem;
}
.social-media__list {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: flex-end;
	gap: .375rem;
}
.social-media__item {
	list-style: none;
}
.social-media__link {
	cursor: pointer;
	color: var(--text-primary);
	background-color: transparent;
	border-radius: 50%;
	height: 22px;
	width: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-media__link:hover, 
.social-media__link:focus {
	color: var(--text-primary);
	text-decoration: none;
	opacity: .85;
}
.social-media__link--facebook {
	background-color: var(--facebook);
}
.social-media__link--twitter {
	background-color: var(--twitter);
}
.social-media__link--instagram {
	background: var(--instagram);
}

/* HEADER NAVIGATION */
.header__core {
	background-color: var(--secondary);
}
.header__bar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.header__main {
	display: flex;
	flex-direction: column;
	padding-top: 1rem;
}
.header__user-navigation {
	display: flex;
	flex: 1;
}
.header__section {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
}
.header__section--primary {
	flex-direction: column;
}
.header__section--primary + .header__section--menu {
	margin-top: 1rem;
}
.header__section--login, .header__section--cart {
	justify-content: center;
}
.header__section--login .dropdown-menu {
	background-color: var(--secondary);
	border-color: var(--gray-dark);
}
.header__section--login .dropdown-item:focus, 
.header__section--login .dropdown-item:hover {
	background-color: var(--primary);
	color: var(--text-primary);
}
.header__section--login .dropdown-item.active, 
.header__section--login .dropdown-item:active {
	background-color: var(--primary);
	color: var(--text-primary);
}
.header__section--login .dropdown-item {
	color: var(--white);
	font-size: .9rem;
	padding-left: 1rem;
	padding-right: 1rem;
}
.header__section--login .header__link {
	color: var(--white);
}
.header__section--cart .header__link {
	color: var(--text-primary);
}
.header__section--login .header__thumbnail {
	background-color: var(--white);
	border-radius: 50%;
	height: 32px;
	width: 32px;
}
.header__section--cart {
	background-color: var(--primary);
}
.header__section--cart .header__item {
	align-items: flex-end;
}
.header__section--cart .header__icon + .header__text {
	margin-left: .5rem;
}
.header__text {
	transition: all .2s ease-in-out;
}
.header__logo {
	position: relative;
	height: 12rem;
	width: 12rem;
}
.header__club {
	text-align: center;
}
.header__logo-img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}
.header__page, .header__club-name {
	margin-bottom: 0;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}
.header__club-name {
	font-weight: 600;
}
.header__item {
	padding: 1rem;
	display: flex;
	align-items: center;
}
.header__navigation {
	/*background-color: var(--secondary);*/
	width: 100%;
}
.navigation--top {
	padding: 0;
}
.navigation--top .navigation__nav {
	justify-content: center;
}
.navigation--top .navigation__list {
	flex: 1;
	justify-content: space-around;
}
.navigation--top .navigation__item {
	flex: 1;
}
.navigation--top .navigation__link.nav-link {
	color: var(--white);
	text-transform: uppercase;
	padding: .5rem .75rem;
	font-weight: 500;
	white-space: nowrap;
}
.navigation--top .navigation__link.nav-link:hover {
	background-color: var(--primary);
	color: var(--text-primary);
}
.navigation--top .navigation__toggler {
	margin: .75rem;
}
.navigation--top .navigation__toggler:focus, .navigation--top .navigation__toggler:hover {
	text-decoration: none;
	outline: none;
}


/* PRIMARY BAR */
.header__primary {
	background-color: var(--black);
}
.primary {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem .5rem;
}
.primary__club {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.primary__club-logo-container {
	align-self: flex-start;
	text-align: left;
	display: none;
}
.primary__club-logo {
	position: absolute;
	top: calc(0px - 1.25rem);
	height: 11.375rem;
	margin-top: -8px;
	z-index: 1000;
}
.primary__club-name-container {
	align-self: center;
	text-align: left;
	padding-left: 3rem;
}
.primary__club-name {
	margin-bottom: 0;
}
.primary__icon-container {
}
.primary__icon {
	height: 36px;
}

/* CONTENT */
.content {
	margin: 0;
	padding: 0;
}
.content--dark {
	background-color: var(--black3);
	color: var(--white);
}

/* FEATURED NEWS */
.content__featured-news {
	/*border-bottom: 10px solid var(--orange);*/
}
.featured-news {
	font-size: 12px;
	color: var(--gray);
}
.featured-news__grid {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: 350px;
	/*grid-template-rows: 800px;*/
	grid-gap: .375rem;
}
.featured-news__item {
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 1.2rem rgba(0, 0, 0, .1);
}
.featured-news__item--grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 250px;
	grid-gap: .375rem;
}
.featured-news__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .3s ease-in-out;
}
.featured-news__item:not(.featured-news__item--grid):hover .featured-news__img {
	transform: scale(1.05);
}
.featured-news__content {
	position: absolute;
	background-color: rgba(0, 0, 0, .075);
	color: var(--white);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	padding: .5rem .75rem 2rem;
	justify-content: space-between;
}
.featured-news__section {
	display: flex;
	flex-direction: column;
	align-items: start;
}
.featured-news__text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.featured-news__link {
	color: var(--white);
}
.featured-news__link:hover, .featured-news__link:focus {
	color: var(--white);
	text-decoration: none;
}
.featured-news__category {
	font-size: .75rem;
	text-transform: uppercase;
	margin-bottom: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: rgba(0, 0, 0, .65);
	padding: .025rem .25rem;
}
.featured-news__category:empty {
	display: none;
}
.featured-news__text--title {
	margin-bottom: 0;
	text-transform: uppercase;
	max-width: 75%;
	white-space: normal;
}
.featured-news__text--subtitle {
	margin-bottom: 0;
	font-size: 1rem;
	max-width: 50.25%;
	/* max-height: 3.5rem; */
	-webkit-line-clamp: 3;
	line-height: 2.0375;
}
.featured-news__text--title + .featured-news__text--subtitle {
	margin-top: 1rem;
}
.featured-news__span {
	display: inline;
}
.featured-news__text--title .featured-news__span {
	background-color: rgba(0, 0, 0, .95);
	padding: .375rem .75rem;
}
.featured-news__text--subtitle .featured-news__span {
	background-color: rgba(0, 0, 0, .65);
	padding: .25rem .5rem;
}
.featured-news__text--red .featured-news__span {
	background-color: rgba(205, 18, 45, 0.95);
}
.featured-news__span:empty {
	display: none;
}
.featured-news__img[src=""] + .featured-news__content {
	background-color: transparent;
}
h1.featured-news__text--title {
	font-size: 2rem;
	line-height: 1.5;
}
h2.featured-news__text--title {
	font-size: 1.25rem;
	line-height: 1.7;
}

/* SPONSORS */
.content__sponsors {
	margin: 0;
}
.sponsors {
	position: relative;
}
.sponsors__banner {
	width: 100%;
}
.sponsors__img {
	width: 100%;
	height: 100%;
}

/* BREAKING NEWS */
.content__breaking-news {
	margin: 2.25rem 0;
}
.breaking-news {
	position: relative;
	transition: all .25s ease;
}
.breaking-news__header {
	text-align: center;
	padding: .5rem;
}
.breaking-news__title {
	color: var(--white);
	font-weight: bold;
	font-style: italic;
	margin-bottom: 0;
	letter-spacing: .5pt;
}
.breaking-news__header,
.breaking-news__body {
	padding: 1.25rem;
}
.breaking-news__header {
	padding-bottom: 0; 
}
.breaking-news__grid {
	display: grid;
	grid-template-columns: auto;
	grid-gap: 1.5rem 0;
}
.breaking-news__item {
	transition: all .25s ease;
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.breaking-news__item:is(:hover, :focus) {
	box-shadow: 0 0 1.2rem rgba(0,0,0,.1);
}
.breaking-news__link {
	text-decoration: none;
}
.breaking-news__link:is(:hover, :focus) {
	text-decoration: none;
}
/* NEWS */
.news {
	position: relative;
	background-color: var(--black3);
	border-radius: 0;
	font-size: 12px;
	border-width: 0;
	height: 100%;
}
.news::before, .news::after {
	content: "";
	height: 2px;
	transition: width .25s cubic-bezier(0.55, 0.085, 0.68, 0.53) .25s;
	display: block;
}
.news::before {
	position: absolute;
	bottom: 0;
	background-color: var(--gray3);
	width: 100%;
}
.news::after {
	background-color: var(--primary);
	width: 0;
}
.news__img-container {
	position: relative;
	display: block;
	background-color: var(--gray5);
	color: var(--gray);
	padding-top: 56.25%;
	width: 100%;
	overflow: hidden;
	font-size: .85rem;
}
.news__img {
	position: absolute;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: cover;
	object-position: center;
	transition: all .3s ease-in-out;
}
.news__body {
	padding: .75rem .375rem .75rem 0;
	transition: all .25s;
}
.news__title {
	margin: 0;
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--white);
	transition: color .2s ease-in-out;
	overflow: hidden;	
	/* height: 3rem; */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: auto;
	line-height: 1.2;
}
.news__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	border-top-width: 0;
	padding: .375rem .375rem .5rem;
	font-size: 10px;
	/*position: absolute;
	bottom: 0;*/
	width: 100%;
}
.news__footer:last-child {
	border-radius: 0;
}
.news__text {
	margin-bottom: 0;
}
.news__icon {
	margin-right: .2rem;
}
.news__subtitle {
	margin-bottom: 0;
	color: var(--light2);
	font-size: .85rem;
	/* height: 2.2rem; */
	overflow: hidden;
	white-space: normal;
	opacity: 1;
	line-height: 1.25;
	transition: all .25s ease;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-align: justify;
}
.news__title + .news__subtitle {
	margin-top: .375rem;
}
.news__meta {
	margin-bottom: 0;
	align-self: center;
	flex-grow: 1;
}
.news__text--category {
	color: var(--primary);
	text-transform: uppercase;
	margin-left: calc(-.5rem + 1px);
	font-weight: 400;
	flex-grow: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news__text--time {
	flex-shrink: 0;
	color: var(--light2);
	text-align: right;
}
.news__text--category + .news__text--time {
	margin-left: .5rem;
}
.news__text--time .news__icon {
	color: var(--black2);
}
.news__text--category .news__icon {
	position: relative;
	top: -1px;
}
/* NEWS :HOVER */
.news:hover::before {
	width: 0;
}
.news:hover::after {
	width: 100%;
}
.news:hover .news__img {
	transform: scale(1.05);
}
.news:hover .news__title {
	color: var(--primary);
}
/*.news:is(:hover) .news__img-container {
	padding-top: 8.75rem;
}
.news:is(:hover) .news__title {
	margin-bottom: .375rem;
}
.news:is(:hover) .news__subtitle {
	opacity: 1;
	margin-top: .375rem;
}*/

/* MATCHES */
.content__matches {
	background: url("../../assets/images/fondo_partidos.png") no-repeat;
	background-size: cover;
	background-color: var(--black2);
	color: var(--white);
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.matches {
	position: relative;
	margin-bottom: 1.5rem;
}
.matches:last-child {
	margin-bottom: 0;
}
.matches__header {
	padding: .375rem;
}
.matches__title-container {
	border-bottom: 2px solid var(--secondary);
	padding-bottom: .5rem;
}
.matches__title {
	margin: 0;
	font-weight: 600;
}
.matches__body {
	padding: .5rem .375rem;
}
.matches__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .75rem;
	background-color: var(--dark);
	border-radius: 12px;
	flex-wrap: wrap;
	gap: 1.25rem;
	border: .375rem solid transparent;
	margin-bottom: 1rem;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}
.matches__item:last-child {
	margin-bottom: 0;
}
.matches__text {
	margin: 0;
}
.matches--latest .matches__item {
	background-color: var(--red);
	border-color: var(--dark);
}
/* MATCHES -- CHAMPIONSHIP */
.matches__championship {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.matches__championship-logo {
	width: auto;
	height: 2.75rem;
}
.matches__championship-info-container {
	display: flex;
	flex: 1;
	justify-content: flex-end;
}
.matches__championship-info {
	position: relative;
	padding: 0 .5rem;
	border-right: 2px solid var(--gray);
	text-align: right;
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex: 1;
}
.matches__championship-info:last-child {
	padding-left: 1.25rem;
	border-right-width: 0;
	text-align: left;
}
.matches__championship-name, .matches__championship-time {
	font-weight: 600;
}
.matches__championship-stadium, .matches__championship-date {
	font-weight: 300; 
}
.matches__championship-name-container {
	margin-bottom: .375rem
}
.matches__championship-time-container {
	margin-bottom: .2rem;
}
.matches__championship-time, .matches__championship-date {
	white-space: nowrap;
}
.matches__championship-stadium {
	font-size: .85rem;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.matches__championship-date {
	font-size: .7rem;
}
.matches__championship-calendar {
	margin-left: .375rem;
}
/* MATCHES -- SCOREBOARD */
.matches__scoreboard {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: .5rem;
}
.matches__scoreboard-team {
	display: flex;
	align-items: center;
	gap: .5rem;
}
.matches__scoreboard-team-name {
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: .85rem
}
.matches__scoreboard-team-logo {
	width: auto;
	height: 2.25rem;
}
.matches__scoreboard-vs-logo {
	width: auto;
	height: 1.5rem;
}
.matches__scoreboard-score {
	text-align: center;
	font-weight: 600;
	font-size: .95rem
}

/* ADS */
.content__ads {
	margin-bottom: 3rem;
}
.ads {
	font-size: 12px;
	padding: .5rem 0;
	display: grid;
	grid-template-rows: auto;
	grid-gap: .5rem;
}
.ads__banner {
	position: relative;
	background-color: var(--light5);
	color: var(--gray2);
	padding-top: 56.25%;
}
.ads__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ARTICLE */
.article {
	padding: 3.5rem 0;
}
.article__header + .article__body,
.article__text + .article__slider {
	margin-top: 3rem;
}
.article__title {
	font-size: 2.25rem;
	font-weight: 500;
	color: var(--white);
	line-height: 1;
	margin-bottom: .75rem;
}
.article__subtitle {
	color: var(--gray4);
	font-weight: 600;
	font-size: 1.2rem;
}
.article__subtitle--underline {
	text-decoration: underline;
}
.article__body .article__subtitle {
	margin-bottom: .75rem;
	text-align: justify;
}
.article__body {
	font-weight: 400;
	letter-spacing: .25pt;
}
.article__text {
	color: var(--white);
	margin-bottom: 0;
	font-size: 1rem;
}
.article__text {
	font-weight: 300;
}
.article__text b, .article__list b {
	font-weight: 600;
	font-style: italic;
	color: var(--light2);
}
.article__text--short-description {
	font-size: 1.15rem;
	font-weight: 400;
	color: var(--gray4);
}
.article__text--long-description {
	text-align: justify;
	font-weight: 300;
}
.article__text--long-description + .article__img-container {
	margin-top: 3rem;
}
.article__text + .article__subtitle,
.article__list-container + .article__subtitle {
	margin-top: 2.5rem;
}
.article__img-container {
	position: relative;
	font-size: 1rem;	
	padding-top: 66.66%;
	background-color: var(--black);
	color: var(--gray);
}
.article__img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.article__text--hymn {
	color: var(--white);
	width: 250px;
	text-align: center;
	margin: auto;
	font-size: 1.25rem;
	font-style: italic;
	white-space: pre-line;
}
.article__list {
	font-weight: 300;
}
.article__list-item {
	font-size: 1rem;
}
.article__gallery {
	display: flex;
	flex-wrap: wrap;
	gap: .375rem;
}
.article__gallery-item {
	flex: 1 1 100%;
}
.article__gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article__slider-img-container {
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
}
.article__slider-img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* OWL SLIDER */
.content__owlslider {
	padding: 5rem 0;
}
.content__owlslider + .content__owlslider {
	padding-top: 0;
}
.owlslider__header + .owlslider__body {
	margin-top: 1.25rem;
}
.owlslider__title {
	display: inline-flex;
	color: var(--white);
	text-align: center;
	/*font-weight: 600;*/
	font-style: italic;
	margin-bottom: 0;
	letter-spacing: .5pt;
}
.owlslider__title + .owlslider__link {
	margin-left: .75rem;
	color: var(--light2);
	font-weight: 500;
	font-style: italic;
}
.owlslider__title + .owlslider__link:hover {
	color: var(--orange);
}
.owlslider__title + .owlslider__link .owlslider__link-icon {
	vertical-align: middle;
}
.owlslider__link {
	text-decoration: none;
}
.owlslider__link:hover, .owlslider__link:focus {
	text-decoration: none;
}
.owlslider__link-icon {
	margin-left: .25rem;
}
.owlslider__item {
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}
.owlslider__card {
	background-color: var(--black3);
	color: var(--white);
	border-radius: 0;
	border-width: 0;
}
.owlslider__card::before, 
.owlslider__card::after {
	content: "";
	height: 2px;
	transition: width .25s cubic-bezier(0.55, 0.085, 0.68, 0.53) .25s;
	display: block;
}
.owlslider__card::before {
	position: absolute;
	bottom: 0;
	background-color: var(--gray3);
	width: 100%;
}
.owlslider__card::after {
	background-color: var(--primary);
	width: 0;
}
.owlslider__card-title {
	font-weight: 500;
	margin-bottom: 0;
	transition: color .2s ease-in-out;
}
.owlslider__card-text {
	font-size: 1rem;
}
.owlslider__card-img-container {
	position: relative;
	overflow: hidden;
	color: var(--gray);
	background-color: var(--gray5);
	font-size: .85rem;
}
.owlslider__card-img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all .3s ease-in-out;
}
.owlslider__card-body {
	padding: .75rem 0;
}
.owlslider__card-text {
	margin-bottom: 0;
}
.owlslider__list {
	display: flex;
	gap: .5rem;
}
.owlslider__card-title + .owlslider__card-text {
	margin-top: .5rem;
}
/* OWL SLIDER --PLAYER */
.owlslider__card--player .owlslider__card-img-container {
	/*padding-top: 133.33%;*/
	padding-top: 166.66%;
}
.owlslider__card--player:hover .owlslider__card-img {
	transform: scale(1.025);
}
.owlslider__card--player .owlslider__card-body {
	padding: .5rem 0;
}
.owlslider__card--player .owlslider__card-text {
	font-size: .9rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
/* OWL SLIDER --FEATURED CATEGORIES */
.owlslider__card--ft-category .owlslider__card-img-container {
	padding-top: 66.66%;
}
.owlslider__card--ft-category .owlslider__card-img-container::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to top, #121212, rgba(18,18,18,0));
}
.owlslider__card--ft-category:hover .owlslider__card-img {
	transform: scale(1.05);
}
.owlslider__card--ft-category .owlslider__card-body {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 1.5rem .75rem;
}
.owlslider__card--ft-category .owlslider__card-title {
	font-style: italic;
	line-height: 1.25;
}
.owlslider__card--ft-category:hover .owlslider__card-title {
	color: var(--primary);
}
/* OWL SLIDER --TV  */
.owlslider__card--tv-video .owlslider__card-img-container {
	padding-top: 56.25%;
}
.owlslider__card--tv-video .owlslider__card-body {
	padding: 1rem .75rem 1rem 0;
}
.owlslider__card--tv-video .owlslider__card-title {
	font-size: 1.15rem;
}
.owlslider__card--tv-video .owlslider__card-text {
	color: var(--light2);
	font-weight: 300;
	line-height: 1.375;
	font-size: .9rem;
	text-align: justify;
}
.owlslider__card--tv-video .owlslider__card-title + .owlslider__card-text {
	margin-top: .75rem;
}
.owlslider__card--tv-video:hover .owlslider__card-title {
	color: var(--orange);
}
.owlslider__card--tv-video:hover .owlslider__card-img {
	transform: scale(1.05);
}
/* OWL SLIDER :HOVER */
.owlslider__card:hover::before {
	width: 0;
}
.owlslider__card:hover::after {
	width: 100%;
}
/* OWL SLIDER --ARROWS */
.owlslider .owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	font-size: 3rem;
	margin: 0;
	transform: translateY(-50%);
	height: 100%;
	padding-left: 1.25rem !important;
	padding-right: 1.25rem !important;
	border-radius: 0;
	transition: all .3s ease-in-out;
	opacity: .6;
	color: var(--white);
}
.owlslider .owl-carousel .owl-nav button.owl-next {
	right: 0;
	padding-left: 5rem !important;
	padding-right: .75rem !important;
}
.owlslider .owl-carousel .owl-nav button.owl-prev {
	left: 0;
	padding-left: .75rem !important;
	padding-right: 5rem !important;
}
.owlslider .owl-carousel .owl-nav button:hover {
	opacity: 1;
	color: var(--white);
}
.owlslider .owl-carousel .owl-nav button.owl-next:hover {
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%) !important;
	background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%) !important;
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5))) !important;
	background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%) !important;
	background-repeat: repeat-x !important;
	
}
.owlslider .owl-carousel .owl-nav button.owl-prev:hover {
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%) !important;
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%) !important;
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001))) !important;
	background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%) !important;
	background-repeat: repeat-x !important;
}

/* FOOTER */
.footer {
	background-color: var(--secondary);
	color: var(--text-secondary);
	/*border-bottom: 8px solid var(--orange);*/
	/*padding: 3rem 1rem 1rem;*/
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
	font-family: var(--font-family-fira-sans);
}
.footer__core {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding-top: 5rem;
	padding-bottom: 5rem;
}
.footer__title {
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: .95rem;
}
.footer__subtitle {
	color: var(--light2);
	text-transform: uppercase;
	font-weight: 400;
	font-size: .9rem;
}
.footer__section {
	display: flex;
	flex-direction: column;
	flex: 1;
}
.footer__section--main {
	align-items: center;
	text-align: center;
}
.footer__section--newsletter {
	flex: 2;
}
.footer__section--newsletter .btn-outline-orange {
	background-color: var(--primary);
	color: var(--black);
	padding: .5rem .75rem;
	font-size: .9rem;
}
.footer__section--newsletter .form-control {
	height: calc(2.5rem + 2px);
	font-size: .9rem;
}
.footer__logo {
	width: 150px;
	height: 150px;
	margin-top: -1.25rem;
}
.footer__logo-img {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
}
.footer-nav {
	flex-direction: column;
}
.footer-nav__item {
	margin-bottom: .75rem;
}
.footer-nav__item:last-child {
	margin-bottom: 0;
}
.footer-nav__link {
	padding: 0;
	color: var(--light2);
	font-size: .85rem;
}
.footer-nav__link:hover {
	color: var(--white);
}
.footer-sponsors {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}
.footer-sponsors__sponsor {
	flex: 0;
}
.footer-sponsors__img {
	object-fit: scale-down;
	object-position: center;
	margin: auto;
	display: block;
	height: 100px;
	width: 100px;
}
/*.footer__sponsors + .footer__corporate {
	margin-top: 3rem;
}*/
.footer-corporate {
	background-color: var(--primary);
	color: var(--text-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-transform: uppercase;
	gap: .375rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.footer__club--info .footer__subtitle {
	font-size: .85rem;
	margin-bottom: .75rem;
}
.footer-corporate__text {
	margin-bottom: 0;
}
.footer-corporate__support {
	/*font-style: italic;*/
}
.footer-corporate__copyright, 
.footer-corporate__support {
	padding-left: .75rem;
	padding-right: .75rem;
	font-size: .85rem;
	font-weight: 500;
}
.footer-corporate__link,
.footer-corporate__link:hover,
.footer-corporate__link:focus {
	color: inherit;
}
.footer-corporate__link:hover,
.footer-corporate__link:focus {
	color: inherit;
	text-decoration: underline;
}

/* PRODUCTS SECTION | SHOP */
.shop {
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin: 0;
	color: var(--black);
}
/*.shop__tools {
	justify-content: flex-end;
}*/
.shop__header,
.shop__body {
	padding: 1.25rem;
}
.shop__header {
	padding-bottom: 0;
}
.shop__title {
	font-weight: 600;
	margin-bottom: 0;
	text-transform: uppercase;
}
.shop__link {
	color: var(--gray5);
}
.shop__link:hover {
	color: var(--black);
	text-decoration: none;
}
.shop__bar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.shop__bar--tools {
	justify-content: space-between;
}
.shop__bar--tools .shop__form-lbl {
	margin-bottom: 0;
}
/*.shop__bar--tools [class*="col-"]
{
	padding-left: 0;
	padding-right: 0;
}*/
.shop-sidebar {
	padding: 0;
	/*background-color: #FFC090;*/
	/*background-color: #FFE4C0;*/
	background-color: var(--light);
	color: var(--black);
	padding: 1.25rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	font-size: .95rem;
}
.shop-sidebar--sticky {
	position: sticky;
	top: 0;
}
/*.shop-sidebar__title {
	font-weight: 600;
}*/
.shop-sidebar__title {
	margin-bottom: 1rem;
}
.shop-sidebar__prices {
	align-items: center;
	justify-content: center;
	row-gap: 1rem;
}
.shop-sidebar__section {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--light3);
}
.shop-sidebar__section:first-of-type {
	padding-top: 0;
}
.shop-sidebar__section:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.shop-sidebar__content {
	display: flex;
	flex-direction: column;
}
.shop-sidebar__content--inline {
	flex-direction: row;
	flex-wrap: wrap;
	gap: .5rem;
}
.shop-sidebar__refresh {
	position: absolute;
	top: .5rem;
	right: .5rem;
	display: flex;
	align-items: center;
	padding: .25rem;
	border-radius: 50%;
}
.shop-sidebar__content--toggler-group .shop-picker--toggler .shop-picker__label {
	background-color: transparent;
	border-radius: 0;
	font-weight: 500;
}
.shop__frm-grp {
	margin-bottom: 0;
}
/*.shop__frm-grp {
	display: flex;
	width: 100%;
	max-width: 400px;
}*/
.shop__frm-lbl,
.shop__frm-chk-lbl {
	font-size: .875rem;
	cursor: pointer;
	padding-top: 0;
	padding-bottom: 0;
}
.shop__frm-ctr {
	border-radius: 0;
	font-size: .875rem;
	border-color: var(--light4);
}
input[type="date"].shop__frm-ctr {
	text-align: center;
}
input[type="date"].shop__frm-ctr, 
select.shop__frm-ctr {
	cursor: pointer;
}
.shop__frm-ctr[readonly] {
	background-color: var(--light3);
	/*border-color: transparent;
	padding-left: 0;*/
}
.shop__frm-ctr[readonly]:focus {
	box-shadow: none;
	border-color: transparent;
}
.shop__frm-chk {
	display: inline-flex;
	align-items: center;
}
.shop__frm-chk-ipt {
	margin-top: -.1rem;
}
.shop__frm-chk + .shop__frm-chk {
	margin-left: .5rem;
}
.shop__frm-req {
	color: var(--danger);
	font-size: 1rem;
	font-weight: 700;
}
.shop__btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}
.shop__btn {
	border-radius: 0;
	font-size: .95rem;
	padding: .375rem 1rem;
}
.shop__btn + .shop__btn {
	margin-top: 0 !important;
}
.shop__btn--submit {
	color: var(--text-primary);
	background-color: var(--primary);
	border-color: var(--primary);
} 
.shop__btn--submit:hover,
.shop__btn--submit:focus {
	color: var(--text-primary);
}
.shop__btn--submit:focus {
	box-shadow: 0 0 0 .2rem var(--primary-opacity-25);
}
.shop__btn-icon {
	margin-right: .25rem;
}
.shop-picker {
	position: relative;
}
.shop-picker__label {
	cursor: pointer;
	margin-bottom: .25rem;
}
.shop-picker__input {
	display: none;
}
.shop-picker__label:hover {
	color: var(--gray2);
}
.shop-picker--active .shop-picker__label {
	color: var(--orange);
}
.shop-picker:last-child .shop-picker__label {
	margin-bottom: 0;
}
.shop-picker--toggler {
	position: relative;
}
.shop-picker--toggler .shop-picker__label {
	background-color: var(--white);
	border-radius: 25px;
	padding: .375rem 1.375rem;
	border: 1px solid var(--light4);
	cursor: pointer;
	margin-bottom: 0;
	transition: border-color .1s ease;
}
.shop-picker--toggler .shop-picker__label:hover {
	/*border-color: var(--black4);*/
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
	border-color: #80bdff;
	color: inherit;
}
.shop-picker--toggler.shop-picker--active .shop-picker__label {
	background-color: var(--black3);
	color: var(--white);
	border-color: var(--black);
}


/* ===== PRODUCTS PAGE ===== */
/*.shop--products-page {
	padding-top: 3rem;
	padding-bottom: 3rem;
}*/
.shop--products-page .shop-grid {
	display: grid;
	grid-gap: 2rem;
}


/* ===== PRODUCT DETAILS PAGE ===== */
/*.shop--product-details-page {
	padding-top: 3rem;
	padding-bottom: 3rem;
}*/
.shop--product-details-page .shop-grid {
	display: flex;
	gap: 1.75rem;
	flex-direction: column;
}
.shop--product-details-page .shop__frm-lbl {
	font-weight: 500;
	font-size: .95rem;
}
.shop--product-details-page .shop__frm-ctr {
	border-radius: 25px;
	height: 36px;
}
.shop--product-details-page select.shop__frm-ctr {
	appearance: none;
	cursor: pointer;
	font-size: .9rem;
}
.shop--product-details-page .shop__btn--submit {
	padding: .75rem 1rem;
	width: 100%;
}
.shop--product-details-page .owl-carousel .owl-nav button.owl-prev, 
.shop--product-details-page .owl-carousel .owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.75rem;
	font-weight: 500;
}
.shop--product-details-page .owl-theme .owl-nav [class*="owl-"] {
	margin-top: 0;
	margin-bottom: 0;
}
.shop--product-details-page .owl-theme .owl-nav [class*="owl-"]:hover {
	color: var(--orange);
}
.product-images__img-container {
	position: relative;
	padding-top: 100%;
	overflow: hidden;
}
.product-images__img {
	transition: all .3s ease-in-out;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-images-slider {
	width: 100%;
	min-height: 100px;
}
.product-images-slider--thumbnails .owl-carousel .owl-nav button.owl-prev {
	left: -2rem;
}
.product-images-slider--thumbnails .owl-carousel .owl-nav button.owl-next {
	right: -2rem;
}
/*.product-images-slider--thumbnails .owl-carousel.owl-loaded {
	display: flex;
	flex-direction: column;
}
.product-images-slider--thumbnails .owl-carousel .owl-stage-outer {
	padding-left: 4px;
}
.product-images-slider--thumbnails .owl-carousel .owl-stage {
	display: flex;
	gap: .5rem;
}
.product-images-slider--thumbnails .owl-carousel .owl-item {
	width: 25% !important;
	margin-right: 0 !important;
}*/
/*.product-images-slider--thumbnails .owl-carousel .owl-stage-outer {
	padding-left: 1rem;
	padding-right: 1rem;
}
.product-images-slider--thumbnails .owl-carousel .owl-stage {
	display: flex;
	flex-wrap: nowrap;
	width: auto !important;
	gap: .5rem;
	padding-left: .5rem;
}
.product-images-slider--thumbnails .owl-carousel .owl-item {
	width: 25% !important;
	display: none;
}
.product-images-slider--thumbnails .owl-carousel .owl-item.active {
	display: block;
}*/
.product-images-slider__viewport {
	display: flex;
	flex-wrap: nowrap;
}
.product-images-slider__thumbnail {
	position: relative;
	padding-top: 100%;
	flex: 1;
	border: 1px solid transparent;
	min-width: 25%;
}
.product-images-slider__thumbnail--active .product-images-slider__img {
	border-color: var(--black4);
}
.product-images-slider__img {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	border: 2px solid transparent;
}
.product-details__title {
	font-weight: 500;
	margin-bottom: 1rem;
}
.product-details__title--name {
	font-weight: 600;
}
.product-details__old-price,
.product-details__with-discount {
	color: #949494;
}
.product-details__old-price {
	text-decoration: line-through;
}
.product-details__label {
	font-weight: 500;
}
.product-details__section {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}
/*.product-details__btn--submit {
	border-radius: 0;
	padding: .75rem 1rem;
	width: 100%;
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
	font-weight: 500;
	text-transform: uppercase;
}*/


/* ===== RELATED PRODUCTS ===== */
.shop__block--related-products {
	padding-bottom: 0;
}
.shop__block--related-products .shop__title {
	text-align: center;
	text-transform: uppercase;
	margin-bottom: .5rem;
	/*font-weight: 500;*/
}
.shop__block--related-products .owl-carousel .owl-nav button.owl-prev, 
.shop__block--related-products .owl-carousel .owl-nav button.owl-next {
	font-size: 1.75rem;
	font-weight: 500;
	background-color: var(--light3);
	padding: 0 1rem !important;
	border-radius: 100%;
}
.shop__block--related-products .owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.shop__block--related-products .owl-carousel .owl-nav button.owl-next {
	right: 0;
}

/* ===== MY ACCOUNT PAGE ===== */
.shop--myaccount-page .tabbable__tabs {
	font-size: .95rem;
	margin-bottom: 1.5rem;
}
.shop--myaccount-page .tabbable__action {
	border-color: var(--light3);
}
.shop--myaccount-page .tabbable__action:first-child {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.shop--myaccount-page .tabbable__action:last-child {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.shop--myaccount-page .tabbable__action.active {
	color: var(--text-primary);
	background-color: var(--primary);
	border-color: var(--primary);
}
.shop--myaccount-page .shop__block {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}


/* ===== CHECKOUT PAGE ===== */
.shop--checkout-page .card-container + .card-container {
	margin-bottom: 1.25rem;
}
.shop--checkout-page .card {
	border-radius: 0;
	border: 0;
	font-size: .9rem;
}
.shop--checkout-page .card__header {
	background-color: var(--gray2);
	color: var(--white);
}
.shop--checkout-page .card__body {
	padding: 1.25rem;
}
.shop--checkout-page .card__footer {
	border-top: 1px solid var(--light3);
	/*display: flex;
	align-items: center;
	justify-content: space-between;*/
}
.shop--checkout-page .card__body,
.shop--checkout-page .card__footer {
	border: 1px solid var(--light3);
	border-top: 0;
}
.shop--checkout-page .card__header,
.shop--checkout-page .card__footer {
	padding: 1rem 1.25rem;
}
.shop--checkout-page .card__title,
.shop--checkout-page .card__text {
	margin-bottom: 0;
}
.shop--checkout-page .card__text {
	font-weight: 400;
}
.shop--checkout-page .text--total {
	transition: all .3s ease-in-out;
}
.shop--checkout-page .card__icon {
	margin-right: .25rem;
}
.shop--checkout-page .card--order .card__body {
	padding: 0;
}
.shop--checkout-page .card--order .dropdown-menu {
	/*border-color: var(--light3);*/
	border-radius: 4px;
}
.shop--checkout-page .card--order .dropdown-item {
	padding: .375rem 1rem;
	margin-bottom: 0;
	font-size: .9rem;
}
.shop--checkout-page .card--order .dropdown-item.active, 
.shop--checkout-page .card--order .dropdown-item:active {
	color: #16181b;
	text-decoration: none;
	background-color: #f8f9fa;
}
.shop--checkout-page .card--order .card__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: .375rem;
	padding-bottom: .375rem;
}
.shop--checkout-page .card--order .card__content:first-child {
	padding-top: 0;
}
.shop--checkout-page .card--order .card__content:last-child {
	padding-bottom: 0;
}
.shop--checkout-page .shop-picker-container {
	display: flex;
}
.shop--checkout-page .shop-picker--toggler {
	flex: 1;
}
.shop--checkout-page .shop-picker--toggler + .shop-picker.shop-picker--toggler {
	margin-left: -1px;
}
.shop--checkout-page .shop-picker--toggler .shop-picker__label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; 
	height: 100%;
	padding-top: .5rem;
	padding-bottom: .5rem;
	border-radius: 0;
	background-color: var(--light3);
}
.shop--checkout-page .shop-picker--toggler .shop-picker__input {
	display: none;
	margin-right: .375rem;
}
.shop--checkout-page .shop-picker--toggler .shop-picker__icon {
	margin-right: .25rem;
}
.shop--checkout-page .shop-picker--toggler .shop-picker__checked {
	position: absolute;
	right: .375rem;
	font-size: 1.05rem;
}
.shop--checkout-page .shop-picker--toggler.shop-picker--active .shop-picker__label {
	background-color: var(--primary);
	color: var(--text-primary);
	border-color: var(--primary);
}
.shop--checkout-page .shop-picker--toggler:not(.shop-picker--active) .shop-picker__checked {
	display: none;
}
.shop--checkout-page .productlist {
	position: relative;
	/*max-height: 600px;
	overflow-y: auto;*/
	padding: 1.25rem;
}
.shop--checkout-page .productlist__item {
	padding-top: .75rem;
	padding-bottom: .75rem;
	display: flex;
	justify-content: space-between;
	gap: .75rem;
}
.shop--checkout-page .productlist__item:first-child {
	padding-top: 0;
}
.shop--checkout-page .productlist__item:last-child {
	padding-bottom: 0;
}
.shop--checkout-page .productlist__item + .productlist__item {
	border-top: 1px solid var(--light3);
}
.shop--checkout-page .productlist__section {
	display: flex;
	align-items: center;
	flex: 1;
}
.shop--checkout-page .productlist__section--info {
	flex: 2;
}
.shop--checkout-page .productlist__section--qty .shop__frm-ctr {
	text-align: center;
}
.shop--checkout-page .productlist__section--tools {
	flex: 0;
}
/*.shop--checkout-page .productlist__section--info .productlist__meta {
	align-self: flex-start;
}*/
.shop--checkout-page .productlist__link + .productlist__meta {
	margin-left: .5rem;
}
.shop--checkout-page .productlist__thumbnail {
	position: relative;
	padding-top: 100%;
	width: 65px;
}
.shop--checkout-page .productlist__img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
/*.shop--checkout-page .productlist__img {
	width: 65px;
	height: 65px;
	object-fit: cover;
	object-position: center;
}*/
.shop--checkout-page .productlist__title {
	font-size: .975rem;
	margin-bottom: .375rem;
	max-width: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.shop--checkout-page .productlist__text {
	font-size: .9rem;
	margin-bottom: 0;
	color: var(--gray2)
}
.shop--checkout-page .productlist__link--remove {
	color: var(--danger);
}
.shop--checkout-page .productlist__link--remove:hover, 
.shop--checkout-page .productlist__link--remove:focus {
	color: #c82333;
}
.shop--checkout-page .productlist__link--unlink {
	color: var(--blue2);
}

/* ===== PAYMENT PAGE ===== */
.shop--payment-page .shop__text {
	font-size: 1.1rem;
}
.shop--payment-page .shop__link {
	color: var(--blue2);
}
.shop--payment-page .shop__link:hover,
.shop--payment-page .shop__link:focus {
	text-decoration: underline;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
 	display: grid;
 	grid-template-columns: repeat(2, 1fr);
 	grid-gap: 1.25rem .325rem;
}
/*.product-grid__item {
	margin-bottom: 1.5rem;
}*/
.product-card {
	color: var(--black);
	border-width: 0;
	border-radius: 0;
	font-family: var(--font-family-fira-sans);
}
.product-card::before, .product-card::after {
	content: "";
	height: 2px;
	transition: width .25s cubic-bezier(0.55, 0.085, 0.68, 0.53) .25s;
	display: block;
}
.product-card::before {
	position: absolute;
	bottom: 0;
	background-color: var(--light3);
	width: 100%;
}
.product-card::after {
	background-color: var(--primary);
	width: 0;
}
.product-card__img-container {
	position: relative;
	padding-top: 100%;
	/*transform: scale(.95);*/
	overflow: hidden;
}
.product-card__img {
	transition: all .3s ease-in-out;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product-card__body {
	padding: .75rem .5rem;
}
.product-card__name {
	/* font-weight: 600; */
	margin-bottom: .1rem;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.product-card__price {
	font-weight: 400;
	margin-bottom: 0;
}
.product-card__name, .product-card__price {
	text-align: center;
}
.product-card__price--old {
	color: #949494;
	text-decoration: line-through;
	font-style: italic;
}
.product-card__img {
	opacity: 1;
}
.product-card__img + .product-card__img {
	opacity: 0;
}
/* ===== PRODUCT CARD:HOVER ===== */
.product-card:hover .product-card__name {
	color: var(--secondary)
}
.product-card:hover .product-card__img {
	transform: scale(1.05);
}
.product-card:hover .product-card__img {
	opacity: 0;
}
.product-card:hover .product-card__img + .product-card__img {
	opacity: 1;
}
.product-card:hover::before {
	width: 0;
}
.product-card:hover::after {
	width: 100%;
}


/* ===== MODAL BOX ===== */
.modalbox {
	font-family: var(--font-family-fira-sans);
	padding-right: 0 !important;
}
.modalbox__content {
	border-radius: 0;
}
.modalbox__body {
	padding: 1.25rem;
}
.modalbox__title {
	font-weight: 500;
	margin-bottom: 1.75rem;
}
.modalbox__subtitle {
	font-weight: 400;
	color: var(--blue2);
	font-size: .95rem;
}
.modalbox__title, 
.modalbox__subtitle {
	text-align: center;
}
.modalbox__group {
	position: relative;
}
.modalbox__label {
	font-size: .875rem;
}
.modalbox__required {
	color: var(--danger);
	font-size: 1rem;
	font-weight: 700;
}
.modalbox__textbox::placeholder {
	color: var(--gray4);
	opacity: 1;
}
/*.modalbox__textbox {
	height: 42px;
	border-radius: 12px;
	font-size: .85rem;
	outline: none;
	background-color: var(--light5);
	border-color: var(--light5);
}*/
.modalbox__textbox {
	border-radius: 0;
	font-size: .85rem;
	outline: none;
	background-color: var(--white);
	border-color: var(--light3);
	/*border-width: 2px;*/
}
.modalbox__textbox:focus {
	border-color: transparent;
}
.modalbox__group--addon .modalbox__textbox {
	padding-right: 2.25rem;
}
.modalbox__group--addon .modalbox__addon {
	position: absolute;
	top: 0;
	right: 0;
	padding-right: .75rem;
	display: flex;
	align-items: center;
	padding-left: .75rem;
	transform: translateY(100%);
}
.modalbox__group--addon .modalbox__addon:empty {
	display: none;
}
.modalbox__textbox:not(.modalbox__textbox--h-auto) {
	height: 40px;
}
.modalbox__checkbox {
	display: flex;
	align-items: center;
}
.modalbox__checkbox-input {
	margin-top: auto;
}
.modalbox__checkbox-label {
	font-size: .95rem;
}
.modalbox__checkbox-input, 
.modalbox__checkbox-label {
	cursor: pointer;
}
.modalbox__text {
	color: var(--gray3);
	margin-bottom: .2rem;
	font-size: .9rem;
}
.modalbox__link {
	color: var(--blue2);
}
.modalbox__link:hover,
.modalbox__link:focus {
	color: var(--blue2);
	text-decoration: underline;
}
/*.modalbox__btn {
	border-radius: 12px;
	padding: .75rem 1rem;
	width: 100%;
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
	font-weight: 500;
	text-transform: uppercase;
	font-size: .9rem;
}*/
.modalbox__btn-group {
	display: flex;
}
.modalbox__btn {
	position: relative;
	border-radius: 0;
	padding: .75rem 1rem;
	width: 100%;
	font-weight: 500;
	font-size: .85rem;
	text-transform: uppercase;
}
.modalbox__icon {
	margin-right: .25rem;
}
.modalbox__btn:hover,
.modalbox__btn:focus {
	color: var(--white);
}
.modalbox__btn + .modalbox__btn {
	margin-top: .5rem;
}
.modalbox__btn-group .modalbox__btn + .modalbox__btn {
	margin-top: 0;
	margin-left: .5rem;
}
.modalbox__btn--submit {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--text-primary);
}
.modalbox__btn--submit:hover,
.modalbox__btn--submit:focus {
	color: var(--text-primary);
}
.modalbox__btn--submit:focus {
	box-shadow: 0 0 0 .2rem var(--primary-opacity-25);
}
.modalbox__btn--cancel {
	background-color: var(--gray2);
	border-color: var(--gray2);
	color: var(--white);
}
.modalbox__btn--cancel:focus {
	box-shadow: 0 0 0 .2rem rgba(114, 114, 114, .5);
}
.modalbox__btn--social {
	display: flex;
	align-items: center;
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	padding-left: calc(40px + 1px + .75rem);
	border-radius: 4px;
	text-transform: initial;
}
.modalbox__btn--google {
	background-color: var(--google);
	color: var(--white);
}
.modalbox__btn--facebook {
	background-color: var(--facebook);
	color: var(--white);
}
.modalbox__btn--google:focus {
	box-shadow: 0 0 0 .2rem rgba(220, 78, 65, .5);
}
.modalbox__btn--facebook:focus {
	box-shadow: 0 0 0 .2rem rgba(59, 89, 152, .5);
}
.modalbox__btn--social .modalbox__btn-icon {
	position: absolute;
	left: 0;
	top: 0;
	vertical-align: middle;
	height: 100%;
	display: flex;
	align-items: center;
	border-right: 1px solid rgba(0, 0, 0, .2);
	/*background-color: rgba(0, 0, 0, .2);*/
	width: 40px;
	justify-content: center;
}
.modalbox__close {
	position: absolute;
	right: .25rem;
	top: -.05rem;
}
.modalbox__close:focus, 
.modalbox__close:hover {
	outline: none;
}
.modalbox__close-icon {
	font-size: .6em;
}
.modalbox__divider {
	border-color: var(--light3);
}
.modalbox__text--link {
	text-align: center;
}
/* ===== MODAL BOX --LOGIN ===== */
/*.modalbox--login .modalbox__title,
.modalbox--login .modalbox__subtitle {
	text-align: center;
}*/
/*.modalbox--login .modalbox__divider {
	margin-bottom: 1.25rem;
}*/
/* ===== MODAL BOX --REGISTER ===== */


/* ===== MODAL --STAMPING SERVICE ===== */
/* TABLE EDITABLE */
.modalbox--stamping .table {
	font-size: .9rem;
}
.modalbox--stamping .table th,
.modalbox--stamping .table td {
	border: 1px solid var(--light3);
}
.modalbox--stamping .table td {
	/*border: 1px solid #dee2e6;*/
	padding: .5rem;
}
.modalbox--stamping .table .table__thead th {
	color: var(--white);
	background-color: var(--gray2);
	border-color: var(--gray2);
}
.modalbox--stamping .table__tfoot td {
	background-color: var(--light);
}
.modalbox--stamping .table .form-check-input {
	margin-top: .2rem;
}
.modalbox--stamping .table .form-check-label {
	margin-left: .1rem;
}
/* CARD */
.modalbox--stamping .card {
	background-color: var(--light);
	margin-bottom: 1rem;
	border-color: var(--light3);
	font-size: .95rem;
}
.modalbox--stamping .card__body {
	padding: .75rem;
}
.modalbox--stamping .card__text {
	margin-bottom: .25rem;
}
.modalbox--stamping .card__text:not(.card__text--total) {
	font-size: .95rem;
}
.modalbox--stamping .card__text--total {
	color: var(--orange);
}
.modalbox--stamping .card__text + .card__text--total {
	margin-bottom: 0;
}

/* MEDIA QUERIES */
@media (min-width: 0px) {
}

@media (min-width: 0px) and (max-width: 576px) {
	/* SHOP */
	.shop--product-details-page .shop__block {
		padding: 0;
	}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {	
	/* FEATURED NEWS */
	.featured-news__text--title {
		max-width: 66.66%;
	}
	.featured-news__text--subtitle {
		max-width: 56.25%;
		-webkit-line-clamp: 2;
		line-height: 2;
	}
	.featured-news__category {
		font-size: .8rem;
	}
	/* BREAKING NEWS */
	.content__breaking-news {
		margin-bottom: 2.75rem;
	}
	.breaking-news__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 2rem .5rem;
	}
	/* ARTICLE */
	.article__text--hymn {
		width: 300px;
	}
	.article__gallery-item {
		flex-basis: calc(50% - .375rem);
	}
	/*.news {
		height: 19.75rem;
	}
	.news__img-container {
		padding-top: 12.5rem;
	}
	.news:is(:hover) .news__img-container {
		padding-top: 10rem;
	}*/
	/* ===== PRODUCTS SECTION ===== */
	.shop-sidebar {
		margin-bottom: 0;
	}
	/*.shop-sidebar {
		display: block;
	}*/
	/* MODALBOX */
	.modalbox__window {
		max-width: 430px;
	}
	/* SHOP */
	.shop__btn-group {
		flex-wrap: nowrap;
	}
	.shop__bar {
		flex-direction: row;
		gap: 0;
	}
	.shop__bar--tools .shop__frm-grp {
		display: flex;
		width: 300px;
		gap: .5rem;
	}
	.shop__bar--tools .shop__frm-lbl {
		flex: 1;
		text-align: right;
	}
	.shop__bar--tools .shop__frm-ctr {
		flex: 2;
	}
	.shop__btn--w-sm-auto {
		width: auto;
	}
	.shop-sidebar__price:last-child::before {
		position: absolute;
		content: '';
		bottom: 14px;
		right: calc(100% - 3px);
		width: 6px;
		height: 1px;
		background: var(--gray3);
	}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	/* SOCIAL MEDIA */
	.social-media {
		padding: .5rem 1rem;
	}
	/* HEADER */
	.header__section--primary {
		flex-direction: row;
		justify-content: center;
	}
	.header__club {
		text-align: left;
	}
	/* FEATURED NEWS */
	.featured-news__grid {
		grid-template-rows: 400px;
	}
	.featured-news__item--grid {
		grid-template-rows: 260px;
	}
	/* ADS */
	.ads {
		grid-template-columns: repeat(2, 1fr); 
	}
	/* BREAKING NEWS */
	.content__breaking-news {
		margin-bottom: 3rem;
	}
	.breaking-news__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.news__title {
		height: 2.75rem;
	}
	/* MATCHES */
	.matches__scoreboard {
		gap: .75rem;
	}
	/* ARTICLE */
	.article__text--long-description, .article__list-item {
		font-size: 1.05rem;
	}
	/* FOOTER */
	.footer-corporate {
		flex-direction: row;
		gap: 0;
	}
	.footer-corporate__copyright + .footer-corporate__support {
		border-left: 2px solid var(--text-primary);
	}
	/* ===== PRODUCTS SECTION ===== */
	/*.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}*/
	/* ===== SHOP ===== */
	/*.shop__block--related-products .shop__section {
		padding-left: .5rem;
		padding-right: .5rem;
	}*/
	/*.shop__block--related-products .owl-carousel .owl-nav button.owl-prev {
		left: -1.5rem;
	}
	.shop__block--related-products .owl-carousel .owl-nav button.owl-next {
		right: -1.5rem;
	}*/
	.shop--checkout-page .card-container + .card-container {
		margin-top: 0;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	/* HEADER */
	.header__main {
		flex-direction: row;
		padding: 1rem 0;
	}
	.header__section--menu, .header__section--cart {
		flex: 2;
	}
	.header__section--primary + .header__section--menu {
		margin-top: 0;
	}
	.navigation--top .navigation__link.nav-link {
		padding: .75rem;
		text-align: center;
	}
	.navigation--top .navigation__list {
		align-items: center;
	}
	/* ADS */
	.ads {
		padding: .5rem;
		grid-gap: .75rem;
	}
	/* BREAKING NEWS */
	.content__breaking-news {
		margin-bottom: 3.25rem;
	}
	.breaking-news__grid {
		grid-template-columns: repeat(4, 1fr);
	}
	/*.news__subtitle {
		display: -webkit-box;
	}*/
	/* FEATURED NEWS */
	.featured-news__grid {
		grid-template-columns: 2fr 1fr;
		grid-template-rows: 600px;
	}
	.featured-news__item--grid {
		grid-template-columns: auto;
		grid-template-rows: 1fr 1fr;
	}
	.featured-news__content {
		padding: .75rem .75rem 1.75rem;
	}
	h1.featured-news__text--title {
		font-size: 2.5rem;
		line-height: 1.325;
	}
	h2.featured-news__text--title {
		font-size: 1.375rem;
		line-height: 1.5;
	}
	/*.featured-news__text--subtitle {
		line-height: 1.75;
	}*/
	.featured-news__text--title .featured-news__span {
		padding: .25rem .75rem;
	}
	.featured-news__category {
		font-size: .85rem;
	}
	/* ARTICLE */
	.article__img-container {
		padding-top: 56.25%;
	}
	/*.article__text--long-description {
		font-size: 1.1rem;
	}*/
	/* MATCHES */
	.matches__item {
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.matches__scoreboard {
		gap: 1rem;
	}
	/*.matches__championship, .matches__scoreboard {
		flex: initial;
	}*/
	.matches__scoreboard-team {
		gap: .75rem;
	}
	.matches__scoreboard-team-logo {
		height: 2.75rem;
	}
	.matches__scoreboard-team-name {
		font-size: .9rem;
	}
	.matches__scoreboard-score {
		font-size: 1.25rem;
	}
	.matches__championship-logo-container {
		margin-right: 3.5rem;
	}
	.matches__scoreboard-vs-logo {
		height: 1.75rem;
	}
	/* PLAYERS */
	.owlslider__title {
		text-align: left;
		margin-left: 1.5rem;
		font-size: 1.75rem;
	}
	.owlslider__card--ft-category .owlslider__card-title {
		font-size: 1.5rem;
	}
	.owlslider__card--player .owlslider__card-text {
		font-size: .875rem;
	}
	.owlslider__body--pl-4 {
		padding-left: 1.5rem;
	}
	/* ARTICLE */
	.article__gallery-item {
		flex-basis: calc(25% - .375rem);
	}
	/* FOOTER */
	/*.footer {
		padding: 5rem 2rem .75rem;
	}*/
	.footer__core {
		flex-direction: row;
	}
	.footer__title {
		font-size: 1.2rem;
	}
	.footer__subtitle, .footer-nav__link {
		font-size: .95rem;
	}
	.footer__club--info .footer__subtitle {
		font-size: .9rem;
	}
	.footer-sponsors {
		flex-wrap: nowrap;
	}
	/*.footer-corporate__copyright, 
	.footer-corporate__support {
		font-size: .9rem;
	}*/
	.footer__section--newsletter .btn-outline-orange {
		font-size: .95rem;
	}
	/* ===== PRODUCTS SECTION ===== */
	.shop--products-page .shop-grid {
		grid-template-columns: 1fr 3fr;
		grid-gap: 1.75rem;
	}
	.shop--products-page .shop__block,
	.shop--myaccount-page .shop__block {
		padding: 1.75rem;
	}
	/*.shop-sidebar {
		display: block;
	}*/
	/* ===== PRODUCT DETAILS ===== */
	/*.shop--product-details-page .shop__body {
		padding: 0;
	}*/
	.shop--product-details-page .shop-grid {
		flex-direction: row;
	}
	.shop--product-details-page .shop-grid__item {
		width: 35%;
	}
	.shop--product-details-page .shop-grid__item--product-images {
		width: 65%;
	}
	/* ===== PRODUCTS SECTION ===== */
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	/* HEADER */
	.header__bar {
		flex-direction: row;
	}
	.header__main {
		flex-basis: 90%;
		padding: 1.75rem 1rem 1.75rem 1.5rem;
	}
	.header__section--primary {
		justify-content: flex-start;
		padding-right: 1rem;
	}
	.header__section--menu {
		flex: 2.5;
		padding-left: 1rem;
		border-left: 2px solid var(--gray3);
	}
	.header__logo {
		position: absolute;
		z-index: 990;
		top: -2.325rem;
		height: 11.75rem;
		left: -1.25rem;
	}
	.header__club {
		margin-left: calc(11.75rem - 1rem);
	}
	.navigation--top .navigation__link.nav-link {
		font-size: 1.025rem;
	}
	/* BREAKING NEWS */
	.content__breaking-news {
		margin-bottom: 3.5rem;
	}
	.breaking-news__grid {
		grid-template-columns: repeat(5, 1fr);
	}
	/* FEATURED NEWS */
	.featured-news__grid {
		grid-template-rows: 700px;
	}
	/* MATCHES */
	.matches__item {
		justify-content: space-around;
		padding: 1rem;
	}
	.matches__scoreboard {
		gap: 1.75rem;
	}
	.matches__scoreboard-team-name {
		font-size: .9rem;
	}
	.matches__scoreboard-score {
		font-size: 1.5rem;
	}
	/* ===== PRODUCTS SECTION ===== */
	.shop {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}
	.shop--products-page .shop__block,
	.shop--myaccount-page .shop__block {
		padding: 2rem;
	}
	.shop--products-page .shop-grid {
		grid-gap: 2rem;
	}
	/*.shop-sidebar__title {
		font-size: 1rem;
	}*/
	/* ===== PRODUCT SECTION ===== */
	.product-card__name {
		font-size: 1.1rem;
	}
	/*.shop__block--related-products .shop__section {
		padding-left: 1rem;
		padding-right: 1rem;
	}*/
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	/* FEATURED NEWS */
	.featured-news__grid {
		grid-template-columns: 3fr 1fr;
		grid-template-rows: 800px;
	}
	/* BREAKING NEWS */
	.breaking-news__grid {
		grid-template-columns: repeat(6, 1fr);
	}
	/* ===== PRODUCT SECTION ===== */
	.product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}