.sideWrapper{
  padding: 0 15px;
}

.info-header-title{
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--mainGreen);
}

.info-header-category{
  height: 44px;
  display: flex;
  align-items: center;
}
.info-header-category > div{
  margin-right: 15px;
  cursor: pointer;
  border-radius: 30px;
}
.info-header-category > div > a{
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 30px; 
  background: var(--whBG);

}
.pointBtn{
  pointer-events: none;
  cursor: none;
  background-color: var(--mainGreen);
 
}
.pointBtn > a{
  color: #fff;
  background-color: var(--mainGreen) !important;
}

.centerWrapper{
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.centerWrapper > article {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.centerWrapper > article:nth-child(2) {
  margin-top: 15px;
}

@media (min-width: 1330px) {
  .side{
    min-height: 70px;
  }
  .sideWrapper{
    padding: 0;
  }
  .info-header-title{
    display: none;
  }
  .info-header-category{
    height: 100%;
  }
  .info-header-category > div{
    margin-right: 10px;
  }
  .info-header-category > div > a{
    padding: 7px 30px;
    font-size: 18px;
  }
  .centerWrapper{
    flex-direction: row;
    padding: 68px 0;
  }
  .centerWrapper > article:nth-child(2) {
    margin-left: 15px;
    margin-top: 0;
  }
}