
/*  */
/* 
*/
@media (max-width: 560px) {
    .iname_ext {
        font-size: 0.8em;
    }
}
.spin {
border: 16px solid #0042A4;
border-radius: 50%;
border-top: 16px solid #3775CF;
border-right: 16px solid #619BEE;
border-bottom: 16px solid #96BFF9;
border-left: 16px solid #C9E0FF;
width: 100px;
height: 100px;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite;
position: absolute;
left: 0;
right: 0;
margin: auto;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@media (max-width: 600px) {
.hidden-mobile {
display: none;
}
}
@media (min-width: 601px) {
.alt-mobile {
display: none;
}
}
.frame {
width: 100%;
height: 100vw;
}
/*  */