
.account-subscriptions {
    padding-top: 55px;
    padding-bottom: 120px;
}
.account-subscriptions .title{
    font-weight: 700;
    font-size: 27px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 45px;
}
.account-subscriptions .card {
    background: #fff;
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 80px 40px 80px;
    border-radius: 15px;
}
/* ROWS */
.account-subscriptions .row {
    display: grid;
    grid-template-columns: 1fr 120px 120px 80px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #E9E9E9;
}
.account-subscriptions .row.header {
    padding: 0;
    padding-bottom: 10px;
    border-bottom: 0;
}
.account-subscriptions .col {
    display: flex;
    align-items: center;
}
.account-subscriptions .col.category {
    justify-content: flex-start;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}
.account-subscriptions .col.small {
    justify-content: flex-end;
}
.account-subscriptions .col:nth-child(2),
.account-subscriptions .col:nth-child(3) {
    justify-content: center;
}

/* HEADER TEXT */
.account-subscriptions .row.header .col {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1px;
    color:#9F9F9F;
    text-transform: uppercase;
}
.account-subscriptions .card .row:last-child {
    border-bottom: 0;
}
/* Switch */
.account-subscriptions .switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
}
.account-subscriptions .switch input {
    display: none;
}
.account-subscriptions .switch span {
    position: absolute;
    cursor: pointer;
    background: #ddd;
    border-radius: 18px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: .3s;
}
.account-subscriptions .switch span::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    left: 2px;
    top: 2px;
    transition: .3s;
}
.account-subscriptions .switch input:checked + span {
    background: #2C478C;
}
.account-subscriptions .switch.pink input:checked + span {
    background: #A22A7D;
}
.account-subscriptions .switch input:checked + span::before {
    transform: translateX(18px);
}
/* Delete button */
.account-subscriptions .link-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s all ease;
    cursor: pointer;
    background-image: url('../assets/icons/Trash.svg');
    background-size: 20px 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
    background-position: left center;
}
.account-subscriptions .link-btn:hover {
    color: #A22A7D;;
}
.account-subscriptions .mob-title {
    display: none;
}
@media (max-width: 768px) {
    .account-subscriptions .title {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .account-subscriptions {
        padding-top: 32px;
        padding-bottom: 80px;
    }
    .account-subscriptions .row.header {
        display: none;
    }
    .account-subscriptions .row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: space-between;
    }
    .account-subscriptions .col.category {
        justify-content: flex-start;
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        width: 100%;
    }
    .account-subscriptions .card {
        padding: 32px 24px 32px 24px;
    }
    .account-subscriptions .link-btn {
        font-size: 0;
        padding-left: 20px;
    }
    .account-subscriptions .mob-title {
        display: block;
        font-weight: 700;
        font-size: 10px;
        line-height: 20px;
        color: #9F9F9F;
        text-transform: uppercase;
        margin-right: 8px;
        letter-spacing: 1px;
    }
}