Files
web/components/HotelReservation/SelectRate/SelectionCard/selectionCard.module.css
2024-07-10 16:04:25 +02:00

31 lines
565 B
CSS

.card {
padding: var(--Spacing-x2);
display: flex;
flex-direction: column;
gap: var(--Spacing-x2);
background-color: #fff;
border-radius: var(--Corner-radius-Small);
border: 1px solid rgba(77, 0, 27, 0.1);
text-align: center;
}
input[type="radio"]:checked + .card {
border: 3px solid var(--Scandic-Brand-Scandic-Red);
}
.name {
display: inline-block;
}
.nameInfo {
float: right;
}
.price {
font-size: var(--typography-Body-Bold-fontSize);
font-weight: 600;
}
.membersPrice {
font-size: var(--typography-Footnote-Regular-fontSize);
}