@charset "utf-8";

.accordion {
    margin-top: 3rem;
    border: 2px solid #46c3e7;
    border-radius: 3px;
    font-size: 1rem;
}

.toggle {
    display: none;
}

.title,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.title {
    padding: 10px 0;
    display: block;
    background-color: #46c3e7;
    color: #fff;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.title::after,
.title::before {
    content: "";
    position: absolute;
    right: 1.5em;
    top: 1em;
    width: 2px;
    height: 1em;
    background-color: #fff;
    transition: all 0.3s;
}

.title::after {
    transform: rotate(90deg);
}

.content {
    max-height: 0;
    overflow: hidden;
}

.toggle:checked+.title+.content {
    max-height: 500px;
    transition: all 1.5s;
}

.toggle:checked+.title::before {
    transform: rotate(90deg) !important;
}

.content ol {
    list-style-type: none;
    margin: 0;
    overflow: hidden;
}

.content>ol {
    padding: 1em 1em 1em 2em;
}

.content ol ol {
    margin-bottom: 5px;
    padding-left: 1.1em;
}

.content li {
    padding: .3em 0 .3em 1.5em;
    font-weight: 600;
    position: relative;
}

.content li:before {
    content: "";
    position: absolute;
    top: .9em;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: .5em;
    height: .5em;
    border-top: 2px solid #46c3e7;
    border-right: 2px solid #46c3e7;
}

.content li a:hover {
    color: #46c3e7;
}

.content ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.content a {
    color: #232729;
    text-decoration: none;
}

hr {
    border: none;
    border-top: 2px dotted #aaa;
    margin: 3rem auto auto auto;
}