body {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.configurator-container-desktop {
    position: fixed;
    height: 100%;
    width: 100%;
}

#configurator-canvas {
    background: #f4f2f1;
}

#configurator-loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f4f2f1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#configurator-loading-bar.visible {
    opacity: 1;
}

/* TEXT */
.configurator-loading-text {
    font-family: "Proxima Nova", sans-serif;
    font-weight: 400;
    font-size: 2em;
    letter-spacing: 0.05em;
    text-align: center;
    color: #000;
}

.configurator-loading-text.large {
    font-size: 4em;
}

.configurator-loading-text.bold {
    font-weight: 700;
}

.configurator-loading-text.italic {
    font-family: "PT Serif", serif;
    font-style: italic;
    height: 65px;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .configurator-loading-text {
        font-size: 1em;
    }

    .configurator-loading-text.large {
        font-size: 2em;
    }

    .configurator-loading-text.italic {
        height: 32px;
    }
}

/* END TEXT */

.configurator-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.configurator-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Line + Animation */
.configurator-line-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding-top: 10px;
}

.configurator-line {
    width: 50px;
    height: 9px;
    background-color: black;
}

.configurator-logo-spacer {
    height: 1em;
}

.configurator-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 350px;
    overflow: hidden;
}

.configurator-logo {
    width: 350px;
    height: 350px;
    mix-blend-mode: multiply;
    display: block;
    object-fit: contain;
}

/* Mobile overrides */
@media (max-width: 768px) {
    .configurator-line-container {
        height: 40px;
        padding-top: 5px;
    }

    .configurator-line {
        width: 25px;
        height: 5px;
    }

    .configurator-logo {
        width: 175px;
        height: 175px;
    }
}

/* END Line + Animation */

#configurator-progress-bar-empty {
    width: 500px;
    height: 20px;
    margin-top: 10px;
    margin-left: 6.5px;
    background: url('../images/progress-bar-empty.png') no-repeat center;
}

#configurator-progress-bar-full {
    width: 0%;
    height: 20px;
    margin-top: 10px;
    background: url('../images/progress-bar-full.png') no-repeat center;
}

#configurator-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}