.confirm-modal {
  .modal-body {
    .trash-wrapper {
      background-color: #ffe3e3;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }

    > h2 {
      font-weight: 500;
      font-size: 20px;
    }

    > p {
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      margin: 0;
      color: #5d6b98;
    }

    .button-group {
      margin-top: 15px;
      width: 100%;
      display: flex;
      justify-content: space-between;

      font-weight: 600;
      font-size: 14px;
      line-height: 16px;

      > button {
        width: 50%;
        flex-grow: 1;
        padding: 15px;
        border-radius: 5px;

        &.trash {
          background-color: #E03131;
          color: #fff;

          &:hover {
            background-color: #f41616;
          }
        }
      }
    }
  }
}
