/**
 * RD Filepicker
 * @Section
 */
.rd-file-picker {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 400px;
  margin-top: 190px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  border: 1px solid rgba(20, 69, 61, 0.78);
  background-color: white; }
  .rd-file-picker-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    width: 50%;
    padding: 10px;
    background: rgba(20, 69, 61, 0.78);
    color: white;
    cursor: pointer;
    transition: .2s; }
    .rd-file-picker-btn:hover {
      background: rgba(14, 49, 44, 0.78); }
    .rd-file-picker-btn svg {
      fill: white;
      padding-right: 6px; }
  .rd-file-picker-meta {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    cursor: default;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }
  .rd-file-picker input[type="file"] {
    position: absolute;
    width: 6px;
    height: 6px;
    transform: translate(-3px, -3px);
    overflow: hidden;
    background-color: red;
    transition: none;
    visibility: hidden; }

.rd-file-drop {
  width: 600px;
  height: 374px;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.1);
  outline: 2px dashed #92b0b3;
  outline-offset: -10px;
  transition: .2s; }
  .rd-file-drop-logo {
    width: 100px;
    fill: rgba(255, 255, 255, 0);
    stroke: white;
    stroke-width: 6px; }
  .rd-file-drop-wrap {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
    .rd-file-drop-wrap p {
      margin-left: 15px;
      margin-top: 0; }
  .rd-file-drop-meta {
    margin-top: 20px; }
  .rd-file-drop-btn {
    cursor: pointer; }
    .rd-file-drop-btn svg {
      fill: white; }
  .rd-file-drop input[type="file"] {
    position: absolute;
    width: 6px;
    height: 6px;
    transform: translate(-3px, -3px);
    overflow: hidden;
    background-color: red;
    transition: none;
    visibility: hidden; }

.file-grabbing {
  background-color: rgba(255, 255, 255, 0.05);
  outline-color: rgba(0, 0, 0, 0.15); }
