
.black-list-item {
    padding-right: 10px;
}

.black-list-item:hover {
    cursor: pointer;

}

.black-list-item:last-of-type {
    padding-right: 0;
}

.black-list-word-removal {
    display: inline-block;
    position: relative;
    top: -2px;
    left: 2px;
    
    width: 15px;
    height: 15px;
    
    border-radius: 10px;
    border: 1px solid #555;
    
    line-height: 8px;
    padding-left: 2px;
    
}

.word-cloud-tooltip {
    position: absolute;
    z-index: 1000;
    display: none;
    background-color: #ffffff;
    font-family: sans-serif;

}

.word-cloud-tooltip::before {
    content: 'Anzahl: ';
}

.text-from-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    background-color: rgba(200,200,200,0.5);
    font-family: sans-serif;

}

.ocr-camera-container {
    width: 75%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.ocr-camera-container video,
.ocr-camera-container canvas,
.ocr-camera-container img {
    width: 100%;
    height: auto;
    position: absolute;
    
}
.ocr-camera-container img {
    z-index: 100;
    cursor: pointer;
}
.ocr-camera-container video {
    z-index: 200;
    cursor: pointer;
}
.ocr-camera-container canvas {
    z-index: 100;
}

.ocr-camera-controls {
    width: 100%;
    position: absolute;
    z-index: 1000;
    bottom: 0;
    height: 2em;
    background-color: #ffffff;
}
.ocr-camera-container button.close-ocr {
    
    position: absolute;
    z-index: 500;
    background-color: #cd2653 !important;
    bottom: 0;
    width: 50%;
    right: 0; 
    text-align: center;  
    height: 100%;
    line-height: 2em;
    padding: 0;
}

.ocr-camera-container select.device-selector {

    position: absolute;
    z-index: 500;
    bottom: 0;
    width: 50%;
    left: 0; 
    text-align: center;  
    height: 100%;


}

.ocr-hint {
    position: absolute;
    z-index: 1000;
    width: 100%;
    background-color: rgba(255,255,255,0.6);
    top: 33%;
    text-align: center;

}

.ocr-loader-container {
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    display: none;
}
.ocr-loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #cd2653; /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  } 


.word-cloud-container input {
    width: 80%;
    margin: 1em auto;
    display: block;
}

.word-cloud-text-from-image-progress-bar-container {
    width: 80%;
    margin: 0 auto;
    height: 1em;
    display: block;

}
    .word-cloud-text-from-image-progress-bar-container>progress{
        width: 100%;
    }


.word-cloud-container textarea {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.word-cloud-container button.render-word-cloud,
.word-cloud-container button.text-from-image {
    width: 40%;
    display: block;
    margin: 0.5em auto;
    border-radius: 10px;
    background-color: #00a3d3;
}