﻿body {
    background: var(--secondary);
}

.bill-container {
    width: 700px;
}

.bill-search-icon {
    right: 5px;
    top: 5px;
    border-radius: 5px;
    background: var(--medium-blue);
    fill: white;
    height: 35px;
    width: 35px;
    font-size: 20px;
    padding: 5px;
    box-sizing: border-box;
    opacity: .8;
    transition: .3s;
}

.bill-search-input:hover ~ .bill-search-icon {
    opacity: 1;
}

.bill-time-line-item:last-of-type {
    margin-bottom: 0 !important;
}

.bill-product-item .product-image {
    border: 1px solid lightgray;
    border-radius: 5px;
    object-fit: contain;
    background: white;
    padding: 5px;
}

.bill-product-item .product-name {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
}

.bill-product-item .product-price {
    font-size: 16px;
    font-weight: bold;
    color: var(--medium-blue);
}

.bill-info-table tr td,
.bill-info-table tr th {
    border: none;
    vertical-align: top;
    text-align: start;
}

.bill-info-table thead tr th {
    font-size: 16px;
    font-weight: bold;
}

.bill-info-table .bill-info-title {
    font-size: 13px;
    color: var(--dark-gray);
}

.bill-info-table .bill-info-content {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 15px;
}

.bill-policy-link {
    text-decoration: underline;
    transition: .3s;
}

    .bill-policy-link:hover {
        color: var(--medium-blue);
    }

.bill-search-result-container .search-loading img {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.box-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.bill-info-title {
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.support-box,
.payment-box {
    width: 40%;
    padding-right: 20px;
    box-sizing: border-box;
}


