#salbos-booking-row {
    display: block;
    width: 100%;
    max-width: 75rem; /* 1200px */
    margin: 0.9375rem auto; /* 15px */
    padding: 0 0.9375rem; /* 15px */
    font-size: 1rem !important;
}

#salbos-booking-row .salbos-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    background-color: var(--salbos-bg-color);
    border-radius: var(--salbos-top-left) var(--salbos-top-right) var(--salbos-bottom-left) var(--salbos-bottom-right);
    padding: 0.625rem; /* 10px */
    box-shadow: 0.1875rem 0.25rem 1.375rem 0.1875rem rgba(104, 104, 104, var(--salbos-box-shadow)); /* 3px 4px 22px 3px */
}

#salbos-booking-row .salbos-block {
    padding: 0.3125rem; /* 5px */
}

#salbos-booking-row .salbos-btn-block {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3125rem; /* 5px */
}

#salbos-booking-row .salbos-block {
    flex: 1 0 0;
}

#salbos-booking-row .salbos-block label {
    color: var(--salbos-font-color);
    text-transform: uppercase;
}

#salbos-booking-row input, #salbos-booking-row select {
    display: block;
    height: 2.5rem; /* 40px */
    width: 100%;
    min-width: auto;
    line-height: 2.5rem; /* 40px */
    background-color: var(--salbos-bg-color);
    border: var(--salbos-border) solid var(--salbos-border-color);
    border-radius: var(--salbos-top-left) var(--salbos-top-right) var(--salbos-bottom-left) var(--salbos-bottom-right);
    padding: 0 0.9375rem; /* 15px */
    font-size: 1rem; /* 16px */
    color: var(--salbos-border-color);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#salbos-booking-row input:focus, #salbos-booking-row select:focus {
    background-color: var(--salbos-bg-color) !important;
    border: var(--salbos-border) solid var(--salbos-link-color);
    color: var(--salbos-link-color);
}

#salbos-search-dates {
    display: inline-block;
    background-color: var(--salbos-link-color) !important;
    border: var(--salbos-border) solid var(--salbos-link-color) !important;
    text-decoration: none;
    color: var(--salbos-bg-color) !important;
    padding: 0 1.25rem; /* 20px */
    height: 2.5rem; /* 40px */
    line-height: 2.5rem; /* 40px */
    text-transform: uppercase;
    border-radius: var(--salbos-top-left) var(--salbos-top-right) var(--salbos-bottom-left) var(--salbos-bottom-right) !important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

#salbos-search-dates:hover {
    background-color: var(--salbos-bg-color) !important;
    border: var(--salbos-border) solid var(--salbos-link-color) !important;
    color: var(--salbos-link-color) !important;
}


/* tablet screen < 768px */

@media only screen and (max-width: 48rem) { /* 768px */
    #salbos-booking-row .salbos-content {
        flex-wrap: wrap;
    }

    #salbos-booking-row .salbos-block {
        flex: 1 0 50%;
    }

    #salbos-booking-row .salbos-btn-block {
        flex: 1 0 100%;
    }
}

/* tablet screen < 576px */

@media only screen and (max-width: 36rem) { /* 576px */
   #salbos-booking-row .salbos-block {
        flex: 1 0 100%;
    }

    #salbos-booking-row input, #salbos-booking-row select {
        min-width: auto;
    }
}