/* App Slider Styles */

.app-slider {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.app-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.app-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.demo-dots .dot {
    border: none;
    padding: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.demo-dots .dot.active {
    background-color: #80acf3;
}

