/* line 2, app/assets/stylesheets/adjustments.scss */
body {
  font-size: 18px;
}

/* line 8, app/assets/stylesheets/adjustments.scss */
#override select option {
  background: white;
  font-size: 18px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
@tailwind base;
@tailwind components;

/* Fix for the specific SassC compilation issue */
@layer utilities {
  .prose kbd {
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1), 0 3px 0 rgba(15, 23, 42, 0.1);
  }
}

/* Components */
@layer components {
  /* Post styles */
  .post-key {
    @apply inline font-bold text-lg mr-1 text-gray-900;
  }

  .post-value {
    @apply text-lg font-bold text-blue-800 mr-6 hover:underline;
  }

  .write-up-p {
    @apply pl-2 text-gray-600 whitespace-pre-line;
  }

  .info-title {
    @apply font-bold text-xl md:text-3xl text-gray-700 pb-2 inline-block;
  }

  .post-title {
    @apply text-2xl font-bold mb-2;
  }

  .post-select {
    @apply text-sm text-gray-600 py-2 px-2 mt-2 mb-3 w-full bg-white rounded border border-solid border-gray-300;
  }

  .posts-heading-area {
    @apply flex-1 mx-2 md:mx-8 mr-0 mt-5 md:mt-16 lg:mr-40 lg:ml-8;
  }

  .post {
    @apply mb-8;
  }

  .post-meta {
    @apply text-gray-600 mb-4;
  }

  .post-content {
    @apply prose max-w-none;
  }

  /* Buttons styles */
  .nav-sort-selection {
    @apply block px-10 py-2 mt-2 text-lg text-gray-600 cursor-pointer font-semibold bg-transparent md:mt-0 hover:bg-gray-200;
  }

  .light-blue-button {
    @apply relative w-44 flex justify-center py-2 mt-2 px-4 border border-transparent cursor-pointer
    leading-5 font-medium rounded-md text-white focus:outline-none
    transition duration-150 ease-in-out font-bold;
    background-color: #0ea5e9;
    
    &:hover {
      background-color: #38bdf8;
    }
    
    &:focus {
      border-color: #0284c7;
    }

    &:hover .icon {
      @apply text-white;
    }
  }

  .active-selection {
    @apply block md:inline-block text-center font-bold text-2xl mt-5 md:mt-3 py-2 px-4 text-gray-600 md:mr-6 bg-gray-400 rounded-md text-gray-800;
  }

  .passive-selection {
    @apply block md:inline-block text-center bg-gray-200 font-bold text-2xl mt-5 md:mt-3 py-2 px-4 rounded-md text-gray-600 md:mr-6;
  }
  
  /* Alert styles */
  .alert-success {
    @apply py-3 px-3 mx-10 bg-green-300 rounded-lg mt-4 text-gray-700;
  }

  .alert-failure {
    @apply py-3 px-3 mx-10 bg-red-300 rounded-lg mt-4 text-gray-700;
  }

  .alert-info {
    @apply py-3 px-3 mx-10 bg-yellow-300 rounded-lg mt-4 text-gray-700;
  }
  
  /* Avatar styles */
  .avatar {
    @apply rounded-full ring-2 ring-white inline-flex items-center justify-center;
  }
  
  /* Header styles */
  .posts-header {
    @apply text-3xl sm:text-5xl lg:text-5xl leading-none font-extrabold tracking-tight text-gray-600 mb-8 sm:mb-12;
  }
  
  /* Help styles */
  .help-header {
    @apply text-2xl font-semibold cursor-pointer text-gray-600;
  }

  .help-info {
    @apply mx-10 my-3 text-gray-700;
  }
  
  /* Sidenav styles */
  .region-title {
    @apply text-2xl font-extrabold text-gray-700 inline-block rounded px-4 py-2 hover:text-gray-800;
  }

  .extra-nav-item-title {
    @apply text-2xl font-extrabold text-gray-700 inline-block rounded px-4 py-1 hover:text-gray-900;
  }

  .switch-nav-title {
    @apply text-2xl font-extrabold text-blue-800 inline-block rounded px-4 pt-1 pb-5 hover:text-blue-900;
  }
}

@tailwind utilities;
@layer components {
  /* line 2, app/assets/stylesheets/components/alerts.scss */
  .alert-success {
    @apply py-3 px-3 mx-10 bg-green-300 rounded-lg mt-4 text-hardGray-700;
  }
  /* line 6, app/assets/stylesheets/components/alerts.scss */
  .alert-failure {
    @apply py-3 px-3 mx-10 bg-red-300 rounded-lg mt-4 text-hardGray-700;
  }
  /* line 10, app/assets/stylesheets/components/alerts.scss */
  .alert-info {
    @apply py-3 px-3 mx-10 bg-yellow-300 rounded-lg mt-4 text-hardGray-700;
  }
}
@layer components {
  /* line 2, app/assets/stylesheets/components/avatar.scss */
  .avatar {
    @apply rounded-full ring-2 ring-white inline-flex items-center justify-center;
  }
}
@layer components {
  /* Custom Sky colors */
  /* line 3, app/assets/stylesheets/components/buttons.scss */
  :root {
    --sky-400: #38bdf8;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
  }
  /* line 9, app/assets/stylesheets/components/buttons.scss */
  .nav-sort-selection {
    @apply block px-10 py-2 mt-2 text-lg text-gray-600 cursor-pointer font-semibold bg-transparent md:mt-0 hover:bg-warmGray-200;
  }
  /* line 13, app/assets/stylesheets/components/buttons.scss */
  .light-blue-button {
    @apply relative w-44 flex justify-center py-2 mt-2 px-4 border border-transparent cursor-pointer
    leading-5 font-medium rounded-md text-white focus:outline-none
    transition duration-150 ease-in-out font-bold;
    background-color: var(--sky-500);
  }
  /* line 19, app/assets/stylesheets/components/buttons.scss */
  .light-blue-button:hover {
    background-color: var(--sky-400);
  }
  /* line 23, app/assets/stylesheets/components/buttons.scss */
  .light-blue-button:focus {
    border-color: var(--sky-600);
  }
  /* line 27, app/assets/stylesheets/components/buttons.scss */
  .light-blue-button:hover .icon {
    @apply text-white;
  }
  /* line 32, app/assets/stylesheets/components/buttons.scss */
  .active-selection {
    @apply block md:inline-block text-center font-bold text-2xl mt-5 md:mt-3 py-2 px-4 text-hardGray-600 md:mr-6 bg-warmGray-400 rounded-md text-hardGray-800;
  }
  /* line 36, app/assets/stylesheets/components/buttons.scss */
  .passive-selection {
    @apply block md:inline-block text-center bg-warmGray-200 font-bold text-2xl mt-5 md:mt-3 py-2 px-4 rounded-md text-hardGray-600 md:mr-6;
  }
}
@layer components {
  /* line 2, app/assets/stylesheets/components/headers.scss */
  .posts-header {
    @apply text-3xl sm:text-5xl lg:text-5xl leading-none font-extrabold tracking-tight text-warmGray-600 mb-8 sm:mb-12;
  }
}
@layer components {
  /* line 2, app/assets/stylesheets/components/help.scss */
  .help-header {
    @apply text-2xl font-semibold cursor-pointer text-hardGray-600;
  }
  /* line 6, app/assets/stylesheets/components/help.scss */
  .help-info {
    @apply mx-10 my-3 text-gray-700;
  }
}
@layer components {
  /* line 2, app/assets/stylesheets/components/post.scss */
  .post-key {
    @apply inline font-bold text-lg mr-1 text-hardGray-900;
  }
  /* line 6, app/assets/stylesheets/components/post.scss */
  .post-value {
    @apply text-lg font-bold text-blue-800 mr-6 hover:underline;
  }
  /* line 10, app/assets/stylesheets/components/post.scss */
  .write-up-p {
    @apply pl-2 text-warmGray-600 whitespace-pre-line;
  }
  /* line 14, app/assets/stylesheets/components/post.scss */
  .info-title {
    @apply font-bold text-xl md:text-3xl text-warmGray-700 pb-2 inline-block;
  }
  /* line 18, app/assets/stylesheets/components/post.scss */
  .post-title {
    @apply block font-bold text-2xl mt-4 text-warmGray-700;
  }
  /* line 22, app/assets/stylesheets/components/post.scss */
  .post-select {
    @apply text-sm text-warmGray-600 py-2 px-2 mt-2 mb-3 w-full bg-white rounded border border-solid border-warmGray-300;
  }
  /* line 26, app/assets/stylesheets/components/post.scss */
  .posts-heading-area {
    @apply flex-1 mx-2 md:mx-8 mr-0 mt-2 md:mt-4 lg:mr-40 lg:ml-8;
  }
}
@layer components {
  /* line 2, app/assets/stylesheets/components/sidenav.scss */
  .region-title {
    @apply text-2xl font-extrabold text-warmGray-700 inline-block rounded px-4 py-2 hover:text-hardGray-800;
  }
  /* line 6, app/assets/stylesheets/components/sidenav.scss */
  .extra-nav-item-title {
    @apply text-2xl font-extrabold text-warmGray-700 inline-block rounded px-4 py-1 hover:text-hardGray-900;
  }
  /* line 10, app/assets/stylesheets/components/sidenav.scss */
  .switch-nav-title {
    @apply text-2xl font-extrabold text-blue-800 inline-block rounded px-4 pt-1 pb-5 hover:text-blue-900;
  }
}
/* miscellaneous */
/* line 4, app/assets/stylesheets/custom.scss */
select option {
  background: #d6d3d1;
  font-weight: bold;
  padding: 3px 3px;
}

/* line 8, app/assets/stylesheets/custom.scss */
select option:hover {
  background: yellow;
}

/* line 13, app/assets/stylesheets/custom.scss */
select, input, textarea {
  scroll-behavior: smooth;
  background-color: white;
}

/* line 16, app/assets/stylesheets/custom.scss */
select:focus, input:focus, textarea:focus {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  outline: none;
}

/* line 22, app/assets/stylesheets/custom.scss */
.screen-minus-navbar {
  height: calc(100vh - 95px);
}

/* line 26, app/assets/stylesheets/custom.scss */
.min-h-screen-minus-navbar {
  min-height: calc(100vh - 140px);
}

/* line 30, app/assets/stylesheets/custom.scss */
.hide-navbar {
  padding-top: 72px;
}
/* Custom typography styles for kbd elements */
/* line 2, app/assets/stylesheets/custom_typography.scss */
.prose kbd {
  font-family: inherit;
  font-size: 0.875em;
  font-weight: 500;
  border-radius: 0.25rem;
  padding: 0.125rem 0.25rem;
  background-color: #f3f4f6;
  /* Safe gray-100 hex */
  border: 1px solid #e5e7eb;
  /* Safe gray-200 hex */
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1), 0 3px 0 rgba(15, 23, 42, 0.1);
  /* Safe rgba syntax */
}
/* line 1, app/assets/stylesheets/filters.scss */
.filter-modal-width {
  width: 500px;
  max-width: 95vw;
}
/* line 5, app/assets/stylesheets/googlemap.scss */
#map {
  width: 64%;
  height: 350px;
  display: inline-flex;
  position: relative;
}

/* line 12, app/assets/stylesheets/googlemap.scss */
element.style {
  overflow: hidden;
}

@media (max-width: 768px) {
  /* line 17, app/assets/stylesheets/googlemap.scss */
  #map {
    width: 100%;
    height: 250px;
    display: inline-flex;
  }
}
/* line 3, app/assets/stylesheets/js_will_paginate.scss */
.pagination {
  cursor: default;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 15px;
  /* self-clearing method: */
}

/* line 9, app/assets/stylesheets/js_will_paginate.scss */
.pagination a, .pagination span, .pagination em {
  padding: 0.2em 0.5em;
  border-radius: 7px;
  display: block;
  float: left;
  margin-left: 2px;
  margin-top: 5px;
  margin-right: 2px;
}

/* line 17, app/assets/stylesheets/js_will_paginate.scss */
.pagination .disabled {
  color: #999999;
  border: 2px solid #dddddd;
}

/* line 20, app/assets/stylesheets/js_will_paginate.scss */
.pagination .current {
  font-style: normal;
  font-weight: bold;
  background: #2e6ab1;
  color: white;
  border: 2px solid #2e6ab1;
}

/* line 26, app/assets/stylesheets/js_will_paginate.scss */
.pagination a {
  text-decoration: none;
  font-weight: bold;
  color: #105cb6;
  border: 2px solid #9aafe5;
}

/* line 31, app/assets/stylesheets/js_will_paginate.scss */
.pagination a:hover, .pagination a:focus {
  color: #000033;
  border-color: #000033;
}

/* line 34, app/assets/stylesheets/js_will_paginate.scss */
.pagination .page_info {
  background: #2e6ab1;
  color: white;
  padding: 0.4em 0.6em;
  width: 22em;
  margin-bottom: 0.3em;
  text-align: center;
}

/* line 41, app/assets/stylesheets/js_will_paginate.scss */
.pagination .page_info b {
  color: #000033;
  background: #6aa6ed;
  padding: 0.1em 0.25em;
}

/* line 45, app/assets/stylesheets/js_will_paginate.scss */
.pagination:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* line 51, app/assets/stylesheets/js_will_paginate.scss */
* html .pagination {
  height: 1%;
}

/* line 53, app/assets/stylesheets/js_will_paginate.scss */
*:first-child + html .pagination {
  overflow: hidden;
}
/* ---- .grid-item ---- */
/* line 9, app/assets/stylesheets/masonry.scss */
.grid-sizer,
.grid-item {
  width: 33.333%;
}

/* line 12, app/assets/stylesheets/masonry.scss */
.grid-sizer:hover,
.grid-item:hover {
  cursor: pointer;
  opacity: .8;
}

/* line 18, app/assets/stylesheets/masonry.scss */
.gutter-sizer {
  width: .5%;
}

/* line 22, app/assets/stylesheets/masonry.scss */
.grid-item {
  box-sizing: border-box;
  float: left;
}

/* line 27, app/assets/stylesheets/masonry.scss */
.grid-item img {
  box-sizing: border-box;
  display: block;
  width: 100%;
}

/* line 34, app/assets/stylesheets/masonry.scss */
.image-holder {
  margin: 3px;
  display: inline-flex;
  flex-direction: column;
  height: 18.5em;
  width: 98%;
  border: solid #dddada;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  background: rgba(242, 242, 243, 0.918);
}

/* line 45, app/assets/stylesheets/masonry.scss */
.image-holder:hover {
  width: 99%;
}

/* line 50, app/assets/stylesheets/masonry.scss */
#modal {
  display: grid;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* line 57, app/assets/stylesheets/masonry.scss */
#modal-layer {
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  /* create the modal window layer, and have it fill the entire screen */
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  /* set the modal window layer's background color to a translucent black */
  z-index: 9;
}

/* line 71, app/assets/stylesheets/masonry.scss */
.current-img {
  align-self: center;
  max-width: 85%;
  max-height: 85%;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
}

/* line 81, app/assets/stylesheets/masonry.scss */
.back-arrow {
  position: fixed;
  opacity: 60%;
  left: 5%;
}

/* line 85, app/assets/stylesheets/masonry.scss */
.back-arrow:hover {
  width: 85px;
  height: 85px;
}

/* line 91, app/assets/stylesheets/masonry.scss */
.forward-arrow {
  position: fixed;
  opacity: 60%;
  right: 5%;
}

/* line 95, app/assets/stylesheets/masonry.scss */
.forward-arrow:hover {
  width: 85px;
  height: 85px;
}
/* line 1, app/assets/stylesheets/master_map.scss */
#trace-map {
  height: 60vh;
}

@media (min-width: 768px) {
  /* line 6, app/assets/stylesheets/master_map.scss */
  #trace-map {
    height: 70vh;
  }
}
/* line 1, app/assets/stylesheets/navbars.scss */
.pre-size-avatar-header {
  height: 35px;
  width: 35px;
  margin-right: 3px;
}
/* line 3, app/assets/stylesheets/posts.scss */
iframe {
  width: 640px;
  height: 390px;
}

@media (max-width: 1000px) {
  /* line 9, app/assets/stylesheets/posts.scss */
  iframe {
    width: 100%;
  }
}

@media (max-width: 600px) {
  /* line 15, app/assets/stylesheets/posts.scss */
  iframe {
    height: 250px;
  }
}

/* line 21, app/assets/stylesheets/posts.scss */
.card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* line 30, app/assets/stylesheets/posts.scss */
.posts {
  word-break: break-word;
}
/* line 1, app/assets/stylesheets/uppy.scss */
.uppy-Root {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: left;
  position: relative;
  color: #333;
}

/* line 12, app/assets/stylesheets/uppy.scss */
.uppy-Root *,
.uppy-Root :after,
.uppy-Root :before {
  box-sizing: inherit;
}

/* line 17, app/assets/stylesheets/uppy.scss */
.uppy-Root [hidden] {
  display: none;
}

/* line 20, app/assets/stylesheets/uppy.scss */
.uppy-u-reset {
  -webkit-appearance: none;
  line-height: 1;
  padding: 0;
  color: inherit;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  background: none;
  border: none;
  border-collapse: separate;
  border-image: none;
  border-radius: 0;
  border-spacing: 0;
  box-shadow: none;
  clear: none;
  cursor: auto;
  display: inline;
  empty-cells: show;
  float: none;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  font-stretch: normal;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  left: auto;
  letter-spacing: normal;
  list-style: none;
  margin: 0;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  opacity: 1;
  outline: medium none invert;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  top: auto;
  transform: none;
  transform-origin: 50% 50% 0;
  transform-style: flat;
  transition: none 0s ease 0s;
  unicode-bidi: normal;
  vertical-align: baseline;
  visibility: visible;
  white-space: normal;
  z-index: auto;
}

/* line 77, app/assets/stylesheets/uppy.scss */
.uppy-c-textInput {
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 8px;
  background-color: #fff;
}

/* line 85, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-c-textInput {
  padding: 8px 10px;
}

/* line 88, app/assets/stylesheets/uppy.scss */
.uppy-c-textInput:focus {
  border-color: rgba(34, 117, 215, 0.6);
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.15);
}

/* line 93, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-textInput {
  background-color: #333;
  border-color: #333;
  color: #eaeaea;
}

/* line 98, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-textInput:focus {
  border-color: #525252;
  box-shadow: none;
}

/* line 102, app/assets/stylesheets/uppy.scss */
.uppy-c-icon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  overflow: hidden;
}

/* line 109, app/assets/stylesheets/uppy.scss */
.uppy-c-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  transition-property: background-color, color;
  transition-duration: .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 125, app/assets/stylesheets/uppy.scss */
.uppy-c-btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/* line 128, app/assets/stylesheets/uppy.scss */
.uppy-c-btn::-moz-focus-inner {
  border: 0;
}

/* line 131, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-primary {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: #2275d7;
  color: #fff;
}

/* line 138, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-primary:hover {
  background-color: #1b5dab;
}

/* line 141, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}

/* line 145, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-c-btn-primary {
  padding: 13px 22px;
}

/* line 148, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-primary {
  color: #eaeaea;
}

/* line 151, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  outline: none;
}

/* line 154, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-primary::-moz-focus-inner {
  border: 0;
}

/* line 157, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-primary:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 160, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-link {
  font-size: 14px;
  line-height: 1;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: transparent;
  color: #525252;
}

/* line 168, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-link:hover {
  color: #333;
}

/* line 171, app/assets/stylesheets/uppy.scss */
.uppy-c-btn-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
}

/* line 175, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-c-btn-link {
  padding: 13px 18px;
}

/* line 178, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-link {
  color: #eaeaea;
}

/* line 181, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  outline: none;
}

/* line 184, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-link::-moz-focus-inner {
  border: 0;
}

/* line 187, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-link:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 190, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-c-btn-link:hover {
  color: #939393;
}

/* line 193, app/assets/stylesheets/uppy.scss */
.uppy-c-btn--small {
  font-size: .9em;
  padding: 7px 16px;
  border-radius: 2px;
}

/* line 198, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-c-btn--small {
  padding: 8px 10px;
  border-radius: 2px;
}

/* line 202, app/assets/stylesheets/uppy.scss */
.uppy-Informer {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 1;
  transform: none;
  transition: all .25s ease-in;
  z-index: 1005;
}

/* line 213, app/assets/stylesheets/uppy.scss */
.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  transform: translateY(350%);
  transition: all .3s ease-in;
  z-index: -1000;
}

/* line 219, app/assets/stylesheets/uppy.scss */
.uppy-Informer p {
  display: inline-block;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  padding: 6px 15px;
  background-color: #757575;
  color: #fff;
  border-radius: 18px;
  max-width: 90%;
}

/* line 231, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Informer p {
  font-size: 14px;
  line-height: 1.3;
  max-width: 500px;
  padding: 10px 20px;
}

/* line 237, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Informer p {
  background-color: #333;
}

/* line 240, app/assets/stylesheets/uppy.scss */
.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #525252;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 10px;
  margin-left: -1px;
}

/* line 255, app/assets/stylesheets/uppy.scss */
.uppy-Informer span:hover {
  cursor: help;
}

/* line 258, app/assets/stylesheets/uppy.scss */
.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/* line 262, app/assets/stylesheets/uppy.scss */
.uppy-Root [aria-label][role~=tooltip] {
  position: relative;
}

/* line 265, app/assets/stylesheets/uppy.scss */
.uppy-Root [aria-label][role~=tooltip]:after,
.uppy-Root [aria-label][role~=tooltip]:before {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}

/* line 279, app/assets/stylesheets/uppy.scss */
.uppy-Root [aria-label][role~=tooltip]:before {
  background-size: 100% auto !important;
  content: "";
}

/* line 283, app/assets/stylesheets/uppy.scss */
.uppy-Root [aria-label][role~=tooltip]:after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

/* line 295, app/assets/stylesheets/uppy.scss */
.uppy-Root [aria-label][role~=tooltip]:focus:after,
.uppy-Root [aria-label][role~=tooltip]:focus:before,
.uppy-Root [aria-label][role~=tooltip]:hover:after,
.uppy-Root [aria-label][role~=tooltip]:hover:before {
  opacity: 1;
  pointer-events: auto;
}

/* line 302, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=top]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

/* line 308, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=top]:after {
  margin-bottom: 11px;
}

/* line 311, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=top]:before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

/* line 316, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=top]:hover:before {
  transform: translate3d(-50%, -5px, 0);
}

/* line 319, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=top]:after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

/* line 324, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=top]:hover:after {
  transform: translate3d(-50%, -5px, 0);
}

/* line 327, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=top-left]:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

/* line 331, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=top-left]:hover:after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}

/* line 334, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=top-right]:after {
  transform: translate3d(-16px, 0, 0);
  bottom: 100%;
}

/* line 338, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=top-right]:hover:after {
  transform: translate3d(-16px, -5px, 0);
}

/* line 341, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

/* line 348, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after {
  margin-top: 11px;
}

/* line 351, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

/* line 357, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:hover:before {
  transform: translate3d(-50%, 0, 0);
}

/* line 360, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

/* line 365, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=bottom]:hover:after {
  transform: translate3d(-50%, 0, 0);
}

/* line 368, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

/* line 372, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:hover:after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}

/* line 375, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:after {
  transform: translate3d(-16px, -10px, 0);
  top: 100%;
}

/* line 379, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:hover:after {
  transform: translate3d(-16px, 0, 0);
}

/* line 382, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=left]:after,
.uppy-Root [role~=tooltip][data-microtip-position=left]:before {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}

/* line 390, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=left]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

/* line 397, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=left]:after {
  margin-right: 11px;
}

/* line 400, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:after,
.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:before {
  transform: translate3d(0, -50%, 0);
}

/* line 404, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=right]:after,
.uppy-Root [role~=tooltip][data-microtip-position=right]:before {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}

/* line 411, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=right]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 418, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=right]:after {
  margin-left: 11px;
}

/* line 421, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:after,
.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:before {
  transform: translate3d(0, -50%, 0);
}

/* line 425, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-size=small]:after {
  white-space: normal;
  width: 80px;
}

/* line 429, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-size=medium]:after {
  white-space: normal;
  width: 150px;
}

/* line 433, app/assets/stylesheets/uppy.scss */
.uppy-Root [role~=tooltip][data-microtip-size=large]:after {
  white-space: normal;
  width: 260px;
}

/* line 437, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #fff;
  z-index: 1001;
  transition: height .2s;
}

/* line 450, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar {
  background-color: #1f1f1f;
}

/* line 453, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-StatusBar {
  height: 46px;
}

/* line 456, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}

/* line 467, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar:before {
  background-color: #757575;
}

/* line 470, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

/* line 474, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #1bb240;
}

/* line 477, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #e32437;
}

/* line 480, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator {
  color: #1bb240;
}

/* line 483, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-error .uppy-StatusBar-statusIndicator {
  color: #e32437;
}

/* line 486, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-waiting:not([aria-hidden=true]) {
  background-color: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
}

/* line 491, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting:not([aria-hidden=true]) {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

/* line 495, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-progress {
  background-color: #2275d7;
  height: 2px;
  position: absolute;
  z-index: 1001;
  transition: background-color, width .3s ease-out;
}

/* line 502, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 75%, transparent 0, transparent);
  animation: uppy-StatusBar-ProgressStripes 1s linear infinite;
}

@keyframes uppy-StatusBar-ProgressStripes {
  0% {
    background-position: 0 0;
  }
  to {
    background-position: 64px 0;
  }
}

/* line 515, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-postprocessing .uppy-StatusBar-progress,
.uppy-StatusBar.is-preprocessing .uppy-StatusBar-progress {
  background-color: #f6a623;
}

/* line 519, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

/* line 522, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1002;
  padding-left: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  height: 100%;
}

/* line 535, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-StatusBar-content {
  padding-left: 15px;
}

/* line 538, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-content {
  color: #eaeaea;
}

/* line 541, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-status {
  line-height: 1.4;
  font-weight: 400;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: .3em;
}

/* line 552, app/assets/stylesheets/uppy.scss */
.uppy-Root:not(.uppy-size--md) .uppy-StatusBar-additionalInfo {
  display: none;
}

/* line 555, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-statusPrimary {
  font-weight: 500;
  line-height: 1;
}

/* line 559, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-statusPrimary {
  color: #eaeaea;
}

/* line 562, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-statusSecondary {
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.2;
  display: inline-block;
  color: #757575;
  white-space: nowrap;
}

/* line 570, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-statusSecondary {
  color: #bbb;
}

/* line 573, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-statusSecondaryHint {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  line-height: 1;
}

/* line 579, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-StatusBar-statusSecondaryHint {
  margin-right: 8px;
}

/* line 582, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-statusIndicator {
  position: relative;
  top: 1px;
  color: #525252;
  margin-right: 7px;
}

/* line 588, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-statusIndicator svg {
  vertical-align: text-bottom;
}

/* line 591, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  z-index: 1004;
}

/* line 602, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  width: 100%;
  position: static;
  padding: 0 15px;
  background-color: #fafafa;
}

/* line 608, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  background-color: #1f1f1f;
}

/* line 611, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn {
  line-height: 1;
  cursor: pointer;
  margin: 3px;
  opacity: .9;
}

/* line 617, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn:focus {
  outline: none;
}

/* line 620, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn::-moz-focus-inner {
  border: 0;
}

/* line 623, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 626, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus {
  outline: none;
}

/* line 629, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn::-moz-focus-inner {
  border: 0;
}

/* line 632, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 635, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn:hover {
  opacity: 1;
}

/* line 638, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn:focus {
  border-radius: 50%;
}

/* line 641, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionCircleBtn svg {
  vertical-align: bottom;
}

/* line 644, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn {
  display: inline-block;
  vertical-align: middle;
  font-size: 10px;
  line-height: inherit;
  color: #2275d7;
}

/* line 651, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-StatusBar-actionBtn {
  font-size: 11px;
}

/* line 654, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry {
  height: 16px;
  border-radius: 8px;
  margin-right: 6px;
  background-color: #ff4b23;
  line-height: 1;
  color: #fff;
  padding: 1px 6px 3px 18px;
  position: relative;
}

/* line 664, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry:focus {
  outline: none;
}

/* line 667, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry::-moz-focus-inner {
  border: 0;
}

/* line 670, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 673, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus {
  outline: none;
}

/* line 676, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry::-moz-focus-inner {
  border: 0;
}

/* line 679, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 682, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry:hover {
  background-color: #f92d00;
}

/* line 685, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--retry svg {
  position: absolute;
  top: 3px;
  left: 6px;
}

/* line 690, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  font-size: 14px;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  background-color: #1bb240;
  line-height: 1;
}

/* line 698, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #189c38;
}

/* line 701, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  background-color: #1c8b37;
}

/* line 704, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #18762f;
}

/* line 707, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  padding: 13px 22px;
  width: auto;
}

/* line 711, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload {
  background-color: transparent;
  color: #2275d7;
}

/* line 715, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--uploadNewlyAdded {
  padding-right: 3px;
  padding-left: 3px;
  padding-bottom: 1px;
  border-radius: 3px;
}

/* line 721, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  outline: none;
}

/* line 724, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner {
  border: 0;
}

/* line 727, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 730, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  outline: none;
}

/* line 733, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner {
  border: 0;
}

/* line 736, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 739, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #939393;
  border-radius: 50%;
  position: relative;
  top: 0;
  left: 2px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: help;
}

/* line 756, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/* line 760, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar-spinner {
  animation-name: uppy-StatusBar-spinnerAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  margin-right: 10px;
  fill: #2275d7;
}

/* line 768, app/assets/stylesheets/uppy.scss */
.uppy-StatusBar.is-postprocessing .uppy-StatusBar-spinner,
.uppy-StatusBar.is-preprocessing .uppy-StatusBar-spinner {
  fill: #f6a623;
}

@keyframes uppy-StatusBar-spinnerAnimation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

/* line 780, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 6px;
}

/* line 793, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list:after {
  content: "";
  -ms-flex: auto;
  flex: auto;
}

/* line 798, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 50%;
  position: relative;
  margin: 0;
}

/* line 803, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 33.3333%;
}

/* line 806, app/assets/stylesheets/uppy.scss */
.uppy-size--lg .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem {
  width: 25%;
}

/* line 809, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem:before {
  content: "";
  padding-top: 100%;
  display: block;
}

/* line 814, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected img,
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected svg {
  opacity: .85;
}

/* line 818, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner {
  background-color: rgba(147, 147, 147, 0.2);
}

/* line 821, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner {
  background-color: rgba(234, 234, 234, 0.2);
}

/* line 824, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg {
  fill: rgba(0, 0, 0, 0.7);
  width: 30%;
  height: 30%;
}

/* line 829, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg {
  fill: rgba(255, 255, 255, 0.8);
}

/* line 832, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner {
  border-radius: 4px;
  overflow: hidden;
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  text-align: center;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
}

/* line 844, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.9);
}

/* line 848, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner {
  box-shadow: 0 0 0 3px rgba(170, 225, 255, 0.7);
}

/* line 851, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid button.uppy-ProviderBrowserItem-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* line 857, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  background-color: #2275d7;
  border-radius: 50%;
  z-index: 1002;
  opacity: 0;
}

/* line 868, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox:after {
  width: 12px;
  height: 7px;
  left: 7px;
  top: 8px;
}

/* line 874, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  opacity: 1;
}

/* line 877, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list {
  background-color: #fff;
}

/* line 880, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list {
  background-color: #1f1f1f;
}

/* line 883, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 15px;
  margin: 0;
}

/* line 891, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem {
  color: #eaeaea;
}

/* line 894, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox {
  margin-right: 15px;
  height: 17px;
  width: 17px;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #cfcfcf;
}

/* line 902, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:focus {
  border: 1px solid #2275d7;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.25);
  outline: none;
}

/* line 907, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:after {
  opacity: 0;
  height: 5px;
  width: 9px;
  left: 3px;
  top: 4px;
}

/* line 914, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox:focus {
  border-color: rgba(2, 186, 242, 0.7);
  box-shadow: 0 0 0 3px rgba(2, 186, 242, 0.2);
}

/* line 918, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  background-color: #2275d7;
  border-color: #2275d7;
}

/* line 922, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-fakeCheckbox--is-checked:after {
  opacity: 1;
}

/* line 925, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px;
}

/* line 935, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner:focus {
  outline: none;
  text-decoration: underline;
}

/* line 939, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg {
  margin-right: 8px;
  max-width: 20px;
  max-height: 20px;
}

/* line 945, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 950, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowserItem-fakeCheckbox {
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* line 956, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowserItem-fakeCheckbox:after {
  content: "";
  position: absolute;
  cursor: pointer;
  border-left: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  transform: rotate(-45deg);
}

/* line 964, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowserItem-fakeCheckbox {
  background-color: #1f1f1f;
  border-color: #939393;
}

/* line 968, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowserItem-fakeCheckbox--is-checked {
  background-color: #333;
}

/* line 971, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-panelBody {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex: 1;
  flex: 1;
}

/* line 981, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-panelBody {
  background-color: #1f1f1f;
}

/* line 984, app/assets/stylesheets/uppy.scss */
.uppy-Provider-auth,
.uppy-Provider-empty,
.uppy-Provider-error,
.uppy-Provider-loading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -ms-flex: 1;
  flex: 1;
  color: #939393;
}

/* line 1000, app/assets/stylesheets/uppy.scss */
.uppy-Provider-empty {
  color: #939393;
}

/* line 1003, app/assets/stylesheets/uppy.scss */
.uppy-Provider-authIcon svg {
  width: 100px;
  height: 75px;
  margin-bottom: 15px;
}

/* line 1008, app/assets/stylesheets/uppy.scss */
.uppy-Provider-authTitle {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #757575;
}

/* line 1018, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Provider-authTitle {
  font-size: 20px;
}

/* line 1021, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Provider-authTitle {
  color: #cfcfcf;
}

/* line 1024, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs {
  -ms-flex: 1;
  flex: 1;
  color: #525252;
  font-size: 12px;
  margin-bottom: 10px;
  text-align: left;
}

/* line 1032, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Provider-breadcrumbs {
  margin-bottom: 0;
}

/* line 1035, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs {
  color: #eaeaea;
}

/* line 1038, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbsIcon {
  display: inline-block;
  color: #525252;
  vertical-align: middle;
  margin-right: 4px;
  line-height: 1;
}

/* line 1045, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbsIcon svg {
  width: 13px;
  height: 13px;
  fill: #525252;
}

/* line 1050, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button {
  display: inline-block;
  line-height: inherit;
  padding: 4px;
  border-radius: 3px;
}

/* line 1056, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button:focus {
  outline: none;
}

/* line 1059, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button::-moz-focus-inner {
  border: 0;
}

/* line 1062, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button:hover {
  color: #1b5dab;
}

/* line 1065, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button:focus {
  background-color: #eceef2;
}

/* line 1068, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button:focus {
  background-color: #333;
}

/* line 1071, app/assets/stylesheets/uppy.scss */
.uppy-Provider-breadcrumbs button:hover {
  text-decoration: underline;
  cursor: pointer;
}

/* line 1075, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button {
  color: #eaeaea;
}

/* line 1078, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
}

/* line 1089, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-user {
  margin: 0 8px 0 0;
  font-weight: 500;
  color: #333;
}

/* line 1094, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-user {
  color: #eaeaea;
}

/* line 1097, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-user:after {
  content: "\00B7";
  position: relative;
  left: 4px;
  color: #939393;
  font-weight: 400;
}

/* line 1104, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-header {
  z-index: 1001;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

/* line 1109, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-header {
  border-bottom: 1px solid #333;
}

/* line 1112, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-headerBar {
  padding: 7px 15px;
  background-color: #fafafa;
  z-index: 1001;
  color: #757575;
  line-height: 1.4;
  font-size: 12px;
}

/* line 1120, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ProviderBrowser-headerBar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/* line 1126, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-headerBar {
  background-color: #1f1f1f;
}

/* line 1129, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-headerBar--simple {
  text-align: center;
  display: block;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 1135, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-headerBar--simple .uppy-Provider-breadcrumbsWrap {
  -ms-flex: none;
  flex: none;
  display: inline-block;
  vertical-align: middle;
}

/* line 1141, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-search {
  width: 100%;
  background-color: #fff;
  position: relative;
  height: 30px;
  margin-top: 10px;
  margin-bottom: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/* line 1153, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-search {
  background-color: #1f1f1f;
}

/* line 1156, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchIcon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 16px;
  z-index: 1002;
  color: #bbb;
}

/* line 1164, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchInput {
  width: 100%;
  height: 30px;
  background-color: transparent;
  outline: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 12px;
  line-height: 1.4;
  border: 0;
  margin: 0 8px;
  padding-left: 27px;
  z-index: 1001;
  border-radius: 4px;
}

/* line 1178, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-searchInput {
  background-color: #1f1f1f;
  color: #eaeaea;
}

/* line 1182, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchInput:focus {
  outline: 0;
  background-color: #f4f4f4;
}

/* line 1186, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-searchInput:focus {
  background-color: #333;
}

/* line 1189, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchClose {
  position: absolute;
  width: 22px;
  height: 22px;
  padding: 6px;
  right: 12px;
  top: 4px;
  z-index: 1002;
  color: #939393;
  cursor: pointer;
}

/* line 1200, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchClose:hover {
  color: #757575;
}

/* line 1203, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchClose svg {
  vertical-align: text-top;
}

/* line 1206, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchInput:-ms-input-placeholder {
  color: #939393;
  opacity: 1;
}

/* line 1210, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-searchInput::placeholder {
  color: #939393;
  opacity: 1;
}

/* line 1214, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout {
  cursor: pointer;
  line-height: inherit;
  color: #2275d7;
  padding: 4px;
  border-radius: 3px;
}

/* line 1221, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout:focus {
  outline: none;
}

/* line 1224, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout::-moz-focus-inner {
  border: 0;
}

/* line 1227, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout:hover {
  color: #1b5dab;
}

/* line 1230, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout:focus {
  background-color: #eceef2;
}

/* line 1233, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout:focus {
  background-color: #333;
}

/* line 1236, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-userLogout:hover {
  text-decoration: underline;
}

/* line 1239, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout {
  color: #eaeaea;
}

/* line 1242, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-body {
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

/* line 1247, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-list {
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-spacing: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 1268, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-list {
  background-color: #1f1f1f;
}

/* line 1271, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowserItem-inner {
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
}

/* line 1276, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  height: 65px;
  border-top: 1px solid #eaeaea;
  padding: 0 15px;
}

/* line 1286, app/assets/stylesheets/uppy.scss */
.uppy-ProviderBrowser-footer button {
  margin-right: 8px;
}

/* line 1289, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ProviderBrowser-footer {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

/* line 1293, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewInnerWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

/* line 1309, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-previewInnerWrap {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* line 1312, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewInnerWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 1001;
}

/* line 1323, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewLink {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1002;
}

/* line 1331, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewLink:focus {
  box-shadow: inset 0 0 0 3px #76abe9;
}

/* line 1334, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-previewLink:focus {
  box-shadow: inset 0 0 0 3px #016c8d;
}

/* line 1337, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-preview img.uppy-Dashboard-Item-previewImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  border-radius: 3px;
}

/* line 1344, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  color: #fff;
  text-align: center;
  width: 120px;
  transition: all .35 ease;
}

/* line 1355, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIndicator {
  display: inline-block;
  width: 38px;
  height: 38px;
  opacity: .9;
}

/* line 1361, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-progressIndicator {
  width: 55px;
  height: 55px;
}

/* line 1365, app/assets/stylesheets/uppy.scss */
button.uppy-Dashboard-Item-progressIndicator {
  cursor: pointer;
}

/* line 1368, app/assets/stylesheets/uppy.scss */
button.uppy-Dashboard-Item-progressIndicator:focus {
  outline: none;
}

/* line 1371, app/assets/stylesheets/uppy.scss */
button.uppy-Dashboard-Item-progressIndicator::-moz-focus-inner {
  border: 0;
}

/* line 1374, app/assets/stylesheets/uppy.scss */
button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--bg,
button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--retry {
  fill: #76abe9;
}

/* line 1378, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--circle {
  width: 100%;
  height: 100%;
}

/* line 1382, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--bg {
  stroke: rgba(255, 255, 255, 0.4);
}

/* line 1385, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--progress {
  stroke: #fff;
  transition: stroke-dashoffset .5s ease-out;
}

/* line 1389, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--play {
  stroke: #fff;
  fill: #fff;
  transition: all .2s;
}

/* line 1394, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--cancel {
  fill: #fff;
  transition: all .2s;
}

/* line 1398, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--pause {
  stroke: #fff;
  fill: #fff;
  transition: all .2s;
}

/* line 1403, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--check {
  fill: #fff;
  transition: all .2s;
}

/* line 1407, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-progressIcon--retry {
  fill: #fff;
}

/* line 1410, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress {
  transform: none;
  top: -9px;
  right: -8px;
  left: auto;
  width: auto;
}

/* line 1417, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator {
  width: 18px;
  height: 18px;
}

/* line 1421, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator {
  width: 28px;
  height: 28px;
}

/* line 1425, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator {
  width: 18px;
  height: 18px;
  opacity: 1;
}

/* line 1430, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator {
  width: 22px;
  height: 22px;
}

/* line 1434, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-processing .uppy-Dashboard-Item-progress {
  opacity: 0;
}

/* line 1437, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-fileInfo {
  padding-right: 5px;
}

/* line 1440, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-name {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 4px;
  word-break: break-all;
  word-wrap: anywhere;
}

/* line 1448, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-name {
  color: #eaeaea;
}

/* line 1451, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-status {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 400;
  color: #757575;
}

/* line 1457, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-status {
  color: #bbb;
}

/* line 1460, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-statusSize {
  display: inline-block;
  vertical-align: bottom;
  text-transform: uppercase;
}

/* line 1465, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-sourceIcon {
  display: none;
  vertical-align: bottom;
  color: #bbb;
}

/* line 1470, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-sourceIcon:not(:first-child) {
  position: relative;
  margin-left: 14px;
}

/* line 1474, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-sourceIcon svg,
.uppy-Dashboard-Item-sourceIcon svg * {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-bottom;
  overflow: hidden;
  fill: currentColor;
  width: 11px;
  height: 12px;
}

/* line 1485, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action {
  cursor: pointer;
  color: #939393;
}

/* line 1489, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action:focus {
  outline: none;
}

/* line 1492, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action::-moz-focus-inner {
  border: 0;
}

/* line 1495, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 1498, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action:hover {
  opacity: 1;
  color: #1f1f1f;
}

/* line 1502, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action {
  color: #cfcfcf;
}

/* line 1505, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus {
  outline: none;
}

/* line 1508, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action::-moz-focus-inner {
  border: 0;
}

/* line 1511, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 1514, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action:hover {
  color: #eaeaea;
}

/* line 1517, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action--remove {
  color: #1f1f1f;
  opacity: .95;
}

/* line 1521, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-action--remove:hover {
  opacity: 1;
  color: #000;
}

/* line 1525, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove {
  color: #525252;
}

/* line 1528, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove:hover {
  color: #333;
}

/* line 1531, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-actionWrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/* line 1537, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-action {
  width: 22px;
  height: 22px;
  padding: 3px;
  margin-left: 3px;
}

/* line 1543, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-action:focus {
  border-radius: 3px;
}

/* line 1546, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-action--copyLink,
.uppy-size--md .uppy-Dashboard-Item-action--edit {
  width: 16px;
  height: 16px;
  padding: 0;
}

/* line 1552, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-action--copyLink:focus,
.uppy-size--md .uppy-Dashboard-Item-action--edit:focus {
  border-radius: 3px;
}

/* line 1556, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-action--remove {
  z-index: 1002;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  padding: 0;
}

/* line 1565, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-action--remove:focus {
  border-radius: 50%;
}

/* line 1568, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0 10px 10px;
}

/* line 1576, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-Item {
  border-bottom: 1px solid #333;
}

/* line 1579, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item {
  position: relative;
  display: block;
  float: left;
  margin: 5px 15px;
  padding: 0;
  width: calc(33.333% - 30px);
  height: 215px;
  border-bottom: 0;
}

/* line 1589, app/assets/stylesheets/uppy.scss */
.uppy-size--lg .uppy-Dashboard-Item {
  margin: 5px 15px;
  width: calc(25% - 30px);
  height: 190px;
}

/* line 1594, app/assets/stylesheets/uppy.scss */
.uppy-size--xl .uppy-Dashboard-Item {
  width: calc(20% - 30px);
  height: 210px;
}

/* line 1598, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-preview {
  position: relative;
}

/* line 1601, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard:not(.uppy-size--md) .uppy-Dashboard-Item-preview {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 50px;
  height: 50px;
}

/* line 1609, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-preview {
  width: 100%;
  height: 140px;
}

/* line 1613, app/assets/stylesheets/uppy.scss */
.uppy-size--lg .uppy-Dashboard-Item-preview {
  height: 120px;
}

/* line 1616, app/assets/stylesheets/uppy.scss */
.uppy-size--xl .uppy-Dashboard-Item-preview {
  height: 140px;
}

/* line 1619, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-fileInfoAndButtons {
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 8px;
  padding-left: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* line 1631, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-fileInfoAndButtons {
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  padding: 9px 0 0;
}

/* line 1637, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-fileInfo {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

/* line 1643, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-actionWrapper {
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* line 1649, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-previewInnerWrap:after,
.uppy-Dashboard-Item.is-inprogress .uppy-Dashboard-Item-previewInnerWrap:after {
  display: block;
}

/* line 1653, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item.is-inprogress:not(.is-resumable) .uppy-Dashboard-Item-action--remove {
  display: none;
}

/* line 1656, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-errorDetails {
  line-height: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background-color: #939393;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 6px;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  cursor: help;
}

/* line 1673, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-errorDetails:after {
  line-height: 1.3;
  word-wrap: break-word;
}

/* line 1677, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1005;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 1694, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard .uppy-DashboardContent-bar {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/* line 1698, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard .uppy-Dashboard-FileCard-actions {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* line 1702, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-inner {
  height: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 1709, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-inner,
.uppy-Dashboard-FileCard-preview {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 0;
  display: -ms-flexbox;
  display: flex;
}

/* line 1717, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-preview {
  height: 60%;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border-bottom: 1px solid #eaeaea;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

/* line 1728, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-preview {
  background-color: #333;
  border-bottom: 0;
}

/* line 1732, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-preview img.uppy-Dashboard-Item-previewImg {
  max-width: 90%;
  max-height: 90%;
  object-fit: cover;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 3px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
}

/* line 1741, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-edit {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 7px 15px;
  border-radius: 50px;
}

/* line 1751, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-edit:focus {
  outline: none;
}

/* line 1754, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-edit::-moz-focus-inner {
  border: 0;
}

/* line 1757, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-edit:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 1760, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-edit:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* line 1763, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-info {
  height: 40%;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 30px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* line 1773, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-info {
  background-color: #1f1f1f;
}

/* line 1776, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-fieldset {
  font-size: 0;
  border: 0;
  padding: 0;
  max-width: 640px;
  margin: auto auto 12px;
}

/* line 1783, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-label {
  display: inline-block;
  vertical-align: middle;
  width: 22%;
  font-size: 12px;
  color: #525252;
}

/* line 1790, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-FileCard-label {
  font-size: 14px;
}

/* line 1793, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-label {
  color: #eaeaea;
}

/* line 1796, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-input {
  display: inline-block;
  vertical-align: middle;
  width: 78%;
}

/* line 1801, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-actions {
  height: 55px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border-top: 1px solid #eaeaea;
  padding: 0 15px;
  background-color: #fafafa;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/* line 1815, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-FileCard-actions {
  height: 65px;
}

/* line 1818, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-FileCard-actions {
  border-top: 1px solid #333;
  background-color: #1f1f1f;
}

/* line 1822, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-FileCard-actionsBtn {
  margin-right: 10px;
}

/* line 1825, app/assets/stylesheets/uppy.scss */
.uppy-transition-slideDownUp-enter {
  opacity: .01;
  transform: translate3d(0, -105%, 0);
  transition: transform .25s ease-in-out, opacity .25s ease-in-out;
}

/* line 1830, app/assets/stylesheets/uppy.scss */
.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active {
  opacity: 1;
  transform: translateZ(0);
}

/* line 1834, app/assets/stylesheets/uppy.scss */
.uppy-transition-slideDownUp-leave {
  opacity: 1;
  transform: translateZ(0);
  transition: transform .25s ease-in-out, opacity .25s ease-in-out;
}

/* line 1839, app/assets/stylesheets/uppy.scss */
.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active {
  opacity: .01;
  transform: translate3d(0, -105%, 0);
}

@keyframes uppy-Dashboard-fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes uppy-Dashboard-slideDownAndFadeIn {
  0% {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-slideDownAndFadeIn--small {
  0% {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes uppy-Dashboard-slideUpFadeOut {
  0% {
    transform: translate3d(-50%, -50%, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
  }
}

@keyframes uppy-Dashboard-slideUpFadeOut--small {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
}

/* line 1899, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal {
  z-index: 1001;
}

/* line 1902, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal[aria-hidden=true] {
  display: none;
}

/* line 1905, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
  animation: uppy-Dashboard-slideDownAndFadeIn--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@media only screen and (min-width: 820px) {
  /* line 1909, app/assets/stylesheets/uppy.scss */
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-inner {
    animation: uppy-Dashboard-slideDownAndFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

/* line 1913, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose > .uppy-Dashboard-overlay {
  animation: uppy-Dashboard-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 1916, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
  animation: uppy-Dashboard-slideUpFadeOut--small 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@media only screen and (min-width: 820px) {
  /* line 1920, app/assets/stylesheets/uppy.scss */
  .uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-inner {
    animation: uppy-Dashboard-slideUpFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }
}

/* line 1924, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing > .uppy-Dashboard-overlay {
  animation: uppy-Dashboard-fadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 1927, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-isFixed {
  overflow: hidden;
  height: 100vh;
}

/* line 1931, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal .uppy-Dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

/* line 1940, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-inner {
  position: relative;
  background-color: #fafafa;
  max-width: 100%;
  max-height: 100%;
  outline: none;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}

/* line 1949, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-inner {
  min-height: auto;
}

@media only screen and (min-width: 820px) {
  /* line 1953, app/assets/stylesheets/uppy.scss */
  .uppy-Dashboard-inner {
    width: 750px;
    height: 550px;
  }
}

/* line 1958, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal .uppy-Dashboard-inner {
  z-index: 1002;
}

/* line 1961, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-inner {
  background-color: #1f1f1f;
}

/* line 1964, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-innerWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  opacity: 0;
}

/* line 1975, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--isInnerWrapVisible .uppy-Dashboard-innerWrap {
  opacity: 1;
}

/* line 1978, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal .uppy-Dashboard-inner {
  position: fixed;
  top: 35px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: none;
}

@media only screen and (min-width: 820px) {
  /* line 1987, app/assets/stylesheets/uppy.scss */
  .uppy-Dashboard--modal .uppy-Dashboard-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.15);
  }
}

/* line 1994, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-close {
  display: block;
  position: absolute;
  top: -33px;
  right: -2px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
  font-size: 27px;
  z-index: 1005;
}

/* line 2004, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-close:focus {
  outline: none;
}

/* line 2007, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-close::-moz-focus-inner {
  border: 0;
}

/* line 2010, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-close:focus {
  color: #8cb8ed;
}

@media only screen and (min-width: 820px) {
  /* line 2014, app/assets/stylesheets/uppy.scss */
  .uppy-Dashboard-close {
    font-size: 35px;
    top: -10px;
    right: -35px;
  }
}

/* line 2020, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFiles {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  position: relative;
  text-align: center;
}

/* line 2033, app/assets/stylesheets/uppy.scss */
[data-uppy-drag-drop-supported=true] .uppy-Dashboard-AddFiles {
  margin: 7px;
  height: calc(100% - 14px);
  border-radius: 3px;
  border: 1px dashed #dfdfdf;
}

/* line 2039, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFilesPanel .uppy-Dashboard-AddFiles {
  border: none;
  height: calc(100% - 54px);
}

/* line 2043, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--modal .uppy-Dashboard-AddFiles {
  border-color: #cfcfcf;
}

/* line 2046, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-AddFiles {
  border-color: #757575;
}

/* line 2049, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFiles-info {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: auto;
  display: none;
}

/* line 2055, app/assets/stylesheets/uppy.scss */
.uppy-size--height-md .uppy-Dashboard-AddFiles-info {
  display: block;
}

/* line 2058, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-AddFiles-info {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 0;
}

/* line 2066, app/assets/stylesheets/uppy.scss */
[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-info {
  margin-top: 0;
}

/* line 2069, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-browse {
  cursor: pointer;
  color: rgba(34, 117, 215, 0.9);
}

/* line 2073, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-browse:focus {
  outline: none;
}

/* line 2076, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-browse::-moz-focus-inner {
  border: 0;
}

/* line 2079, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-browse:focus,
.uppy-Dashboard-browse:hover {
  border-bottom: 1px solid #2275d7;
}

/* line 2083, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-browse {
  color: rgba(2, 186, 242, 0.9);
}

/* line 2086, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-browse:focus,
[data-uppy-theme=dark] .uppy-Dashboard-browse:hover {
  border-bottom: 1px solid #02baf2;
}

/* line 2090, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-browseBtn {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 5px;
  width: 100%;
}

/* line 2098, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-browseBtn {
  font-size: 15px;
  width: auto;
  margin: 15px auto;
  padding: 13px 44px;
}

/* line 2104, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFiles-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 2px;
  padding: 2px 0;
  width: 100%;
}

/* line 2117, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-AddFiles-list {
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 600px;
  overflow-y: visible;
  margin-top: 15px;
  padding-top: 0;
  -ms-flex: none;
  flex: none;
}

/* line 2131, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}

/* line 2136, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardTab {
  border-bottom: 1px solid #333;
}

/* line 2139, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardTab {
  display: inline-block;
  width: auto;
  margin-bottom: 10px;
  border-bottom: none;
}

/* line 2145, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #525252;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 15px;
  line-height: 1;
  text-align: center;
}

/* line 2165, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn:focus {
  outline: none;
}

/* line 2168, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardTab-btn {
  width: 86px;
  margin-right: 1px;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 10px 3px;
  border-radius: 5px;
}

/* line 2176, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardTab-btn {
  color: #eaeaea;
}

/* line 2179, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn::-moz-focus-inner {
  border: 0;
}

/* line 2182, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn:hover {
  background-color: #f1f3f6;
}

/* line 2185, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardTab-btn:hover {
  background-color: #333;
}

/* line 2188, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn:active,
.uppy-DashboardTab-btn:focus {
  background-color: #eceef2;
}

/* line 2192, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardTab-btn:active,
[data-uppy-theme=dark] .uppy-DashboardTab-btn:focus {
  background-color: #525252;
}

/* line 2196, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-btn svg {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  transition: transform .15s ease-in-out;
  margin-right: 10px;
}

/* line 2205, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardTab-btn svg {
  margin-right: 0;
}

/* line 2208, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab-name {
  font-size: 14px;
  font-weight: 500;
}

/* line 2212, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardTab-name {
  font-size: 11px;
  line-height: 15px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* line 2218, app/assets/stylesheets/uppy.scss */
.uppy-DashboardTab svg {
  width: 23px;
  height: 23px;
  vertical-align: middle;
}

/* line 2223, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardTab svg {
  width: 30px;
  height: 30px;
}

/* line 2227, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-input {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

/* line 2235, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-bar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  z-index: 1004;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
}

/* line 2252, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-bar {
  height: 50px;
  padding: 0 15px;
}

/* line 2256, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-bar {
  background-color: #1f1f1f;
  border-bottom: 1px solid #333;
}

/* line 2260, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  line-height: 40px;
  font-weight: 500;
  width: 100%;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  margin: auto;
}

/* line 2276, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-title {
  font-size: 14px;
  line-height: 50px;
  max-width: 300px;
}

/* line 2281, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-title {
  color: #eaeaea;
}

/* line 2284, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-back {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  border: 0;
  color: inherit;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  color: #2275d7;
  padding: 7px 6px;
  margin: 0 0 0 -6px;
}

/* line 2300, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-back:focus {
  outline: none;
}

/* line 2303, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-back::-moz-focus-inner {
  border: 0;
}

/* line 2306, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-back:hover {
  color: #1b5dab;
}

/* line 2309, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-back:focus {
  background-color: #eceef2;
}

/* line 2312, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-back:focus {
  background-color: #333;
}

/* line 2315, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-back {
  font-size: 14px;
}

/* line 2318, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-back {
  color: #02baf2;
}

/* line 2321, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  border: 0;
  color: inherit;
  border-radius: 3px;
  font-weight: 500;
  cursor: pointer;
  color: #2275d7;
  width: 29px;
  height: 29px;
  padding: 7px 8px;
  margin: 0 -5px 0 0;
}

/* line 2338, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore:focus {
  outline: none;
}

/* line 2341, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore::-moz-focus-inner {
  border: 0;
}

/* line 2344, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore:hover {
  color: #1b5dab;
}

/* line 2347, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore:focus {
  background-color: #eceef2;
}

/* line 2350, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-addMore:focus {
  background-color: #333;
}

/* line 2353, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-addMore {
  font-size: 14px;
  width: auto;
  height: auto;
  margin-right: -8px;
}

/* line 2359, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-DashboardContent-addMore {
  color: #02baf2;
}

/* line 2362, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMore svg {
  vertical-align: baseline;
  margin-right: 4px;
}

/* line 2366, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-addMore svg {
  width: 11px;
  height: 11px;
}

/* line 2370, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-addMoreCaption {
  display: none;
}

/* line 2373, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-DashboardContent-addMoreCaption {
  display: inline;
}

/* line 2376, app/assets/stylesheets/uppy.scss */
.uppy-DashboardContent-panel {
  background-color: #f5f5f5;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;
}

/* line 2383, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFilesPanel,
.uppy-DashboardContent-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1005;
  border-radius: 5px;
  display: -ms-flexbox;
  display: flex;
}

/* line 2396, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFilesPanel {
  background: #fafafa;
  background: linear-gradient(0deg, #fafafa 35%, rgba(250, 250, 250, 0.85));
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 2403, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-AddFilesPanel {
  background-color: #333;
  background: linear-gradient(0deg, #1f1f1f 35%, rgba(31, 31, 31, 0.85));
}

/* line 2407, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard--isAddFilesPanelVisible .uppy-Dashboard-files {
  filter: blur(2px);
}

/* line 2410, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
}

/* line 2417, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-progressBarContainer.is-active {
  z-index: 1004;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 2425, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-filesContainer {
  position: relative;
  overflow-y: hidden;
  margin: 0;
  -ms-flex: 1;
  flex: 1;
}

/* line 2432, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-filesContainer:after {
  content: "";
  display: table;
  clear: both;
}

/* line 2437, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-files {
  margin: 0;
  padding: 0 0 10px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-flex: 1;
  flex: 1;
}

/* line 2445, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-files {
  padding-top: 10px;
}

/* line 2448, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-dropFilesHereHint {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  visibility: hidden;
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding-top: 90px;
  border: 1px dashed #2275d7;
  border-radius: 3px;
  z-index: 2000;
  text-align: center;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 11-1.414 1.414L25 16.414V34a1 1 0 11-2 0V16.414l-5.293 5.293a.999.999 0 11-1.414-1.414l7-7a.999.999 0 011.414 0l7 7z' fill='%232275D7'/%3E%3C/svg%3E");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #757575;
  font-size: 16px;
}

/* line 2472, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-dropFilesHereHint {
  color: #bbb;
  border-color: #02baf2;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 11-1.414 1.414L25 16.414V34a1 1 0 11-2 0V16.414l-5.293 5.293a.999.999 0 11-1.414-1.414l7-7a.999.999 0 011.414 0l7 7z' fill='%2302BAF2'/%3E%3C/svg%3E");
}

/* line 2477, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-dropFilesHereHint {
  visibility: visible;
}

/* line 2480, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-files,
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-progressindicators,
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardContent-bar {
  opacity: .15;
}

/* line 2485, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-AddFiles {
  opacity: .03;
}

/* line 2488, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-dropFilesIcon {
  display: none;
  margin-bottom: 15px;
}

/* line 2492, app/assets/stylesheets/uppy.scss */
.uppy-size--md.uppy-size--height-md .uppy-Dashboard-dropFilesIcon {
  display: block;
}

/* line 2495, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFiles-title {
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
  color: #000;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: left;
  padding: 0 15px;
  width: 100%;
}

/* line 2506, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-AddFiles-title {
  font-size: 25px;
  margin-top: 5px;
  font-weight: 400;
  text-align: center;
  max-width: 480px;
}

/* line 2513, app/assets/stylesheets/uppy.scss */
[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-title {
  text-align: center;
}

/* line 2516, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-AddFiles-title {
  color: #eaeaea;
}

/* line 2519, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-AddFiles-title button {
  font-weight: 500;
}

/* line 2522, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-AddFiles-title button {
  font-weight: 400;
}

/* line 2525, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-note {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  color: #757575;
  max-width: 350px;
  margin: auto;
  padding: 0 15px;
}

/* line 2534, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-note {
  font-size: 15px;
  line-height: 1.35;
  max-width: 600px;
}

/* line 2539, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Dashboard-note {
  color: #cfcfcf;
}

/* line 2542, app/assets/stylesheets/uppy.scss */
a.uppy-Dashboard-poweredBy {
  display: inline-block;
  text-align: center;
  font-size: 11px;
  color: #939393;
  text-decoration: none;
  margin-top: 8px;
}

/* line 2550, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-poweredByIcon {
  stroke: #939393;
  fill: none;
  margin-left: 1px;
  margin-right: 1px;
  position: relative;
  top: 1px;
  opacity: .9;
  vertical-align: text-top;
}

/* line 2560, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewIcon {
  width: 25px;
  height: 25px;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 2569, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-Item-previewIcon {
  width: 38px;
  height: 38px;
}

/* line 2573, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewIcon svg {
  width: 100%;
  height: 100%;
}

/* line 2577, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewIconWrap {
  height: 76px;
  max-height: 75%;
  position: relative;
}

/* line 2582, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-Item-previewIconBg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 1px 1px);
}

/* line 2587, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-upload {
  position: relative;
  width: 50px;
  height: 50px;
}

/* line 2592, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-upload {
  width: 60px;
  height: 60px;
}

/* line 2596, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-upload .uppy-c-icon {
  position: relative;
  top: 1px;
  width: 50%;
}

/* line 2601, app/assets/stylesheets/uppy.scss */
.uppy-Dashboard-uploadCount {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #1bb240;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 8px;
}

/* line 2613, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Dashboard-uploadCount {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 9px;
}

/* line 2619, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 7px;
  background-color: #fff;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  max-width: 100%;
}

/* line 2632, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.4);
}

/* line 2636, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-container::-moz-focus-inner {
  border: 0;
}

/* line 2639, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-inner {
  margin: 0;
  text-align: center;
  padding: 80px 20px;
  line-height: 1.4;
}

/* line 2645, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-arrow {
  width: 60px;
  height: 60px;
  fill: #e0e0e0;
  margin-bottom: 17px;
}

/* line 2651, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop--isDragDropSupported {
  border: 2px dashed #adadad;
}

/* line 2654, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop--isDraggingOver {
  border: 2px dashed #2275d7;
  background: #eaeaea;
}

/* line 2658, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop--isDraggingOver .uppy-DragDrop-arrow {
  fill: #939393;
}

/* line 2661, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-label {
  display: block;
  font-size: 1.15em;
  margin-bottom: 5px;
}

/* line 2666, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-browse {
  color: #2275d7;
  cursor: pointer;
}

/* line 2670, app/assets/stylesheets/uppy.scss */
.uppy-DragDrop-note {
  font-size: 1em;
  color: #adadad;
}

/* line 2674, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-container {
  margin-bottom: 15px;
}

/* line 2677, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-btn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  margin: 0;
  color: inherit;
  font-family: sans-serif;
  font-size: .85em;
  padding: 10px 15px;
  color: #14457f;
  border: 1px solid #14457f;
  border-radius: 8px;
  cursor: pointer;
}

/* line 2693, app/assets/stylesheets/uppy.scss */
.uppy-FileInput-btn:hover {
  background-color: #14457f;
  color: #fff;
}

/* line 2697, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  transition: height .2s;
}

/* line 2706, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

/* line 2709, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar-inner {
  background-color: #2275d7;
  box-shadow: 0 0 10px rgba(34, 117, 215, 0.7);
  height: 100%;
  width: 0;
  transition: width .4s ease;
}

/* line 2716, app/assets/stylesheets/uppy.scss */
.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/* line 2725, app/assets/stylesheets/uppy.scss */
.uppy-Url {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: 1;
  flex: 1;
}

/* line 2739, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Url {
  background-color: #1f1f1f;
}

/* line 2742, app/assets/stylesheets/uppy.scss */
.uppy-Url-input {
  width: 90%;
  max-width: 650px;
  margin-bottom: 15px;
}

/* line 2747, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Url-input {
  margin-bottom: 20px;
}

/* line 2750, app/assets/stylesheets/uppy.scss */
.uppy-Url-importButton {
  padding: 13px 25px;
}

/* line 2753, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Url-importButton {
  padding: 13px 30px;
}

/* line 2756, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 2768, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-videoContainer {
  width: 100%;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background-color: #333;
  text-align: center;
  position: relative;
}

/* line 2779, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-video {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* line 2789, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-video--mirrored {
  transform: scaleX(-1);
}

/* line 2792, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-buttonContainer {
  width: 100%;
  height: 75px;
  border-top: 1px solid #eaeaea;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
}

/* line 2804, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #e32437;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
}

/* line 2813, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button:focus {
  outline: none;
}

/* line 2816, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button::-moz-focus-inner {
  border: 0;
}

/* line 2819, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 2822, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Webcam-button:focus {
  outline: none;
}

/* line 2825, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Webcam-button::-moz-focus-inner {
  border: 0;
}

/* line 2828, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Webcam-button:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 2831, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button svg {
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  fill: currentColor;
}

/* line 2841, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-Webcam-button {
  width: 60px;
  height: 60px;
}

/* line 2845, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button:hover {
  background-color: #d31b2d;
}

/* line 2848, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-button--picture {
  margin-right: 12px;
}

/* line 2851, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-permissons {
  padding: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  height: 100%;
  -ms-flex: 1;
  flex: 1;
}

/* line 2865, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-permissons p {
  max-width: 450px;
  line-height: 1.3;
  text-align: center;
  line-height: 1.45;
  color: #939393;
  margin: 0;
}

/* line 2873, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-permissonsIcon svg {
  width: 100px;
  height: 75px;
  color: #bbb;
  margin-bottom: 30px;
}

/* line 2879, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-recordingLength {
  position: absolute;
  right: 20px;
  color: #757575;
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

/* line 2885, app/assets/stylesheets/uppy.scss */
.uppy-Webcam-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0 0 5px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #333;
}

/* line 2895, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-Webcam-title {
  color: #eaeaea;
}

/* line 2898, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* line 2910, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-videoContainer {
  width: 100%;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: hidden;
  background-color: #333;
  text-align: center;
  position: relative;
}

/* line 2921, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ScreenCapture-videoContainer {
  max-width: 100%;
}

/* line 2924, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-video {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  outline: 0;
}

/* line 2935, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-buttonContainer {
  width: 100%;
  height: 75px;
  border-top: 1px solid #eaeaea;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20px;
  background-color: #fff;
}

/* line 2948, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ScreenCapture-buttonContainer {
  background-color: #1f1f1f;
  border-top: 1px solid #333;
}

/* line 2952, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all .3s;
}

/* line 2960, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button:focus {
  outline: none;
}

/* line 2963, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button::-moz-focus-inner {
  border: 0;
}

/* line 2966, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button:focus {
  box-shadow: 0 0 0 3px rgba(34, 117, 215, 0.5);
}

/* line 2969, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ScreenCapture-button:focus {
  outline: none;
}

/* line 2972, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ScreenCapture-button::-moz-focus-inner {
  border: 0;
}

/* line 2975, app/assets/stylesheets/uppy.scss */
[data-uppy-theme=dark] .uppy-ScreenCapture-button:focus {
  box-shadow: 0 0 0 2px rgba(170, 225, 255, 0.85);
}

/* line 2978, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ScreenCapture-button {
  width: 60px;
  height: 60px;
}

/* line 2982, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button:hover {
  background-color: #d31b2d;
}

/* line 2985, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button svg {
  width: 30px;
  height: 30px;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
  fill: currentColor;
}

/* line 2995, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--submit {
  background-color: #2275d7;
  margin-left: 12px;
}

/* line 2999, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--submit:hover {
  background-color: #1f69c1;
}

/* line 3002, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--submit:disabled {
  background-color: #939393;
  cursor: default;
}

/* line 3006, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--submit:disabled:hover {
  background-color: #eaeaea;
}

/* line 3009, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0 0 5px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
  color: #333;
}

/* line 3019, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-icon--stream {
  position: absolute;
  right: 0;
  top: 0;
  margin: 1rem;
  z-index: 1;
}

/* line 3026, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-icon--stream svg {
  fill: #939393;
}

/* line 3029, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-icon--streamActive svg {
  animation: uppy-ScreenCapture-icon--blink 1s cubic-bezier(0.47, 0, 0.75, 0.72) infinite;
}

@keyframes uppy-ScreenCapture-icon--blink {
  0% {
    fill: #2275d7;
  }
  50% {
    fill: #939393;
  }
  to {
    fill: #2275d7;
  }
}

/* line 3043, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--video {
  color: #fff;
  background: #e32437;
}

/* line 3047, app/assets/stylesheets/uppy.scss */
.uppy-ScreenCapture-button--video:hover {
  background-color: #bc1828;
}

/*!
* Cropper.js v1.5.6
* https://fengyuanchen.github.io/cropperjs
*
* Copyright 2015-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-10-04T04:33:44.164Z
*/
/* line 3059, app/assets/stylesheets/uppy.scss */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 3071, app/assets/stylesheets/uppy.scss */
.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

/* line 3081, app/assets/stylesheets/uppy.scss */
.cropper-canvas,
.cropper-crop-box,
.cropper-drag-box,
.cropper-modal,
.cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 3092, app/assets/stylesheets/uppy.scss */
.cropper-canvas,
.cropper-wrap-box {
  overflow: hidden;
}

/* line 3096, app/assets/stylesheets/uppy.scss */
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

/* line 3100, app/assets/stylesheets/uppy.scss */
.cropper-modal {
  background-color: #000;
  opacity: .5;
}

/* line 3104, app/assets/stylesheets/uppy.scss */
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

/* line 3112, app/assets/stylesheets/uppy.scss */
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: .5;
  position: absolute;
}

/* line 3118, app/assets/stylesheets/uppy.scss */
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: 33.33333%;
  left: 0;
  top: 33.33333%;
  width: 100%;
}

/* line 3126, app/assets/stylesheets/uppy.scss */
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

/* line 3134, app/assets/stylesheets/uppy.scss */
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: .75;
  position: absolute;
  top: 50%;
  width: 0;
}

/* line 3143, app/assets/stylesheets/uppy.scss */
.cropper-center:after,
.cropper-center:before {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

/* line 3150, app/assets/stylesheets/uppy.scss */
.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

/* line 3156, app/assets/stylesheets/uppy.scss */
.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

/* line 3162, app/assets/stylesheets/uppy.scss */
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: .1;
  position: absolute;
  width: 100%;
}

/* line 3171, app/assets/stylesheets/uppy.scss */
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

/* line 3176, app/assets/stylesheets/uppy.scss */
.cropper-line {
  background-color: #39f;
}

/* line 3179, app/assets/stylesheets/uppy.scss */
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

/* line 3185, app/assets/stylesheets/uppy.scss */
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

/* line 3191, app/assets/stylesheets/uppy.scss */
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

/* line 3197, app/assets/stylesheets/uppy.scss */
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

/* line 3203, app/assets/stylesheets/uppy.scss */
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: .75;
  width: 5px;
}

/* line 3209, app/assets/stylesheets/uppy.scss */
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

/* line 3215, app/assets/stylesheets/uppy.scss */
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

/* line 3221, app/assets/stylesheets/uppy.scss */
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

/* line 3227, app/assets/stylesheets/uppy.scss */
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

/* line 3233, app/assets/stylesheets/uppy.scss */
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

/* line 3238, app/assets/stylesheets/uppy.scss */
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

/* line 3243, app/assets/stylesheets/uppy.scss */
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

/* line 3248, app/assets/stylesheets/uppy.scss */
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  /* line 3257, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  /* line 3263, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  /* line 3269, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 5px;
    opacity: .75;
    width: 5px;
  }
}

/* line 3275, app/assets/stylesheets/uppy.scss */
.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

/* line 3286, app/assets/stylesheets/uppy.scss */
.cropper-invisible {
  opacity: 0;
}

/* line 3289, app/assets/stylesheets/uppy.scss */
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

/* line 3292, app/assets/stylesheets/uppy.scss */
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

/* line 3298, app/assets/stylesheets/uppy.scss */
.cropper-hidden {
  display: none !important;
}

/* line 3301, app/assets/stylesheets/uppy.scss */
.cropper-move {
  cursor: move;
}

/* line 3304, app/assets/stylesheets/uppy.scss */
.cropper-crop {
  cursor: crosshair;
}

/* line 3307, app/assets/stylesheets/uppy.scss */
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

/* line 3313, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 3321, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* line 3325, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-image {
  display: block;
  max-height: 400px;
}

/* line 3329, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 3343, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button {
  width: 35px;
  height: 35px;
}

/* line 3347, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button svg {
  padding: 3px;
}

/* line 3350, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ImageCropper-controls button {
  width: 40px;
  height: 40px;
}

/* line 3354, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ImageCropper-controls button svg {
  padding: 1px;
}

/* line 3357, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button:hover {
  background-color: rgba(34, 117, 215, 0.8);
}

/* line 3360, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button:focus {
  outline: none;
  background-color: rgba(34, 117, 215, 0.8);
}

/* line 3365, app/assets/stylesheets/uppy.scss */
.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 3377, app/assets/stylesheets/uppy.scss */
.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

/* line 3388, app/assets/stylesheets/uppy.scss */
.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 3400, app/assets/stylesheets/uppy.scss */
.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

/* line 3405, app/assets/stylesheets/uppy.scss */
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

/* line 3410, app/assets/stylesheets/uppy.scss */
.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

/* line 3415, app/assets/stylesheets/uppy.scss */
.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

/* line 3424, app/assets/stylesheets/uppy.scss */
.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

/* line 3431, app/assets/stylesheets/uppy.scss */
.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

/* line 3440, app/assets/stylesheets/uppy.scss */
.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

/* line 3449, app/assets/stylesheets/uppy.scss */
.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

/* line 3459, app/assets/stylesheets/uppy.scss */
.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: " ";
  display: block;
  position: absolute;
}

/* line 3467, app/assets/stylesheets/uppy.scss */
.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

/* line 3474, app/assets/stylesheets/uppy.scss */
.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

/* line 3481, app/assets/stylesheets/uppy.scss */
.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

/* line 3491, app/assets/stylesheets/uppy.scss */
.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

/* line 3497, app/assets/stylesheets/uppy.scss */
.cropper-line {
  background-color: #39f;
}

/* line 3501, app/assets/stylesheets/uppy.scss */
.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

/* line 3508, app/assets/stylesheets/uppy.scss */
.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

/* line 3515, app/assets/stylesheets/uppy.scss */
.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

/* line 3522, app/assets/stylesheets/uppy.scss */
.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

/* line 3529, app/assets/stylesheets/uppy.scss */
.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

/* line 3536, app/assets/stylesheets/uppy.scss */
.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

/* line 3543, app/assets/stylesheets/uppy.scss */
.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

/* line 3550, app/assets/stylesheets/uppy.scss */
.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

/* line 3557, app/assets/stylesheets/uppy.scss */
.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

/* line 3564, app/assets/stylesheets/uppy.scss */
.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

/* line 3570, app/assets/stylesheets/uppy.scss */
.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

/* line 3576, app/assets/stylesheets/uppy.scss */
.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

/* line 3582, app/assets/stylesheets/uppy.scss */
.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  /* line 3592, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  /* line 3598, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  /* line 3604, app/assets/stylesheets/uppy.scss */
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

/* line 3610, app/assets/stylesheets/uppy.scss */
.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: " ";
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

/* line 3622, app/assets/stylesheets/uppy.scss */
.cropper-invisible {
  opacity: 0;
}

/* line 3626, app/assets/stylesheets/uppy.scss */
.cropper-bg {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}

/* line 3630, app/assets/stylesheets/uppy.scss */
.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

/* line 3637, app/assets/stylesheets/uppy.scss */
.cropper-hidden {
  display: none !important;
}

/* line 3641, app/assets/stylesheets/uppy.scss */
.cropper-move {
  cursor: move;
}

/* line 3645, app/assets/stylesheets/uppy.scss */
.cropper-crop {
  cursor: crosshair;
}

/* line 3649, app/assets/stylesheets/uppy.scss */
.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

/* line 3656, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

/* line 3665, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-container {
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/* line 3670, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-image {
  display: block;
  max-height: 400px;
}

/* line 3675, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

/* line 3690, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button {
  width: 35px;
  height: 35px;
}

/* line 3694, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button svg {
  padding: 3px;
}

/* line 3697, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ImageCropper-controls button {
  width: 40px;
  height: 40px;
}

/* line 3701, app/assets/stylesheets/uppy.scss */
.uppy-size--md .uppy-ImageCropper-controls button svg {
  padding: 1px;
}

/* line 3704, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button:hover {
  background-color: rgba(34, 117, 215, 0.8);
}

/* line 3707, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper-controls button:focus {
  outline: none;
  background-color: rgba(34, 117, 215, 0.8);
}

/* line 3712, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper .cropper-point {
  width: 8px;
  height: 8px;
}

/* line 3717, app/assets/stylesheets/uppy.scss */
.uppy-ImageCropper .cropper-view-box {
  outline: 2px solid #39f;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */
