@font-face {
  font-family: 'Open Sans';
  src: url('/bower_components/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot');
  src: url('/bower_components/open-sans-fontface/fonts/Regular/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
       url('/bower_components/open-sans-fontface/fonts/Regular/OpenSans-Regular.woff') format('woff'),
       url('/bower_components/open-sans-fontface/fonts/Regular/OpenSans-Regular.ttf') format('truetype'),
       url('/bower_components/open-sans-fontface/fonts/Regular/OpenSans-Regular.svg#OpenSansRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

#placeholder {
    visibility: visible;
    position: fixed;
    z-index: -10;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #EEEEEE; /* @cp_loading-bg */
    color: #424242; /* @cp_loading-fg */
    font-size: 1.3em;
    line-height: 120%;
    opacity: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font: 20px 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
@media (prefers-color-scheme: dark) {
    #placeholder {
        background-color: #212121; /* @cp_loading-bg (dark) */
        color: #EEEEEE; /* @cp_loading-fg (dark) */
    }
}
#placeholder .placeholder-logo-container {
    height: 300px;
    width: 300px;
    margin-top: 50px;
    flex: 0 1 auto;
    min-height: 0;
    text-align: center;
}
#placeholder .placeholder-logo-container img {
    max-width: 100%;
    max-height: 100%;
}
#placeholder .placeholder-message-container {
    width: 700px;
    max-width: 90vw;
    height: 236px;
    max-height: calc(100vh - 20px);
    margin: 50px;
    flex-shrink: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
}
#placeholder .placeholder-logo {
    margin-left: auto;
    margin-right: auto;
    max-width: 90vw;
    max-height: 300px;
    width: auto;
    height: auto;
    margin-bottom: 2em;
}

@media screen and (max-width: 500px) {
    #placeholder {
        font-size: 16px !important;
    }
    #placeholder .placeholder-message-container {
        height: 206px;
    }
}
@media screen and (max-height: 700px) {
    #placeholder {
        font-size: 16px !important;
    }
    #placeholder .placeholder-message-container {
        height: 206px;
    }
}
@media screen and (max-height: 500px) {
    #placeholder .placeholder-logo-container {
        display: none;
    }
}
