main {
    /* display: flex;
    flex-direction: column; */
    padding: 3rem 1.5rem;
}

.category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 2rem; */
    background-color: #e6e9f0;
    border-radius: 3rem;
    margin-bottom: 2rem;
}
.category a {
    font-size: 1.6rem;
    color: #99a1a7;
    padding: 1.5rem 2rem;
    border-radius: 3rem;
    /* background-color: #476ff3;
    color: #fff; */
}

.top {
    margin-bottom: 2rem;
}
.blue {
    height: 13rem;
    padding: 2.5rem 2rem;
    background-color: #f2f8fe;
    border-radius: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blue .left {
    width: 75%;
}
.blue .right {
    width: 23%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blue .left p {
    font-size: 2rem;
    font-weight: 800;
    color: #567cf4;
    margin-bottom: 1rem;
}
.blue .left pre {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
}
.blue .left pre b {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}
.blue .right img {
    width: 100%;
}
.blue .right.B img {
    width: 70%;
}
.blue .right.C img {
    width: 90%;
}


.button-container{
    margin-bottom: 4rem;
}
.button-container .section {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.button-container .section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}
.button-container .section .button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.button-container .section .amount {
    height: 4rem;
    padding: 0 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 0.1rem solid #b1b1b1;
    border-radius: 1rem;
}

.button-container .section .button-wrapper button {
    width: calc(100% / 5 - 1rem);
    height: 4rem;
    border: 0.1rem solid #b1b1b1;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: #b1b1b1 ;
    text-align: center;
}
.button-container .section .button-wrapper button:active {
    border: 0;
}
.button-container .section .amount input {
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: right;
}
.button-container .section .amount span {
    font-size: 1.6rem;
    font-weight: 400;
    color: #b1b1b1;
    margin-left: 0.5rem;
}


.result,
.result .result-total {
    display: flex;
    flex-direction: column;
}
.result .result-total h3 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: #2b3a3f;
}
.result .result-total .top2 {
    border-bottom: 0.1rem solid #e3e3e3;
}
.result .result-total .top2,
.result .result-total .bottom {
    padding: 1rem 0;
}
.result .result-total .top2 p,
.result .result-total .bottom p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
}
.result .result-total span {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3863f2;
}
.result  table.result-table {
    width: 100%;
    border-collapse: collapse;
}
.result  table.result-table thead tr th {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #2b3a3f;
    padding: 1rem 0;
}
.result  table.result-table tbody tr td {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    padding: 1rem 0;
}
.result  table.result-table tbody tr td:first-child {
    font-size: 1.5rem;
    font-weight: 600;
}
.result  table.result-table tbody tr:nth-child(odd) {
    background-color: #e9ebf2;
}
.result table.result-table tbody tr:nth-child(12n) td {
    border-bottom: 0.1rem solid #2b3a3f;
}
.result  table.result-table thead tr th:first-child {
    padding: 0.5rem;
}




#resultBtn {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.8rem;
    width: 100%;
    color: #fff;
    text-align: center;
    border-radius: 1rem;
    background-color: #3c5995;
}