html {
  position: relative;
  min-height: 100%; }

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0; }

a {
  color: #3157B3;
  text-decoration: none; }

a:hover {
  color: #3f7ebd; }

/*Pre, Code*/
pre {
  font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace; }

pre {
  padding: .2rem .4rem;
  font-size: 90%;
  color: #333;
  background-color: #EDEDE8;
  border-radius: .25rem; }

/*Header*/
.header-container {
  margin-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center; }

.header-container__header-image {
  max-width: 100%;
  max-height: 60px;
  margin-bottom: 30px; }

.header-container__header-content {
  font-size: 2.5rem;
  margin-bottom: 30px;
  margin-top: 0;
  text-align: center; }

.header-container__code {
  margin-bottom: 10px; }

/*Upload Container*/
.demo-upload-container {
  padding: 50px 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap; }

/*Info Container*/
.demo-info-container {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  max-width: 300px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  background: #3157B3;
  padding: 15px 15px;
  border-radius: 6px;
  text-align: center;
  color: white; }

.demo-info-container a {
  color: white;
  text-decoration: underline; }

.demo-info-container a:hover {
  color: #eee; }

.upload-info-button {
  display: block;
  margin-bottom: 10px; }

.custom-file-container {
  box-sizing: border-box;
  position: relative;
  display: block; }
  .custom-file-container__custom-file {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
    margin-top: 5px; }
    .custom-file-container__custom-file:hover {
      cursor: pointer; }
    .custom-file-container__custom-file__custom-file-input {
      box-sizing: border-box;
      min-width: 14rem;
      max-width: 100%;
      height: calc(2.25rem + 2px);
      margin: 0;
      opacity: 0; }
      .custom-file-container__custom-file__custom-file-input:focus ~ span {
        outline: 1px dotted #212121;
        outline: 5px auto -webkit-focus-ring-color; }
    .custom-file-container__custom-file__custom-file-control {
      box-sizing: border-box;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      z-index: 5;
      height: calc(2.25rem + 2px);
      padding: .5rem .75rem;
      overflow: hidden;
      line-height: 1.5;
      color: #333;
      user-select: none;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #c0c0af;
      border-radius: .25rem; }
      .custom-file-container__custom-file__custom-file-control__button {
        box-sizing: border-box;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 6;
        display: block;
        height: calc(2.25rem + 2px);
        padding: .5rem .75rem;
        line-height: 1.25;
        color: #333;
        background-color: #EDEDE8;
        border-left: 1px solid #c0c0af;
        box-sizing: border-box; }
  .custom-file-container__image-preview {
    box-sizing: border-box;
    transition: all 0.2s ease;
    margin-top: 20px;
    margin-bottom: 40px;
    height: 250px;
    width: 100%;
    border-radius: 4px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
    overflow-y: auto; }
  .custom-file-container__image-multi-preview {
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 6px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin: 1.858736059%;
    width: 29.615861214%;
    height: 90px;
    box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25); }
    .custom-file-container__image-multi-preview__single-image-clear {
      left: -6px;
      background: #EDEDE8;
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      text-align: center;
      margin-top: -6px;
      box-shadow: 0 4px 10px 0 rgba(51, 51, 51, 0.25); }
      .custom-file-container__image-multi-preview__single-image-clear:hover {
        background: #cbcbbd;
        cursor: pointer; }
      .custom-file-container__image-multi-preview__single-image-clear__icon {
        color: #6a6a53;
        display: block;
        margin-top: -2px; }

