#message_modal {
  .message-container {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;


    .modal-shadow {
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, .5);
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
    }

    .modal-content {
      width: 80%;
      padding: 16px;
      display: flex;
      flex-direction: column;
      background-color: #fff;
      box-shadow: 0px 4px 8px rgba(96, 97, 112, 0.16);
      animation: bounceIn .5s linear;
      margin-top: -80px;

      .modal-title {
        font-family: var(--truenoSBd-family);
        color: #000;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
      }

      .modal-message {
        padding: 24px 0px;
        color: rgb(0, 0, 0);
        text-align: center;
        font-family: var(--regular-font);
      }

      .modal-btn-wrap {
        display: flex;
        flex-direction: column;

        .confirm {
          border: none;
          margin: 8px 0;
          background-color: #FF1659;
          font-size: 14px;
          font-weight: 600;
          font-family: var(--regular-font);
          line-height: 21px;
          color: #FFFFFF;
          opacity: 1;
          height: 46px;
        }

        .cancel {
          border: none;
          margin: 8px 0;
          background-color: #FFFFFF;
          font-size: 14px;
          font-weight: 600;
          font-family: var(--regular-font);
          line-height: 21px;
          color: #FF1659;
          opacity: 1;
          height: 46px;
        }
      }
    }

  }

}
