/* Make ONLY the 1221 assessment iframe full-width on mobile */
@media (max-width: 767px) {
iframe[src*="1221-assessments.vercel.app/assessment/"] {
width: 100vw !important;
max-width: 100vw !important;
margin-left: calc(50% - 50vw) !important;
display: block !important;
border: 0 !important;
}
/* Prevent the side-to-side scrollbar that 100vw can cause */
html, body {
overflow-x: hidden !important;
}
}
top of page
bottom of page