.dyvix-file-wrapper {
  position: relative;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.dyvix-file {
  width: 100%;
  cursor: pointer;
  display: flex;
  padding: 0 0.5rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  height: 100%;
  gap: 0.5rem;
  border: 3px dashed rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
  background-color: rgb(73, 220, 237);
  transition:
    transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.dyvix-file:hover {
  transform: scale(1.03);
  background-color: rgb(63, 210, 227);
  border-color: rgba(0, 0, 0, 0.6);
}
.dyvix-file:active {
  transform: scale(0.98);
}
.dyvix-file-hidden {
  display: none !important;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  border: none;
  background-color: transparent;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  white-space: nowrap;
  color: transparent;
  border: none;
  opacity: 0;
}
.dyvix-file-ui {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.dyvix-file-ui p {
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
  font-weight: 600;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}
.dyvix-file-icon {
  font-size: 2rem;
  line-height: 1;
}
