* {
  font-family: "Montserrat", sans-serif;
}
body {
  margin: 0;
}
.row.middle-xs {
  padding: 20px;
	min-height: 100vh;
}
.dropzone {
  border: 0.0625rem solid #c6ccd6;
  border-radius: 0.5rem;
  background-color: #f9f9fb;
  display: block;
}
.dropzone .dropzone-container {
  padding: 2rem 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #8c96a8;
  z-index: 20;
}
.dropzone .dropzone-container .dropzone-title {
  padding-top: 1.5rem;
}
.dropzone .dropzone-container .browse {
  text-decoration: underline;
  color: #007bff;
}
.dropzone .file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.file-icon {
  /* Need position to allow stacking of pseudo-elements */
  position: relative;
  width: 4rem;
  height: 5.25rem;
  /* Padding for demo purposes */
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 2rem;
  color: #007bff;
  /* Second sheet of paper */
}
.file-icon, .file-icon:before, .file-icon:after {
  background-color: #ffffff;
  border-radius: 0.25rem;
  border: 0.125rem solid #b8bec9;
}
.file-icon:before, .file-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.125rem solid #ccd0d8;
}
.file-icon:before {
  left: -0.625rem;
  top: 0.5rem;
  z-index: -1;
}
.file-icon:after {
  top: -0.25rem;
  right: -0.25rem;
  left: auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border-width: 0.625rem;
  border-style: solid;
  border-color: #f9f9fb #f9f9fb #b8bec9 #b8bec9;
}

#btn-generate {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid #007bff;
  border-radius: 0.6em;
  color: #007bff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  width: 100%;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  border-color: #007bff;
}
#btn-generate:disabled {
  border-color: gray;
  background-color: gray;
  color: #fff;
  cursor: default;
}
#btn-generate:hover:not(:disabled) {
  background-position: 0;
  color: #fff;
  background-color: #007bff;
}

.dz-progress {
  display: none;
}
.dropzone .dz-preview{
  width: calc(100% - 40px);
}
.dropzone .dz-preview .dz-details {
  padding-top: 40px;
}
.dropzone .dz-preview .dz-image {
  width: 100%;
  position: relative;
  border-radius: 0.25rem!important;
  overflow: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 2rem;
  color: #007bff;
}

.dropzone .dz-preview .dz-image, .dropzone .dz-preview .dz-image:before, .dropzone .dz-preview .dz-image:after {
  background-color: #ffffff;
  border-radius: 0.25rem;
  border: 0.125rem solid #b8bec9;
}
.dropzone .dz-preview .dz-image:before, .dropzone .dz-preview .dz-image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.125rem solid #ccd0d8;
}
.dropzone .dz-preview .dz-image:before {
  left: -0.625rem;
  top: 0.5rem;
  z-index: -1;
}
.dropzone .dz-preview .dz-image:after {
  top: -0.25rem;
  right: -0.25rem;
  left: auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border-width: 0.625rem;
  border-style: solid;
  border-color: #f9f9fb #f9f9fb #b8bec9 #b8bec9;
}
