/* carousel */
div.carousel {
    background-color: white;
    height: 400px !important;
    box-shadow: 0px 0px 5px 1px #0000001c;
    border-radius: 15px;
}
div.carousel .carousel-item img {
    display: block;
    max-height:100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}
div.carousel .carousel-item {
    cursor: unset;
}
div.carousel.carousel-slider {
    margin-top: 25px;
}

div.carousel.carousel-slider > div.progress {
    z-index: 1;
    margin-top: 0;
}

.button-arrow-show {
    opacity: 1 !important;
}
.button-arrow {
    position: relative;
    line-height: 400px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    background-color:#0000005c;
    padding: 0 5px;
    opacity: 0;
    transition: color .25s ease-in-out, opacity .3s ease-in-out;
}
.button-arrow:hover {
    color: rgb(228, 228, 228);
}
/* end carousel */

/* cards */
div.card {
    min-height: 342px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
div.card img {
    height: 230px;
    object-fit: contain;
    padding: 15px;
    transition: padding .4s ease-in-out;
}
div.card img:hover {
    padding: 0;
}
div.card div.card-content {
    text-align: center;
}
div.card div.card-content * {
    cursor: unset !important;
}
/* end cards */