.reset {
    padding: 0;
    margin: 0;
}

.button__outer {
    width: 100%;
    display: flex;
    justify-content: center;
}

.button__inner a {
    display: inline-block;
    background: linear-gradient(180deg, #0b327d 0%, #0b327d 50%, #05216a 50%, #0b327d 100%);
    color: white;
    padding: 1em 2em;
    border-radius: 5px;
    text-decoration: none;
}

.button__inner a:visited {
    text-decoration: none;
}

.button__inner a:hover {
    background: linear-gradient(180deg, rgba(11, 50, 125, 0.5) 0%, rgba(11, 50, 125, 0.5) 50%, rgba(5, 33, 106, 0.5) 50%, rgba(11, 50, 125, 0.5) 100%);
}

.list__outer {
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.list__title {
    width: 30%;
    font-weight: bold;
}

.list__title p {
    line-height: normal;
    text-indent: 0;
    margin-bottom: 0;
}

.list__content {
    width: 65%;
    display: flex;
}

.list__content p {
    line-height: normal;
    text-indent: 0;
    margin-bottom: 0;
}
/* .text__style--bold {
    font-weight: bold;
}
.text__style--bar {
    text-decoration: underline;
} */
.text__style--small {
    font-size: small;
}
.text__style--red {
    color: #ee0000;
}
.text__style--red-bold {
    color: #ee0000;
    font-weight: bold;
}
.text__style--red-bar {
    color: #ee0000;
    text-decoration: underline #ee0000;
}
.text__box--red {
    border: solid 2px #ee0000;
    background: white;
    padding: 20px;
    margin: 0 0 30px;
}
.text__box--blue {
    border: solid 2px #05216a;
    border-radius: 15px;
    padding: 10px;
    margin: 40px 0 20px;
}
.text__box--title {
    position: relative;
    display: inline-block;
    padding: 0 10px 10px 0;
    top: -20px;
    left: -15px;
    background-color: white;
}
.text__center {
    text-align: center;
}
.text__right {
    text-align: right;
}
.text__indent {
    text-indent: 1em;
}
.text__indent--p {
    padding-left: 1em;
}
.text__indent p {
    margin: 0;
}
.text__indent--list {
    text-indent: -1em !important;
    padding-left: 1em;
}
.text__padding {
    padding: 10px 0;
}
.text__padding--h4 {
    padding: 30px 0 0 0;
}
.indent-delete{
    text-indent: 0 !important;
}
.table__box {
    width: 100%;
}
.table__box--blue {
    border: 2px solid #05216a;
    padding: 5px;
}
.table__box--title-side {
    width: 10%;
    text-align: center;
}
.table__box--outer {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}
.table__box--gray {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-radius: 10px;
    background-color: #CCC;
    width: 32%;
    margin: 2px;
}
.table__box--gray div {
    max-width: 30%;
}
.table__box--gray img {
    max-width: 50px;
}
.table__box--gray p {
    width: 70%;
    text-align: center;
    line-height: 1em;
    text-indent: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .table__box--gray {
        width: 100%;
        margin: 5px 0;
    }
}
.box--outer {
    display: flex;
    flex-direction: row;
}