@charset "UTF-8";
/*
 * jQuery File Upload Plugin CSS
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * https://opensource.org/licenses/MIT
 */


@font-face {
    font-family: 'Lemonado';
    src: url('/fonts/Lemonado-ScriptSmooth.woff2') format('woff2'),
         url('/fonts/Lemonado-ScriptSmooth.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
        
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Medium.woff2') format('woff2'),
        url('/fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-Regular.woff2') format('woff2'),
        url('/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


.button.homepage{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


.progress-bar-success {
    background-color: #213083;
}

.glyphicon-trash:before {
    content: "\e020";
    font-size: 22px;
}

body {
    margin: auto;
    max-width: 768px;
    font-family: "Montserrat";
    font-weight: 500;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
    padding: 15px;
}


h1 {
    color: #cc1d18;
    font-family: "Lemonado";
    font-size: 56px;
    text-align: center;
    transform: rotate(-8deg);
    font-weight: 100;
    margin-top: 50px;
}

#description{
    font-size: 22px;
    margin: 0 0 6%;
    font-family: "Montserrat";
    color: #213083;
    text-align: center;
}
        
#description.end{
    text-align: center;
    font-family: "Lemonado";
    font-size: 38px;
    margin: 0 0 15%;
}
        
  
.fileinput-button {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  font-size: 200px !important;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    font-size: 150% !important;
  }
}

img{
    width: 100%;
    height: auto;
}

.progress-animated .progress-bar,
.progress-animated .bar {
  background: url('../img/progressbar.gif') !important;
  filter: none;
}
.fileupload-process {
  float: right;
  display: none;
}
.fileupload-processing .fileupload-process,
.files .processing .preview {
  display: block;
  width: 32px;
  height: 32px;
  background: url('../img/loading.gif') center no-repeat;
  background-size: contain;
}
.files audio,
.files video {
  max-width: 300px;
}

.files .name {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.files button {
  margin-bottom: 5px;
}
.toggle[type='checkbox'] {
  transform: scale(2);
  margin-left: 10px;
}


@media (max-width: 767px) {
  .fileupload-buttonbar .btn {
    margin-bottom: 10px;
  }
  .fileupload-buttonbar .delete,
  .fileupload-buttonbar .toggle,
  .files .toggle,
  .files .btn span {
    display: none;
  }
  .files audio,
  .files video {
    max-width: 80px;
  }
}


@media (max-width: 480px) {
  .files .image td:nth-child(2) {
    display: none;
  }
}

.fileinput-button i,
.fileupload-buttonbar .delete,
.fileupload-buttonbar .toggle {
  display: none;
}

.fileinput-button input {
  position: static;
  opacity: 1;
  filter: none;
  font-size: inherit !important;
  direction: inherit;
}


input[type=file] {
    opacity: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}