@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';

/* /Components/Admin/Pages/Listings/ManageListingCalendar.razor.rz.scp.css */
.calendar-container[b-8a151kgidp] {
    display: grid;
    grid-template-rows: auto 50px auto; /* Header, Day labels, Dates */
    width: 100%;
    /*border: 1px solid #ddd;*/
    /*padding: 10px;*/
}

.calendar-header[b-8a151kgidp] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.day-of-week[b-8a151kgidp],
.date-grid[b-8a151kgidp] {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Seven equal columns */
}

    .day-of-week span[b-8a151kgidp] {
        text-align: center;
        font-weight: bold;
        margin-top: 10px;
        padding: 5px;
    }

.date-grid[b-8a151kgidp] {
    grid-auto-rows: minmax(80px, auto); /* Minimum height for dates */
}

    /* Style the dates (optional) */
    .date-grid .date-container[b-8a151kgidp] {
        display: block;
        border-color: var(--bs-border-color);
        border-style: solid;
        border-width: 0.5px;
        min-height: 120px;
    }

    .date-grid .date-number[b-8a151kgidp] {
        font-size: 1.2em;
        padding: 5px;
        text-align: center;
        background-color: var(--bs-card-cap-bg);
        margin: 5px;
    }

    .date-grid .date-price-availability[b-8a151kgidp] {
        display: flex;
        flex-wrap: wrap;
        font-weight: bold;
        justify-content: space-evenly;
        align-items: end;
        padding: 5px;
        margin-top: 5px;
    }

    .date-grid .reservation[b-8a151kgidp] {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        min-height: 3em;
        width: 100%;
    }

        .date-grid .reservation .reservation-line[b-8a151kgidp] {
            position: absolute;
            top: 10px;
            left: 0;
            height: 24px;
            width: 100%;
            /*background-color: var(--bs-info);*/
        }
        .date-grid .reservation .reservation-checkin-line[b-8a151kgidp] {
            position: absolute;
            top: 10px;
            left: 0;
            height: 24px;
            width: 75%;
            margin-left: 25%;
            /*background-color: var(--bs-info);*/
            border-radius: 8px 0 0 8px;
        }
        .date-grid .reservation .reservation-checkout-line[b-8a151kgidp] {
            position: absolute;
            top: 10px;
            left: 0;
            height: 24px;
            width: 20%;
            margin-right: 80%;
            /*background-color: var(--bs-info);*/
            border-radius: 0 8px 8px 0;
        }

        .date-grid .reservation .reservation-checkin-line .content[b-8a151kgidp] {
            display: block !important;
            font-weight: 600;
            margin-left: 0.3em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.qhotel-color[b-8a151kgidp] {
    background-color: var(--bs-info) !important;
}

.booking-color[b-8a151kgidp] {
    background-color: #003b95 !important;
    color: #ffb700 !important;
}

.airbnb-color[b-8a151kgidp] {
    background-color: #ff5a5f !important;
    color: #fff !important;
}

.tripadvizor-color[b-8a151kgidp] {
    background-color: #00a680 !important;
    color: #000 !important;
}

.expediacolor[b-8a151kgidp] {
    background-color: #f6831f !important;
    color: #000 !important;
}

/* small screen */
@media (max-width: 768px) {
    .calendar-container[b-8a151kgidp] {
        grid-template-rows: auto 50px auto; /* Header, Day labels, Dates */
        width: 100%;
        /*border: 1px solid #ddd;*/
        /*padding: 10px;*/
    }

    .calendar-header[b-8a151kgidp] {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .day-of-week[b-8a151kgidp],
    .date-grid[b-8a151kgidp] {
        display: grid;
        grid-template-columns: repeat(7, 1fr); /* Seven equal columns */
    }

        .day-of-week span[b-8a151kgidp] {
            text-align: center;
            font-weight: bold;
            margin-top: 10px;
            padding: 5px;
            font-size: 0.8em;
        }

    .date-grid[b-8a151kgidp] {
        grid-auto-rows: minmax(80px, auto); /* Minimum height for dates */
    }

        /* Style the dates (optional) */
        .date-grid .date-container[b-8a151kgidp] {
            display: block;
            border-color: var(--bs-border-color);
            border-style: solid;
            border-width: 0.5px;
            min-height: 110px;
        }

        .date-grid .date-number[b-8a151kgidp] {
            font-size: 1em;
            padding: 5px;
            text-align: center;
            background-color: var(--bs-card-cap-bg);
            margin: 5px;
        }

        .date-grid .date-price-availability[b-8a151kgidp] {
            display: flex;
            flex-wrap: wrap;
            font-weight: bold;
            justify-content: space-evenly;
            padding: 5px;
            margin-top: 5px;
            font-size: 0.8em;
        }

        .date-grid .reservation[b-8a151kgidp] {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            min-height: 2.5em;
            width: 100%;
        }

            .date-grid .reservation .reservation-line[b-8a151kgidp] {
                height: 24px;
                width: 100%;
                /*background-color: var(--bs-info);*/
            }

            .date-grid .reservation .reservation-checkin-line[b-8a151kgidp] {
                height: 24px;
                width: 75%;
                margin-left: 25%;
                /*background-color: var(--bs-info);*/
            }
            .date-grid .reservation .reservation-checkout-line[b-8a151kgidp] {
                height: 24px;
                width: 20%;
                margin-right: 80%;
                /*background-color: var(--bs-info);*/
                border-radius: 0 8px 8px 0;
            }

                .date-grid .reservation .reservation-checkin-line .content[b-8a151kgidp] {
                    display: none !important;
                }
}
/* /Components/Admin/Pages/Media/MediaFileSystem.razor.rz.scp.css */
/* /Components/Admin/Shared/_CalendarDateSelector.razor.rz.scp.css */
.calendar-container[b-7vxl25qcp0] {
    display: grid;
    grid-template-rows: auto 50px auto; /* Header, Day labels, Dates */
    width: 100%;
    /*border: 1px solid #ddd;*/
    /*padding: 10px;*/
}

.calendar-header[b-7vxl25qcp0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.day-of-week[b-7vxl25qcp0],
.date-grid[b-7vxl25qcp0] {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Seven equal columns */
}

    .day-of-week span[b-7vxl25qcp0] {
        text-align: center;
        font-weight: bold;
        margin-top: 10px;
        padding: 5px;
    }

.date-grid[b-7vxl25qcp0] {
    grid-auto-rows: minmax(80px, auto); /* Minimum height for dates */
}

    /* Style the dates (optional) */
    .date-grid span[b-7vxl25qcp0] {
        display: block;
        text-align: center;
        border: 1px solid #ddd;
        padding: 5px;
    }

    .date-grid span span[b-7vxl25qcp0] {
        border: none;
    }

        /* Style specific dates (optional) */
        .date-grid span.today[b-7vxl25qcp0] {
            background-color: #ddd;
        }
/* /Components/Admin/Shared/_EditMedia.razor.rz.scp.css */
.row-height[b-ln3ic7ketj]{
    height: 80vh;
}

.scrollable[b-ln3ic7ketj]{
    overflow:hidden;
    overflow-y: scroll;
    height: 80vh;
}

/* remove scrollbar for all browsers */
[b-ln3ic7ketj]::-webkit-scrollbar {
display: none;
}
[b-ln3ic7ketj]::-moz-scrollbar {
display: none;
}
[b-ln3ic7ketj]::-o-scrollbar {
display: none;
}
[b-ln3ic7ketj]::-ms-scrollbar {
display: none;
}

/* /Components/Admin/Shared/_FolderTree.razor.rz.scp.css */
.directory-list[b-9okmr7s6z8] {
    margin-top: 0.5rem;
    margin-left: 0;
    padding-left: 1rem !important;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

    .directory-list ul[b-9okmr7s6z8] {
        margin-left: 0;
        padding-left: 1rem !important;
        margin-bottom: 0.5rem;
        /*border-left: 1px dashed #ddd;*/
    }

    .directory-list li[b-9okmr7s6z8] {
        list-style: none;
        color: #000;
        font-size: 1rem;
        font-weight: normal;
        margin-bottom: 0.5rem;
    }


        .directory-list li[b-9okmr7s6z8]:before {
            color: #000;
            font-size: 1rem;
            font-weight: normal;
            margin-right: 0.5rem;
            height: 2rem;
        }

    .folderSelected[b-9okmr7s6z8] {
        color: #000;
        font-weight: bold;
    }
/* /Components/Admin/Shared/_MediaItem.razor.rz.scp.css */
.imageCard[b-cavwmhlfc4] {
    border: 0;
    height: 200px;
    width: 100%;
    height: auto;
    display: inline-grid;
    box-shadow: 0 0 0 1px #808080;
}

/*.card-img-top {
    border-radius: 0;
    margin: 5px;
    padding: 5px;
}*/

.mediaSelected[b-cavwmhlfc4] {
    box-shadow: 0 0 0 2px var(--bs-theme);
}

.imageCard .card-img-top[b-cavwmhlfc4] {
    
    object-fit: contain;
}

.imageCard .card-body[b-cavwmhlfc4] {
    padding: 0.5rem;
    text-align:center;  
}

.imageCard .card-title[b-cavwmhlfc4] {
    padding-top: 1rem;
    font-size: 1rem;
    font-weight: bold;
}

.imageCard .card-text[b-cavwmhlfc4] {
    padding-top: 0.5rem;
    font-size: 0.8rem;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-92b88apao1] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-92b88apao1] {
    flex: 1;
}

.sidebar[b-92b88apao1] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-92b88apao1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-92b88apao1]  a, .top-row[b-92b88apao1]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-92b88apao1]  a:hover, .top-row[b-92b88apao1]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-92b88apao1]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-92b88apao1] {
        justify-content: space-between;
    }

    .top-row[b-92b88apao1]  a, .top-row[b-92b88apao1]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-92b88apao1] {
        flex-direction: row;
    }

    .sidebar[b-92b88apao1] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-92b88apao1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-92b88apao1]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-92b88apao1], article[b-92b88apao1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-92b88apao1] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-92b88apao1] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-k0maljt9sq] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-k0maljt9sq] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-k0maljt9sq] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-k0maljt9sq] {
    font-size: 1.1rem;
}

.bi[b-k0maljt9sq] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-k0maljt9sq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-k0maljt9sq] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-k0maljt9sq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-k0maljt9sq] {
        padding-bottom: 1rem;
    }

    .nav-item[b-k0maljt9sq]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-k0maljt9sq]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-k0maljt9sq]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-k0maljt9sq] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-k0maljt9sq] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-k0maljt9sq] {
        display: none;
    }

    .nav-scrollable[b-k0maljt9sq] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Booking.razor.rz.scp.css */

.topSpacer[b-wite0v15wx] {
    margin-top: 4.8rem;
    height: 450px;
}

@media (max-width: 768px) {
    .topSpacer[b-wite0v15wx] {
        margin-top: 4.8rem;
        height: 250px;
    }
}

/* /Components/Pages/Checkout.razor.rz.scp.css */

/* /Components/Pages/ReservationResult.razor.rz.scp.css */
.topSpacer[b-nqs274459y] {
    margin-top: 4.8rem;
    height: 450px;
}

@media (max-width: 768px) {
    .topSpacer[b-nqs274459y] {
        margin-top: 4.8rem;
        height: 250px;
    }
}
/* /Components/Shared/_BackToTop.razor.rz.scp.css */

.button-position-fixed[b-55cbargc0m] {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
}
/* /Components/Shared/_ListingCards.razor.rz.scp.css */
/*.photoContainer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

.photoContainer[b-3nfb07peaw] {
    width: 100%;
    margin: 0 auto;
    columns: 3;
    gap: 25px;
}

.photoBox[b-3nfb07peaw] {
    padding: 0;
    margin-bottom: 5px;
    width: 100%;
    break-inside: avoid;
    /*background-color: #4cff00;*/
    /*border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.photoBox .boxImg[b-3nfb07peaw] {
    margin: 0 !important;
    padding: 0 !important;
    min-width: 250px !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .photoContainer[b-3nfb07peaw] {
        columns: 2;
    }
}

@media (max-width: 576px) {
    .photoContainer[b-3nfb07peaw] {
        columns: 1;
    }
}
/* /Components/Shared/_ListingMedia.razor.rz.scp.css */
[b-gslez0s2yx] .gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

[b-gslez0s2yx] .gallery-thumb:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

[b-gslez0s2yx] .glightbox {
    display: block;
    overflow: hidden;
    border-radius: 6px;
}
/* /Components/Shared/_PhotoCards.razor.rz.scp.css */
/*.photoContainer {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}*/

.photoContainer[b-iz4usghpd1] {
    width: 100%;
    margin: 0 auto;
    columns: 3;
    gap: 10px;
}

.photoBox[b-iz4usghpd1] {
    padding: 0;
    margin-bottom: 5px;
    width: 100%;
    break-inside: avoid;
    /*background-color: #4cff00;*/
    /*border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
}

.photoBox .boxImg[b-iz4usghpd1] {
    margin: 0 !important;
    padding: 0 !important;
    min-width: 250px !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .photoContainer[b-iz4usghpd1] {
        columns: 2;
    }
}

@media (max-width: 576px) {
    .photoContainer[b-iz4usghpd1] {
        columns: 1;
    }
}
/* /Components/Shared/_ReconnectModal.razor.rz.scp.css */
/* This is the base style for the modal */
#components-reconnect-modal[b-fycnqm6uon] {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    padding: 1.5em;
    color: #000;
    text-align: center;
}

    #components-reconnect-modal .modal-content[b-fycnqm6uon] {
        background: #fff;
        padding: 1.5em;
        border-radius: 0.5em;
        max-width: 30em;
        width: 100%;
    }
    /* These are the styles for the different states of the modal */
    #components-reconnect-modal.components-reconnect-show[b-fycnqm6uon] {
        display: flex;
    }

    #components-reconnect-modal.components-reconnect-hide[b-fycnqm6uon] {
        display: none;
    }

    #components-reconnect-modal.components-reconnect-failed[b-fycnqm6uon] {
        background-color: rgba(0, 0, 0, 0.8);
    }

    #components-reconnect-modal.components-reconnect-rejected[b-fycnqm6uon] {
        background-color: rgba(0, 0, 0, 0.8);
    }

/* Loader */
.loader[b-fycnqm6uon] {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid hsl(171, 100%, 41%);
    width: 60px;
    height: 60px;
    margin: 50px auto;
    animation: spin-b-fycnqm6uon 2s linear infinite;
}

@keyframes spin-b-fycnqm6uon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Button */
.reconnect-button[b-fycnqm6uon] {
    background-color: hsl(171, 100%, 41%);
    border: none;
    border-radius: 0.5em;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
/* /Components/Shared/_Slider.razor.rz.scp.css */
.hero-slider[b-1os2rsbbz1] {
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.hero-slider[b-1os2rsbbz1]  .swiper-slide {
    overflow: hidden;
    position: relative;
}

.hero-slider[b-1os2rsbbz1]  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider[b-1os2rsbbz1]  .slide-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-slider[b-1os2rsbbz1]  .slide-caption h1 {
    color: #fff;
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.hero-slider[b-1os2rsbbz1]  .slide-caption p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    margin: 0;
}

.hero-slider[b-1os2rsbbz1]  .swiper-button-prev,
.hero-slider[b-1os2rsbbz1]  .swiper-button-next {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.hero-slider[b-1os2rsbbz1]  .swiper-button-prev:hover,
.hero-slider[b-1os2rsbbz1]  .swiper-button-next:hover {
    opacity: 1;
}

.hero-slider[b-1os2rsbbz1]  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.hero-slider[b-1os2rsbbz1]  .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slider[b-1os2rsbbz1] {
        height: calc(100vh - 60px);
    }

    .hero-slider[b-1os2rsbbz1]  .slide-caption h1 {
        font-size: 2.1rem;
    }

    .hero-slider[b-1os2rsbbz1]  .slide-caption p {
        font-size: 1rem;
    }

    .hero-slider[b-1os2rsbbz1]  .swiper-button-prev,
    .hero-slider[b-1os2rsbbz1]  .swiper-button-next {
        display: none;
    }
}
