[x-cloak] {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: transparent !important;
    position: relative;
    font-family: "Montserrat", Sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

#configurator {
    display: flex;
    height: 100%;
    flex-direction: column;
}

#viewer {
    flex-grow: 1;
}

#modelViewer,
#notfound {
    height: 100%;
    width: 100%;
}

#lazy-load-poster {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#button-load {
    box-shadow: 0 0 8px rgba(0, 0, 0, .2), 0 0 4px rgba(0, 0, 0, .25);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
}

#button-load svg {
    height: 20px;
    margin-right: 10px;
}

#button-load path {
    fill: white
}

.progress-bar {
    display: block;
    width: 33%;
    height: 1.1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 25px;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    border: 2px solid #235EB4;
    background-color: rgb(242, 242, 242);
}

.progress-bar.hide {
    visibility: hidden;
    transition: visibility 0.3s;
}

.update-bar {
    background-color: #235EB4;
    width: 0%;
    height: 100%;
    border-radius: 25px;
    float: left;
    transition: width 0.3s;
}

#optionsPanel {
    flex-shrink: 0;
    padding: 30px 20px;
    box-sizing: border-box;

    width: 100%;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    margin-bottom: 20px;

    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid #79D5E5;
    border-radius: 15px;
}

#optionsPanel .title {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

#optionsPanel .desc {
    color: white;
    margin: 10px 0 25px 0;
}

#optionsPanel .options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
}

#optionsPanel .option {
    font-size: 12px;
    border: 2px solid #79D5E5;
    color: white;
    padding: 10px 13px;
    border-radius: 15px;
    cursor: pointer;
}

#optionsPanel .option.active {
    background-color: #235EB4;
}

#optionsPanel .option:hover {
    background-color: #235EB4;
}