.pc-ebc627d9-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
    display: flex;
}

.pc-ebc627d9-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.pc-ebc627d9-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.pc-ebc627d9-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pc-ebc627d9-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    transition: background-color 0.3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.pc-ebc627d9-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.pc-ebc627d9-arrow:focus,
.pc-ebc627d9-arrow:active {
    outline: none;
    background-color: rgba(0, 0, 0, 0.5); /* Returns to original state */
}

.pc-ebc627d9-arrow svg {
    fill: #fff;
    width: 24px;
    height: 24px;
}

.pc-ebc627d9-prev {
    left: 10px;
}

.pc-ebc627d9-next {
    right: 10px;
}