#container-preview{
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    touch-action: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid;
    border-color: #ddd;
}
#preview-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: grab;
    touch-action: none;
    transform-origin: center center;
}
#loading-image{
    width: 56px;
    height: 56px;
}
#preview{
    justify-content: end;
    display: flex;
}
#preview button img{
    height: 32px;
    width: 32px;
}
#customization-actions{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
#customization-actions #edit{
    background-color: #ddd!important;
}
#customization-actions button span i{
    margin-right: 8px;
}
div.cgv-check label{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
#cgv-check{
    margin-right: 10px;
}
@media (min-width: 767px){
    #container-preview{
        height: 350px;
    }
}