.pluginator-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.pluginator-popup-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.pluginator-popup-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.pluginator-popup-header :first-child {
    font-size: 1.2em;
    font-weight: bolder;
}

.pluginator-popup-content {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 32px;
    padding-top: 0;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: var(--bolt-universal-radius);
    z-index: 10001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pluginator-popup-content h3 {
    font-weight: bold;
}

.pluginator-popup-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}

.pluginator-popup-close:hover,
.pluginator-popup-close:focus {
    color: black;
    text-decoration: none;
}

#price-history-content-container ul.price-history-list {
    list-style-type: none;
    padding: 0 !important;
    margin: 0 !important;
    padding-bottom: 10px !important;
}

#price-history-content-container ul.price-history-list li {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

#price-history-content-container ul.price-history-list .--li-date {
    font-weight: 700!important;
}

#price-history-content-container ul.price-history-list li:first-child {
    font-weight: bold;
}

#price-history-content-container ul.price-history-list li:last-child {
    border-bottom: none;
}

#price-history-content-container p {
    padding: 10px;
}

.--li-prices {
    display: flex;
    flex-direction: column;
}

.--li-prices * {
    padding: 0!important;
    margin: 0!important;
    line-height: 1.1em;
}

.--li-prices :last-child {
    font-size: .75em;
    color: #999;
}
