<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.preview-3d-container{
    width: 100%;
    padding-top: 150px;
    /*height: 85%;*/
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: start;
    justify-content: center;
    align-items: center;
}


#overlay3d {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 6;
    cursor: pointer;
  }
  /* use for 3D */
  #overlayreder3d{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    color: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
  }
  .preview-3d{
    position: relative;
    width: 600px; 
    height: 500px; 
    background-color: #ffffff; 
  }
  .loader-3d{
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 41%;
    left: 41%;
  }
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .mouse-control-3d{
    position: absolute;
    top: 40px;
    left: 10px;
    border: 1px solid #1068e2;
  }
  .mouse-control-3d-2{
    position: absolute;
    top: 250px;
    left: 10px;
    border: 1px solid #1068e2;
  }

  .mouse-control-3d-close{
    position: absolute;
    top: 10px;
    right: 10px;
    border: 0px solid #1068e2;
  }
  .background-list-3d{
    position: absolute;
    right: 10px;
    top: 100px;
  }
  .background-3d .image{
    width: 65px;
    height: 60px;
    object-fit: cover;
  }
  .button.active{
    border: unset;
    padding: 0;
  }

  .guidance-3d-view{
    max-width: 60px;
    white-space: normal;
    height: 70px;
    font-size: 11px;
  }
  .guidance-3d-label{
    max-width: 60px;
    white-space: normal;
    height: auto;
    font-size: 11px;
  }

  .background-3d-select{
    max-width: 65px;
    white-space: normal;
    height: 60px;
  }

  .mouse-control-3d .button{
    max-width: 60px;
    white-space: normal;
    height: auto !important;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  
  }
  .mouse-control-3d .button .image{
    width: 30px;
  }
  .mouse-control-3d .button .image span{
    height: auto !important;
  }  
  .btn-preview-3d {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 40px;
    border: 1px #665858 solid;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 1;
  }
  
  .margin-overlay-3d{
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 auto;
  }

  .canvas-3d-preview{
    width: 720px;
    height: 662px;
  }

  </pre></body></html>