67 lines
1.3 KiB
CSS
67 lines
1.3 KiB
CSS
.btn {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
outline: none;
|
|
padding: 0;
|
|
width: 100%;
|
|
text-align: left;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
padding: 20px var(--Spacing-x-one-and-half) 0;
|
|
}
|
|
|
|
.body {
|
|
color: var(--Text-Default);
|
|
}
|
|
|
|
.hideWrapper {
|
|
background-color: var(--Main-Grey-White);
|
|
display: none;
|
|
}
|
|
|
|
.container[data-datepicker-open="true"] .hideWrapper {
|
|
display: block;
|
|
}
|
|
|
|
@media screen and (max-width: 1366px) {
|
|
.container {
|
|
z-index: 10001;
|
|
height: 24px;
|
|
}
|
|
|
|
.hideWrapper {
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
right: 0;
|
|
top: 100%;
|
|
transition: top 300ms ease;
|
|
z-index: 10001;
|
|
}
|
|
|
|
.container[data-datepicker-open="true"] .hideWrapper {
|
|
border-radius: var(--Corner-radius-lg) var(--Corner-radius-lg) 0 0;
|
|
top: calc(max(var(--sitewide-alert-height), 20px));
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.hideWrapper {
|
|
border-radius: var(--Corner-radius-lg);
|
|
box-shadow: var(--popup-box-shadow);
|
|
padding: var(--Spacing-x2) var(--Spacing-x3);
|
|
position: absolute;
|
|
/**
|
|
BookingWidget padding +
|
|
border-width +
|
|
wanted space below booking widget
|
|
*/
|
|
top: calc(100% + var(--Spacing-x1) + 1px + var(--Spacing-x4));
|
|
}
|
|
}
|