.ebPins-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ebPins-container .ebPins-img {
    width: 100%;

}

.ebPins-container .ebPins {
    display: contents;
}

.ebPins-container .ebPins .ebPins-pin {
    font-size: 1.5vw;
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    text-align: center;
}

.ebPins-container .ebPins .ebPins-pin .ebPins-pin-img {
    position: relative;
    width: 5vw;
    height: 3vw;
    overflow: hidden;
    border-radius: 0.5vw;
    box-shadow: inset 0 0 0.5vw 0 rgba(0, 0, 0, 1);
}

.ebPins-container .ebPins .ebPins-pin .ebPins-pin-img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5vw;
    box-shadow: inset 0 0 0.5vw 0 rgba(0, 0, 0, 1);
}

.ebPins-container .ebPins .ebPins-pin .ebPins-pin-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.ebPins-container .ebPins .ebPins-pin:after {
    content: "";
    border: 1vw solid transparent;
    border-top:  0.75vw solid currentColor;
}