/*
Theme Name:  Uncode Child
Template:    uncode
Description: Child theme for Royal Palm - royalpalm.pl
Version:     1.0.0
*/

/* =============================================
   HOTRES SEARCH BAR
   ============================================= */

.hotresSearchBar {
    background: #fff;
    cursor: pointer;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    border-radius: 20px;
    height: 60px;
    overflow: hidden;
    min-width: 340px;
    max-width: 560px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 0;
}

.hotresSearchBar > div {
    padding: 0px 20px;
    min-width: 100px;
    transition: 0.3s;
    color: var(--text-color, #333);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    display: flex;
}

.hotresSearchBar .arrival { position: relative; }
.hotresSearchBar .arrival::after,
.hotresSearchBar .arrival::before {
    content: '';
    width: 10px;
    border: 1px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    right: -12px;
}
.hotresSearchBar .arrival::before {
    top: 18px;
    transform: rotate(-45deg);
}

.hotresSearchBar > div:last-child {
    padding: 0;
    height: 100%;
    flex-grow: 2;
}

.hotresSearchBar button {
    height: 100%;
    width: 100%;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
}

.hotresSearchBar .day {
    font-size: 32px;
    padding-right: 10px;
    font-weight: bold;
}

.hotresSearchBar .month {
    font-size: 13px;
    line-height: 14px;
}

.hotresSearchBar .month small {
    font-size: 11px;
    color: grey;
    display: block;
}

@media (max-width: 600px) {
    .hotresSearchBar {
        min-width: 100%;
        max-width: 100%;
        border-radius: 10px;
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }
}

/* =============================================
   HOTRES INLINE CONTAINER
   ============================================= */

#hotresContainer {
    width: 100%;
    min-height: 400px;
}
