
.rules-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.rule-ul{
    width: 20%;
    min-width: 25rem;
    margin-left: 2rem;
    padding: 3rem 0;
    background-color: var(--bg-1);
    border: 1px solid #d7dfe3;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.rule-ul .rule-li{
    width: 100%;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 300ms;
}
.rule-ul .rule-text{
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-3);
    transition: all 300ms;
}
.rule-ul div.activeRuleBtn .rule-text,.rule-ul .rule-li:hover span{
    color: var(--text-1);
}
.rule-ul .rule-li.activeRuleBtn,.rule-ul .rule-li:hover{
    background-color: var(--bg-cg);
}
.rule-content{
    width: 100%;
    margin-top: 2rem;
}
.rule-title{
    font-size: 1.4rem;
    font-weight: 400;
}
.rule-description{
    font-size: 1.4rem;
    font-weight: 200;
}

