.beps-fmtsel-wrap {
width: 100%;
}
.beps-fmtsel-cards {
display: flex;
gap: 12px;
flex-wrap: wrap;
} .beps-fmtsel-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
width: 178px;
height: 102px;
flex-shrink: 0;
padding: 12px 16px;
border: 1px solid #E8E8E8;
border-radius: 12px;
cursor: pointer;
transition: border-color 0.18s ease, background 0.18s ease;
background: #ffffff;
gap: 2px;
user-select: none;
box-sizing: border-box;
}
.beps-fmtsel-card:hover {
border-color: #130F32;
}
.beps-fmtsel-card.is-selected {
border: 1px solid #130F32;
background: #F8F8FA;
} .beps-fmtsel-radio {
position: absolute;
opacity: 0;
pointer-events: none;
width: 0;
height: 0;
} .beps-fmtsel-name {
display: block;
font-weight: 600;
font-size: 18px;
color: #141436;
line-height: 1.2;
} .beps-fmtsel-sub {
display: flex;
flex-direction: column;
align-items: center;
gap: 0;
}
.beps-fmtsel-dosage {
display: block;
font-size: 16px;
font-weight: 400;
color: #6b7280;
line-height: 1.4;
}
.beps-fmtsel-price-day {
display: block;
font-size: 16px;
font-weight: 400;
color: #6b7280;
line-height: 1.4;
} @media (max-width: 480px) {
.beps-fmtsel-card {
min-width: 100px;
padding: 12px 10px;
}
.beps-fmtsel-name {
font-size: 14px;
}
.beps-fmtsel-dosage,
.beps-fmtsel-price-day {
font-size: 12px;
}
}