.marvel-element-locations-slider {
    position: relative;
    background: black;


    color: #fff;
    font-family: "MuseoSans", "Museo Sans", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25em;

    padding: 0;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}
 
.marvel-element-locations-slider *,
.marvel-element-locations-slider *::before,
.marvel-element-locations-slider *::after {
    box-sizing: border-box;
}
 
.marvel-element-locations-slider__track {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
 
.marvel-element-locations-slider__slide {
    display: none;
    flex-direction: column;
    align-items: center;

    min-height: 220px;
}
 
.marvel-element-locations-slider__slide.is-active {
    display: flex;
}
 
.marvel-element-locations-slider__overline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
 
.marvel-element-locations-slider__overline span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
 
h3.marvel-element-locations-slider__title {
    font-size: 20px;
    margin: 0 0 16px;
    color: #fff;
    font-weight: 500;
}
 
.marvel-element-locations-slider__address {
    font-size: 16px;
    font-weight: 500;
    color: #ADADAD;
    line-height: 1.4;
    margin: 0 0 14px;
}
 
a.marvel-element-locations-slider__tel {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #ADADAD;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color .2s ease;
}
 
.marvel-element-locations-slider__tel:last-of-type {
    margin-bottom: 26px;
}
 
.marvel-element-locations-slider__tel:hover,
.marvel-element-locations-slider__tel:focus {
    color: #fff;
}
 
a.marvel-element-locations-slider__directions {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #ADADAD;
    text-decoration: none;
    /* transition: color .2s ease; */
}
 
.marvel-element-locations-slider__directions:hover,
.marvel-element-locations-slider__directions:focus {
    color: #fff;
    /* text-decoration: underline; */
}
 
.marvel-element-locations-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #2D2D2D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    z-index: 2;
    padding: 0;
}
 
.marvel-element-locations-slider__arrow:hover,
.marvel-element-locations-slider__arrow:focus-visible {
    background: #2D2D2D;
}
 
.marvel-element-locations-slider__arrow--prev {
    left: 0;
}
 
.marvel-element-locations-slider__arrow--next {
    right: 0;
}
 
.marvel-element-locations-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
}
 
.marvel-element-locations-slider__dot {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    border: none;
    background: #2D2D2D;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease;
}
 
.marvel-element-locations-slider__dot:hover,
.marvel-element-locations-slider__dot:focus-visible {
    background: #2D2D2D;
}
 
.marvel-element-locations-slider__dot.is-active {
    background: #fff;
}
 
@media (max-width: 600px) {
    .marvel-element-locations-slider {
        padding: 0;
    }
 
    .marvel-element-locations-slider__arrow {
        width: 40px;
        height: 40px;
    }
 
    .marvel-element-locations-slider__arrow--prev {
        left: 0;
    }
 
    .marvel-element-locations-slider__arrow--next {
        right: 0;
    }
 
    .marvel-element-locations-slider__title {
        font-size: 20px;
    }
 
    .marvel-element-locations-slider__address,
    .marvel-element-locations-slider__tel,
    .marvel-element-locations-slider__directions {
        font-size: 16px;
    }
}