@charset "utf-8";

.container {
    margin-top: 15px;
  }
  
  .tab-group,
  .tab-group-vertical {
     position: relative;
     display: inline-block;
     vertical-align: middle;
     zoom: 1; 
     *display: inline; 
  }
  
  .tab-group > li, 
  .tab-group-vertical > li {
      border: 1px solid #428bca;
      border-radius: 4px;
      position: relative;
      float: left;
  }
  .tab-group > li.active > a, 
  .tab-group > li.active > a:hover, 
  .tab-group > li.active > a:focus,
  .tab-group-vertical > li.active > a, 
  .tab-group-vertical > li.active > a:hover, 
  .tab-group-vertical > li.active > a:focus {
      background-color: #428bca;
      color: #fff;
  }
  .tab-group > li > a,
  .tab-group-vertical > li > a {
      border-radius: 0;
  }
  .tab-group > li > a:hover,
  .tab-group-vertical > li > a:hover {
      border-radius: 4px;
  }
  
  .tab-group li + li {
      margin-left: -1px;
  }
  
  .tab-group > li:not(:first-child):not(:last-child),
  .tab-group > li:not(:first-child):not(:last-child) > a:hover {
    border-radius: 0;
  }
  .tab-group > li:first-child,
  .tab-group > li:first-child > a:hover {
      margin-left: 0;
  }
  .tab-group > li:first-child:not(:last-child),
  .tab-group > li:first-child:not(:last-child) > a:hover {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .tab-group > li:last-child:not(:first-child),
  .tab-group > li:last-child:not(:first-child) > a:hover {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .tab-group-vertical > li {
      display: block;
      float: none;
      width: 100%;
      max-width: 100%;
      text-align:center;
  }
  .tab-group-vertical > li + li {
      margin-top: -1px;
      margin-left: 0px;
  }
  
  .tab-group-vertical > li:not(:first-child):not(:last-child),
  .tab-group-vertical > li:not(:first-child):not(:last-child) > a:hover {
    border-radius: 0;
  }
  .tab-group-vertical > li:first-child:not(:last-child),
  .tab-group-vertical > li:first-child:not(:last-child) > a:hover {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .tab-group-vertical > li:last-child:not(:first-child),
  .tab-group-vertical > li:last-child:not(:first-child) > a:hover {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
  }

  .tab-content{
      margin-top: 20px;
  }

  article{
      display:block;
  }

.acbox{
  width: auto;
  font-size:0px; 
  margin:0 10px; 
}

.acbox label{
  width: auto;
  font-size: 16px; 
  font-weight: bold;
  text-align: center;
  background: #8BC34A; 
  position: relative;
  display: block;
  padding:8px;
  border-radius: 4px; 
  cursor: pointer;
  color: #fff;
}

.acbox label:hover{
  background: #8BC34A; 
}

.acbox input{
  display: none;
}

.acbox label::before{
  content:"Properties : None";
}

.acbox input:checked ~ label::before{
  content:"Properties";
}

.acbox label:after{
  color: #fff;
  content:"▼"; 
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content:"▲"; 
}



.acbox .acbox-under{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; 
}

.acbox input:checked ~ .acbox-under{
  height: auto;
  padding: 18px; 
  border-radius: 0px;
  background: #F3F4F5; 
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #8BC34A; 
}

.acbox-under{
  font-size: 15px; 
  color: #555555; 
}

.cl_favo_span{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.cl_favo_span input[type='checkbox']{
  display: none;
}
.cl_favo_span label{
  position: relative;
  color: gray;
  cursor: pointer;
  font-size: 20px;
}
.cl_favo_span input[type='checkbox']:checked ~ label{
  color: #ffcc00;
}