
.product-table {
    box-sizing: border-box;
    display: table;
    margin: 5px 0px 20px 0px;
    border: 1px solid lightgray;
    background: white;
    width: 100%;
}

.product-table > thead {
    background: #F0F0F0;
}

.product-table > thead th {
    text-align: center;
    font-family: Noto Sans HK;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    color: #666666;
    padding: 10px;
    vertical-align: middle;
}

.product-table > tbody tr {
    border-bottom: 1px solid lightgrey;
}

.product-table > tbody tr td {
    font-family: Noto Sans HK;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 2px;
    text-align: center;
    padding: 10px;
    color: #666666;
}

.product-table > tbody > tr > td > * {
    font-size: inherit;
    color: inherit;
}

.product-table > tbody > tr > td.title {
    font-family: Noto Sans HK;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: left;
    background: #F0F0F0;
}

.product-table > tbody > tr > td > h1 {
    font-family: Noto Sans HK;
    font-size: 24px;
    font-weight: 900;
    line-height: 32px;
    padding: 0px;
    letter-spacing: 2px;
    text-align: center;
    color: black !important;
}


.product-table > tbody tr:last-child {
    border-bottom: 0px solid lightgrey;
}

.hint-message {
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    min-height: 60px;
    height: auto;
    background: #388E3C26;
    display: flex;
    margin: 10px 0px 5px 0px;
    font-family: Noto Sans HK;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 2px;
    text-align: left;
    color: #2D6F23;
    padding: 5px 10px;
}

.exclamation {
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    margin: 0px 10px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: white;
    background: #2D6F23;
    font-family: Noto Sans HK;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.collapse-container {
    box-sizing: border-box;
    display: block;
    border: 1px solid lightgray;
    height: auto;
    margin-bottom: 10px;
}

.collapse-title {
    box-sizing: border-box;
    display: block;
    position: relative;
    padding: 5px 30px 5px 10px;
    width: 100%;
    max-width: 999px;
    min-height: 53px;
    height: auto;
    background: #409F34;
    color: white;
    font-family: Noto Sans HK;
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: 0.05em;
    text-align: left;
    margin: 0px;
}

.collapse-title::after {
    box-sizing: border-box;
    display: block;
    content: '^';
    color: white;
    width: 30px;
    height: 30px;
    position: absolute;
    font-size: 30px;
    right: 5px;
    top: 20%;
    transform: scaleX(150%);
}

.collapse-title.show::after {
    right: 20px;
    transform: rotate(180deg) scaleX(150%);
}

.collapse-content {
    box-sizing: border-box;
    display: block;
    padding: 5px 15px;
}

.text-left {
    text-align: left !important;
}