.styler-file {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
  }
  .body_is-ondragover .styler-file__zona {
    border: 3px dashed red;
  }
  .styler-file__zona {
    border: 1px dashed #CED1D6;
    box-sizing: border-box;
    border-radius: 8px;
    width: 100%;
    height: 192px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .styler-file_is-ondragover .styler-file__zona {
    background-color: yellow;
  }
  .styler-file__box {
    text-align: center;
  }
  .styler-file__native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
  }
  .styler-file__title {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #858D99;
  }
  .styler-file__desc {
    font-size: 14px;
    line-height: 20px;
    color: #303233;
  }
  .styler-file__list-box {
    background: #F3F4F5;
    border-radius: 8px;
    padding: 21px 24px;
    display: none;
  }
  .styler-file_is-choosen .styler-file__list-box {
    display: block;
  }
  .styler-file__list-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    color: #303233;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .styler-file__list-item-name {
    white-space: nowrap;
    max-width: 220px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
  }
  .styler-file__list-item-name-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .styler-file__list-item-type-box {
    margin-right: 10px;
  }
  .styler-file__list-item-delete:before {
    width: 10px;
    height: 10px;
    cursor: pointer;
  }
  .styler-file__list-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #303233;
    margin-bottom: 10px;
  }
  .styler-file_pos-list-right .styler-file__list-box, .styler-file_pos-list-left .styler-file__list-box {
    flex: none;
    width: 432px;
  }
  .styler-file_pos-list-right {
    flex-direction: row;
  }
  .styler-file_pos-list-right .styler-file__list-box {
    margin-left: 8px;
  }
  .styler-file_pos-list-left {
    flex-direction: row-reverse;
  }
  .styler-file_pos-list-left .styler-file__list-box {
    margin-right: 8px;
  }
  .styler-file_pos-list-top {
    flex-direction: column-reverse;
  }
  .styler-file_pos-list-top .styler-file__list-box {
    margin-bottom: 8px;
  }
  .styler-file_pos-list-bottom {
    flex-direction: column;
  }
  .styler-file_pos-list-bottom .styler-file__list-box {
    margin-top: 8px;
  }
  @media (max-width: 991px) {
    .styler-file_pos-list-right {
      flex-direction: column;
    }
    .styler-file_pos-list-right .styler-file__list-box {
      margin-left: 0;
      margin-top: 8px;
    }
    .styler-file_pos-list-left {
      flex-direction: column-reverse;
    }
    .styler-file_pos-list-left .styler-file__list-box {
      margin-right: 0;
      margin-bottom: 8px;
    }
    .styler-file_pos-list-right .styler-file__list-box, .styler-file_pos-list-left .styler-file__list-box {
      flex: auto;
      width: 100%;
    }
  }
