@import url(./general.css);
.container-circular-carousel {
    position: relative;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
}

.container-circular-carousel .img-central {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%; */
    width: 90%;
}

.wrapper {
    position: relative;
}

.item {
    width: 100px;
    height: 100px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    position: relative;
}
.item img{
    width: 150px;
    transition: all 0.15s ease-in-out;
}
.item img:hover{
    transform: scale(1.6);
}


.item.active img {
    transform: scale(1.6);
    /*transform: scale(3);*/
}

svg {
    height: 300px;
    overflow: visible;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.st0 {
    fill: none;
    stroke: transparent;
    stroke-width: 2;
    stroke-miterlimit: 1;
}

.start {
    position: absolute;
    top: 50%;
    right: -30px;
}

.content-item__cc{
    min-height: 199px;
}

.borde1{
    outline: 1px black solid;
}