.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; */
}

*,
*::after *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal,
.noteCard,
.todoCard {
  border: 0;
  height: calc(100vh - 53px);
  max-height: calc(100vh - 53px);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translate(0, 0) scale(0);
          transform: translate(0, 0) scale(0);
  -webkit-transition: -webkit-transform 200ms ease-in-out;
  transition: -webkit-transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out;
  transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 90%;
}

.modal__header,
.noteCard__header,
.todoCard__header {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--task_color);
}

.modal__header, .modal__tittle,
.noteCard__header,
.noteCard__tittle,
.todoCard__header,
.todoCard__tittle {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal__body,
.noteCard__body,
.todoCard__body {
  font-size: 1.5rem;
  height: 100%;
  padding: 10px 15px;
}

.modal__options,
.noteCard__options,
.todoCard__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  -ms-flex-line-pack: distribute;
      align-content: space-around;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  font-size: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__header, .modal__closebutton,
.noteCard__header,
.noteCard__closebutton,
.todoCard__header,
.todoCard__closebutton {
  cursor: pointer;
  outline: none;
  background: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.modal__savebtn,
.noteCard__savebtn,
.todoCard__savebtn {
  margin-top: 5px;
  border-radius: 5px;
  color: var(--light-color);
  font-size: 1.5rem;
  padding: 10px;
  max-height: 50px;
  background-color: #2876f9;
  background-image: linear-gradient(315deg, #2876f9 0%, #3e4397 74%);
}

.modal__savebtn:hover,
.noteCard__savebtn:hover,
.todoCard__savebtn:hover {
  -webkit-filter: brightness(150%);
          filter: brightness(150%);
  cursor: pointer;
}

#overlay {
  position: absolute;
  opacity: 0%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

#overlay.active {
  opacity: 100%;
  pointer-events: all;
}

.modal.active,
.noteCard.active,
.todoCard.active,
.tiles__note.active {
  overflow: auto;
  overflow-x: hidden;
  -webkit-transform: translate(0%, 0%) scale(1);
          transform: translate(0%, 0%) scale(1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 70px);
  max-height: calc(100vh - 80px);
}

output {
  font-size: 1.3rem;
}

.optionsBox {
  width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--task_color);
  margin: 10px;
}

.time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
}

.numberOfTime {
  width: 100%;
}

.switch-button {
  margin-bottom: 10px;
  border-radius: 30px;
  overflow: hidden;
  width: 100px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 120px;
  background-color: var(--task_color);
}

.switch-button::before {
  content: "Light ";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0%;
  z-index: 2;
}

.switch-button-checkbox:checked + .switch-button-label::before {
  -webkit-transform: translateX(120px);
          transform: translateX(120px);
  -webkit-transition: -webkit-transform 300ms linear;
  transition: -webkit-transform 300ms linear;
  transition: transform 300ms linear;
  transition: transform 300ms linear, -webkit-transform 300ms linear;
  background-color: #2876f9;
  background-image: linear-gradient(315deg, #2876f9 0%, #3e4397 74%);
}

.switch-button-checkbox + .switch-button-label {
  position: relative;
  padding: 15px 0;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.switch-button-checkbox + .switch-button-label::before {
  content: "";
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  background-image: linear-gradient(315deg, #2876f9 0%, #3e4397 74%);
}

.switch-button-checkbox + .switch-button-label .switch-button-label-span {
  position: relative;
}

.mute {
  border-radius: 30px;
  overflow: hidden;
  width: 100px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 120px;
  height: 52px;
  margin-bottom: 10px;
}

.mute input[type="checkbox"] {
  height: 50px;
  width: 100px;
  display: none;
}

.mute .label {
  border-radius: 30px;
  overflow: hidden;
  width: 220px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  background-color: var(--task_color);
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.mute .label::before {
  content: "\f6a9";
  font-family: FontAwesome;
  font-size: 2rem;
}

.mute input[type="checkbox"]:checked + .label::before {
  content: "\f028";
  font-family: FontAwesome;
  font-weight: 400;
  vertical-align: middle;
}

@media screen and (max-width: 895px) {
  .modal {
    border: 0;
  }
  .optionsBox {
    width: 90vw;
  }
}
/*# sourceMappingURL=settings.css.map */