﻿

/* Whats New Section */
.whats-new-container {
    width: 100%;
    position: relative;
    top: 0;
    margin: auto;
    /*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    border-radius: 4px;
    overflow: hidden;
}

.whats-new {
    /*    background-color: #1e3a5f;*/
    background-color: #006400;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 15px;
}

    .whats-new .title {
        padding: 10px 20px;
        color: white;
        font-weight: 600;
        font-size: 1.2em;
        background-color: #1e3a5f;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    .whats-new .notification {
        flex: 1;
        padding: 10px 20px;
        background-color: #fff;
        color: #1e3a5f;
        font-weight: 500;
        font-size: 1em;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: flex;
        align-items: center;
    }

        .whats-new .notification a {
            color: #1e3a5f;
            text-decoration: none;
        }


@media(max-width:768px) {
    .whats-new {
        margin-top: 0;
    }

    .whats-new-container {
        position: relative;
        top: 0;
    }
}

.whats-new .notification-content {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.arrow-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .arrow-buttons i {
        cursor: pointer;
        color: #1e3a5f;
        padding: 5px;
    }
/* Keyframes for notification fade effect */
@keyframes fade-in-out {
    0%, 100% {
        opacity: 0;
    }

    10%, 90% {
        opacity: 1;
    }
}


/*responsive styling form swipper LatestNewsSlider partial view/* Responsive Styling */
