Expo Hall Hours
Friday, October 3: 10:00am - 6:00pm
Saturday, October 4: 10:00am - 3:00pm
.iframe-container {
position: relative;
width: 100%;
height: 800px;
}
.iframe-loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.8);
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
}
.spinner {
border: 6px solid #f3f3f3;
border-top: 6px solid #254CA7;
border-radius: 50%;
width: 80px;
height: 80px;
animation: spin 1s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
iframe {
width: 100%;
height: 100%;
border: none;
}
@media screen and (max-width: 767px) {
.iframe-container {
height: 400px;
max-height: 400px;
}
}