/* ===============================================
   ACTUEEL PAGES - MODERN 2024 DESIGN
   Fotoshoot: Dynamic Masonry Gallery
   Nieuwbouw: Vertical Timeline Progress
   =============================================== */

/* BASE STYLES */
.tpl-fotoshoot,
.tpl-nieuwbouw {
    background: #adae9c;
    min-height: 100vh;
}

/* Full width layout with padding */
.tpl-fotoshoot .container-fluid,
.tpl-nieuwbouw .container-fluid {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Center timeline content */
.tpl-nieuwbouw .container-fluid > .timeline-container {
    margin-left: auto;
    margin-right: auto;
}

/* Standard page title styling - matches other pages */
.tpl-fotoshoot .container-fluid h1,
.tpl-nieuwbouw .container-fluid h1 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.tpl-fotoshoot .container-fluid .row,
.tpl-nieuwbouw .container-fluid .row {
    margin-bottom: 0;
}

/* FOTOSHOOT - ELEGANT MASONRY LAYOUT */

.dynamic-masonry {
    column-count: 3;
    column-gap: 24px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    break-inside: avoid;
    cursor: pointer;
}

.masonry-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.masonry-item::after {
    content: '&#10530;';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    backdrop-filter: blur(5px);
}

.masonry-item:hover::after {
    opacity: 1;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.masonry-item:hover img {
    opacity: 0.95;
}

/* NIEUWBOUW - VERTICAL TIMELINE */

.timeline-container {
    position: relative;
    padding-left: 100px;
    padding-right: 40px;
    padding-bottom: 80px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #000, rgba(0,0,0,0.2));
}

.timeline-entry {
    position: relative;
    margin-bottom: 120px;
}

.timeline-entry:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -68px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #000;
    border: 5px solid #adae9c;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
}

.timeline-date-badge {
    display: inline-block;
    background: #000;
    color: #e0dcd4;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.timeline-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    font-family: 'VAA', Arial, sans-serif;
}

.timeline-description {
    font-size: 18px;
    color: #000;
    opacity: 0.75;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Premium Gallery Layout - Modern Grid */
.timeline-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-gallery-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.premium-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: transparent;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.premium-gallery-item.premium-large {
    grid-column: span 2;
    grid-row: span 2;
}

.premium-photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.premium-photo-frame img {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.premium-gallery-item:not(.premium-more-trigger) .premium-photo-frame {
    min-height: 240px;
}

.premium-large .premium-photo-frame {
    min-height: 600px;
}

.premium-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-lightbox-image {
    cursor: zoom-in;
}

.premium-gallery-item:hover .premium-photo-frame img {
    transform: scale(1.05);
}

.premium-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    z-index: 10;
}


/* Premium "More Photos" Card - With Image Background */
.premium-more-trigger {
    grid-column: span 1;
    grid-row: span 1;
    cursor: pointer;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-more-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.premium-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.7) 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.premium-more-trigger:hover .premium-more-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.6) 100%);
}

.premium-more-trigger:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.premium-more-trigger.expanded {
    transform: translateY(-2px);
}

.premium-more-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.premium-more-icon {
    color: #fff;
    margin-bottom: 12px;
    opacity: 0.95;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-more-trigger:hover .premium-more-icon {
    opacity: 1;
    transform: scale(1.1);
}

.premium-more-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
    margin-bottom: 16px;
    font-family: 'VAA', Arial, sans-serif;
}

.premium-more-arrow {
    color: #fff;
    opacity: 0.7;
    transition: all 0.4s ease;
    display: inline-block;
}

.premium-more-trigger:hover .premium-more-arrow {
    opacity: 1;
    transform: translateY(4px);
}

.premium-more-trigger.expanded .premium-more-arrow {
    transform: rotate(180deg);
}

/* Expanded Masonry Gallery */
.timeline-gallery-expanded {
    margin-top: 40px;
    max-width: 1200px;
    animation: expandDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.expanded-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    width: 100%;
    margin-bottom: 50px;
}

.masonry-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-gallery-expanded.active .masonry-gallery-item {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.masonry-gallery-item:nth-child(1) { animation-delay: 0.05s; }
.masonry-gallery-item:nth-child(2) { animation-delay: 0.1s; }
.masonry-gallery-item:nth-child(3) { animation-delay: 0.15s; }
.masonry-gallery-item:nth-child(4) { animation-delay: 0.2s; }
.masonry-gallery-item:nth-child(5) { animation-delay: 0.25s; }
.masonry-gallery-item:nth-child(6) { animation-delay: 0.3s; }
.masonry-gallery-item:nth-child(7) { animation-delay: 0.35s; }
.masonry-gallery-item:nth-child(8) { animation-delay: 0.4s; }
.masonry-gallery-item:nth-child(9) { animation-delay: 0.45s; }
.masonry-gallery-item:nth-child(10) { animation-delay: 0.5s; }
.masonry-gallery-item:nth-child(n+11) { animation-delay: 0.55s; }

.masonry-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: transparent;
}

.masonry-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-gallery-item:hover .masonry-photo-frame img {
    transform: scale(1.05);
}

.masonry-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Nieuwbouw Lightbox */
.nieuwbouw-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 20px;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
}

.nieuwbouw-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.nieuwbouw-lightbox-content {
    width: 100%;
    max-width: 960px;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nieuwbouw-lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    will-change: opacity, transform;
}

.nieuwbouw-lightbox-content img.is-animating[data-direction="next"] {
    animation: nieuwbouwLightboxNext 0.35s ease;
}

.nieuwbouw-lightbox-content img.is-animating[data-direction="prev"] {
    animation: nieuwbouwLightboxPrev 0.35s ease;
}

.nieuwbouw-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.nieuwbouw-lightbox-prev {
    left: 18px;
}

.nieuwbouw-lightbox-next {
    right: 18px;
}

.nieuwbouw-lightbox-nav:hover {
    background: rgba(0,0,0,0.75);
    transform: translateY(-50%) scale(1.05);
}

.nieuwbouw-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nieuwbouw-lightbox-close:hover {
    background: rgba(0,0,0,0.75);
}

@keyframes nieuwbouwLightboxNext {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes nieuwbouwLightboxPrev {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Premium Collapse Button */
.premium-collapse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 18px 32px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'VAA', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.premium-collapse-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.collapse-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.premium-collapse-btn:hover .collapse-icon {
    transform: translateY(-2px);
}


@keyframes expandDown {
    from {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        margin-top: 0;
    }
    to {
        max-height: 5000px;
        opacity: 1;
        padding-top: 32px;
        margin-top: 32px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.more-count {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.more-text {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0.95;
    max-width: 200px;
    line-height: 1.3;
}

/* Placeholder for part 12 */
.timeline-gallery-placeholder {
    max-width: 1000px;
}

.timeline-photo.placeholder {
    aspect-ratio: 4/3;
    background: #f8f8f8;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.timeline-photo.placeholder:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.placeholder-content {
    text-align: center;
    color: #999;
    padding: 40px;
}

.placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 16px;
    margin: 0;
    font-style: italic;
}

.timeline-video {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.timeline-video video {
    width: 100%;
    display: block;
}

/* CTA styling uses standard socials-cta from main styles */

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .tpl-fotoshoot .container-fluid,
    .tpl-nieuwbouw .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .dynamic-masonry {
        column-count: 3;
        column-gap: 20px;
    }
    
    .masonry-item {
        margin-bottom: 20px;
    }
    
    .timeline-gallery {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .timeline-gallery-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .tpl-fotoshoot .container-fluid,
    .tpl-nieuwbouw .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .dynamic-masonry {
        column-count: 2;
        column-gap: 16px;
    }
    
    .masonry-item {
        margin-bottom: 16px;
    }
    
    .timeline-container {
        padding-left: 60px;
    }
    
    .timeline-marker {
        left: -48px;
    }
    
    .timeline-entry {
        margin-bottom: 80px;
    }
    
    .timeline-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .timeline-gallery-premium {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        min-height: auto;
    }
    
    .premium-gallery-item.premium-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .premium-large .premium-photo-frame {
        min-height: 300px;
    }
    
    .premium-gallery-item:not(.premium-more-trigger) .premium-photo-frame {
        min-height: 200px;
    }
    
    .expanded-gallery-masonry {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .timeline-gallery-premium {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .premium-gallery-item.premium-large {
        grid-column: span 1;
    }
    
    .premium-large .premium-photo-frame {
        min-height: 250px;
    }
    
    .premium-more-number {
        font-size: 42px;
    }
    
    .expanded-gallery-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .tpl-fotoshoot .container-fluid,
    .tpl-nieuwbouw .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .dynamic-masonry {
        column-count: 1;
        column-gap: 0;
    }
    
    .masonry-item {
        margin-bottom: 16px;
    }
    
    .timeline-container {
        padding-left: 0;
    }
    
    .timeline-line,
    .timeline-marker {
        display: none;
    }
}

/* ANIMATIONS */
.masonry-item {
    animation: fadeIn 0.5s ease backwards;
}

.timeline-entry {
    animation: fadeInUp 0.6s ease backwards;
}

.masonry-item:nth-child(n+1):nth-child(-n+6) { animation-delay: 0.05s; }
.masonry-item:nth-child(n+7):nth-child(-n+12) { animation-delay: 0.1s; }
.masonry-item:nth-child(n+13) { animation-delay: 0.15s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   FOTOSHOOT GRID - Card Layout for Fotoshoot Folders
   =============================================== */

.fotoshoot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.fotoshoot-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fotoshoot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.fotoshoot-cover {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.fotoshoot-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fotoshoot-card:hover .fotoshoot-cover img {
    transform: scale(1.05);
}

.fotoshoot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fotoshoot-card:hover .fotoshoot-overlay {
    opacity: 1;
}

.photo-count {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.photo-count i {
    font-size: 16px;
}


/* Responsive Fotoshoot Grid */
@media (max-width: 1200px) {
    .fotoshoot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .fotoshoot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .fotoshoot-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===============================================
   FOTOSHOOT LIGHTBOX
   =============================================== */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.86);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(2px);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-counter {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    color: #f5f2ea;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.78);
    transform: scale(1.04);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.78);
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .lightbox-modal {
        padding: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .lightbox-counter {
        bottom: -28px;
        font-size: 12px;
    }
}

