/*Page 16*/
.box-card {
    float: left;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    padding: 30px;
    max-width: 100%;
    margin-bottom: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.product {
    float: left;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #444;
    box-sizing: border-box;
}

.product:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.product__image {
    float: left;
    height: 220px;
    width: 220px;
    border: 1px solid #C8C8C8;
    border-radius: 3px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
}

.product__image img {
    width: 100%;
    height: 100%;
}

.product__info {
    float: left;
    width: calc(100% - 240px);
    box-sizing: border-box;
    margin-left: 20px;
}


.product__name {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.product__sub-info {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.product__sub-info__item {
    float: left;
    width: calc(100% / 4);
}

.product__sub-info__label {
    color: #888;
}

.product__sub-info__content {

}

.product__quantity {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product__quantity__label {
    float: left;
}

.product__quantity__input {
    float: left;
    margin-left: 20px;
    height: 38px;
    width: 100px;
    padding: 5px 20px;
}

.info-request__wrapper {
    float: left;
    width: 100%;
}

.info-request__item-wrapper {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.info-request__item {
    float: left;
    width: calc(100% / 4);
}

.info-request__label {
    color: #888;
}

.info-request__content {

}

.info-request__form {
    float: left;
    width: 100%;
}

.info-request__form-label {
    float: left;
    width: 100%;
}

.info-request__form-input {
    float: left;
    width: 100%;
    resize: none;
    height: 100px;
}

.text-yellow {
    color: #BE9F36;
}

.text-gray {
    color: #5D5D5D;
}

.container__title {
    float: left;
    max-width: 70%;
    font-size: 32px;
    font-weight: bold;
    padding-left: 0px;
}

.container__tool {
    float: right;
    max-width: 30%;
    display: flex;
    justify-content: flex-end;
}

.btn-no-padding {
    padding: 0;
}

.btn-text {
    border: none;
}

.btn-print {
    height: 50px;
    width: 125px;
    outline: 1px solid #C8C8C8;
}

.btn-checkout {
    width: 221px;
    background-color: #13395C;
    color: #fff;
}

.btn-continue-buy {
    width: 221px;
    outline: 1px solid #C8C8C8;
    background-color: #fff;
}

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

.container-checkout {
    width: 1272px;
}

.btn-white {
    width: 125px;
    background-color: white;
    color: #13395C;
    border: 2px solid #13395C;
    border-radius: 5px;
    height: 50px;
    font-weight: bold;
}

.btn-white:hover {
    opacity: 70%;
    background-color: #123555;
    color: #ffffff;
}

.info-detail__label{
    color: #A3A3A3;
}