#wrapper-fred {
    width: 100%;
    height: 100%;

    min-width: 500px;
    min-height: 500px;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 12;
}

#inner-fred {
    position: absolute;
    display: none;

}

#inner-fred.horizontal {
    width: 100%;
    height: 420px;
    top: 110px;
    left: 0;
}

#inner-fred.vertical {
    width: 420px;
    height: 100%;
    margin: 0 0 0 -210px;
    top: 0;
    left: 50%;
}

#carousel-fred > div {
    width: 420px;
    height: 420px;
    float: left;
    margin-left: 50px;
    position: relative;
}

.img-div {
    border-radius: 100px;
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
}

#carousel-fred img {
    border-radius: 100px;
    width: 120px;
    height: 120px;
}

.t1 {
    left: 10px;
    top: 10px;
}

.t2 {
    left: 150px;
    top: 10px;
}

.t3 {
    left: 290px;
    top: 10px;
}

.t4 {
    left: 10px;
    top: 150px;
}

.t5 {
    left: 150px;
    top: 150px;
}

.t6 {
    left: 290px;
    top: 150px;
}

.t7 {
    left: 10px;
    top: 290px;
}

.t8 {
    left: 150px;
    top: 290px;
}

.t9 {
    left: 290px;
    top: 290px;
}

#left, #right {
    border-radius: 50px;
    border: 5px solid #ccc;
    background: #fff;
    display: block;
    width: 60px;
    height: 60px;
    margin: -35px;
    position: absolute;
    opacity: 0.5;
}

#left:hover, #right:hover {
    opacity: 1;
}

#left {
    top: 320px;
    left: 0;
}

#right {
    top: 320px;
    right: 0;
}

#left:after, #right:after {
    content: '';
    border: 5px solid transparent;
    display: block;
    width: 0;
    height: 0;
    margin: -5px;
    position: absolute;
}

#left:after {
    border-right-color: #ccc;
    border-right-width: 10px;
    margin-left: 0;
    left: 50%;
    top: 50%;
}

#right:after {
    border-left-color: #ccc;
    border-left-width: 10px;
    margin-right: 0;
    right: 50%;
    top: 50%;
}
.img-div{
    cursor: pointer;
}
.img-div .img-div-hover {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    opacity: 0;
    content: "Stuur bericht";
    border-radius: 100px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    width: 120px;
    height: 120px;
    line-height: 120px;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.img-div:hover .img-div-hover {
    opacity: 1;

}

@media only screen and (max-width: 991px) {
    .img-div {
        border-radius: 100px;
        width: 100px;
        height: 100px;
        position: absolute;
    }

    #carousel-fred img {
        border-radius: 100px;
        width: 100px;
        height: 100px;
    }

    .t1 {
        left: 60px;
        top: 10px;
    }

    .t2 {
        left: 180px;
        top: 10px;
    }

    .t3 {
        left: 250px;
        top: 10px;
        display: none !important;
    }

    .t4 {
        left: 60px;
        top: 150px;
    }

    .t5 {
        left: 180px;
        top: 150px;
    }

    .t6 {
        left: 250px;
        top: 150px;
        display: none !important;
    }

    .t7 {
        left: 60px;
        top: 290px;
    }

    .t8 {
        left: 180px;
        top: 290px;
    }

    .t9 {
        left: 250px;
        top: 290px;
        display: none !important;
    }
}