.subscription-wrapper {
    max-width: 787px;
    margin: auto;
}
.subs-box {
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #EEE);
    background: var(--white, #FFF);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    width: 100%;
    margin-top: 32px;
    margin-bottom: 48px; 
}
.subscription .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #EAEFFE;
    flex-shrink: 0;
    background-image: url('/assets/icons/card-blue.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
}
.subscription.unpaid .icon-box {
    background-color: #EB38311A;
    background-image: url('/assets/icons/card-red.svg');
}
.subscription {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #E1E1E1;
}
.subscription:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}
.subscription .box-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.subscription .box-content .left-content .name{
    font-family: Fustat;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #363D4D;
}
.subscription.unpaid .box-content .left-content .name {
    color: #EB3831;
}
.subscription .box-content .left-content .desc{
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #6F6F73;
    margin-top: 10px;
}
.subscription .box-content .right-content {
    display: flex;
    gap: 30px;
    align-items: center;
}
.subscription .box-content .right-content .price {
    font-family: Fustat;
    font-weight: 700;
    font-size: 20px;
    color: #363D4D;
    line-height: 100%;
}
.subscription .box-content .right-content .pay-btn {
    background-color: #27C96A;
    border-radius: 8px;
    color: #fff;
    height: 100%;
    padding: 0px 32px;
    font-family: Fustat;
    font-weight: 800;
    font-size: 13px;
    line-height: 48px;
    text-transform: uppercase;
    border: 2px solid #27C96A;
}
.subscription .box-content .right-content .pay-btn:hover {
    background-color: #fff;
    color: #27C96A;
}
.invoices-box .invoice {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #E1E1E1;
    margin-bottom: 20px;
}
.invoices-box .invoice:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}
.invoices-box .invoice .left-content{
    display: flex;
    gap: 40px;
    align-items: center;
}
.invoices-box .invoice .date {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #6F6F73;
}
.invoices-box .invoice .name {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #141414;
}
.invoices-actions .download-pdf{
    width: 20px;
    display: block;
    height: 20px;
    background-image: url('/assets/icons/PDF.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}
.invoices-actions .download-pdf:hover{
    background-image: url('/assets/icons/PDF-blue.svg');
}