.home-blocks {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
  margin-bottom: 48px;
}

.home-blocks .home-block {
  padding: 24px 40px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  box-shadow: 0px 5px 15px 0px #0000000d;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-blocks .home-block .item-counter {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.home-blocks .home-block.properties .item-counter {
  color: #2d5eee;
  background-color: #2d5dee28;
}
.home-blocks .home-block.invitations .item-counter {
  color: #27c96a;
  background-color: #27c96a21;
}

.home-blocks .home-block.unpaid .item-counter {
  color: #eb3831;
  background-color: #eb37312d;
}

.blue-btn.add-property {
  font-size: 32px;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-left: auto;
  line-height: 32px;
  font-weight: 500;
}
.blue-btn.add-property:hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(6913%)
    hue-rotate(223deg) brightness(98%) contrast(90%);
}

.home-liked-block {
  padding: 24px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  box-shadow: 0px 5px 15px 0px #0000000d;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.liked-block-icon {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #2d5dee28;
}

.home-liked-block .block-name-wrap p {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.home-liked-block .block-name-wrap p img {
  margin-right: 10px;
}

.home-liked-block .block-name-wrap p .notifications-count {
  margin-left: 2px;
  font-weight: 800;
}

.home-liked-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 32px;
}

.warning-block {
  position: absolute;
  top: 16px;
  right: 16px;
}

.message-count {
  margin-left: 16px;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  width: 42px;
  height: 25px;
  border-radius: 10px;
  background-color: #2d5eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.messages-section h1 {
  display: flex;
  align-items: center;
}

.messages-list {
  padding: 40px 56px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #eeeeee;
  box-shadow: 0px 5px 15px 0px #0000000d;
  display: flex;
  margin-top: 16px;
  flex-direction: column;
}

.messages-list .message-block {
  padding: 16px 0px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e1e1e1;
}

.messages-list .message-block .blue-btn {
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.messages-list .message-block .message-date {
  margin-left: auto;
  margin-right: 56px;
}
.messages-list .message-block:last-child {
  border-bottom: none;
}

body .messages-filter .select2-container .select2-selection--single {
  height: 48px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  width: 216px;
}

.messages-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.unseen .message-icon img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(46%) saturate(3253%)
    hue-rotate(331deg) brightness(101%) contrast(101%);
}
