134 lines
2.2 KiB
CSS
134 lines
2.2 KiB
CSS
/* ----- Summary (selected slots + price) ----- */
|
|
rsv-reservation-summary {
|
|
display: block;
|
|
margin-bottom: var(--s-4);
|
|
}
|
|
|
|
rsv-reservation-summary {
|
|
padding: 14px 20px;
|
|
background: #f8faff;
|
|
border: 1px solid #e8f0fe;
|
|
border-radius: 1.375rem;
|
|
|
|
box-sizing: border-box;
|
|
max-width: 320px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.rsv-summary-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.rsv-summary-title {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: #2563eb;
|
|
text-transform: uppercase;
|
|
letter-spacing: .06em;
|
|
}
|
|
|
|
.rsv-summary-clear {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: #aaa;
|
|
background: none;
|
|
border: none;
|
|
font-family: inherit;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
.rsv-summary-clear:hover { color: #e53e3e; }
|
|
|
|
.rsv-summary-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.rsv-summary-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background: #fff;
|
|
border: 1.5px solid #e8f0fe;
|
|
border-radius: 10px;
|
|
padding: 8px 12px;
|
|
}
|
|
|
|
.rsv-summary-item-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1px;
|
|
}
|
|
|
|
.rsv-summary-item-date {
|
|
font-size: 11px;
|
|
color: #888;
|
|
}
|
|
|
|
.rsv-summary-item-time {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: #0f0f0f;
|
|
}
|
|
|
|
.rsv-summary-item-price {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.rsv-summary-item-remove {
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 50%;
|
|
border: none;
|
|
background: #f0f0f0;
|
|
color: #888;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
transition: all .12s;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.rsv-summary-item-remove:hover {
|
|
background: #fee2e2;
|
|
color: #e53e3e;
|
|
}
|
|
|
|
.rsv-summary-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 10px;
|
|
border-top: 1px solid #e8f0fe;
|
|
}
|
|
|
|
.rsv-summary-count {
|
|
font-size: 12px;
|
|
color: #888;
|
|
}
|
|
|
|
.rsv-summary-price {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #0f0f0f;
|
|
letter-spacing: -.02em;
|
|
}
|
|
|
|
.rsv-summary-price span {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: #888;
|
|
margin-left: 2px;
|
|
}
|