@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:wght@100..900&display=swap');        

body {
    font-family: "Montserrat", serif;
    display: flex;
    margin: 0px;
    align-items: center;
    background: #fff;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 725px;
    margin-left: 45px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    display: flex;
    padding: 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 400px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    width: auto;
    /*width: 230px !important;*/
}

.swiper-slide:empty {
    display: none;
    border: none;
    background: transparent;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.subtitle {
    font-size: 11px;
    font-weight: 300;
    margin: 15px 10px 5px 10px;
    text-transform: uppercase;
    color: #383838;
    text-align: left;
}

.title {
    font-size: 14px;
    margin: 0px 10px;
    font-weight: 700;
    color: #383838;
    text-align: left;
    line-height: 16px;
}

.title a {
    color: #ed1f1f;
    text-decoration: none;
}

.description {
    font-size: 12px;
    color: #383838;
    margin: 15px 10px;
    line-height: normal;
}

.addons {
    font-size: 12px;
    color: #383838;
    margin: auto 10px 15px 10px;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;    
}

.addons img {
    float: left;
    max-width: 24px;
}

.descriptioncov {
    font-size: 12px;
    color: #383838;
    line-height: normal;
    margin: auto 10px 10px 10px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.swiper-button-next, 
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    position: absolute;
    z-index: 10;
}

.swiper-button-prev {
left: -35px !important;
}

.swiper-button-next {
right: -35px !important;
}

.swiper-button-next:after {
    content: '▶';
    font-size: 32px;
    color: #ed1f1f;
}

.swiper-button-prev:after {
    content: '◀';
    font-size: 32px;
    color: #ed1f1f;
}

@media (max-width: 600px) {
    .carousel-wrapper {
        max-width: 72.5%;
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-slide {
        width: 100% !important;
    }

    .swiper-button-prev {
        left: -35px;
    }

    .swiper-button-next {
        right: -35px;
    }
}