/* DOM標準スタイル */
html {
  width: 100%;
  height: 100%;
}

body {
  min-width: 300px;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 13px;
}

table {
  width: 95%;
  margin: auto;
  border-collapse: collapse;
  border:1px solid #333;
}

th, td {
  border-collapse: collapse;
  border:1px solid #333;
}

th {
  width: 20%;
  min-width: 100px;
  text-align: left;
}

td {
  width: 80%;
}


.cursor-hover {
  background-color: #cce8ff !important;
}

.table-title {
  width: 95%;
  margin: auto;
}

.hidden {
  visibility: hidden;
}

#contents {
  width: 100%;
  height: 100%;
}

#preview {
  text-align: center;
  margin: auto;
  padding: 10px 0;
  width: 95%;
  height: 45%;
  display: flex;
}

#preview > div {
  width: 50%;
  height: 100%;
}

#preview > div > div.title-block {
  width: 100%;
  height: 40px;
  padding-bottom: 10px;
  font-size: large;
}

#preview > div > div.title-block > img {
  width: 40px;
  height: 40px;
}

#preview > div > div.image-block {
  width: 100%;
  height: 90%;
}

#result {
  padding: 20px 0;
}

#dragDropArea{
  background-color: #f4f4f4;
  margin: auto;
  border: #ddd dashed 5px;
  width: 95%;
  text-align: center;
}

#dragDropArea p{
  color: #999;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4em;
}

#dragDropArea .drag-drop-buttons{
  margin-top: 20px;
  font-size: 12px;
  font-size: 1.2em;
}

#srcImage {
  visibility: hidden;
  width: 0;
  height: 0;
}

.drag-drop-buttons input{
  margin: auto;
}

.drag-drop-inside {
  width: 100%;
  height: 100%;
}

#overlay{   
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;  
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% { 
        transform: rotate(360deg); 
    }
}
.is-hide{
    display:none;
}

#uploadButton {
  width: 50%;
  height: 20%;
  background-color: #000;
}
