.c8-price{
    font-family: var(--main-family);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 137%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin-top: 2.9rem;
    margin-bottom: 5rem;
}
.price-wrap{
    border: 2px solid #FF258D;
    border-radius: 1rem;
    width: 37rem;
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
}
.price-items{
    display:flex ;
    align-items: center;
    justify-content: space-between;
}
.price-items p{
    font-family: var(--main-family);
font-weight: 400;
font-size: 2.5rem;
line-height: 120%;
color: #000;
}
.price-item{
    display: flex;
    gap: 1rem;
    align-items: center;
}
.price-item p{
    font-family: var(--main-family);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 125%;
    color: #000;
}

.price-popup{
    position: fixed;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: calc(100vw - 2rem);
    box-sizing: border-box;
    background-color: #fff;
    padding: 1rem 30px 0.5rem;
    max-width: 440px;
    border:2px solid #FF258D;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    overflow-x: scroll;
}
.price-popup__close{
    position: relative;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    margin-left: auto;
}
.price-popup__close span{
    width: 15px;
    height: 2px;
    display: block;
    position: relative;
}
.price-popup__close span::after,
.price-popup__close span::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: #FF258D;
    border-radius: 50px;
    position: absolute;
}
.price-popup__close span::after{
    transform: rotate(45deg);
}
.price-popup__close span::before{
    transform: rotate(-45deg);
}
.price-popup .price-popup__item:nth-child(2){
    padding-top: 4rem;
}
.price-popup__item{
    display: flex;
    flex-direction: column;
    padding-bottom: 0.4em;
    border-bottom: 2px solid #FF258D;
}
.price-popup.closed{
    opacity: 0;
    z-index: -100; 
    transition: all 0.5s linear;
}
.price-popup.open{
    z-index: 100; 
    opacity: 1;
    transition: all 0.5s linear;
}
.price-popup h3{
    font-size: 2rem;
    padding-bottom: 1em;
}
.price-popup p{
    font-size: 16px;
    padding-bottom: 1em;
}
.price-popup p,
.price-popup h3,
.price-popup li{
    color: #000;
}

