.rules__content{
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.rules__list {
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 4rem;
}
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 1.125rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: .9375rem;
    transition: 0.4s;
}
.active_tab, .accordion:hover {
    background-color: var(--blue);
    color: var(--cream);
}
.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: .3125rem;
}
.active_tab:after {
    content: "\2212";
}
.panel {
    padding: 0 1.125rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.active_tab {
    margin-bottom: 1rem;
}
.rule:not(:last-child) {
    margin-bottom: 1rem;
}
.panel > p {
    font-size: .9375rem;
    line-height: 1.4;
}
.panel > p,.panel > ul {
    margin-bottom: 1rem;
}
.panel > ul {
    padding-left: 1.1875rem;
}
.panel > ul > li {
    font-size: .9375rem;
    line-height: 1.4;
    list-style-type: disc;
}
.panel > ul > li:not(:last-child) {
    margin-bottom: 1rem;
}