﻿/*
 * Property Search Start
*/
.property-search {
    position: relative;
    z-index: 100;
    background-color: rgba(245, 245, 245, 0.9);
    box-shadow: none;
}

    .property-search .card-body {
        padding: 1rem 0.9375rem;
        border-radius: 0.3125rem;
    }

    .property-search .form-control,
    .property-search .form-control[readonly],
    .property-search .input-group-text {
        min-height: 2.8125rem;
        height: 2.8125rem;
        background-color: #FFFFFF;
        border-color: #FFFFFF !important;
    }

    .property-search .form-control {
        padding-left: 0;
        font-size: 0.8125rem;
        box-shadow: none !important;
    }

    .property-search .input-group-text {
        border-right-color: transparent;
    }

        .property-search .input-group-text + .form-control {
            border-left-color: transparent;
        }

.property-search-destination {
    position: relative;
    z-index: 100;
}

    .property-search-destination .form-control {
        cursor: pointer;
    }

.property-search-destination-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    width: 100%;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease-out all;
}

    .property-search-destination-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.property-search-destination-dropdown-item {
    cursor: pointer;
}

.property-search-destination-dropdown-info {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-search-guests {
    cursor: pointer;
    z-index: 10;
}

    .property-search-guests .list-group-item {
        border: none;
        padding: 0;
        font-size: 0.875rem;
        color: var(--tundora);
    }

        .property-search-guests .list-group-item + .list-group-item {
            margin-top: 0.5rem;
        }

    .property-search-guests .form-control {
        box-shadow: none !important;
        cursor: pointer;
    }

    .property-search-guests .btn-gray {
        color: #A8A8A8;
        background-color: #F6F6F6;
        border-color: #EEEDED;
        box-shadow: none !important;
    }

        .property-search-guests .btn-gray:hover {
            color: var(--white);
            background-color: var(--primary);
            border-color: var(--primary);
        }

    .property-search-guests .btn-sm {
        padding: 0.3125rem 0.625rem;
    }

    .property-search-guests .card-body {
        padding: 1.25rem;
    }

.property-search-guests-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
    margin-top: 0.3125rem;
    min-width: 13.3125rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 0.0625rem solid var(--gallery);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease-out all;
}

    .property-search-guests-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.property-search-btn {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    height: 3rem;
}

.property-search .form-label {
    margin-bottom: 0.375rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.property-search + .property-search {
    z-index: 10;
}

.view-layout {
    position: relative;
    z-index: 10;
}

.view-layout-inner {
    position: relative;
}

.view-layout-list {
    cursor: pointer;
    border: 0.0625rem solid var(--gallery);
    border-radius: 0.3125rem;
}

.view-layout-item {
    display: none;
    align-items: center;
    min-width: 10.25rem;
    padding: 0.875rem 1.75rem 0.875rem 1.125rem;
    background-color: #FAFAFA;
    color: #000;
    transition: 0.3s ease-out all;
}

    .view-layout-item svg {
        margin-right: 0.6875rem;
        width: 1.25rem;
        height: 1.25rem;
        color: #B1B0B0;
        transition: 0.3s ease-out all;
    }

    .view-layout-item.active {
        display: flex;
    }

.view-layout-arrow {
    position: absolute;
    right: 0.9375rem;
    color: var(--tundora);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.view-layout .view-layout-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 0.3s ease-out all;
}

    .view-layout .view-layout-dropdown.active {
        z-index: 1;
        visibility: visible;
        opacity: 1;
    }

    .view-layout .view-layout-dropdown .view-layout-item {
        display: flex;
        cursor: pointer;
    }

        .view-layout .view-layout-dropdown .view-layout-item:hover {
            color: var(--white);
            background-color: var(--primary);
        }

            .view-layout .view-layout-dropdown .view-layout-item:hover svg {
                color: var(--white);
            }

/*
 * Property Search End
*/
