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

.summary_main_container {
  display: flex;
  justify-content: start;
  margin-left: 328px;
}

.summary_overview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

.summary_headline {
  display: inline-flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  margin-left: 328px;
}

.join360 {
  color: #000;
  font-size: 61px;
  font-weight: 700;
}

.summary_headline_text {
  color: #2a3647;
  font-size: 27px;
  font-weight: 400;
}

.summary_headline_stroke {
  width: 0px;
  height: 59px;
  stroke-width: 3px;
  stroke: #29abe2;
}

.summary_headline_stroke_mobile {
  display: none;
}

.summary_doings {
  display: flex;
  height: 168px;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.summary_todo {
  display: flex;
  width: 264px;
  height: 168px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--white, #fff);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.summary_todo:hover {
  cursor: pointer;
  background-color: #2a3647;
  transform: scale(1.05);
}

.summary_todo:hover .summary_number {
  color: white;
}

.summary_todo:hover .summary_text_small {
  color: white;
}

.summary_todo:hover .summary_img {
  background-image: url("../img/img_summary/penWhite.png");
}

.summary_todo:hover .summary_img_hook {
  background-image: url("../img/img_summary/hookWhite.png");
}

.summary_todo_nummberAndText {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summary_img {
  width: 69px;
  height: 69px;
  background-image: url("../img/img_summary/pen.png");
  background-size: cover;
}

.summary_img_hook {
  width: 69px;
  height: 69px;
  background-image: url("../img/img_summary/hook.png");
  background-size: cover;
}

.summary_number {
  color: #000;
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  margin: 0;
}

.summary_text_small {
  color: #2a3647;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
}

.summary_urgent_container {
  display: flex;
  width: 560px;
  height: 168px;
  justify-content: center;
  align-items: center;
  gap: 61px;
  border-radius: 30px;
  background: var(--white, #fff);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  margin-top: 28px;
  margin-bottom: 28px;
}

.summary_urgent_text {
  color: #2a3647;
  font-size: 16px;
  font-weight: 400;
}

.summary_urgent_container:hover {
  cursor: pointer;
  background-color: #2a3647;
  transform: scale(1.05);
}

.summary_urgent_container:hover .summary_number {
  color: white;
}

.summary_urgent_container:hover .summary_urgent_text {
  color: white;
}

.summary_urgent_container:hover .summary_date {
  color: white;
}

.summary_urgent_field {
  display: flex;
  align-items: center;
  gap: 18px;
}

.summary_stroke {
  width: 0px;
  height: 102.023px;
  flex-shrink: 0;
  stroke-width: 2px;
  stroke: var(--Style, #d1d1d1);
  margin-left: 28px;
  margin-right: 28px;
}

.summary_date {
  color: #2a3647;
  font-size: 21px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 13px;
}

.summary_tasks {
  display: flex;
  height: 170px;
  padding: 1px 0px;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
}

.summary_tasks_field {
  display: flex;
  width: 168px;
  height: 168px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  border-radius: 30px;
  background: var(--white, #fff);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.summary_tasks_text {
  color: #2a3647;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.summary_tasks_field:hover {
  cursor: pointer;
  background-color: #2a3647;
  transform: scale(1.1);
}

.summary_tasks_field:hover .summary_number,
.summary_tasks_field:hover .summary_tasks_text {
  color: white;
}

.summary_greeting {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  margin-left: 80px;
}

.summary_greeting_text {
  width: 338px;
  color: #2a3647;
  font-size: 47px;
  font-weight: 500;
}

.user_name {
  color: var(--Ligth-blue, #29abe2);
  font-size: 64px;
  font-weight: 700;
  width: 385px;
}

.animation_modal {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f6f7f8;
  z-index: 900;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.animation_modal.show {
  display: flex;
  opacity: 1;
}

.modal_greeting_text {
  font-size: 2rem;
  font-weight: 500;
}

.modal_name {
  color: var(--lightblue_font);
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 1350px) {
  .summary_greeting {
    display: none;
  }
  .animation_modal {
    display: flex;
  }
}

@media (max-width: 1000px) {
  .summary_container {
    align-items: center;
  }

  .summary_headline {
    margin-left: 0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-left: -160px;
  }

  .summary_main_container {
    margin-left: 0;
    justify-content: center;
  }

  .join360 {
    font-size: 47px;
    margin: 0;
    margin-top: 28px;
  }

  .summary_headline_stroke {
    display: none;
  }

  .summary_headline_stroke_mobile {
    display: flex;
    width: 0;
    height: 90px;
    transform: rotate(90deg);
    margin-left: 40px;
    margin-top: -40px;
  }

  .summary_headline_text {
    font-size: 20px;
  }

  .summary_doings {
    height: 138px;
  }

  .summary_todo {
    width: 186px;
    height: 110px;
    gap: 10px;
  }

  .summary_img {
    width: 40px;
    height: 40px;
  }

  .summary_img_hook {
    width: 40px;
    height: 40px;
  }

  .summary_number {
    font-size: 47px;
  }

  .summary_text_small {
    font-size: 14px;
  }

  .summary_urgent_container {
    width: 396px;
    height: 110px;
    gap: 20px;
    border-radius: 20px;
    margin-top: 0;
    margin-left: 0;
  }

  .summary_urgent_field {
    gap: 8px;
  }

  .arrow_icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .summary_urgent_text {
    font-size: 14px;
  }

  .summary_date {
    font-size: 16px;
  }

  .summary_tasks_field {
    width: 116px;
    height: 116px;
    gap: 0;
  }

  .summary_tasks_text {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .summary_headline {
    margin-left: -70px;
  }

  .summary_todo {
    width: 130px;
    height: 110px;
    gap: 10px;
  }

  .summary_urgent_container {
    width: 290px;
    height: 110px;
  }

  .summary_tasks_field {
    width: 90px;
    height: 100px;
  }

  .summary_tasks {
    gap: 10px;
  }

  .summary_date {
    font-size: 14px;
  }

  .summary_urgent_text {
    font-size: 12px;
  }

  .summary_number {
    font-size: 40px;
  }

  .summary_tasks_text {
    font-size: 12px;
  }

  .arrow_icon {
    width: 36px;
    height: 36px;
  }

  .summary_img_hook {
    width: 36px;
    height: 36px;
  }

  .summary_img {
    width: 36px;
    height: 36px;
  }

  .summary_doings {
    height: 124px;
    width: auto;
  }

  .summary_urgent_field {
    gap: 2px;
  }
}
