@include export-module('co-app-file-dropzone-layout') {
  .co-app-file-dropzone {
    pointer-events: none;
    position: absolute;
    top : 0;
    left : 0;
    width: 100%;
    height: 100%;
    z-index: 9001; //should overlay popup cards too
    display: flex;
    .drop-files-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      div.description {
        display: flex;
        flex-direction: column;
        padding: 20px;
        height: 200px;
        width: 350px;
        background:  #171721;
        border: 1px solid red;
        border-radius: 4px;
        color: white;
      }
      span.title {
        border: 1px solid white;
        border-width: 0 0 1px 0;
        padding-bottom: 11px;
        margin-bottom: 11px;
        /* font-weight: bold; */
        font-size: 16px;
      }
    }
    .dropzone {
      position: absolute;
      width: 100%;
      height: 100%;
    }
    .icon-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
    .co-icon {
      height: 100px;
      width: 100px;
      svg [fill] {
        fill: #FFFFFF;
      }
    }
  }
}


