@charset "utf-8";

body.active {
	overflow-y: hidden !important;
	overflow-x: hidden !important;
	height: 100vh;
	height: 100dvh;
}

#termscontainer {
	display: none;
}
#termscontainer.active {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: rgba(0,0,0,0.85);
	z-index: 9999;
	animation: fadein 1500ms 1;
}
@keyframes fadein {
0% {opacity: 0;}
100% {opacity: 1;}
}
#termscontainer.fade {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: rgba(0,0,0,0.85);
	z-index: -9999;
	opacity: 0;
	animation: fadeout 1500ms 1;
}
@keyframes fadeout {
0% {opacity: 1;}
100% {opacity: 0;}
}
#termscontainer a {
	color: #D69B2D;
}
#termscontainer a:hover {
	transition: 0.25s;
	filter: brightness(50%);
}
#termscontainer p {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    -webkit-margin-before: 0.5em;
    -webkit-margin-after: 0.5em;
}
#termsholder {
	display: block;
	width: 22.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #272D66;
	border-radius: 1rem;
    border-style: solid;
    border-width: 0.075rem;
    border-color: #D69B2D;
	padding: 1.25rem 1rem 0.75rem 1rem;
}

#termsimage {
	display: block;
	text-align: center;
}
#termsimage img {
	width: 12.5rem;
}

#termsbox {
	display: block;
	width: 22.5rem;
	margin: auto;
}
#termscontent {
	display: inline-block;
	color: #FFFFFF;
	text-align: center;
	vertical-align: middle;
	padding-left: 0.5rem;
}
#tptermscontent {
	display: block;
	color: #FFFFFF;
	text-align: center;
}

#termsbuttons {
	display: inline-block;
	padding-left: 1.25rem;
	vertical-align: middle;
	line-height: 0;
}
#grantButton, #deniedButton, #termsButton {
	display: block;
	margin: 0.5rem 0rem 0.5rem 0rem;
	font-size: 0;
}
#grantButton img, #deniedButton img, #termsButton img {
	height: 2.125rem;
}




@media screen and (min-width: 850px) {
#tptermscontent {
	display: none;
}
}

@media screen and (max-width: 849px) {
#termscontent {
	display: none;
}
#termsholder {
	width: 15.21rem;
	padding: 1rem 0.75rem 1rem 0.75rem;
}
#termsimage img {
	width: 10rem;
}
#termsbox {
	width: 15.21rem;
}
#termsbuttons {
	display: block;
	text-align: center;
	padding: 0.5rem 0rem 0.375rem 0rem;
}
#grantButton, #deniedButton, #termsButton {
	display: inline-block;
	margin: 0rem 0.5rem 0rem 0.5rem;
	font-size: 0;
}
}