
.page {
    width: 100%-1rem;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page_title {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    text-align: center;
    font-size: 3rem;
}

.page_content {
    width: 100%;
    max-width: 1400px;
    font-size: 1rem;
}

.page_content p {
    /* font-size: 1.2rem; */
    text-align: justify;
    /* font-family: 'Arimo', sans-serif; */
}

.side_img {
    text-align: center;
    font-size: 0.8rem;
    font-style: italic;
    /* width: 50%; */
    /* float: right; */
}

.side_img > img {
    width: 400px;
}

@media screen and (max-width: 400px) {
    .side_img > img {
        width: 100%;
    }
}

.side_img_title {
    font-style: normal;
    font-weight: bold;
}

.page_content ul li {
    float: left;
    clear: left;
}

.page_content ul {
    padding-left: 1.1rem;
}

.product_link {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_button_box {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

/* .product_button {
    height: 40px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #BC1544;
    transition: .5s;
}

.product_button:hover {
    background-color: #BC1544;
    color: white;
} */

.product_img {
    width: 100%;
    margin: 1rem 0;
    border: 1px solid #BC1544;
}

/* Product table*/
.table_box {
    display: block;
    width: 100%;
    overflow-x: auto;
}
.product_table {
    width: 100%;
    border-collapse:collapse;
    border-spacing: 0;
}

.product_table th{
    border-color:black;
    border-style:solid;
    border-width:1px;
    font-size: 1rem;
    font-weight:bold;
    overflow:hidden;
    padding: 0.3rem 0.3rem;
    word-break:normal;
    background-color:#efefef;
    border-color:inherit;
    font-weight:bold;
    position:-webkit-sticky;
    position:sticky;
    text-align:center;
    top:-1px;
    vertical-align:middle;
    will-change:transform;
}

.product_table td{
    border-color:black;
    border-style:solid;
    border-width:1px;
    font-size: 1rem;
    overflow:hidden;
    padding: 0.1rem 0.1rem;
    word-break:normal;
}

.product_table .product_table-0pky {
    border-color:inherit;
    text-align:center;
    vertical-align:middle;
}

.product_table .product_table-1dtr {
    height: 3rem;
    border-color:inherit;
    text-align:center;
}

.product_table-1dtr a {
    height: 100%;
    text-decoration: none;
}

.product_table-1dtr img {
    height: 2.5rem;
    text-align: center;
    margin: 0 .2rem;
}

/* @media screen and (max-width: 767px) {
    .product_table {
        width: auto !important;
    } 
    .product_table col {
        width: auto !important;
    }
    .product_table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: auto 0px;
    }
} */

