.embla {
    overflow: hidden;
}

.embla__gal {
    position: relative;
}

.embla__viewport {
    background: black;
}

.embla__container {
    display: flex;
    align-items: center;
}

.embla__slide {
    position: relative;
    flex: 0 0 100%;
}

/* hogy ne legyen alul üres sáv */
.embla__slide > * {
    display: inline-block;
    vertical-align: top;
}

/* prev/next gombok */
.embla__button {
    outline: 0;
    cursor: pointer;
    background-color: transparent;
    touch-action: manipulation;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    fill: #FFF;
    padding: 0;

    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));

}

.embla__button__svg {
    width: 100%;
    height: 100%;
}

.embla__button--prev {
    left: 10px;
}

.embla__button--next {
    right: 10px;
}

.embla__dots {
    text-align: center;
    margin: 0;
    line-height: 0;
    display: flex;
    justify-content: center;
}

.embla__dots > div {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    width: 30px;
    height: 20px;
    padding: 0;
    margin: 6px 6px 0 6px;
}

.embla__dots > div::after {
    display: block;
    content: " ";
    width: 100%;
    height: 4px;
    background: silver;
    border-radius: 2px;
}