/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) 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
 * 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.
 *
 *= require_tree .
 *= require_self
 */

/* Dropzone base styles (imported here so every layout that loads application.css
   gets them; the overrides below win by coming after the import). */
@import url("https://cdnjs.cloudflare.com/ajax/libs/dropzone/6.2.1/dropzone.min.css");

 @font-face {
  font-family: 'Gilroy-medium';
  src: url("../Gilroy-Medium.otf") format('otf');
  font-weight: normal;
  font-style: normal;
 }

body {
  font-family: 'Fira Sans', sans-serif;
}

 header {
  font-family: 'Gilroy-medium', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family:'Gilroy-medium', 'sans-serif';
}

a, button, input[type=submit] {
  font-family: 'Gilroy-medium', 'sans-serif';
}

/* Dropzone upload widget */
.dropzone {
  min-height: 120px;
  border: 2px dashed #003457;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.dz-message {
  background-color: #F4F4F4;
  border: 1px solid #CCC;
  border-radius: 5px;
  padding: 12px;
  text-align: center;
  font-size: 16px;
  color: #666;
}

.dropzone .dz-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.dropzone .dz-preview .dz-image {
  border-radius: 5px;
  overflow: hidden;
  width: 100px;
  height: 100px;
  position: relative;
  display: block;
  z-index: 1;
}

.dropzone .dz-preview .dz-remove {
  position: static;
  margin-top: 10px;
  z-index: 2;
}

