.accordion{
    box-sizing:border-box;
    display:flex;
    overflow:hidden;
    width:100%;
    border-color: #0bceaf;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    flex-direction: column;
    height: auto;
}
.accordion-select{
cursor:pointer;
margin:0;
z-index:1;
opacity:0;
margin-bottom: -65px;
margin-right: 0;

}
.accordion-title{position:relative;

}

.accordion-title,
.accordion-select  {
    background-color: #F821C5;
    color: #ffffff;
    width: 100%;
    height: 65px;
    font-size: 20px;
}



.accordion-title:not(:nth-last-child(2))::after{
border:1px solid transparent;
bottom:0;
content:'';
left:0;
position:absolute;
right:0;
top:0;
    border-bottom-color: #0bceaf;
    border-right-color: transparent;

}

.accordion-title span{bottom:0px;
box-sizing:border-box;
display:block;
position:absolute;
white-space:nowrap;
width:100%;
    padding-left: 33px;
    padding-right: 33px;
    line-height: 65px;
    transform: rotate(0deg);
	
}

.accordion-content{
box-sizing:border-box;
overflow:auto;
position:relative;
transition:margin 0.3s ease 0.1s;
    background-color: #0bceaf;
    color: #ffffff;
    height: 190px;
    margin-bottom: -190px;
    margin-right: 0;
    padding: 30px;
    width: 100%;

}
.accordion-select:checked + .accordion-title + .accordion-content{
    margin-bottom:0;
    margin-right:0;
}

.accordion-select:hover + .accordion-title,
.accordion-select:checked + .accordion-title {
    background-color: #156dfd;
} 