﻿.gallery {
    width: 100%;
    /* full width */
    height: 210px;
}

    .gallery .gallery-cell {
        height: 210px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        .gallery .gallery-cell img {
            height: 210px;
        }

/* position dots in gallery */

.flickity-page-dots {
    bottom: 12px;
}
    /* white circles */

    .flickity-page-dots .dot {
        width: 6px;
        height: 6px;
        opacity: 1;
        background: transparent;
        border: 1px solid white;
    }
        /* fill-in selected dot */

        .flickity-page-dots .dot.is-selected {
            background: white;
        }

body {
    margin: 0
}
