.overlay {
    font-family: "Public sans", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 90vh;
    overflow-y: scroll;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    width: 90%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 20px;
    border-radius: 5px;
}
.container::-webkit-scrollbar {
    width: 3px;
}
.container::-webkit-scrollbar-track {
    background: inherit;
}
.container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.cancel_container {
    height: 25px;
    width: 25px;
    cursor: pointer;
}

.main {
    width: 100%;
    margin: 10px 0px;
    display: flex;
    flex-direction: column;
}
.head {
}
.heading {
    /* text-align: center; */
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8rem;
}
.sub_heading {
    margin-top: 7px;
    font-size: 14px;
}

.content {
    margin: 25px 0px;
}
.p {
    font-size: 14px;
}
.content ul {
    margin: 10px 0px;
    list-style: none;
}
.content ul li {
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}
.list_img {
    width: 50px;
    margin-right: 10px;
}
/* .renew_button {
    font-family: "Public sans", sans-serif;
    width: 100%;
    background: var(--gradient);
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 10px 0px;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
} */
.renew_button {
    font-family: "Roboto";
    cursor: pointer;
    /* width: 100%; */
    padding: 8px 20px;
    background: var(--gradient);
    outline: none;
    border: none;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin: 5px auto;
    padding: 15px 30px;
}
.renew_button:active {
    transform: scale(0.98);
}
.album_prices {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.before_price {
    position: relative;
    margin-bottom: 3px;
    color: #fff;
}
.before_price::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    transform: rotate(-10deg);
    height: 3px;
    border-radius: 5px;
    width: calc(100% + 4px);
    background: #fff;
}
.after_price {
    font-size: 32px;
}
