/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


/* .wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  width: 450px;
  margin: 0 auto;
} */

.wrapper h3 {
  /* color: white; */
  margin: 20px 0;
}

/* .container {
  width: 100%;
  padding: 30px;
  background: whitesmoke;
  border-radius: 9px;
  transition: height 0.2s ease;
} */

label,
.label {
  font-weight: bolder;
}

.container .upload-box {
  min-height: 225px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
  border: 2px dashed #afafaf;
  position: relative;
}

.container .upload-box span {
  display: none;
  /* border: 1px solid red; */
  font-weight: bolder;
  color: white;
  padding: 4px;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 18px;
  border-radius: 50%;
  background-color: #afafaf;
}

.container.active .upload-box span {
  display: block;
}

.container.active .upload-box {
  border: none;
  min-height: 150px;
}

.upload-box p {
  font-size: 1.06rem;
  margin-top: 20px;
}

.container.active .upload-box p {
  display: none;
}

.container.active .upload-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.container .content {
  display: none;
  margin-top: 28px;
}

.container.active .content {
  display: block;

}

.content .row {
  /* display: flex;
  justify-content: space-between;
  column-gap: 15px; */
}

.content .row .column {
  font-size: 13px;
}

.row .details {
  display: flex;
  justify-content: flex-start;
  column-gap: 15px;
}

.content .current {
  margin-bottom: 6px;
}

.content .validation {
  color: red;
  display: none;
  margin-top: 5px;
}

.sizes .column input {
  width: 100%;
  height: 40px;
  outline: none;
  margin-top: 5px;
  padding: 0 10px;
  background-color: white;
  border-radius: 4px;
  border: none;
  /* border: 1px solid #aaa; */
}

.sizes .column input:focus {
  padding: 0 14px;
  border-bottom: 2px solid #927dfc;
}

.range {
  margin-top: 15px;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
}

.range .quality {
  flex: 2;
}

.range .quality input {
  margin-top: 3px;
}

#quality_value {
  font-size: 12px;
}

.range .quality .helperText {
  color: red;
  display: none;
}

.range .file_type {
  flex: 1;
}

.range .file_type select {
  width: 100%;
  border: none;
  background: white;
  height: 32px;
  margin-top: 5px;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 0 8px;
}

.range .file_type select:focus {
  padding: 0px 7px;
  border-bottom: 2px solid #927dfc;
}

.ratio {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-top: 5px;
  /* border: 1px solid red; */
}

.ratio input {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  accent-color: #927dfc;
}

.content .download-btn {
  width: 100%;
  color: #fff;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 1.06rem;
  border-radius: 5px;
  padding: 15px 0;
  margin-top: 30px;
  background: #927dfc;
}

.fa:hover {
  transform: scale(0.9, 0.9);
}

.fa {
  color: white;
  padding-top: 4px;
  cursor: pointer;
}





input[type="range"] {
  cursor: pointer;
  width: 95%;
}

.loader {
  border: 2px solid #927dfc;
  border-radius: 50%;
  border-top: 1px solid white;
  width: 17px;
  height: 17px;
  -webkit-animation: spin 0.5s linear infinite;
  /* Safari */
  animation: spin 0.5s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}