.wilanow-image-carrousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.wic-control-prev {
    position: absolute;
    left: 0px;
    top: calc(50% - 48px);
    background-image: url('/images/slider/controls/navigate_prev.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 96px;
    height: 96px;
    opacity: 0.5;
    cursor: pointer;
    z-index: 2;
}

.wic-control-next {
    position: absolute;
    right: 0px;
    top: calc(50% - 48px);
    background-image: url('/images/slider/controls/navigate_next.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 96px;
    height: 96px;
    opacity: 0.5;
    cursor: pointer;
    z-index: 2;
}

.wic-image {
    position: absolute;
    top: 0px;
    left: 1200px;
    display: block;
    max-width: 100%;
    z-index: 1;
    transition: left 1s ease;
    cursor: pointer;
}

.wic-image-active {
    left: 0px;
    transform: initial;
}

.wic-image-post-active {
    left: -1200px;    
}

.hidden-element {
    transition: initial;
    display: none;
}

.wic-image-placeholder {
    width: 100%;
}

.wic-control-dots {
    position: absolute;
    bottom: 5px;
    left: calc(50% - 150px);
    z-index: 2;
    height: 16px;
    width: 300px;
    margin: 8px 0px;
    text-align: center;
    cursor: default;
}

.wic-control-dots img {
    height: 16px;
    margin: 0px 4px;
    opacity: 0.5;
    cursor: default;
}

.wic-control-pause {
    position: absolute;
    right: 25px;
    bottom: 10px;
    background-image: url('/images/slider/controls/pause.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
    opacity: 0.5;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .wic-control-prev {
        left: -12px;
        top: calc(50% - 32px);
        width: 64px;
        height: 64px;
    }

    .wic-control-next {
        right: -12px;
        top: calc(50% - 32px);
        width: 64px;
        height: 64px;
    }

    .wic-control-dots img {
        height: 10px;
    }

    .wic-control-pause {
        right: 10px;
        bottom: 5px;
        width: 24px;
        height: 24px;
    }
}
