@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
#tbg_booking_widget {
    font-family: 'Montserrat', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#tbg_booking_widget * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#tbg_booking_widget .booking_type_selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
    column-gap: 10px;
}

#tbg_booking_widget .booking_type_selector span {
    border: 1px solid #d0cbc9;
    padding: 5px 10px;
    border-bottom: 0px;
    text-transform: uppercase;
    background-color: #f0f0f0;
    cursor: pointer;
}

#tbg_booking_widget .booking_type_selector .selected {
    background-color: white;
}

#tbg_booking_widget .booking_container {
    background-color: #F8F7F9;
    padding: 10px 10px;
    /*   width: -webkit-fit-content; */
    /*   width: -moz-fit-content; */
    margin: 0 auto;
    border-radius: 4px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 3px;
}

@media screen and (max-width: 990px) {
    #tbg_booking_widget .booking_container {
        width: 100%;
    }
}

#tbg_booking_widget label {
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 10px;
    padding: 2px;
    color: #272727;
}

#tbg_booking_widget form {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

@media screen and (max-width: 990px) {
    #tbg_booking_widget form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

#tbg_booking_widget .input_box {
    background-color: white;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-grow: 1;
}

#tbg_booking_widget input,
#tbg_booking_widget select {
    font-size: 13px;
    border: none;
    padding: 27px 10px 5px;
    min-width: 56px;
    -webkit-appearance: none;
    background-color: transparent;
}

#tbg_booking_widget input:focus,
#tbg_booking_widget select:focus {
    outline: unset;
}

#tbg_booking_widget input[type='submit'] {
    border: none;
    background-color: #000;
    color: white;
    text-transform: capitalize;
    cursor: pointer;
    -webkit-transition: background-color 1s ease;
    transition: background-color 1s ease;
    min-height: 47px;
    padding: 2px 5px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-transform: uppercase;
}

#tbg_booking_widget input[type='submit']:hover {
    background-color: #3c3c3c;
}

#tbg_booking_widget svg {
    height: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    padding: 0 5px;
    margin-left: auto;
}

#tbg_booking_widget svg path {
    fill: #6e6e6e;
}


/*# sourceMappingURL=style.css.map */