﻿
.custom-carousel-control {
    width: 30px;  
    height: 30px;     
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
    
}   



.carousel-control-prev-icon,
.carousel-control-next-icon {
    box-shadow: 10px
}

    .carousel-control-prev-icon:after,
    .carousel-control-next-icon:after {
        content: ''; /* Necessary for :after and :before pseudo-elements */
        display: inline-block;
        width: 20px; /* Width of the custom arrow */
        height: 20px; /* Height of the custom arrow */        
        border-top: 4px solid #000000;
        border-right: 4px solid #000000;
        opacity: 10;
    }

    .carousel-control-prev-icon:after {
        transform: rotate(225deg); /* Rotates the 'prev' arrow to point left */
    }

    .carousel-control-next-icon:after {
        transform: rotate(45deg); /* Rotates the 'next' arrow to point right */
    }


.carousel-control-prev, .carousel-control-next {    
    width: 50px; /* Width of the clickable area */
    height: 325px; /* Height of the clickable area */    
    align-items: center;
    justify-content: center;
}


.carousel-control-prev, .carousel-control-next {    
    width: 50px;  
    height: 34px; 
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;  
    bottom: 150px;
}

.carousel-image {
    width: 300px;
    height: 342px;
    object-fit: cover;
}

/* Custom fade effect for the carousel */
.carousel-fade .carousel-inner .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

    .carousel-fade .carousel-inner .carousel-item.active,
    .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
    .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
        opacity: 1;
    }

        .carousel-fade .carousel-inner .carousel-item-next,
        .carousel-fade .carousel-inner .carousel-item-prev,
        .carousel-fade .carousel-inner .carousel-item.active.carousel-item-left,
        .carousel-fade .carousel-inner .carousel-item.active.carousel-item-right {
            opacity: 0;
        }

            .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
            .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right,
            .carousel-fade .carousel-inner .carousel-item.active {
                transform: translateX(0);
                transition-property: opacity;
            }

.hide-controls {
    display: none !important;
}


.carousel-small .carousel-inner {    
    height: 425px;
    background-color: #f0f0f0;
}

.carousel-small .custom-carousel-control {
    width: 40px;
    height: 40px;
    -webkit-filter: drop-shadow(4px 4px 4px #444);
    filter: drop-shadow(4px 4px 4px #444);
}

.carousel-small .carousel-control-prev,
.carousel-small .carousel-control-next {
    bottom: 185px;
}




