/* style.css */

.price-history__link {
    font-family: 'Raleway', sans-serif;
    font-size: 1.6rem;
    color: #3d434a;
    line-height: 2.4rem;
    text-decoration: none !important;
    border-bottom: 1px solid currentColor;
    transition: color .25s ease, border-color .25s ease;
}

.price-history__link:hover {
    color: #615023;
    border-color: transparent;
}

.price-history {
    width: 100%;
    max-width: 560px;
    padding: 34px 36px;
    background: #ffffff;
    color: #2f2f2f;
    font-family: inherit;
}

.price-history h3 {
    margin: 0 0 22px;v
    line-height: 1.25;
    font-weight: 600;
    color: #2f2f2f;
}

.price-history__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
}

.price-history__table thead {
    background: #615023;
}

.price-history__table th {
    padding: 13px 16px;
    color: #ffffff;
    font-weight: 600;
    text-align: left;
    border-bottom: none;
}

.price-history__table td {
    padding: 13px 16px;
    color: #333333;
    border-bottom: 1px solid #e8e8e8;
}

.price-history__table tbody tr:last-child td {
    border-bottom: none;
}

.price-history__table tbody tr:hover {
    background: #fafbf7;
}

.price-history__table td:last-child,
.price-history__table th:last-child {
    text-align: right;
    white-space: nowrap;
}

.fancybox__content.price-history {
    border-radius: 0;
}