﻿.main-wrapper {
    min-height: calc(100dvh - 340px);
}

@media (min-width: 1024px) {
    .main-wrapper {
        min-height: calc(100dvh - 310px);
    }
}

.poin-stock strong {
    color: #0E63D5;
}

.redeem-wrap {
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
    .redeem-wrap .redeem-list-card {
        width: 100%;
    }

        @media (min-width: 768px) {
            .redeem-wrap {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
            }
        }

        @media (min-width: 1024px) {
            .redeem-wrap {
                grid-template-columns: repeat(4, 1fr);
                gap: 12px;
            }
        }

.redeem-img-thumb {
    min-height: 160px;
}

    .redeem-img-thumb img {
        width: 100%;
        border-radius: 8px;
    }

.redeem-list-inside {
    padding: 12px;
}

.redeem-detail .price-name {
    margin-top: 8px;
    font-weight: 600;
    text-align: center;
}

.redeem-detail .price-poin {
    color: #0E63D5;
    margin: 8px auto 16px auto;
    width: fit-content;
    background: #cfdee1;
    padding: 8px 16px;
    border-radius: 24px;
}

.redeem-detail button {
    box-sizing: border-box;
    font-weight: 600;
    text-align: center;
}

.redeem-detail .btn-redeem {
    background: linear-gradient(180deg, #2F80ED 0%, #0E63D5 100%);
    cursor: pointer;
}

.no-data-available {
    text-align: center;
    font-weight: 600;
    width: 100%;
    margin: 32px 0;
}

.modal-info-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-ewallet {
    padding: 12px 16px;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 170%;
    color: #33313B;
    background-color: #FFFFFF;
    transition: border-color 0.2s ease-in-out;
}

    .input-ewallet:focus {
        outline: none;
        border-color: #2F80ED;
        box-shadow: 0 0 0 2px rgba(47, 128, 237, 0.1);
    }

@media (max-width: 768px) {
    .input-ewallet {
        padding: 14px 16px;
        font-size: 16px;
    }
}

.modal-info-content {
    position: relative;
}

.modal-info-content .close-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 4px;
    right: 4px;
    cursor: pointer;
}