body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background: rgb(236, 236, 236);
}

.centralizeButton {
  cursor: pointer;
  position: relative;
  width: 100vw;
  height: 22vh;
  text-align: center;
  line-height: 27vh;
  pointer-events: none;
}

.chooseFileBtn{
  padding: 7px 12px;
  color: #fff;
  background: rgb(107, 107, 107);
  border-radius: 5px;
}

#upload {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.fileIcon{
  position: absolute;
  height: 20vh;
  width: 100vw;
  top: 0px;
  left: 0px;
  line-height: 14vh;
  font-size: 25px;
  pointer-events: none;
}

.centralizeIframe {
  cursor: pointer;
  position: relative;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.iframeTitle{
  border-radius: 5px;
  margin: 25px;
  margin-left: 12px;
  margin-bottom: 0;
  padding-left: 1vw;
  width: 97vw;
  height: 5vh;
  line-height: 5vh;
  position: relative;
  background: rgb(249, 249, 249);
  border: 1px solid rgb(221, 221, 221);
}

.iframeCSS {
  border-radius: 5px;
  margin-left: 12px;
  width: 98vw;
  height: 66vh;
  position: relative;
  border: 1px solid rgb(221, 221, 221);
}

/* Custom input File */

.file-upload {
  background: rgb(236, 236, 236);
  width: 98vw;
  margin: 10px;
  margin-left: 12px;
}

.file-upload-btn:hover {
  background: #1AA059;
  color: #ffffff;
  transition: all .2s ease;
  cursor: pointer;
}

.file-upload-btn:active {
  border: 0;
  transition: all .2s ease;
}

.file-upload-content {
  display: none;
  text-align: center;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 20vh;
  opacity: 0;
  cursor: pointer;
}

.image-upload-wrap {
  background-color: #ffffff;
  border: 1px solid rgb(221, 221, 221);
  position: relative;
}

.image-title-wrap {
  padding: 0 15px 15px 15px;
  color: #222;
}

.drag-text {
  text-align: center;
  height: 20vh;
}

.drag-text h3 {
  font-weight: 100;
  text-transform: uppercase;
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 10px 0;
}


