/* Reduce bottom margin of factfile boxes */
div.storytext div.factfile {
	padding-bottom: 4px;
}

/* Change colour of group story header bar */
.groupTopBox {
	background-color: #b42b85;
}

/* Centre-align adverts */
#rightcolumn .ad, .rightcolumn .ad, .videoStory-aside .ad {
	margin: 0px auto 48px;
}

/* only show on mobile devices */
@media only screen and (min-device-width: 768px) {
	.only-mobile {
		display: none;
	}
}

/* Change colour of inline links in dark factfiles */
.factfile_dark a:link, .factfile_dark a:visited {
	color: #48A9C5;
	text-decoration: none;
}

/* Popover stlying */
.popov-content {
	padding: 10px 20px 0;
	border: 1px solid #fff;
	width: 450px;
	position: fixed;
	border-radius: 5px 5px 0 0;
	bottom: 0;
	right: 5%;
	border-bottom: none;
	box-shadow: 0px 0px 10px 0px #00000075;
	max-width: 450px;
	background: rgb(122,17,71);
	background: -moz-linear-gradient(144deg, rgba(122,17,71,1) 0%, rgba(184,43,133,1) 50%, rgba(218,24,132,1) 100%);
	background: -webkit-linear-gradient(144deg, rgba(122,17,71,1) 0%, rgba(184,43,133,1) 50%, rgba(218,24,132,1) 100%);
	background: linear-gradient(144deg, rgba(122,17,71,1) 0%, rgba(184,43,133,1) 50%, rgba(218,24,132,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7a1147",endColorstr="#da1884",GradientType=1);
	background-size: auto 800%;
	background-position: 0 100%;
}

.popov-content.po-expanded {
	background-position: 0 0;
}

.popov-content.po-collapsed {
	cursor: pointer;
	width: 350px;
	transition: background-position 0.75s;
	background-position: 0 100%;
}

.popov-content.po-hidden {
	display: none;
}

.popov-content h2, .popov-content p {
	text-align: center;
}

.popov-content h2 {
	color: #fff;
	padding: 5px 10% 0;
	font-size: 1.5rem;
	line-height: 2rem;
}

.po-collapsed h2 {
	font-size: 1rem;
	line-height: 1.3rem;
	text-align: left;
	padding: 0 25px 0 0;
}

.popov-content p {
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
}

.popov-content .button {
	padding: 7px 16px;
}

.popov-inner {
	display: block;
	margin: 0 -20px;
	padding: 0 15% 20px;
}

.po-collapsed .popov-inner {
	display: none;
}

.popov-btn p {
	margin-bottom: 0;
}

.popov-close {
	float: right;
	background-repeat: no-repeat;
	background-image: url(/magazine/dest/graphics/output/sprite.css-03b34d89.svg);
	background-position: -683px -494px;
	display: inline-block;
	width: 11px;
	height: 11px;
	margin: 10px 0;
	transition: transform 0.5s;
	opacity: 95%;
}

.po-expanded .popov-close {
	transform: scale(1.3) rotate(0deg);
	background-position: -683px -423px;
	margin-top: 15px;
}

.po-collapsed .popov-close {
	transform: scale(1.3) rotate(180deg);
	margin-top: 5px;
}

.popov-close:hover, .popov-close:focus {
	cursor: pointer;
	opacity: 100%;
}

@media (hover:hover) {
	.popov-content.po-collapsed:hover {
		background-position: 0 0;
	}
}

@media screen and (max-width: 480px) {
	.popov-content {
		width: 90%;
		left: 50%;
		transform: translate(-50%);
	}
}