/* new handbook list */

.w-full {
  width: 100%;
}

.alert-outer {
  display: none;
}

body {
  background-color: #f6f8fb;
}

.handbook-list-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  #f6f8fb;
  max-width: 875.5px;
  margin: 0 auto;
  font-family: 'Avenir W01';
  font-weight: 300;
  margin-bottom: 40px;
}

.handbook-list-container .header-wrapper {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3d4353;
}

.handbook-list-container .header-wrapper .header-logo {
  max-width: 112px;
  height: 40px;
  object-fit: contain;
}

.handbook-list-container .header-wrapper .header-actions {
  display: flex;
  align-items: center;
}

.handbook-list-container .header-wrapper .header-actions .dropdown-menu {
  position: relative;
}

.handbook-list-container .header-wrapper .header-actions .avatar-wrapper {
  position: relative;
}

.handbook-list-container .header-wrapper .header-actions .avatar-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.handbook-list-container
  .header-wrapper
  .header-actions
  .dropdown-menu
  .dropdown-content {
  position: absolute;
  top: 40px;
  transform: translateX(-50%);
  left: 50%;
  padding: 13px 15px;
  border: 1px solid #c6c6c6;
  border-radius: 8px;
  background-color: #ffffff;
  display: none;
  z-index: 99;
}

.handbook-list-container .header-wrapper .header-actions #logout-btn.option {
  font-size: 14px;
  font-weight: 300;
  font-family: 'Avenir W01';
  margin: 0;
}

.handbook-list-container
  .header-wrapper
  .header-actions
  .dropdown-menu
  .dropdown-content
  .option:hover {
  background: rgba(0, 167, 255, 0.2);
}

.handbook-list-container
  .header-wrapper
  .dropdown-menu.active
  > .dropdown-content {
  display: block;
}

.handbook-list-container
  .header-wrapper
  .dropdown-menu.active
  .avatar-wrapper
  .fa-angle-down {
  transform: rotateX(180deg);
}

.announcement-wrapper {
  margin-top: 40px;
  box-sizing: border-box;
  height: auto;
  width: 100%;
  border: 1px solid #E2E2E3;
  border-radius: 14px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
}

.announcement-wrapper .announcement-title-wrapper {
  padding: 20px 30px 20px 30px;
  display: flex;
  justify-content: space-between;
}

.announcement-wrapper .announcement-content-wrapper {
  padding: 0 30px 30px 30px;
}

.announcement-wrapper .collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.announcement-wrapper .announcement-title-wrapper .announcement-collapsed-title {
  display: flex;
  gap: 15px;
  align-items: center;
}

.announcement-wrapper .announcement-title-wrapper .announcement-icon {
    height: 22px;
    width: 22px;
}
.announcement-wrapper .announcement-title-wrapper .announcement-count {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #ea5252;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Avenir-Heavy";
  font-size: 14px;
  font-weight: 800;
  font-style: Heavy;
  text-align: center;
}

.announcement-wrapper .announcement-title-wrapper .title {
  color: #3D4353;
  font-family: Avenir;
  font-size: 21px;
  letter-spacing: 0;
  line-height: 29px;
}

.announcement-wrapper .announcement-title-wrapper .show-more-button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.announcement-wrapper .announcement-title-wrapper .more-text {
  color: rgba(61, 67, 83, 1);
  font-family: "Avenir-Heavy";
  font-size: 14px;
  font-weight: 800;
  font-style: Heavy;
  letter-spacing: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
}

.announcement-wrapper .announcement-title-wrapper .arrow {
  cursor: pointer;
  transform: rotate(90deg);
  transition: transform 0.5s ease;
}

.announcement-wrapper .announcement-title-wrapper .arrow-flipped {
  transform: rotate(-90deg);
}

.announcement-wrapper .announcement-title-wrapper .show-more-button:hover .more-text {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.announcement-wrapper .announcement-content-wrapper .body {
  color: #3D4353;
  font-family: Avenir;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  margin-top: 10px;
}

.announcement-wrapper .content-container .announcement-image {
  max-width: min(21rem, 100%);
  height: auto;
  border-radius: 10px;
  margin: 10px 0;
}

.announcement-wrapper .announcement-action-wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 0 0 14px 14px;
}

.announcement-wrapper .announcement-action-wrapper .actionbar {
  display: flex;
  justify-content: space-between;
  height: 62px;
  width: 100%;
  border-top: 1px solid #E2E2E3;
  background-color: #F1F1F1;
}

.announcement-wrapper .announcement-action-wrapper .left-side {
  padding-left: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement-wrapper .announcement-action-wrapper .left-side .actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.announcement-wrapper .announcement-action-wrapper .left-side .actions .action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3D4353;
  font-family: Avenir;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 22px;
}

.announcement-wrapper .announcement-action-wrapper .left-side .separator {
  box-sizing: border-box;
  height: 31px;
  width: 1px;
  background: #979797;
  opacity: 0.36;
}

.announcement-wrapper .announcement-action-wrapper .left-side .user {
  display: flex;
  align-items: center;
}

.announcement-wrapper .announcement-action-wrapper .left-side .user .avatar-user,
.announcement-wrapper .announcement-action-wrapper .comment-item .avatar-user {
  height: 32px;
  width: 32px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin-right: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}

.announcement-wrapper .announcement-action-wrapper .left-side .user .avatar-user img,
.announcement-wrapper .announcement-action-wrapper .comment-item .avatar-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.announcement-wrapper .announcement-action-wrapper .left-side .user .name {
  margin-right: 5px;
}

.announcement-wrapper .announcement-action-wrapper .left-side .user .name,
.announcement-wrapper .announcement-action-wrapper .left-side .user .time {
  color: #3E3E41;
  font-family: Avenir;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 16px;
}

.announcement-wrapper .announcement-action-wrapper .right-side {
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement-wrapper .announcement-action-wrapper .right-side .amount {
  opacity: 1;
  color: rgba(15, 23, 34, 1);
  font-family: "Avenir-Book";
  font-size: 14px;
  font-weight: 400;
  font-style: Book;
  letter-spacing: 0;
  text-align: left;
}

.announcement-wrapper .announcement-action-wrapper .right-side .arrows {
  display: flex;
  gap: 5px;
}

.announcement-wrapper .announcement-action-wrapper .right-side .arrows .switch-arrow {
  cursor: pointer;
}

.announcement-wrapper .announcement-action-wrapper .right-side .arrow-flipped {
  transform: scaleX(-1);
}

.announcement-wrapper .announcement-action-wrapper .right-side .arrows .disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-title {
  padding: 10px 30px;
  color: #3D4353;
  font-family: Avenir;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 29px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-list {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.announcement-wrapper .announcement-action-wrapper .comments .no-comment {
  color: #3E3E41;
  font-family: Avenir;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 22px;
  text-align: center;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-wrapper {
  display: flex;
  gap: 5px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-content {
  display: flex;
  flex-direction: column;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-info {
  color: #292b37;
  font-family: Avenir;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 16px;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-info .time {
  color: #3D4353;
  font-size: 12px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .body {
  color: #3D4353;
  font-family: Avenir;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 22px;
  margin-bottom: 4px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-actions {
  display: flex;
  gap: 15px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-actions button {
  background: transparent;
  opacity: 0.5;
  color: #3D4353;
  cursor: pointer;
  padding: 0;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-actions .report-comment,
.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-actions .delete-comment {
  color: #ea5252;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .comment-actions button:hover {
  opacity: 1;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .reply-list {
  padding-top: 20px;
  display: flex;
  gap: 20px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-item .reply-list .comment-icon {
  width: 30px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 30px;
  border-top: 1px solid #E2E2E3;
  background-color: transparent;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-input-wrapper .comment-icon {
  height: 20px;
  width: 20px;
}

.announcement-wrapper .announcement-action-wrapper .comments .comment-input-wrapper .comment-input {
  width: 100%;
  padding: 20px 30px;
  border: none;
  background-color: transparent;
  color: #3D4353;
  font-family: Avenir;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  outline: none;
  resize: none;
}

.header-wrapper .header-actions .avatar-wrapper .avatar {
  height: 35px;
  width: 35px;
  background-color: #d8d8d8;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 12px;
  margin-right: 16px;
  color: #0f1722;
  font-family: 'Avenir W01';
  font-weight: 400;
}

.handbook-list-container .header-wrapper .header-actions .notification-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 20px;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content.dropdown-content-notification {
  min-width: 376px;
  padding: 0;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Avenir W01';
  font-weight: 900;
  color: #18181b;
  font-size: 16px;
  padding: 28px 23px;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-header
  > div {
  display: flex;
  align-items: center;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-header
  .bell-icon {
  margin-right: 17px;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list {
  max-height: 426px;
  overflow-y: auto;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list::-webkit-scrollbar {
  width: 7px;
}
.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list::-webkit-scrollbar-thumb {
  background: #90a4ae;
  border-radius: 10px;
}
.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list::-webkit-scrollbar-thumb:hover {
  background: #90a4ae;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list
  .notification-item-wrapper {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 21px 5px 21px 23px;
  border-top: 1px solid #e7e7e8;
  cursor: pointer;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list
  .notification-item-wrapper.read {
  background-color: #efefef;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list
  .notification-item-wrapper
  .info-container {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-family: 'Avenir W01';
  font-weight: 300;
  color: #54555c;
  gap: 20px;
  width: 100%;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .title {
  color: #1a1a1d;
  font-weight: 900;
  line-height: 19px;
  margin-bottom: 4px;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .message {
  font-style: oblique;
  margin-bottom: 10px;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .action-by-wrapper {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #3e3e41;
  line-height: 16px;
  font-weight: 300;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .action-by-wrapper
  b {
  font-weight: 900;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .action-by-wrapper
  .avatar-user {
  height: 28px;
  min-width: 28px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 14px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  margin-right: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}

.handbook-list-container
  .notification-content-list
  .notification-item-wrapper
  .info-container
  .action-by-wrapper
  .avatar-user
  img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-list
  .notification-item-wrapper
  .view-handbook-action {
  display: flex;
  align-items: center;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .notification-content-header
  .icon-close {
  cursor: pointer;
}

.handbook-list-container
  .header-wrapper
  .notification-container
  .dropdown-content-notification
  .for-now,
.header-wrapper .header-actions .notification-content-list .no-notification {
  color: #54555c;
  font-family: 'Avenir W01';
  font-size: 14px;
  font-style: oblique;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 19px;
  text-align: center;
  border-top: 1px solid #d5d5d5;
  padding: 29px 0px;
}

.header-wrapper .header-actions .notification-wrapper .count {
  height: 25px;
  width: 25px;
  background-color: #ea5252;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
  margin-left: 12px;
  border-radius: 50%;
  display: none;
}

.handbook-list-container .search-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 62px;
  gap: 25px;
}

.handbook-list-container .search-container .title {
  font-weight: 900;
  font-size: 30px;
  color: #0f1722;
  text-align: left;
}

.handbook-list-container .search-container .title.count-search {
  display: none;
}

.handbook-list-container .search-container .search-box-wrapper {
  border: 1.46px solid #0f1722;
  border-radius: 29.14px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  color: #0f1722;
  font-weight: 300;
  padding: 12.5px 23px;
  display: flex;
  align-items: center;
  min-width: 425.91px;
  max-width: 425.91px;
  width: 100%;
}

.handbook-list-container .search-container .search-box-wrapper .search-input {
  outline: none;
  border: none;
  font-size: 18px;
  margin-left: 21px;
  padding-right: 16px;
  width: 100%;
  font-family: 'Avenir W01';
  color: #0f1722;
  font-weight: 900;
}

.handbook-list-container
  .search-container
  .search-box-wrapper
  .search-input::placeholder {
  font-weight: 300;
}

.handbook-list-container .search-container .search-box-wrapper .icon-close {
  display: none;
  cursor: pointer;
}

.handbook-list-container .search-container .search-handbook-container {
  position: relative;
}

.handbook-list-container
  .search-container
  .search-handbook-container
  .result-search-wrapper {
  width: 460px;
  border: 1px solid #c6c6c6;
  border-radius: 8px;
  background-color: #ffffff;
  position: absolute;
  top: 70px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.handbook-list-container
  .search-container
  .search-handbook-container
  .result-search-wrapper
  .result-handbook-item {
  border-bottom: 2px solid #e7e7e8;
  padding: 24px 48px 24px 24px;
  cursor: pointer;
  position: relative;
}

.handbook-list-container
  .search-container
  .search-handbook-container
  .result-search-wrapper
  .result-handbook-item
  .handbook-item-wrapper {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-top: 6px;
}

.result-search-wrapper .result-handbook-item .status,
.result-search-all-container .result-handbook-item .status {
  margin-left: 40px;
  color: #41898c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.result-search-all-container .result-handbook-item .status {
  margin-left: 0px;
}

.result-search-wrapper .result-handbook-item .status .published,
.result-search-all-container .result-handbook-item .status .published {
  color: #41898c;
}

.result-search-wrapper .result-handbook-item .name {
  color: #0095ff;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 3px;
}

.result-search-wrapper .result-handbook-item .content,
.result-search-all-container .result-handbook-item .content {
  line-height: 19px;
  font-size: 14px;
  color: #3d4353;
  margin-bottom: 10px;
}

.result-search-wrapper .result-handbook-item .info-publish-by,
.result-search-all-container .result-handbook-item .info-publish-by {
  color: #1a1a1d;
  opacity: 0.5;
  font-size: 12px;
  font-weight: 400;
}

.result-search-wrapper .result-handbook-item .arrow-right-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.handbook-list-container
  .search-container
  .search-handbook-container
  .result-search-wrapper
  .show-all {
  padding: 18px 24px;
}

.handbook-list-container
  .search-container
  .search-handbook-container
  .result-search-wrapper
  .show-all
  .text {
  font-weight: 900;
  font-family: 'Avenir W01';
  color: #0095ff;
  cursor: pointer;
  font-size: 14px;
}

.search-handbook-container .result-search-wrapper .no-record {
  padding: 20px;
  text-align: center;
  font-weight: 600;
}

.handbook-list-container .message-sso-force {
  color: #85909b;
  font-family: 'Avenir W01';
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 30px;
  text-align: center;
}

.handbook-list-container .message-sso-force a {
  color: #47a6f8;
}

.handbook-list-container .handbook-list-wrapper {
  margin-top: 35px;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: start;
  gap: 17px;
}

.handbook-list-container .handbook-list-wrapper .empty-text {
  color: #3e505e;
  text-align: center;
  padding: 36px 44px;
  opacity: 48%;
}

.handbook-list-container .handbook-list-wrapper .handbook {
  width: calc(100% / 3 - 10px);
  border-radius: 14px;
  height: 400px;
  width: 280px;
  background-color: #8db8de;
  position: relative;
  background-image: url('../../images/handbook-templates/cover-images/blank_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}

.handbook-list-container .handbook-list-wrapper .handbook::before {
  background-color: rgba(0, 0, 0, 0.4);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  border-radius: 14px;
}

.handbook-list-container .handbook-list-wrapper .handbook:hover > .overlay {
  opacity: 1;
}

.handbook-list-container .handbook-list-wrapper .handbook .overlay {
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  border-radius: 14px;
  background-color: rgba(19, 37, 58, 0.76);
  z-index: 1;
  backdrop-filter: blur(3px);
  opacity: 0;
}

.handbook-list-container .handbook-list-wrapper .handbook .required-signature,
.handbook-list-container .handbook-list-wrapper .handbook .signed {
  height: 50px;
  width: 100%;
  line-height: 50px;
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 16px;
  border-radius: 14px 14px 0px 0px;
  position: absolute;
  top: 0;
  z-index: 2;
}

.handbook-list-container .handbook-list-wrapper .handbook .required-signature {
  background-color: #ff4348;
}

.handbook-list-container .handbook-list-wrapper .handbook .signed {
  display: flex;
  align-items: center;
  background-color: #41898c;
  justify-content: center;
}

.handbook-list-container .handbook-list-wrapper .handbook .signed .check-icon {
  margin-right: 15px;
}

.handbook-list-container .handbook-list-wrapper .info-wrapper {
  font-family: 'Avenir W01';
  font-weight: 300;
  color: #fff;
  text-align: center;
  max-width: 208px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.handbook-list-container .handbook-list-wrapper .info-wrapper .handbook-name {
  font-size: 20px;
  font-family: 'AvenirHeavy';
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
  line-height: 33px;
}

.handbook-list-container
  .handbook-list-wrapper
  .info-wrapper
  .handbook-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
}

.handbook-list-container .handbook-list-wrapper .info-wrapper .view-button {
  height: 42px;
  width: 141px;
  border: 2px solid #ffffff;
  border-radius: 20px;
  font-family: 'Avenir W01';
  color: #ffffff;
  background: transparent;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 19px;
  text-align: center;
  margin: 27px auto 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.handbook-list-container
  .handbook-list-wrapper
  .info-wrapper
  .view-button:hover {
  background-color: #ffffff;
  color: #3d4353;
}

.handbook-list-container .result-search-all-container {
  margin-top: 35px;
  display: none;
}

.result-search-all-container .handbook-item {
  border: 1px solid #e2e2e3;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.07);
  padding: 31px;
  display: flex;
  align-items: start;
  gap: 25px;
  margin-bottom: 20px;
}

.result-search-all-container .handbook-item:last-child {
  margin-bottom: 0px;
}

.result-search-all-container .handbook-item .handbook-image {
  height: 80px;
  min-width: 80px;
  border-radius: 8px;
  background-color: #d8d8d8;
  background-color: rgba(219, 92, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.result-search-all-container .result-handbook-item {
  position: relative;
}

.result-search-all-container .result-handbook-item .arrow-right-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.result-search-all-container .result-handbook-item .name {
  font-size: 21px;
  font-weight: 900;
  line-height: 29px;
  color: #1283ff;
  margin-bottom: 3px;
}

.result-search-all-container .result-handbook-item .description-item {
  display: flex;
  align-items: center;
}

.result-search-all-container
  .result-handbook-item
  .description-item
  .count-page {
  font-size: 13px;
  color: #3d4353;
  font-family: 'Avenir W01';
  font-weight: 300;
  margin-right: 24px;
}

.result-search-all-container .handbook-item .handbook-section-container {
  max-height: 380px;
  overflow-y: auto;
  margin-top: 20px;
}

.result-search-all-container
  .handbook-item
  .handbook-section-container::-webkit-scrollbar {
  width: 7px;
}
.result-search-all-container
  .handbook-item
  .handbook-section-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.result-search-all-container
  .handbook-item
  .handbook-section-container::-webkit-scrollbar-thumb {
  background: #90a4ae;
  border-radius: 10px;
}
.result-search-all-container
  .handbook-item
  .handbook-section-container::-webkit-scrollbar-thumb:hover {
  background: #90a4ae;
}

.result-search-all-container .handbook-item .sections-wrapper {
  border-radius: 8px;
  background-color: #f5f8fb;
  padding: 19px 26px;
  margin-right: 26px;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.result-search-all-container .handbook-item .sections-wrapper:first-child {
  margin-top: 0px;
}

.result-search-all-container .handbook-item .sections-wrapper:last-child {
  margin-bottom: 0;
}

.result-search-all-container .handbook-item .sections-wrapper .section-name {
  color: #1283ff;
  line-height: 19px;
  font-size: 14px;
  margin-bottom: 5px;
}

.result-search-all-container .handbook-item .sections-wrapper .section-content {
  color: #3d4353;
  line-height: 19px;
  font-size: 14px;
  margin-bottom: 5px;
}

.result-search-all-container .handbook-item .sections-wrapper .count-matches {
  color: #3d4353;
  line-height: 19px;
  font-size: 13px;
}

.result-search-all-container .handbook-item .handbook-item-wrapper {
  margin-right: 44px;
}

@media screen and (max-width: 1240px) {
  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content.dropdown-content-notification {
    transform: translateX(-70%);
  }
}

@media screen and (max-width: 1024px) {
  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content.dropdown-content-notification {
    transform: translateX(-85%);
  }
}

@media screen and (max-width: 920px) {
  .handbook-list-container {
    padding: 0 15px;
  }

  .handbook-list-container .header-wrapper {
    margin-top: 30px;
  }

  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content.dropdown-content-notification {
    transform: translateX(-90%);
  }
}

@media screen and (max-width: 768px) {
  .handbook-list-container .handbook-list-wrapper {
    justify-content: center;
  }

  .handbook-list-container .search-container {
    flex-direction: column;
    margin-top: 40px;
  }
}

@media screen and (max-width: 600px) {
  .announcement-wrapper .announcement-action-wrapper .left-side .user .name,
  .announcement-wrapper .announcement-action-wrapper .left-side .user .time {
    display: none;
  }

  .handbook-list-container .search-container .search-box-wrapper {
    min-width: auto;
  }

  .handbook-list-container .search-container .title {
    font-size: 24px;
  }

  .handbook-list-container .search-container .search-box-wrapper {
    padding: 10px 20px;
  }

  .handbook-list-container .search-container .search-box-wrapper .search-input {
    font-size: 16px;
  }

  .handbook-list-container
    .search-container
    .search-handbook-container
    .result-search-wrapper {
    width: 400px;
  }

  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content.dropdown-content-notification {
    min-width: 340px;
  }

  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content-notification
    .notification-content-header {
    padding: 16px 20px;
  }

  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content-notification
    .notification-content-list
    .notification-item-wrapper {
    padding: 16px 5px 16px 20px;
  }

  .handbook-list-container
    .header-wrapper
    .notification-container
    .dropdown-content-notification
    .for-now {
    padding: 16px 0;
  }
}

@media screen and (max-width: 400px) {
  .handbook-list-container
    .search-container
    .search-handbook-container
    .result-search-wrapper {
    width: 300px;
  }

  .result-search-all-container .handbook-item {
    padding: 16px;
    flex-direction: column;
    align-items: center;
  }

  .result-search-all-container .result-handbook-item .arrow-right-icon {
    right: -10px;
  }

  .result-search-all-container .handbook-item .sections-wrapper {
    margin-right: 0px;
  }
}

/* end new handbook list */
