﻿
body.poster-active {
  overflow-y: hidden;
  filter:unset;
}

.poster-active {
  filter: blur(3px);
}

.poster-anti-blur {
  filter:none;
}

div.poster-backdrop {
  display: table;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 99;
}

div.poster-cell {
	display: table-cell;
	color: white;
	text-align: center;
	vertical-align: middle;
}

.poster-display-text {
	font-size: 5vh;
	text-shadow: 1px 1px black;
	text-transform: uppercase;
	letter-spacing: 0.25em;
  display:inline-block;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.arrow {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	animation-name: spin;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.circle {
	position: absolute;
	box-sizing: border-box;
	height: 40px;
	width: 40px;
	border: 7px solid #FFF;
	border-radius: 50%;
	clip-path: inset(0 50% 0 0);
}

.triangle {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #FFF;
	margin-top: -4px;
	margin-left: 20px;
	clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	transform: rotate(90deg);
}