/* Flexslider Navigation Arrows */
.flex-direction-nav a {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: block;
    width: 50px;
    height: 50px;
    margin: -25px 0 0;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.flex-direction-nav a:hover {
    color: rgba(0, 0, 0, 0.8);
}

.flex-direction-nav a.flex-prev {
    left: 10px;
}

.flex-direction-nav a.flex-next {
    right: 10px;
}

.flex-direction-nav a:before {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 0.5);
    text-shadow: none;
}

.flex-direction-nav a.flex-prev:before {
    content: '\f104' !important; /* fa-angle-left */
}

.flex-direction-nav a.flex-next:before {
    content: '\f105' !important; /* fa-angle-right */
}

button.pulseAnimation, a.pulseAnimation{
    animation: increaseSize 3s infinite;
}

@keyframes increaseSize {
    0% {
    transform: scale(1);
    }
    10% {
    transform: scale(1.2);
    }

    20% {
    transform: scale(1);
    }

}

.modal,.swal2-container  {
    z-index: 3050 !important;
}
 
.modal-md {
    width:100%;
    max-width: 600px !important;
}
