.info-more {
  font-size: 13px;
  color: #666666;
}

.vnt-group {
      margin-bottom: 15px;
}

.vnt-group__title{
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 5px;
}
.vnt-group__list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px;
	gap: 10px 0;
}

.vnt-group__list .i-group { 
	padding: 0 5px;
	width: 25%;
}

.vnt-group__list .i-group button{
  
	border: 2px solid transparent;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  padding: 8px 5px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.vnt-group__list .i-group button::before{
	content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 15px;
    background-color: #000000;
    color: #fff;
    z-index: 1;
    border-radius: 0 0 5px 0;
    font-size: 8px;
    line-height: 14px;
    opacity: 0;
}
.vnt-group__list .i-group button.active {
	border-color: #000000;
}
.vnt-group__list .i-group button.active::before{
	opacity: 1;
}
 

.vnt-group__list .i-group button.disabled {
  background: #eee;
  color: #999;
  pointer-events: none;
}