div.tab-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
}

div.tab-button-wrapper ul {
	padding: 0;
	list-style: none;  
  display: grid;

}

div.tab-button-wrapper li {
  position: relative;
  text-align: left;
}

div.tab-button-first {
	border-radius: 3px 0 0 0;
	-webkit-border-radius: 3px 0 0 0;
	-moz-border-radius: 3px 0 0 0;
}

div.tab-button-last {
	border-radius: 0 3px 0 0;
	-webkit-border-radius: 0 3px 0 0;
	-moz-border-radius: 0 3px 0 0;
	border-right: none;
}
div.tab-button-wrapper{
  width: 25%;
}
div.tab-body-wrapper{
  width: 80%;
}
div.tab-button-wrapper li div{
	display: block;
	padding: 1em 0;
	text-decoration: none;
	color: #252525;
	/* border-bottom: 1px solid black; */
  opacity: 0.5;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  /* display: flex;
  align-items: center;
  position: relative; */
  color: #FFFFFF;
}
div.tab-button-wrapper li.active div{
  opacity: 1;
  display: inline-block;
  /* line-height: 1em; */
  text-align: left;
  padding-left: 0;
}
/* div.tab-button-wrapper li.active div::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background-color: #D11A46;
} */
div.tab-button-wrapper li.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50px;
  height: 2px;
  background-color: #D11A46;
}
a.tab-button-hidden {
	opacity: 0.5;
}

div.tab-body {
	padding: 1em;
	clear: both;
	/* background-color: #FFFFFF; */
	min-height: 85%;
	border-radius: 0 3px 3px 3px;
	-webkit-border-radius: 0 3px 3px 3px;
	-moz-border-radius: 0 3px 3px 3px;
  display: none;
}
div.tab-body.active {
  display: block;
}

div.tab-body-hidden {
	display: none;
}
div.tab-body .list-item{
  display: flex;
  align-items: center;
}
div.tab-body .list-item img{
  width: 77px;
  height: 77px;
  padding: 11.5px;
  /* margin-right: 10px; */
  background: #F2F6F9;
  object-fit: cover;
}
div.tab-body .list-item{
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
}
div.tab-body .list-item:hover {
  opacity: 0.7;
}
div.tab-body .list-item .title{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  margin-top: 0px;
  margin-bottom: 0px;
}
div.tab-body .list-item .bonus-type{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  margin-top: 10px;
}
div.tab-body .list-item .bonus-type.no{
  color: #D11A46;
}
.tab-list-item-content{padding:15px;}
@media (max-width: 780px){
  div.tab-wrapper {
    width: 100%;
    margin: auto;
    display: block;
  }
  div.tab-button-wrapper{
    width: 100%;
    padding: 0px 20px;
    margin: 0 auto;
    display: block;
    padding: 0px;
  }
  div.tab-button-wrapper ul{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  div.tab-body-wrapper{
    width: 100%;
    padding: 0px;
    margin: 0px;
  }
	div.tab-body {padding:0px;}
	.is-layout-flow.wp-block-group.alignwide.info-bonus-list-section.has-background {
    margin: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
  div.tab-button-wrapper li {
    text-align: center;
  }
  div.tab-button-wrapper li.active::after {
    width: 100%;
  }
}
div.tab-button-wrapper li div {
  cursor: pointer;
}
div.tab-button-wrapper li.active div {
  cursor: auto;
}
.tab-button-wrapper li:hover:not(.active), .wp-block-fynx-blocks-tab-menu li:hover:not(.active) {
  opacity: 0.7;
}