@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


#video-container {
    padding: 40px 0;
}

.lodge_highlights .highlights_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.no-videos-found {
    color: #43423C;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
}

@media (min-width: 1025px) {
    .lodge_highlights .highlights_header {
        flex-direction: row;
    }
}

.lodge_highlights .highlights_header h2 {
    color: #43423C;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
}

.lodge_highlights .highlights_header h2 strong {
    font-weight: 800;
}

.lodge_highlights .highlights_header form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
}

.lodge_highlights .highlights_header form label {
    color: #43423C;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1.96px;
    text-transform: uppercase;
}

.lodge_highlights .highlights_header form input {
    border: none;
    border-bottom: 1px solid rgba(190, 179, 167, 0.80);
    color: rgba(190, 179, 167, 0.80);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    background-color: rgba(255, 0, 0, 0);
    outline: none;
}

.lodge_highlights .highlights_header form svg {
    position: absolute;
    right: 4px;
    top: 10px;
}

.lodge_highlights .highlights_header form .search_ref {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border-radius: 8px;
    width: 200px;
    box-shadow: 10px 10px 10px #8080802e;
    padding: 25px;
    box-sizing: border-box;
}

.lodge_highlights .highlights_header form .search_ref ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lodge_highlights .highlights_header form .search_ref ul li {
    list-style-type: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #43423c;
    cursor: pointer;
    transition: 0.3s;
}

.lodge_highlights .highlights_header form .search_ref ul li:hover {
    color: var(--orange); /* Still need to define your orange color value */
}

.lodge_highlights .lodge_highlights_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 40px;
    margin-top: 60px;
}

.lodge_highlights .lodge_highlights_inner .no-results h3 {
    font-family: 'Montserrat', sans-serif;
}

.lodge_highlights .lodge_highlights_inner .no-results p {
    font-family: 'Montserrat', sans-serif;
}

.lodge_highlights .lodge_highlights_inner .video_block {
    flex: 0 0 calc((100% - 1 * 10px) / 2);
    cursor: pointer;
}

@media (min-width: 1025px) {
    .lodge_highlights .lodge_highlights_inner .video_block {
        flex: 0 0 calc((100% - 2 * 10px) / 3);
    }
}

.lodge_highlights .lodge_highlights_inner .video_block:hover img {
    transform: scale(1.1);
}

.lodge_highlights .lodge_highlights_inner .video_block .img_wrapper {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: -1;
}

.lodge_highlights .lodge_highlights_inner .video_block img {
    width: 100%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
    background: grey;
    aspect-ratio: 16 / 9;
    transition: 0.3s;
}

.lodge_highlights .lodge_highlights_inner .video_block .date {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.301px;
    font-style: normal;
    font-weight: 600;
    line-height: 11.075px;
    letter-spacing: 0.323px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    margin-top: 12px;
    gap: 4px;
    align-items: center;
}

.lodge_highlights .lodge_highlights_inner .video_block h3 {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.301px;
    font-style: normal;
    font-weight: 500;
    line-height: 11.075px;
    letter-spacing: 0.323px;
    text-transform: capitalize;
    margin-top: 8px;
}

.load-more {
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    text-decoration: underline;
    margin: 0 auto;
    cursor: pointer;
    color: #666;
}

.video_popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
}

.video_popup .popup_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.video_popup .popup_content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_popup .popup_content iframe{
    aspect-ratio: 16/9;
    min-width:70%;
}

.video_popup .close_popup {
    color: #FFA500;
    cursor: pointer;
    font-size: 60px;
    position: absolute;
    right: 40px;
    top: 40px;
    z-index: 99999999;
}

.video_popup .close_popup:hover {
    opacity: 0.8;
}

.highlights_header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

@media (min-width: 1025px) {
    .highlights_header {
        flex-direction: row;
    }
}

.highlights_header h2 {
    color: #43423C;
    font-family: 'Gill Sans', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 100%;
    text-transform: capitalize;
}

.highlights_header h2 strong {
    font-weight: 800;
}

.highlights_header form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
}

.highlights_header form label {
    color: #43423C;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1.96px;
    text-transform: uppercase;
}

.highlights_header form input {
    border: none;
    border-bottom: 1px solid rgba(190, 179, 167, 0.80);
    color: rgba(190, 179, 167, 0.80);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    background-color: transparent;
    outline: none;
}

.highlights_header form svg {
    position: absolute;
    right: 4px;
    top: 10px;
}

.highlights_header form .search_ref {
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border-radius: 8px;
    width: 200px;
    box-shadow: 10px 10px 10px rgba(128, 128, 128, 0.18);
    padding: 25px;
    box-sizing: border-box;
}

.highlights_header form .search_ref ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlights_header form .search_ref ul li {
    list-style-type: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #43423c;
    cursor: pointer;
    transition: 0.3s;
}

.highlights_header form .search_ref ul li:hover {
    color: #FFA500;
}

.live_cameras {
    margin-bottom: 100px;
}

.live_cameras .live_cameras_inner {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

@media (min-width: 768px) {
    .live_cameras .live_cameras_inner {
        gap: 14px;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.live_cameras .live_cameras_inner.one_listing .live_cam_block {
    flex: 1 !important;
    max-width: 75%;
    margin: 0 auto;
}

.live_cameras .live_cameras_inner.one_listing .live_cam_block .image {
    aspect-ratio: 16 / 9;
}

.live_cameras .live_cameras_inner .live_cam_block {
    width: 100%;
    flex: 0 0 calc((100% - 3* 14px) / 2);
}

.live_cameras .live_cameras_inner .live_cam_block .title {
    color: #BF7251;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1.96px;
    text-transform: uppercase;
}

.live_cameras .live_cameras_inner .live_cam_block .image {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    background-size: cover;
    background-position: 50%;
    margin-top: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    cursor: pointer;
}

.live_cameras .live_cameras_inner .live_cam_block .image svg {
    transition: 0.3s;
    pointer-events: none;
}

.live_cameras .live_cameras_inner .live_cam_block .image:hover svg {
    transform: scale(1.05);
}

.live_cameras .live_cameras_inner .live_cam_block .coords {
    margin-top: 4px;
    color: #B6B4A8;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.live_cameras .live_cameras_inner .live_cam_block .coords strong {
    font-weight: 700;
}