/* Container */
.owl-carousel.owl-theme {
    /* max-width: 900px; */
    /* border: green solid; */
    height: 300px;
    margin: 0px;
}

.owl-carousel {
	z-index: 1000;
}

/* Items */
.owl-item  {
    /* border: black solid; */
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  
}

/* Navigation */
.owl-theme .owl-nav {
    justify-content: space-between;
    display: flex;
    margin: 0px;
    
    position: relative;
    z-index: 100;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    font-size: 40px;
    background-color: white;
    height: 50px;
    width: 50px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    box-shadow:  2px 0 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 500;

}


.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
    background-color: white;
    color: inherit;
}


.owl-carousel .owl-nav button.owl-prev{
    margin-top: -150px;
    transform: translate(-75%, -50%);
    z-index: 600;
   
}

.owl-carousel .owl-nav button.owl-next{
    margin-top: -150px;
    transform: translate(75%, -50%);
}

.owl-stage-outer {
    z-index: 50;
}

