.heart-exchange-template {
    min-height: 100dvh;
    margin: 0 auto;
    color: #fff;
    font-family: Montserrat, Arial, sans-serif;
    background: linear-gradient(173.84deg, #FF7628 41.94%, #CC1817 114.38%);
}

.heart-exchange-template * {
    box-sizing: border-box;
}

.heart-exchange-page {
    display: flex;
    width: 100%;
    max-width: 640px;
    min-height: 100dvh;
    flex-direction: column;
    margin: 0 auto;
}

.heart-exchange-page__container {
    width: 100%;
    max-width: 640px;
    flex: 0 0 auto;
    margin: 0 auto 24px;
    padding: 0 20px;
}

.heart-exchange-page__heart-counter {
    display: flex;
    justify-content: center;

    width: 46px;
    /*align-items: center;*/
}

.heart-exchange-page__card-container {
    display: flex;
    width: 100%;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 20px 20px 40px;
    border-radius: 12px 12px 0 0;
    background: #fff;

    align-items: center;
}

.heart-exchange-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.heart-exchange-page__skeleton {
    grid-column: 1 / -1;
    padding: 24px 0;
    color: #001830;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.heart-exchange-page__error {
    grid-column: 1 / -1;
    padding: 24px 0;
    color: #CC1817;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.heart-exchange-page__retry-button {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 24px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: #FF7628;
    cursor: pointer;
}

.heart-exchange-page__empty {
    grid-column: 1 / -1;
    padding: 24px 0;
    color: #001830;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}
