.button-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 1rem;
}
.button-cont .prev {
    border-radius: 25px;
    width: 50px;
    height: 50px;
    border: 0px;
    background: linear-gradient(277.29deg, #FDFDFD 47.45%, #F7F7F7 84.4%);
    box-shadow: 2px 2px 5px 0px #B4B4B4 !important;

}
.button-cont .next {
    border-radius: 25px;
    width: 50px;
    height: 50px;
    border: 0px;
    background: linear-gradient(277.29deg, #FDFDFD 47.45%, #F7F7F7 84.4%);
    box-shadow: 2px 2px 5px 0px #B4B4B4 !important;

}
.prev i, .next i {
    font-size: 22px;
    color: var(--main-color);
    -webkit-text-stroke: 2px;
}
.button-cont-separator {
    width: 50px;
    border-radius: 10px;
    height: 4px;
    background-color: #fff;
    box-shadow: 1px 1px 1px 0px #0000006e inset !important;
}
button-cont-separator:focus {
    box-shadow: 1px 1px 1px 0px #0000006e inset !important;
}
.wrapper {
    /*height: 320px;*/
    height: 420px;
    max-height: 50vh;
  /*  width: 100%;*/
    width: fit-content;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    border-left: dashed 2px var(--color-surface50);
    border-right: dashed 2px var(--color-surface50);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.veh-card {
    font-family: Comfortaa;
    padding: 20px;
    flex-shrink: 0;
    min-width: 150px;
    width: 380px;
    height: 380px;
    border-radius: 20px;
    background-color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    /*box-shadow: 0px 8px 8px 8px #00000008;*/
    box-shadow: 0px 10px 8px 4px #0000000D;
}
.veh-card__inner {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.veh-card h3 {
    font-size: 26px;
    font-weight: var(--font-bold);
    margin-bottom: 6px;
}
.veh-card h4 {
    font-size: 16px;
    font-weight: var(--font-thin);
}

.veh-card__inner img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.show-overflow {
  overflow: visible;
}