@font-face {
    font-family: 'Unify Sans';
    src: url('https://www.gannett-cdn.com/ads/fonts/unify-sans-bold/UnifySans-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: bold;
    font-display: fallback;
}

@font-face {
    font-family: 'Unify Sans';
    src: url('https://www.gannett-cdn.com/ads/fonts/unify-sans-regular/UnifySans-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: normal;
    font-display: fallback;
}

* {
    box-sizing: border-box;
}

.paramount-safe {
    z-index: -2;
}

/* Outer Container ================================================ */
.outer-container {
    background: linear-gradient(150deg,#aa1e23,50%,#f03c4b);
    bottom: 0;
    color: rgb(38,38,38);
    font-family: 'Unify Sans', Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    height: 100%;
    left: 0;
    line-height: 1.2;
    margin: auto;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    user-select: none;
    width: 100%;
}

.outer-click-cover {
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

/* Inner Container ================================================= */
.inner-container {
    background: rgb(255,255,255);
    bottom: 0;
    height: 91%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 72%;
    z-index: 1;
}
.device-phone .inner-container {
    height: 90%;
    width: 91%;
}

.inner-click-cover {
    display: block;
    height: 35%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.inner-click-cover.full {
    height: 100%;
}

/* Logo ============================================================ */
.logo {
    height: auto;
    left: 54%;
    position: absolute;
    top: 4.6%;
    width: 16.4%;
    z-index: 10;
}
.device-phone .logo {
    left: 4%;
    top: 3.4%;
    width: 41%;
}

/* Content ======================================================== */
.content-container {
    display: block;
    left: 4%;
    position: absolute;
    top: 16%;
    width: 47%;
}
.device-phone .content-container {
    left: 5%;
    top: 17%;
    width: 90%;
}

.title {
    font-size: 2.1em;
    margin-bottom: 3%;
    text-transform: uppercase;
}
.device-phone .title {
    font-size: 1.6em;
    margin-left: 6%;
}

.sponsored-by {
    margin-bottom: 3%;
    position: relative;
    width: 62%;
    z-index: 10;
}
.device-phone .sponsored-by {
    margin-left: 6%;
    width: 58%;
}

/* Containers */
.p-quiz,
.p-correct,
.p-incorrect {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.device-phone .p-correct,
.device-phone .p-incorrect {
    width: 50%;
}

/* Question page */
.question {
    font-size: 1.2em;
}
.device-phone .question {
    font-size: 1em;
}

.radio-options {
    display: inline-block;
    font-size: 1.2em;
    font-weight: normal;
    margin-top: 3%;
}
.device-phone .radio-options {
    font-size: 1.1em;
    margin-top: 6%;
}

/* ======== Custom Checkbox */
.radio-container {
    cursor: pointer;
    display: block;
    line-height: 1.4;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    user-select: none;
    white-space: nowrap;
}

/* Hide the browser's default radio button */
.radio-container input {
    cursor: pointer;
    opacity: 0;
    position: absolute;
}

/* Create a custom radio button */
.checkmark-radio {
    background-color: #eee;
    border-radius: 50%;
    bottom: 0;
    height: 25px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    white-space: nowrap;
    width: 25px;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark-radio {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark-radio {
    background-color: rgb(16,178,255);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark-radio:after {
    content: "";
    display: none;
    position: absolute;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark-radio:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark-radio:after {
	background: white;
	border-radius: 50%;
	height: 8px;
	left: 9px;
 	top: 9px;
	width: 8px;
}

/* Verdict page */
.verdict-line {
    color: rgb(51,153,51);
    font-size: 2.8em;
}
.device-phone .verdict-line {
    font-size: 2.4em;
    line-height: 1;
}
.p-incorrect .verdict-line {
    color: rgb(255,0,0);
}

.engage-line {
    font-size: 1.6em;
    margin-top: 6%;
    text-transform: uppercase;
}
.device-phone .engage-line {
    font-size: 0.9em;
    margin-top: 10%;
}

.action-line {
    font-size: 2em;
    color: rgb(255,102,0);
    margin-top: 1%;
}
.device-phone .action-line {
    font-size: 1.5em;
    line-height: 1;
}

.device-phone .action-line br {
    display: none;
}

.display-text {
    font-size: 1.2em;
}
.device-phone .display-text {
    font-size: 1em;
    line-height: 1;
    margin-top: 4%;
}

/* Image */
.p-img,
.p-img-final {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 76.4%;
    left: 54%;
    position: absolute;
    top: 17%;
    width: 42%;
}
.device-phone .p-img {
    height: 34%;
    top: 47%;
}
.device-phone .p-img-final {
    height: 48%;
    top: 35%;
}

.p-img-final {
    background-image: url(https://www.gannett-cdn.com/ads/adsolutions/2023/03/tgif_paramount/images/img-5.jpg);
    opacity: 0;
    transition: opacity 0.4s;
}

/* Button ======================================================== */
.buttons-container {
    bottom: 0;
    height: 15.2%;
    left: 4%;
    position: absolute;
    width: 47%;
}
.device-phone .buttons-container {
    height: 15%;
    left: 0;
    width: 100%;
}

.bc-q,
.bc-a {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.bc-q {
    display: block;
    opacity: 1;
}

.button {
    background-color: rgba(251,0,7,1);
    box-shadow: 1px 5px 20px rgba(0,0,0,0);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    display: inline-block;
    font-size: 1.1em;
    padding: 2.6% 4%;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    width: 47.4%;
    z-index: 10;
}

.button:hover {
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    color: rgba(255,255,255,1);
}
.device-phone .button {
    bottom: 0;
    color: rgba(255,255,255,1);
    font-size: 0.9em;
    margin: 4%;
    padding: 3% 0;
    width: 42%;
}

.button.left {
    left: 0;
    right: auto;
}

.button.right {
    left: auto;
    right: 0;
}

.button.disabled {
    background-color: rgba(251,0,7,0.4);
    cursor: default;
}
.button.disabled:hover {
    box-shadow: none;
}

.try-again {
    display: none;
}
