// Notification Bar
.top-notification-bar{
  font-size: .688rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--#{$variable-prefix}dark-text-color);
  background: var(--#{$variable-prefix}egg-blue);
  *{
    margin: 0 0 .125rem;
    &:last-child{
      margin: 0;
    }
  }
  .close{
    position: absolute;
    top: 50%;
    right: 10px;
    width: fit-content;
    color: #5b5d5d;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .custom-gap{
    gap: 10px;
  }
}
.cross-btn-wrap {
  position: absolute;
  right: 0;
}

.course-reminder-content {
  position: relative;
}

.course-reminder-content button.close {
  top: 5px !important;
  right: 5px !important;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: bold;
  color: #373737;
  background: rgba(250, 250, 250, .8);
  border: 0;
  border-radius: 50px;
}

.messages-header{
  border-bottom: 1px solid var(--#{$variable-prefix}dropdown-select-border);
}

.courses-template-detail{
  .sub-title{
    display: block;
  }
}

.message-block{
  min-height: calc(100vh - 114px)
}

.rgt-cell-conversations_name{
  position: relative;
  &:before{
    position: absolute;
    top: 50%;
    right: 0;
    border-top: 8px solid transparent;
    border-left: 0 solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #6f75bc;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    content: "";
  }
}

.rgt-row-hover{
  .courses-template-detail{
    .title{
      color: #6f75bc;
    }
  }
  
  &.rgt-cell-conversations_name{
    &:before{
      opacity: 1;
      visibility: visible;
    }
  }
}

// .rgt-row-selected{
//   &.rgt-cell-conversations_name{
//     &:before{
//       opacity: 1;
//       visibility: visible;
//     }
//   }
// }


.modal-content {
  &.course-reminder-modal {
    .course-reminder-content {
      &.ads-content-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 320px;
        border-radius: 8px;

        .modal-body {
          flex: none;
        }

        p {
          font-size: 12px;
          line-height: 1.3;
        }

        a{
          text-decoration: underline;
        }

        h1 {
          font-size: 25px;
          font-weight: 700;
        }

        h2 {
          font-size: 22px;
          font-weight: 700;
        }

        h3 {
          font-size: 20px;
          font-weight: 700;
        }
      }

      &.ads-content-image {
        min-height: initial;

        .popup-image-container {
          img {
            width: 100%;
          }
        }
      }
    }
  }
}
