.attention-component {
  width: 100%;
  padding: 20px;
  max-width: 400px;
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  height: 100% !important;
}

  .attention-component * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
  }

  .attention-component .inner {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.16),0 1px 3px rgba(0,0,0,0.13);
    text-align: center;

  }

  .attention-component .inner-container {
    padding: 5px;
    background-color: #FFF;
    background: #fff;
  }

  .attention-component .head {
    padding: 10px 40px 10px 20px;
    background-color: #FFF;
    background: #fff;
  }

  .attention-component .close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer
  }

    .attention-component .close path:first-child {
      /* fill: #fff */
    }

  .attention-component .title {
    /* font-size: 16px; */
  /* color: #000;*/
    /*border-bottom: solid thin #ddd;*/
  }

  .attention-component .content {
    /* font-size: 14px; */
  color: #000;
  min-height: 200px !important;
  }

  .attention-component .input {
    width: 100%;
    border: 1px solid #f4f4f4;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px
  }

    .attention-component .input:focus {
      outline-offset: 0;
      outline: none
    }

  .attention-component .button {
    padding: 10px 20px;
    width: 50%;
    display: block;
    margin: 20px auto 0 auto;
    border: 0;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgba(215,25,32,1) !important;
    border-color: rgba(215,25,32,1) !important;
    color:#000!important;
  }

  .attention-component .buttons {
    margin-top: 20px;
    text-align: center
  }

  .attention-component .cancel, .attention-component .confirm {
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
  color: #000;
    cursor: pointer
  }

  .attention-component .cancel {
    background-color: #fff;
    margin-right: 10px;
    display: none !important;
  }

  .attention-component .confirm {
    background-color: red;
    /*margin-left: 10px*/
    width: 100% !important;
  }
