.gold-price-toggle {
    position: relative;
}
.mx-prices-lightbox {
    transition: opacity .3s;
    position: fixed;
    inset: 0;
    top: -200vh;
    background-color: #00000050;
    width: 100%;
    height: 100vh;
    z-index: 10;
    opacity: 0;
}
.mx-prices-lightbox-open {
    top: 0;
    backdrop-filter: blur(5px);
    opacity: 1;
}
.price18p {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
}
.toggle-arrow {
    margin-left: 5px;
    width: 16px;
    transition: transform 0.3s ease;
}
.toggle-arrow.open {
    transform: rotate(180deg);
}
.price-details {
    display: none;
    font-size: 14px;
    color: #555;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgb(0 0 0 / .1);
    position: absolute;
    top: 100%;
    left: 10px;
    width: 45ch !important;
    z-index: 11;
    flex-direction: column;
    gap: 10px;
}
.price-details p {
    margin: 0;
    display: flex;
    justify-content: space-between;
}
.price-details p strong {
    color: rgb(180 153 79);
}
@media screen and (max-width: 1024px){
.price-details {
    display: none;
    right: -50px;
	left: unset;
}
}