/***
 *
 * RESPONSIVE SLIDESHOW.
 *
 */

    .responsiville-slideshow {
        position: relative;
    }



        /* THE SLIDESHOW SLIDES. */

        .responsiville-slideshow-slide {
            position: absolute;
            top: 0;
            left: 0;
        }

        .responsiville-slideshow-slide-hidden {
            display: none;
        }



        /* THE SLIDESHOW NAVIGATION. */

        .responsiville-slideshow nav {
            position: absolute;
            display: block !important;
            padding: 0;
            margin: 0;
            width: auto;
            line-height: 1;
            z-index: 1;
        }

            /* NAVIGATION TOP, BOTTOM, LEFT, RIGHT. */

            .responsiville-slideshow nav.tl {
                top: 0;
                left: 0m;
            }

            .responsiville-slideshow nav.tr {
                top: 0;
                right: 0;
            }

            .responsiville-slideshow nav.bl {
                bottom: 0;
                left: 0;
            }

            .responsiville-slideshow nav.br {
                bottom: 0;
                right: 0;
            }



            /* NAVIGATION TOP, BOTTOM, CENTER. */

            .responsiville-slideshow nav.tc,
            .responsiville-slideshow nav.bc {
                left: 0;
                width: 100%;
                text-align: center;
            }

            .responsiville-slideshow nav.tc {
                top: 2rem;
            }

            .responsiville-slideshow nav.bc {
                bottom: 2rem;
            }

                .responsiville-slideshow nav.tc ul,
                .responsiville-slideshow nav.bc ul {
                    display: inline-block;
                }

                    .responsiville-slideshow nav.tc li,
                    .responsiville-slideshow nav.bc li {
                        display: inline-block;
                    }



                        /* THE SLIDESHOW NAVIGATION ELEMENTS. */

                        .responsiville-slideshow-navigation,
                        .responsiville-slideshow-next,
                        .responsiville-slideshow-previous {
                            display: inline-block;
                            position: relative;
                            width: 2.5rem;
                            height: 2.5rem;
                            padding: 0;
                            margin: 0 0.5rem;
                            line-height: 2.5rem;
                            text-align: center;
                            text-indent: -999rem;
                            background-color: rgb(255, 255, 255);
                            border-width: 0.2rem;
                            border-color: rgb(60, 60, 60);
                            border-radius: 50%;
                        }

                        .responsiville-slideshow-navigation:hover, 
                        .responsiville-slideshow-navigation-selected {
                            background-color: rgb(60, 60, 60);
                            opacity: 1;
                        }

                        .responsiville-slideshow-next,
                        .responsiville-slideshow-previous {
                            background-color: transparent;
                            border-width: 0;
                        }

                        .responsiville-slideshow-next {
                            margin-right: 0;
                        }

                        .responsiville-slideshow-previous {
                            margin-left: 0;
                        }

                            .responsiville-slideshow-next::before,
                            .responsiville-slideshow-previous::before {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                text-indent: 0;
                                font-family: "Responsiville Icons";
                            }

                            .responsiville-slideshow-next:hover::before,
                            .responsiville-slideshow-previous:hover::before {
                                color: rgb(60, 60, 60);
                            }

                            .responsiville-slideshow-next::before {
                                content: "\E816";
                            }

                            .responsiville-slideshow-previous::before {
                                content: "\E817";
                            }

/*
 * END RESPONSIVE SLIDESHOW.
 *
 ***/