* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    }

    .gallery .carousel-cell:not(:first-child) {
        display: none;
    }
    
    .carousel-cell {
        width: 100%; /* full width */
        margin-right: 10px;
      }
    
    .group-banners img {
    max-width: -webkit-fill-available!important;
    height: 100%;
    object-fit: contain!important;
    }
    
    .carousel-image {
    display: block;
    height: 400px;
    min-width: 200px;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
        transition: opacity 0.4s;
    }
    
    .carousel.is-fullscreen .carousel-image {
    height: auto;
    max-height: 100%;
    }
    
    /* loading */
    .main-div {
        position: relative;
    }
    
    .panel:has(.cover-loading) {
        pointer-events: none;
    }
    
    .cover-loading {
        position: absolute;
        top: 0;
        left: 0;
        height: -webkit-fill-available;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        background-color: #0000000a;
        pointer-events: none;
    }
    
    .cover-loading.transparent {
        background-color: transparent;
    }
    
    .cover-loading ~ .panel {
        pointer-events: none;
    }
    