.ant-row {
  display: flex;
  flex-flow: row wrap;
  min-width: 0;
  font-size: 14px;
  box-sizing: border-box;
  margin-left: -12px;
  margin-right: -12px;
}

.ant-col {
  position: relative;
  max-width: 100%;
  min-height: 1px;
  padding-left: 12px;
  padding-right: 12px;
}

.ant-col-xs-12 {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
}

.ant-col-xs-24 {
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
}

.ant-flex {
  display: flex;
}

.ant-flex-align-center {
  align-items: center;
}

.ant-flex-justify-center {
  justify-content: center;
}

.ant-flex-gap-small {
  gap: 8px;
}

.ant-btn {
  outline: none;
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  touch-action: manipulation;
  color: rgba(0, 0, 0, 0.88);
}

.ant-btn {
  font-size: 14px;
  line-height: 1.5714285714285714;
  height: 32px;
  padding: 4px 15px;
  border-radius: 6px;
}

.ant-btn-primary {
  color: #fff;
  background: #1677ff;
  box-shadow: 0 2px 0 rgba(5, 145, 255, 0.1);
}

@media (max-width: 768px) {
  .ant-row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .ant-col {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) {
  
  .ant-col-25 {
    display: block;
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ant-col-md-8 {
    display: block;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
  }

  .ant-col-md-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ant-col-md-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }

}

@media (min-width: 992px) {
  .ant-col-lg-8 {
    display: block;
    flex: 0 0 33.33333333333333%;
    max-width: 33.33333333333333%;
  }

  .ant-col-lg-6 {
    display: block;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .ant-col-lg-12 {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
  }
}