.drop-zone {
    max-width: 80%;
    height: 200px;
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    line-height: normal;
    font-weight: 500;
    font-size: 25px;
    cursor: pointer;
    border: 4px dashed #089400;
    border-radius: 10px;
    margin: 0 auto;
  }
  
  .drop-zone--over {
    border-style: solid;
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
  }
  
  .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
  }
  

.vysledekbase64 {
    padding: 7px;
    width: 100%;
    height: 150px;
    font-size: 15px;
    font-family: Inconsolata, Monaco,'MonacoRegular',monospace;
    margin: 25px auto 0;
  }

.copytoclipboardbase64, .base64zkopirovano {
    padding: 0.55em 0.7em;
    margin: 10px 0 0 0;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.5;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #d3f1dc;
    color: #000000 !important;  
  }


.base64zkopirovano {
    cursor: auto;
    font-size: 0.9rem;
}

.base64copy > svg {
    width: 25px;
    vertical-align: middle;
    margin-right: 15px;
    fill: #006400;
    }


.hiddenelementbase64, .copiedbase64hidden {
     opacity:0;
     pointer-events:none;
     -webkit-transition: opacity 1s linear 0s;
     -o-transition: opacity 1s linear 0s;
     transition: opacity 1s linear 0s;
  }


.copiedandmessage {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 52% 2% 40%;
  grid-template-columns: 52% 40%;
  gap: 2%;
  margin-bottom: 20px;
  min-height: 70px;
}


@media only screen and (max-width: 768px) {
 .copiedandmessage {
  display: none;
  }
}