
.x-mark {
  background-color: rgba($color: #000000, $alpha: 0.45);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.x-dialog-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba($color: #000000, $alpha: 0.1);
  max-height: calc(100% - 24px);
}

.x-dialog-title {
  align-items: center;
  border-bottom: 1px solid var(--color-grey-4);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  height: 40px;
  justify-content: space-between;
  padding: 0 12px;
  .x-dialog-title-left{
    display: flex;
    align-items: center;
  }
  .x-pop-up-title {
    color: #333333;
    font-size: 14px;
    font-weight: 600;
    margin-right: 12px;
  }

  .x-pop-up-icon {
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    height: 24px;
    line-height: 24px;
    text-align: center;
    width: 24px;
  }

  .x-pop-up-icon:hover {
    color: var(--color-blue-5);
  }
}

.x-dialog-body {
  box-sizing: border-box;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 20px;
}

.x-dialog-footer {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
}
