:root {
    --body: #f8f8f8;

    --red: #cb7876;
    --redsoft: #fde3e3;
    --white: #ffffff;
}

body {
    background: var(--body);
}
* {
    box-sizing: border-box;
    color: black;
}

/* navbar */
nav {
    position: fixed;
    background: var(--white);
    box-shadow: 0px -2px 10px 0px rgb(183 183 183 / 30%);
    max-width: 430px;
    margin: auto;
    padding: 1rem;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
}
nav li span {
    font-size: 10px;
}

.container {
    position: relative;
    background: var(--white);
    max-width: 430px;
    margin: auto;
    min-height: 100vh;
    height: min-content;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
p {
    margin: 0;
}
p.name {
    font-size: 20px;
    font-weight: 700;
}

.point-wrapper {
    padding: 14px;
    border-radius: 10px;
    background-color: var(--redsoft);
}
.code-wrap {
    background: var(--red);
    border-radius: 10px;
}

.claims-wrapper {
    margin-bottom: 84px;
}
/* card */
.claim-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.claim-card {
    width: 48%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 10px;
    background-clip: padding-box;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    border: none;
    padding: 0px;
}
.claim-card .img-wrap {
    width: 100%;
    max-width: 320px;
    height: 170px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--body);
}
.claim-card .title,
.claim-card .point {
    font-size: 12px;
}
.claim-card .point {
    font-weight: 700;
    color: var(--red);
}
p.info-claim {
    font-size: 14px;
}

/* .loyalty-card {
    border-radius: 16px;
    background-color: var(--redsoft);
    overflow: hidden;
}
.loyalty-card .top-wrap {
    padding: 24px 16px;
    background: var(--redsoft);
}
.loyalty-card .bottom-wrap {
    padding: 16px;
    background-color: var(--red);
} */

.address-not-full {
    margin-top: 12px;
    background-color: var(--redsoft);
    padding: 8px;
    border-radius: 8px;
}
button.btn,
a.btn,
a.btn div {
    color: white;
}
