*{
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wrapper{
    width: 95%;
    height: auto;
    background: #fff;
    margin: auto;
    border:1px solid grey;
    border-radius:10px;
    background:#B7C8E6;
    padding-bottom:20px;
    margin-top:15px;
    margin-bottom:10px;
}

.wrapper .title{
    padding: 30px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 1px solid #ebedec;
}

.wrapper .tabs_wrap{
    padding: 20px;
    border-bottom: 1px solid #ebedec;
}

.wrapper .tabs_wrap ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size:30px;
    width:100%;
    margin:auto;
}

.wrapper .tabs_wrap ul li{
    text-align: center;
    background: #e9ecf1;
    border-right: 1px solid #c1c4c9;
    padding: 13px 15px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width:30%;
}

.wrapper .tabs_wrap ul li:first-child{
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.wrapper .tabs_wrap ul li:last-child{
    border-right: 0px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.wrapper .tabs_wrap ul li:hover,
.wrapper .tabs_wrap ul li.active{
    background: #7fc469;
    color: #fff;
}

.wrapper .container {
    width:100%;
}

.wrapper .container .item_wrap{
    padding: 10px 20px;
    border-bottom: 1px solid #ebedec;
    cursor: pointer;
}

.wrapper .container .item_wrap:hover{
    background: #e9ecf1;
}

.wrapper .container .item{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


