.overlay-succsessful {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  animation: fadeIn 800ms ease-in-out forwards;
}

.overlay-task-added {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  animation: fadeIn 800ms ease-in-out forwards;
}

.overlay-task-added-board {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  animation: fadeIn 800ms ease-in-out forwards;
}

.message-succsessful {
  width: 312px;
  height: 74px;
  color: #FFFFFF;
  border-radius: 20px;
  background-color: #2a3647;
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0px 0px 4px 0px #00000026;
  font-size: 20px;
  font-weight: 400;
  z-index: 999;
  animation: slideInMessage 400ms ease-in-out forwards;
}

.message-task-added {
  width: 326px;
  height: 74px;
  color: #FFFFFF;
  border-radius: 20px;
  background-color: #2a3647;
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 0px 0px 4px 0px #00000026;
  font-size: 20px;
  font-weight: 400;
  z-index: 999;
  animation: slideInMessage 400ms ease-in-out forwards;
}

.error-message {
  display: none;
  color: #FF8190;
  font-weight: 400;
  font-size: 12px;
  margin-top: 4px;
}

.no-search-found {
  position: absolute;
  bottom: -24px;
  left: 0;
}

.landscape-warning {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 54, 71, 1);
  color: #f6f7f8;
  font-size: 24px;
  text-align: center;
  line-height: 100vh;
  z-index: 9999;
}

@media (orientation: landscape) and (pointer: coarse) {
  .landscape-warning {
    display: block;
  }
}