

/* ==== INCLUDE: /css/blocks/flslider.css ==== */

.flslider-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.flslider-container > * {
    opacity: 0; /* hide other children from flashing before init */
}

.flslider-container > *:first-child {
    /* we want the first panel to be above others before the js initialization in order to to flash unstyled content */
    opacity: 1;
}


.flslider-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s linear;
}

.fl-hover .flslider-pagination,
.flslider-pagination:hover {
    opacity: 1;
}

.flslider-pagination > .pagination-item {
    position: relative;
    list-style: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #eee;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 5px;
    padding: 0;
    cursor: pointer;
}

.flslider-pagination > .pagination-item.selected {
    background: rgba(50, 50, 50, 0.7);
}

.flslider-nav-left {
    position: absolute;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24'%3e%3cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6l6 6l1.41-1.41z'/%3e%3c/svg%3e")
        no-repeat center center;
    background-color: rgba(255, 255, 255, 0.3);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4em;
    height: 6em;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s linear;
}

.flslider-nav-right {
    position: absolute;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24'%3e%3cpath d='M8.59 16.59L13.17 12L8.59 7.41L10 6l6 6l-6 6l-1.41-1.41z'/%3e%3c/svg%3e")
        no-repeat center center;
    background-color: rgba(255, 255, 255, 0.3);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4em;
    height: 6em;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s linear;
}

.fl-hover .flslider-nav-left,
.fl-hover .flslider-nav-right,
.flslider-nav-left:hover,
.flslider-nav-right:hover {
    opacity: 1;
}
