.igloo-media-file-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(238, 238, 238);
  &:hover {
    .igloo-media-file-mask {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .igloo-media-file-mask {
    transform: translateY(100%);
    opacity: 0;
    transition: all ease 0.3s;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .igloo-media-file-download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;

    gap: 2px;
    &:active {
      .igloo-media-file-download-icon,
      .igloo-media-file-download-text {
        color: #bdbdbd;
      }
    }
    .igloo-media-file-download-icon {
      transition: color ease 0.3s;
      color: #fff;
    }
    .igloo-media-file-download-text {
      transition: color ease 0.3s;
      font-weight: 500;
      font-size: 12px;
      line-height: 16px;
      color: #fff;
      user-select: none;
    }
  }
}
