.g-modal {
  .g-modal-wrapper {
    position: relative;

    .close {
      font-size: 20px;
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer;
      color: #D0D8E2;
    }

    .g-modal-title {
      font-size: 20px;
      color: #303036;
      font-weight: 600;
    }

    .g-modal-body {
      padding: 30px 0;
      overflow-y: auto;
    }

    .g-modal-btns {
      margin: 0 -15px;

      .button {
        margin: 0 15px;
        padding-left: 30px;
        padding-right: 30px;
      }
    }

    .g-modal-btns.right {
      text-align: right;
    }

    .g-modal-btns.left {
      text-align: left;
    }

    .g-modal-btns.center {
      text-align: center;
    }
  }
}