body {
  background-color: var(--main-bg-color);
}

.summaryText {
  color: var(--main-color);
}

.summarySection {
  max-width: 1920px;
  padding-top: 150px;
  padding-left: 320px;
  transition: padding-left 0.3s ease;
}

.summaryContent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summaryHeadline {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.summaryInfoTiles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex: 1 1 560px;
  max-width: 560px;
  min-width: 300px;
}

.summaryBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 20px;
  background: white;
  height: 168px;
  width: 264px;
  border-radius: 30px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 100ms ease-in-out;
}

.editIcon {
  content: url("../assets/svg/edit.svg");
}

.checkIcon {
  content: url("../assets/svg/check_2.svg");
}

.summaryTasks {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.summaryToDo {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.summaryUrgencyBox {
  justify-content: space-between;
  width: 560px;
}

.urgencyBox {
  display: flex;
  align-items: center;
  width: 234px;
  justify-content: center;
  gap: 24px;
}

.summaryDeadline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
  padding-left: 18px;
}

.taskBox {
  flex-direction: column;
  width: 168px;
}

.summarySvgContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 69px;
  height: 69px;
  background-color: var(--main-color);
}

.urgencySvgContainer {
  background-color: var(--button-urgent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.urgencySvgContainer img {
  width: 34.19px;
}

.summaryCount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.summaryGreetingContainer {
  display: flex;
  flex-direction: column;
}

.divider {
  background-color: var(--light-blue);
  width: 3px;
  height: 59px;
  border-radius: 10px;
}

.divider_mobile {
  background: var(--light-blue);
  height: 3px;
  width: 90px;
  border-radius: 10px;
}

.dividerUrgency {
  height: 100px;
  width: 2px;
  background: var(--color-placeholder);
}

.summaryBox:hover {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: scale(1.029);
  background-color: var(--main-color);
  color: white;

  .summaryText {
    color: white;
  }

  .summarySvgContainer {
    background-color: white;
  }

  .editIcon {
    content: url("../assets/svg/edit_black.svg");
  }

  .checkIcon {
    content: url("../assets/svg/check_2_black.svg");
  }
}

.summaryBox:active {
  color: black;
  background: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  .editIcon {
    content: url("../assets/svg/edit.svg");
  }

  .checkIcon {
    content: url("../assets/svg/check_2.svg");
  }

  .summarySvgContainer {
    background-color: var(--main-color);
  }

  .summaryText {
    color: black;
  }
}

.sumGreetingContainer {
  display: flex;
  flex-direction: column;
  flex: 1 0 364px;
  min-width: 150px;
  margin-left: 60px;
  transition: margin-left 0.3s ease;
}

.sumGreeting span {
  font-size: 47px;
  font-weight: 500;
}

.sumName {
  font-weight: 700;
  color: var(--light-blue);
}