.modal__header {
  margin-left: 10px;
}

.tiles {
  row-gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 5px;
  list-style: none;
}

.tiles__tile {
  position: relative;
  font-size: auto;
  border-radius: 10px;
  background: var(--number-color);
  padding: 5px;
  width: 200px;
  height: 150px;
  margin: 10px;
  color: var(--hover_color);
  font-weight: bold;
  text-align: center;
}

.tiles__tile h3 {
  font-size: 0.9rem;
}

.tiles__tile:nth-child(8n+1) {
  background-image: --gradient1;
}

.tiles__tile:nth-child(8n+2) {
  background-image: linear-gradient(315deg, #4c4177 0%, #2a5470 74%);
}

.tiles__tile:nth-child(8n+3) {
  background-image: linear-gradient(315deg, #2876f9 0%, #6d17cb 74%);
}

.tiles__tile:nth-child(8n+4) {
  background-image: linear-gradient(315deg, #4c4177 0%, #2a5470 74%);
}

.tiles__tile:nth-child(8n+5) {
  background-image: linear-gradient(316deg, #ffc857 0%, #3e2f5b 74%);
}

.tiles__tile:nth-child(8n+6) {
  background-image: linear-gradient(315deg, #c73e1d 0%, #a23b72 37%, #2e86ab 100%);
}

.tiles__tile:nth-child(8n+7) {
  background-image: linear-gradient(315deg, #972239 0%, #db6885 74%);
}

.tiles__tile:nth-child(8n+8) {
  background-image: linear-gradient(315deg, #0cbaba 0%, #380036 74%);
}

.tiles__date {
  opacity: 50%;
  font-size: 0.7rem;
  position: absolute;
  right: 10px;
  bottom: 0;
}

.tiles__smallNote {
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tiles__addNote {
  max-height: 60px;
  padding: 15px;
  border-radius: 50px;
  z-index: 301;
  position: -webkit-sticky;
  position: sticky;
  background: var(--task_color);
  width: 60px;
  height: 60px;
  top: 100vh;
  left: 75vw;
}

.tiles__add {
  padding: 20px;
  border-radius: 30px;
  background: var(--backgrounddarker);
  color: var(--number-color);
  font-size: 1.6rem;
}

.tiles__note {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border-radius: 10px;
  color: var(--font-color);
  background-color: var(--statColor);
  height: 700px;
  width: 700px;
  max-height: 83%;
  max-width: 90%;
  z-index: 300;
  position: absolute;
  top: 50%;
  left: 50%;
}

.tiles__savebtn, .tiles__deletebtn {
  bottom: 10px;
  left: 30%;
}

.tiles__savebtn {
  margin-right: auto;
  left: 50px;
}

.tiles__savebtn:hover, .tiles__deletebtn:hover,
.tiles .tiles__tile:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
  cursor: pointer;
}

.tiles__add:hover {
  color: var(--number-color);
  cursor: pointer;
}

.tiles__noteHeader {
  resize: none;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  color: var(--font-color);
  background-color: transparent;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
  border: 0;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.tiles .date {
  font-size: 30px;
  color: var(--number-color);
}

.tiles__textarea {
  resize: none;
  width: 100%;
  height: 60%;
  color: var(--fonts);
  border-radius: 8px;
  background: transparent;
}

.tiles__textarea .date {
  font-size: 30px;
  color: var(--number-color);
}

.modal_addNotebutton {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.fa-times {
  cursor: pointer;
  color: var(--number-color);
  font-size: 1.8rem;
  padding: 0.3rem;
}

.fa-times:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
  cursor: pointer;
}

.fa-redo {
  color: var(--font-color);
  opacity: 80%;
  font-size: 1rem;
}

.overlay_Note {
  pointer-events: none;
  opacity: 100%;
}

.overlay_Note .tiles__note {
  pointer-events: all;
}

@media screen and (max-width: 895px) {
  .tiles {
    row-gap: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    margin: 5px;
    list-style: none;
    font-size: 0.7rem;
  }
  .tiles__tile {
    font-size: 1rem;
    border-radius: 10px;
    background: var(--number-color);
    padding: 10px;
    width: 205px;
    height: 100px;
    color: var(--hover_color);
    text-align: center;
  }
  .tiles__tile h3 {
    font-size: 0.7rem;
  }
  __addNote {
    background: var(--backgrounddarker);
    padding: 15px;
    border-radius: 50px;
    bottom: 10px;
    right: 10px;
  }
  __add {
    padding: 20px;
    border-radius: 30px;
    background: var(--backgrounddarker);
    color: var(--number-color);
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .tiles__tile {
    font-size: 0.8rem;
    border-radius: 10px;
    background: var(--number-color);
    width: 35vw;
    height: 100px;
    color: var(--hover_color);
    text-align: center;
  }
  .tiles_smallNote {
    font-size: 0.1rem;
  }
}

.tiles__savebtn, .tiles__deletebtn {
  background: -webkit-gradient(linear, left top, left bottom, from(#2b3066), to(#1d0758));
  background: linear-gradient(#2b3066, #1d0758);
  border-radius: 5px;
  color: var(--light-color);
  position: absolute;
  padding: 10px;
  max-height: 50px;
  text-align: center;
  /* margin-bottom: 20px; */
}
/*# sourceMappingURL=note.css.map */