.scene-bmw-document {
    display: block;
    border: solid 1px #dddddd;
    padding: 5px;
    margin: 10px;
    width: 90%;
    color: #2d2c26;
    font-size: 12px;
    font-weight: bold;
    font-family: Open Sans, sans-serif;
    border-radius: 4px;
}

.scene-bmw-document img {
    width: 40px;
}

.drop_zone_BMW {
    text-align: center;
    border: 2px dashed#dddddd;
    border-radius: 10px;
    padding: 20px;
}

.loader_element_BMW {
    display: block;
    height: 6px;
    width: 400px;
    border: solid 1px #1c69d4;
    border-radius: 3px;
    margin: auto;
    margin-bottom: 20px;
}

.loader_element_BMW .loader_progress_BMW {
    content: '';
    display: block;
    width: 0px;
    height: 100%;
    background-color: #1c69d4;
    border-radius: 3px;
    animation: getWidth_BMW 3s ease-in infinite;
}

@keyframes getWidth_BMW {
    from {
        width: 0%;
        margin-left: 0px;
        background-color: #1c69d4;
    }
    50% {
        width: 50%;
        background-color: #90a9ca;
    }
    100% {
        width: 0%;
        margin-left: 400px;
        background-color: #1c69d4;
    }
}