.site-header > .wrap {
    position: relative;
}

.bm-wrap {
    display: none;
    opacity: 0;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: left;
    transition: opacity 0.3s linear 0s;
}

/* Open the booking mask by default on the home page
body.home .bm-wrap {
	display: flex;
	opacity: 1;
}
*/

button.bm-close-button {
    background-color: #fbf5ee;
    padding: 15px 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    border: 0;
    margin: -20px -20px 0 auto;
}

button.bm-close-button:hover {
    background-color: #fbf5ee;
    border: 0;
}

.bm-close-text {
    text-transform: uppercase;
	font-size: 12px;
	color: #000;
}

img.bm-close-icon {
    height: 12px;
}

.bm-hidden {
    display: none;
}

.bm-options-wrap {
    background-color: #fbf5ee;
    color: #000;
    padding: 20px 20px;
}

.bm-dates {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.bm-date {
    background-color: #faeddd;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #faeddd;
    width: 120px;
}

.bm-date-box-selected {
    border: 1px solid #6EB0BE;
}

.bm-date-title {
    text-transform: uppercase;
	font-size: 14px;
}

.bm-date-day {
    font-size: 42px;
    line-height: 48px;
}

.bm-date-month {
    text-transform: uppercase;
	font-size: 14px;
}

.bm-summary {
    margin-top: 15px;
}

.bm-summary-box {
    display: flex;
    align-items: center;
    padding: 0 10px;
    background-color: #faeddd;
    line-height: 40px;
    margin-top: 5px;
    cursor: pointer;
}

.bm-guest-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

button.bm-submit-button {
    width: 100%;
    margin-top: 15px;
    padding: 0;
    background-color: #6EB0BE;
    color: #000;
    border: 0;
	border-radius: 0;
    text-transform: uppercase;
    font-size: 14px;
    height: 40px;
    cursor: pointer;
}

button.bm-submit-button:hover, 
button.bm-submit-button:focus {
    background-color: transparent;
	border-color: #6EB0BE;
}

.bm-modify-booking {
	margin-top: 10px;
	line-height: 18px;
	text-align: center;
}

.bm-modify-booking a {
	color: #000;
	text-decoration: underline;
	font-size: 16px;
	transition: color 0.3s;
}

.bm-modify-booking a:hover {
	color: #6eb0be;
}

.bm-occupancy {
    display: none;
    width: 280px;
    padding: 20px;
    background-color: #fbf5ee;
    color: #000;
}

.bm-occupancy-show {
    display: block;
}

.bm-rooms, 
.bm-occupants {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 30px;
}

.bm-rooms {
    border-bottom: 1px solid #000;
    margin-bottom: 30px;
}

.bm-occupancy-box {
    width: 50%;
}

.bm-occupancy-title {
    line-height: 20px;
}

.bm-ages .bm-occupancy-title {
    margin-bottom: 10px;
}

.bm-occupancy-num {
    width: 100%;
}

.bm-input-memo {
    margin-top: 5px;
    line-height: 12px;
    font-size: 11px;
}

.bm-ages {
    display: none;
}

#bm-base-select {
    display: none;
}

.bm-multi-fields {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bm-multi-select {
    border: 0;
    width: 48px;
    height: 48px;
    padding: 0 0 0 12px;
    cursor: pointer;
    font-size: 14px;
}

.bm-counter {
    display: flex;
    justify-content: space-between;
    color: #000;
    line-height: 30px;
    max-width: 120px;
    margin-left: auto;
}

.bm-counter-value {
    min-width: 50px;
    text-align: center;
}

button.bm-counter-button {
    width: 30px;
    height: 30px;
    padding: 0;
    background-color: #6EB0BE;
    border: 0;
	border-radius: 0;
    cursor: pointer;
    font-size: 16px;
}

button.bm-counter-button:hover, 
button.bm-counter-button:focus {
    background-color: transparent;
	border: 1px solid #6eb0be;
	color: #6eb0be;
}


/*
*
* Pikaday Theme
*
*/
.pika-single.is-bound {
    position: static;
}

.pika-single.ar-theme {
    background-color: #fbf5ee;
    color: #000;
    border: 0;
    box-shadow: none;
}

.ar-theme .pika-lendar {
    width: auto;
    margin: 20px;
}

.ar-theme .pika-label {
    background-color: #fbf5ee;
}

.ar-theme table {
    margin-bottom: 0;
}

.ar-theme tbody, 
.ar-theme td {
    border: 0;
}

.ar-theme table tbody tr:hover > td {
	background-color: transparent;
}

.ar-theme button.pika-button {
    background-color: #fbf5ee;
    color: #000;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 30px;
    transition: all 0s ease 0s;
	border: 0;
}

.ar-theme button.pika-button:hover {
    background-color: #6EB0BE;
    border-radius: 20px;
}

.ar-theme .is-disabled button.pika-button {
    background-color: #fbf5ee;
    color: #000;
}

.ar-theme .is-selected button.pika-button {
    background-color: #6EB0BE;
    box-shadow: none;
    border-radius: 20px;
    font-weight: normal;
}

.ar-theme .is-endrange button.pika-button {
    background-color: #6EB0BE;
    border-radius: 0 20px 20px 0;
}

.ar-theme .is-startrange button.pika-button {
    background-color: #6EB0BE;
    opacity: 1;
    border-radius: 20px 0 0 20px;
}

.ar-theme .is-inrange button.pika-button {
    background-color: #6EB0BE;
    border-radius: 0;
}

.ar-theme .pika-label:after {
    content:" \25be";
    color: #000;
}

.ar-theme button.pika-prev, 
.ar-theme button.pika-next {
    opacity: 1;
	background-color: transparent;
	border: 0;
}

.ar-theme .pika-table abbr {
    text-decoration: none;
    font-weight: normal;
    text-transform: uppercase;
    color: #000;
}

@media only screen and (max-width: 1024px)  {
    .bm-wrap {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        margin: 0;
        flex-direction: column;
        z-index: 9999;
    }
	
	body.home .bm-wrap {
		display: none;
		opacity: 0;
	}

    .bm-options-wrap {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .bm-date {
        flex-grow: 1;
    }

    .bm-sidepod-wrap {
        width: 100%;
        display: flex;
        position: absolute;
        top: 206px;
        bottom: 150px;
        overflow: auto;
        overscroll-behavior: contain;
    }

    .bm-calendar {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: none;
        justify-content: center;
        background-color: #fbf5ee;
    }

    .bm-checkin-show, 
    .bm-checkout-show {
        display: flex;
    }

    .bm-counter {
        line-height: 40px;
        max-width: 160px;
    }

    button.bm-counter-button {
        width: 40px;
        height: 40px;
        font-size: 18px;
		border: 0;
    }

    button.bm-counter-button:hover, 
	button.bm-counter-button:focus	{
        background-color: #6EB0BE;
		border: 0;
    }

    .bm-occupancy {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .bm-occupancy-title {
        font-size: 18px;
        line-height: 24px;
    }

    .bm-multi-fields {
        gap: 26.666px;
        padding-bottom: 40px;
    }

    .bm-multi-select {
        width: 50px;
        height: 50px;
    }

    .bm-proceed {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 20px 20px 20px;
        background-color: #fbf5ee;
        z-index: 99999;
        box-shadow: 0px -6px 20px 2px rgba(0,0,0,0.3);
    }

    .bm-summary-title {
        display: none;
    }

    button.bm-submit-button {
        height: 60px;
    }
}