@charset "utf-8";
/* CSS Document */

.tabs {
  /* Clearfix */
  line-height: 1.5;
  margin-bottom: 1.5em;
  padding: 0;
  text-align: center;
}
.tabs::before, .tabs::after {
  display: table;
  content: '';
  clear: both;
}
.tabs .tab {
  display: inline;
 }
.tabs .tab-item {
  order: 99; 
  width: calc(100% - 2px);
  display: none;
  padding: 15px;
  background: #fff;
  float: left;
}
.tabs .tab-item ul {
    min-height: 280px;
}
.tabs .tab-item ul li {
	font-size:1.1875em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
	text-align: left;
}
.tabs .tab-item ul li a {
    color: #414141;
	 line-height: 45px;
}
.tabs .tab-item ul li a:hover, .tabs .tab-item ul li a:focus {
    text-decoration: none;
    color:#c54f61;
}
.tabs .tab-item ul li span {
	font-size:0.7895em;
    margin-right: 15px;
    background: #c54f61;
    border-radius: 30px;
    padding: 5px 12px;
    color: #fff;
}
.tabs .tab-item .more {
    text-align: right;
	font-size:0.9375em;
    color: #517d88;
}
.tabs .tab-item .more a {
    color: #517d88;
}
.tabs .tab-button {
    order: 1;
    display: inline-block;
    transition: background ease 0.2s;
    background-color: #dcdcdc;
    font-size: 1.25em;
    color: #414141;
    padding: 10px 15px;
    font-weight: normal;
    width: 130px;
    text-align: center;
    margin-right: 5px;
    border-right: 2px #fff solid;
	border-radius: 30px;
}
.tab.active .tab-button, .tab-button:hover, .tab-button:focus {
    color: #fff;
    font-weight: bold;
    background-color: #3956df;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
}

.tabs .tab.active .tab-item {
  display: block;
  text-align: left;
}

@media (max-width: 992px) {
.tabs .tab-button {
    width: 100%;
	margin-top: 0.2rem;
}
}




