:root {
  --background-color: #343541;
  --box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
  --green: green;
  --greenLight: lightgreen;
  --font-color: whitesmoke;
  --font-size: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bottomBorder{
  border-bottom: 1px solid whitesmoke;
}

.textColor{
  color: var(--font-color);
}

.Btn{
  height: 2rem;
  width: auto;
  color: var(--font-color);
  background-color: var(--green);
  font-weight: bold;
  padding: .5rem;
  border: none;
  outline: none;
  transition: 150ms ease-in-out;
}

.Btn:hover{
  filter:grayscale(70%);
  cursor: pointer;
}

html{
  margin: 0;
  padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    background-color: var(--background-color);
}

.footer{
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  min-width: fit-content;
  padding: .2svw;
  background-color: var(--green);
  color: var(--font-color);
  font-weight: bold;
}

.footer p{
  padding-left: 10px;
}

.hover{
  cursor: pointer;
}

.logo{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}

input, select, option{
    width: 100%;
    padding: 8px 12px;
    font-family: "SF Pro Text", sans-serif;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.75); /* zawsze przezroczyste */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    color: #111; /* tekst ciemny */
    transition: all 0.15s ease-in-out;
}

input::placeholder,
select::placeholder,
option::placeholder{
    color: rgba(0,0,0,0.35);
}

input:focus,
select:focus,
option:focus{
    outline: none;
    border-color: #007AFF; /* niebieski kolor systemowy macOS */
    box-shadow: 0 0 0 2px rgba(0,122,255,0.3); /* delikatne podświetlenie */
    background: rgba(255,255,255,0.75);
}

input:not(:placeholder-shown),
select:not(:placeholder-shown),
option:not(:placeholder-shown) {
    background: rgba(255,255,255,0.75); /* tło pozostaje przezroczyste */
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
option:-webkit-autofill,
option:-webkit-autofill:focus,
option:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.75) inset !important;
    -webkit-text-fill-color: #111 !important;
    background-clip: padding-box;
    transition: background-color 5000s ease-in-out 0s; /* hack aby animacja nie migała */
}

.messageBox{
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  max-width: 25svw;
  top: 4svh;
  right: 4svh;
  padding: 1svh;
  background-color: red;
  font-weight: bold;
  color: var(--font-color);
  box-shadow: var(--box-shadow);
  z-index: 5;
}

.container-back{
    display: flex;
    position: absolute;
    top: 0;
    width: 100svw;
    height: 100svh;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    background-image: url('/img/login_background01.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center; /* centruje zawartość wzdłuż osi X */
    align-items: center; /* centruje zawartość wzdłuż osi Y */
    padding: 3svh;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 1px 4px rgba(255,255,255,0.3) inset;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    font-family: "SF Pro Text", sans-serif;
    width: auto;
}

.container img{
    width: 20svw;
    margin-bottom: 3svh;
    shape-rendering: geometricPrecision;
}

.loginForm{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.loginForm input{
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    font-family: "SF Pro Text", sans-serif;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.25); /* zawsze przezroczyste */
    box-shadow: inset 0 1px rgba(255,255,255,0.3);
    color: #111; /* tekst ciemny */
    transition: all 0.15s ease-in-out;
    margin-bottom: 1rem;
}

.loginForm input::placeholder{
    color: rgba(0,0,0,0.35);
}

.loginForm input:focus{
    outline: none;
    border-color: #007AFF; /* niebieski kolor systemowy macOS */
    box-shadow: 0 0 0 2px rgba(0,122,255,0.3); /* delikatne podświetlenie */
    background: rgba(255,255,255,0.35);
}

.loginForm input:not(:placeholder-shown) {
    background: rgba(255,255,255,0.25); /* tło pozostaje przezroczyste */
}

.loginForm input:-webkit-autofill,
.loginForm input:-webkit-autofill:focus,
.loginForm input:-webkit-autofill:hover {
    -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,0.25) inset !important;
    -webkit-text-fill-color: #111 !important;
    background-clip: padding-box;
    transition: background-color 5000s ease-in-out 0s; /* hack aby animacja nie migała */
}


.loginForm input[type="submit"]{
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: "SF Pro Text", sans-serif;
    color: #ffffff;
    background-color: #007AFF; /* dokładny kolor macOS */
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    margin-top: 2rem;
}

.loginForm input[type="submit"]:hover{
    background-color: #0a84ff; /* lekko jaśniejszy odcień */
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

.loginForm input[type="submit"]:active{
    background-color: #0060d6; /* ciemniejszy odcień przy kliknięciu */
    box-shadow: inset 0 2px rgba(0,0,0,0.25);
}

.orders{
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 5svh;
    width: 100%;
    max-width: 100%;
}

.ordersMenu{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 80%;
    height: auto;
    justify-content: space-evenly;
    padding: .5rem;
}

.formFilter{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.formFilter input[type="text"]{
    height: 2rem;
    padding: .2rem;
    background-color: whitesmoke;
    color: black;
    border: none;
    outline: none;
    width: 8rem;
    text-align: center;
    border-radius: 0;
}

.formFilter .searchBtn{
    padding: 0;
    width: 3rem;
    height: 2rem;
    background-color: whitesmoke;
}

.formFilter .searchBtn img{
    height: 1rem
}

.formFilter input[type="search"]{
    margin-left: .1rem;
    height: 2rem;
    padding: .2rem;
    background-color: whitesmoke;
    color: black;
    border: none;
    outline: none;
    min-width: 10rem;
    text-align: center;
    border-radius: 0;
}

.earnedNetto{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .2rem;
  color: var(--font-color);
  font-weight: bold;
}

table{
  margin: 0;
  border-collapse: collapse;
  width: 99svw;
  max-width: 99svw;
  z-index: inherit;
}

th{
  background-color: var(--green);
  color: var(--font-color);
}

th,td{
    padding: .2svw;
    text-align: center;
    width: fit-content;
    max-width: 99svh;
}

.tr1{
    background-color: var(--greenLight);
    border-bottom: .3svw solid var(--background-color);
    transition: 150ms ease-in-out;
    /* height: 4.5svh; */
}

.tr1 input{
  width: auto;
  max-width: calc(99svw/10);
}

.dayTitle{
  border-top: 1rem solid var(--background-color);
  background-color: var(--green);
  color: var(--font-color);
  font-weight: bold;
}

.rowHover:hover{
    cursor: pointer;
    background-color: darkgreen;
    color: var(--font-color);
}

.pointer{
  cursor: pointer;
}

.row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 6svh;
}

.row .box{
    display: flex;
    width: fit-content;
    flex-direction: column;
    margin: 1rem;
}

.row .box .boxTitle{
    padding: 0.5rem;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: darkgreen;
    border-radius: 1rem 1rem 0 0;
    color: var(--font-color);
}

.row .box .boxBody{
    background-color: var(--greenLight);
    padding: 1rem;
}

.row .box .boxBody table{
    position: relative;
    width: 100%;
}

.row .box .boxBody tbody{
    position: relative;
}

.row .box .boxBody td{
    text-align: left;
}

.saveBtn{
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 5rem;
}

.ordersMenu .exportBtn img{
    height: 1rem;
}

.delBtn{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 5rem;
    z-index: 1;
    background-color: red;
}

.files{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.files .fileBox{
    display: flex;
    flex-direction: column;
    margin: .5rem;
}

.preview{
    display: flex;
    width: 220px;
    height: 307px;
}

.preview img,embed{
    position: relative;
    width: inherit;
    height: auto;
    object-fit: cover;
    scale: ;
}

.message{
    position: absolute;
    top: 3rem;
    right: 1.2rem;
    z-index: 5;
}

.message svg{
    color: var(--greenLight);
    width: 3rem;
    height: 3rem;
}

.warning{
    position: absolute;
    top: 0;
    left: 45vw;
    background-color: red;
    padding: .5rem;
    color: var(--font-color);
    display: none;
}




/* NEW-orderId */

.orderIdMain{
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.orderIdHolder{
  margin-top: 1rem;
  position: relative;
  border: none;
  width: 98svw;
  margin-bottom: 1rem;
}

.orderIdTitle{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--font-color);
  background-color: var(--green);
}

.orderIdForm{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2svw;
  padding: .5rem;
  background-color: var(--greenLight);
}

.orderIdGridColumn{
  display: grid;
  grid-template-columns: .8fr 1fr;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
}

.orderIdSaveUpdateBtn{
  position: absolute;
  bottom: 0;
  right: 0;
  padding: .7rem;
  border: none;
  background-color: var(--green);
  color: var(--font-color);
  z-index: 5;
}

.orderIdSaveUpdateBtn:hover{
  cursor: pointer;
}

.orderIdDelForm{
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.orderIdCreatedBy{
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: .4rem;
  margin-top: 1rem;
  background-color: var(--green);
  color: var(--font-color);
  z-index: 998;
}

.orderIdFilesGrid{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: fit-content;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 4svh;
  background-color: var(--greenLight);
}

.orderIdFilePreview{
  position:relative;
  background-position: center;
  background-size: cover;
  width: 250px;
  height: 250px;
}

.orderIdDownload{
  display: flex;
  flex-direction: row;
  justify-content:space-evenly;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.orderIdFilePreview > embed{
  height: 100%;
  overflow: hidden;
}


/*  */




/* Menu --------------------------------------*/

.navBefore{
  display: flex;
  position: sticky;
  top: 0;
  justify-content: center;
  padding: .5svh;
  background-color: var(--background-color);
  z-index: 10;
}

/* Podstawowy styl menu */
nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px) saturate(150%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
}

/* Lista główna */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

/* Elementy menu */
nav ul li {
    position: relative; /* dla dropdown */
}

/* Linki główne */
nav ul li > a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #111;
    border-radius: 12px;
    transition: all 0.15s ease-in-out;
}

/* Hover / focus dla głównego linku */
nav ul li > a:hover,
nav ul li > a:focus {
    background: rgba(0, 122, 255, 0.15); /* macOS niebieskie podświetlenie */
}

/* Dropdowny */
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background: rgba(255, 255, 255, 0.9); /* lekko przezroczyste */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 6px 0;
    text-align: center;
}

/* Pojawienie dropdowna przy hover */
nav ul li:hover > .dropdown {
    display: block;
}

/* Elementy dropdown */
nav ul li .dropdown li {
    padding: 0;
}

/* Linki w dropdown */
nav ul li .dropdown li a {
    display: block;
    padding: 6px 12px;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s ease-in-out;
}

/* Hover w dropdown */
nav ul li .dropdown li a:hover {
    background: rgba(0, 122, 255, 0.15);
}

/* Podpowiedź dla tekstu */
nav ul li .dropdown li a:focus {
    background: rgba(0, 122, 255, 0.15);
}

/* Opcjonalne dopasowanie do małych ekranów */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    nav ul li .dropdown {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
    }
}

/* ---------------------------------------------- */

  /* Trucks --------------------------------------- */

  .truckCard{
    margin-bottom: 1vh;
    box-shadow: var(--box-shadow);
  }

  .truckTitle tbody{
    width: 100%;
  }
  .truckTitle th{
    text-align: center;
    justify-content: center;
    align-items: center;
    width: calc(96vw/5);
    font-size: 14px;
  }

  .truckTitle{
    width: 96svw;
    text-align: center;
    background-color: var(--green);
  }

  .truckRow{
    display: flex;
    flex-direction: column;
    width: 96vw;
    height: auto;
    padding: .5rem;
    background-color: var(--greenLight);
    display: none;
  }

  .truckRow form{
    display: flex;
    flex-direction: row;
    width: 100%;
  }

  .truckRow .truckColumn{
    display: flex;
    flex-direction: column;
    padding: .5rem;
    width: 30%;
  }

  .truckColumn table{
    width: auto;
    border-collapse: collapse;
  }

  .truckRow textarea{
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    padding: .5rem;
  }

  .searchTruckBtn{
    margin-left: 1rem;
    height: 2rem;
    background-color: whitesmoke;
    padding: .2rem;
    outline: none;
    border: none;
  }

  .truckFiles{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .truckFiles embed{
    margin: .5rem;
    height: 25rem;
  }

  .download{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  /* ---------------------------------------------- */

 /* Opcje------------------------------------------ */
  .optionDiv{
    margin: 1rem;
  }

  .optionDiv form{
    display: flex;
    flex-direction: column;
    background-color: var(--greenLight);
    padding: .5rem;
  }

  /*Tankowania -------------------------------------------------- */

  .sums{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--green);
    font-weight: bold;
    color: var(--font-color);
  }

  .sumsCell{
    padding: .2rem;
  }

  /* ------------------------------------------------------------- */
  /* Formularz przekazania---------------------------------------- */

  .transferForm{
    color: var(--font-color);
    width: 60vw;
    margin: 1rem;
  }

  .transferFormTitle{
      color: var(--font-color);
      background-color: var(--green);
      width: 100%;
      text-align: center;
  }

  .tForm{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .tForm .oswiadczenie{
    width: 60%;
    border: 1px solid whitesmoke;
    margin: .5rem;
  }

  .tForm option{
    background-color: var(--background-color);
    color: var(--font-color);
  }

  .tForm p {
    color: var(--font-color);
    margin: .5rem;
    padding: .3rem;
    text-align: justify;
  }

  .tForm button{
    margin: 2rem;
    padding: 1rem;
    width: auto;
  }

  .thead1 td{
    background-color: var(--green);
    font-weight: bold;
    width: fit-content;
  }

  .signatureContainer{
    display: flex;
    flex-direction: column;
    width: 50vw;
    height: 20vw;    
  }

  .signatureContainer label{
    margin: 1rem;
    color: var(--font-color);
  }

  .signatureCanvas{
    width: 100%;
    height: 100%;
  }

  .clearBtn{
    background-color: lightgray;
    padding: .2rem;
    text-align: center;
  }

  .clearBtn:hover{
    cursor: pointer;
  }

  .uwagi{
    padding: .5rem;
    width: 50%;
    height: 4rem;
    resize: none;
    margin: 1rem;
  }

  /* ------------------------------------------------------------- */
  /* DriversList ------------------------------------------------- */

   .driversGrid{
    margin: 1svw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1svw;
   }

   .driverBox{
    position: relative;
    width: 23svw;
    background-color: var(--greenLight);
   }

   .driverTitle{
    top: 0;
    width: 100%;
    padding: .2svw;
    background-color: var(--green);
    font-weight: bold;
    color: var(--font-color);
    text-align: center;
   }

   .driverTitle .id{
    position: absolute;
    left: 3px;
    top: 3px;
   }

   .driverMain{
    padding: .8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: .5svw;
   }

   .driverMain input,select{
    width: 100%;
   }

    .driverFilesBox{
    margin-top: 1rem;
    width: 98svw;
    background-color: var(--greenLight);
    }

    .uploadDriverFileForm{
      margin-top: .5rem;
    }

    .filesList{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: .5rem;
    padding: .5rem;
    }

    .fileItem{
    display: block;
    position: relative;
    height: fit-content;
    }

  /* ------------------------------------------------------------- */
/* Serwis--------------------------------------------------------- */
.serwis{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 95svh;
  padding: .5rem;
  grid-gap: 10px;
}

.serwisInfo{
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content:flex-start;
  padding: 1rem;
  background-color: var(--greenLight);
  border-radius: 1rem;
}

.serwisFiles, .serwisDocs{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: .5rem;
  background-color: var(--greenLight);
  border-radius: 1rem;
  overflow: auto;
}

.sfile{
  display: block;
  position: relative;
  margin: .2rem;
}

.sfile img, iframe{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.sfile .sfileDel{
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: red;
  color: var(--font-color);
}

.orderTypeFilter{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------------------------------- */
.pinThead{
  position: sticky;
  top: 2.5rem;
  z-index: 1;
}
/* --------------------------------------------------------------- */
.importForm {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: var(--font-color);
  font-weight: bold;
}

.importForm label{
  padding: .1rem .5rem;
}

.importForm label:hover{
  cursor: pointer;
}
/* --------------------------------------------------------------- */

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .fadeIn {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
  }



/* --------------------------------------------------------------- */



  @media screen and (orientation: portrait) {

    .ordersMenu{
      flex-direction: column;
      width: 100%;
      height: auto;
      gap: .5rem; /* Add this line to create space between flex items */
    }

    .formFilter input[type="text"]{
      width: 50%;
    }

    .driversGrid{
      grid-template-columns: 1fr;
      grid-gap: 1svh;
     }

     .driverBox{
      width: 98svw;
     }

      .filesList{

      grid-template-columns: 1fr;

     }

    table{
      font-size: 1svw;
    }

    .hamburger-icon {
      padding: 10px;
    }

    .hamburger-icon span{
      display: block;
    }

    .container{
        width: 80vw;
    }

    .container img{
        width: 50vw;
    }

    .orders{
      max-width: 100svw;
    }

    .orders table input {
      width: calc(100svw/10);
    }

    .ordersMenu .exportBtn{
      display: none;
    }

    .orderIdHolder{
      max-height: fit-content;
    }
    .orderIdForm{
      grid-template-columns: 1fr;
    }

    .truckTitle th{
      font-size: 14px;
    }

    .truckTitle th:first-child{
      max-width: 3svw;
    }

    .truckRow form{
      flex-direction: column;
    }

    .truckRow .truckColumn{
      width: 100%;
    }

    .truckFiles{
      width: 100%;
    }

    .Btn{
      width: 100%;
    }

    .delBtn{
      position: fixed;
      bottom: 0;
      left: 0;
      width: 5rem;
      z-index: 1;
      background-color: red;
    }

    .saveBtn{
      position: fixed;
      bottom: 0;
      right: 0;
      z-index: 1;
      width: 5rem;
  }

    .transferForm{
        width: 96vw;
        color: var(--font-color);
    }

    .transferFormTitle{
      padding: 2vh;
    }

    .tForm .oswiadczenie{
      width: auto;
    }

    .signatureContainer{
      width: 90%;
      height: 30vh;
    }

    .importForm{
      display: none;
    }

    .uwagi{
      width: 90%;
      height: 10vh;
      margin: 1rem;
    }

    .updateDriverForm{  
      width: 99svw;
    }

    .hidden{
      display: none;
    }

    .footer{
      display: none
    }

  }


.mdi--paperclip {
  display:inline-flex;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16.5 6v11.5a4 4 0 0 1-4 4a4 4 0 0 1-4-4V5A2.5 2.5 0 0 1 11 2.5A2.5 2.5 0 0 1 13.5 5v10.5a1 1 0 0 1-1 1a1 1 0 0 1-1-1V6H10v9.5a2.5 2.5 0 0 0 2.5 2.5a2.5 2.5 0 0 0 2.5-2.5V5a4 4 0 0 0-4-4a4 4 0 0 0-4 4v12.5a5.5 5.5 0 0 0 5.5 5.5a5.5 5.5 0 0 0 5.5-5.5V6z'/%3E%3C/svg%3E");
}