
.carousel-control-prev, .carousel-control-next{
    /* width: 72px;
    height: 72px; */
    width: 2.8em;
    height: 2.8em;
    position: absolute;
    top: 50%;
    margin-top: -36px;
    line-height: 72px;
    color: #fff;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: rotate(45deg) !important;
    background-color: rgba(255, 255, 255, 0.2);
    visibility: hidden;
    opacity: 0;

}
.carousel-control-prev{
    left: 50px !important;
}
.carousel-control-next{
    right: 50px !important;
}
.carousel-control-next-icon{
    transform: rotate(315deg) !important;
}
.carousel-control-prev-icon{
    transform: rotate(315deg) !important;
}
.carousel-control-prev:hover, .carousel-control-next:hover{
    background-color: #97ae76;
}
#carouselFader:hover > .carousel-control-prev, #carouselFader:hover > .carousel-control-next{
    opacity: 1;
    visibility:visible;
}
.carousel_shop_button{
    position: absolute;
    left: 50%;
    bottom: 0%;
    z-index: 1;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);

    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    /* transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;  */

    background-color: #97ae76;
    color: #fff;
    border: 2px solid #97ae76;

    opacity: 0;
    visibility: hidden;

}
.carousel_shop_button:hover{
    color: white;
    text-decoration: none;
    background-color: #7e975a;
    border-color: #7e975a;
}

.carousel_shop_button {
    animation: drop 5s ease forwards;
    animation-play-state: paused;
}

.item.active > .carousel_shop_button{
    animation-play-state: running;
}
@keyframes drop {
    10%{bottom:27%;opacity: 0.5; visibility: visible;}
    20%{bottom:25%; opacity: 1; visibility: visible;}
    90%{bottom:25%; opacity: 1; visibility: visible;}
    100%{bottom:5%}
}