51 lines
831 B
CSS
51 lines
831 B
CSS
.container {
|
|
position: relative;
|
|
}
|
|
|
|
.bookingCodeLabel {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Spacing-x-half);
|
|
position: relative;
|
|
}
|
|
|
|
.error {
|
|
display: flex;
|
|
gap: var(--Spacing-x-half);
|
|
}
|
|
|
|
.errorIcon {
|
|
min-width: 20px;
|
|
}
|
|
|
|
.bookingCodeRemember,
|
|
.bookingCodeRememberVisible {
|
|
display: none;
|
|
gap: var(--Spacing-x1);
|
|
}
|
|
|
|
.bookingCodeRememberVisible {
|
|
display: flex;
|
|
position: absolute;
|
|
top: calc(100% + 16px);
|
|
width: 100%;
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.hideOnMobile {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.bookingCodeRememberVisible {
|
|
padding: var(--Spacing-x2);
|
|
border-radius: var(--Spacing-x-one-and-half);
|
|
width: 320px;
|
|
background: white;
|
|
top: calc(100% + 24px);
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
}
|