.tab-group {
    
    max-width: 50em;
    margin-left: 100px;
    width: 90%;
    margin-bottom: 100px;
}

.tab {
    position: relative;
    width: 100%;
    /* border-bottom: 1px solid rgba(119, 0, 255, 0.246); */
    
   
}

.tab input {
    
    position: absolute;
    left: 0;
    top: 0;
    z-index: -999;
    margin-bottom: 10px;
}

.tab label {
    
    margin-bottom: 10px;
    background: #0c0c0c3d;
    color: #927c52fd;
    display: block;
    line-height: 2;
    border-radius: 4px;
    margin-top: 10px;
    transition: 0.2s;
    
}

.tab input:focus + label,
.tab label:hover {
   
    cursor: pointer;
    background: #131212;
    


}

.tab-content {
    background-color: #927c52;
    color: #131212;
    overflow: hidden;
    transition: 0.2s;
    font-size: 21px;
    border-left: #252525 7px solid;
    border-right: #252525 7px solid;
    max-height: 0;
    
    /* border-left: rgb(31, 0, 102) solid 4px;
    border-right: rgb(25, 1, 93) solid 4px; */
}

.accordion-label {
    position: relative;
    
}

.accordion-label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 12px;
    height: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23927c52fd;" /></svg>');
    background-size: contain;
    transition: transform 0.4s;
    

}

.accordion-input {
    display: none;
}

.tab-content p {
  padding: 5px;
}

.tab input:checked ~ .tab-content {
    max-height: 200rem;
}

.tab input:checked ~ label .labels {
    
    color: #131212;
    border-radius: 50px;
    padding: 6px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #927c52fd;
   
}

.labels {
    border-radius: 5px;
    padding: 10px;
    transition: 0.2s;
    border-bottom: 1px solid #8375ff98;
}

.tab input:checked ~ .accordion-label::after {
    transform: translateY(-50%) rotate(0.5turn);
}

.accordion-closer {
    display: none;
    

}

.tab .label-closer {
    
    background-color: rgba(39, 38, 38, 0.904);
  

}




/* .tab input:checked ~ label .labels {

} */

