﻿

.accordion {
    margin: 60px auto;
    width: 600px;
}

    .accordion li {
        list-style: none;
        width: 100%;
        margin: 20px;
        padding: 10px;
        border-radius: 8px;
        background: #f9f9ff;
        box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15), -6px -6px 10px -1px rgba(255,255,255,0.7);
    }

        .accordion li label {
            display:flex;
            align-items:center;
            padding:10px;
            font-size:18px;
            font-weight:500;
            cursor:pointer;
           
        }
label::before {
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
    color: burlywood;
}
input[type="radio"]{
    display:none;
}
.accordion .content{
    color:#555;
    padding: 0 10px;
    line-height:26px;
    max-height:0;
    overflow:hidden;
    transition:max-height 0.5s, padding 0.5s;

}
.accordion input[type="radio"]:checked + label + .content{
    max-height:400px;
    padding:10px 10px 20px;

}

