@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,500;0,700;1,300;1,500;1,700&display=swap');

:root {
	--title-color: rgb(255, 255, 255);
	--subtitle-color: rgb(161, 161, 161);
	--btn-color: rgb(219, 65, 65);
	--text-color: #fff;
	--bg-color: #444;
	--title-font-family: 'Barlow', sans-serif;
	--txt-font-family: 'Barlow', sans-serif;
}

.controllers {
  top: 15px;
  right: .3em;
  left: .3em;
}

.container .logo {
    padding: .75em 2.5em .5em 2.5em;
}

.container .logo img {
	display: block;
	max-width: 210px;
	max-height: 50px;
}

.root-pagination > .swiper-pagination-bullet-active{
  --p: 100%;
  background: rgba(255, 255, 255, .3);
}
.root-pagination > .swiper-pagination-bullet-active.video-bullet{
  --p: 0%;
}
.root-pagination > .swiper-pagination-bullet-active:before{
  content: '';
  
  display: block;
  width: var(--p);
  height: 100%;
  background: rgba(255, 255, 255, 1);
}


/* *********   WEBSTORY ITEM PAGE   *********** */

.webStoryPage {
	font-family: var(--txt-font-family);
	font-weight: 300;
	color: var(--text-color);
}


/* page-link */

.webStoryPage .page-link a {
	display: inline-block;
	color: #fff;
	background: rgba(0, 0, 0, .75);
	border: 2px var(--btn-color) solid;
	padding: 1em 3em;
	border-radius: 3em;
	text-decoration: none;
	/* margin-top: 2em; */
}

.webStoryPage .page-link a:hover {
	border: 2px #fff solid;
}

/* SHORTCUTS */

.webStoryPage .page-shortcuts > .shortcut-item {
	display: inline-block;
	color: var(--title-color);
	background: rgba(0, 0, 0, .75);
	border: 2px var(--btn-color) solid;
	padding: 1em 3em;
	border-radius: 3em;
	text-decoration: none;
  cursor: pointer;
}
.webStoryPage .page-shortcuts > .shortcut-item:hover {
	border: 2px var(--title-color) solid;
}

/* page-section */

.webStoryPage .page-section span {
	display: inline-block;
	font-size: .85em;
	margin-right: 5px;
	padding: 1px 6px 3px 6px;
}


/* page-title */

.swiper-slide .webStoryPage .page-text {
	font-size: 1.2em;
	/* line-height: 1.2em; */
}

.swiper-slide .webStoryPage h1 {
	color: var(--title-color);
	font-family: var(--title-font-family);
	margin-top: 0;
	margin-bottom: .25em;
	font-size: 3em;
	line-height: 1em;
}

.swiper-slide .webStoryPage h2 {
	color: var(--subtitle-color);
	margin-top: 0;
	font-size: 1.5em;
	line-height: 1.2em;
}

.swiper-slide .webStoryPage .page-text a {
	color: inherit;
	font-weight: bold;
	text-decoration: underline;
	/* text-decoration: none;
	border: #fff 1px solid; */
}

.swiper-slide .webStoryPage.animation {
	transition: all 1s ease-out;
}

/* page-info */

.page-info {
	margin-top: 2em;
	margin-bottom: 1em;
}


/* page-author */

.page-author {
	padding-left: .75em;
}

.page-author::before {
	content: "|";
	padding-right: .75em;
}

/* page-content */

.page-content .page-link + .page-shortcuts {
  margin-top: -1rem;
}