@media (max-width: 1250px) {
	.notices-socials {
		display: none !important;
	}
}
.notices-list-container {
    overflow: hidden; /* Hide the overflow for scrolling effect */
    white-space: nowrap; /* Ensure the items are displayed in a single line */
    position: relative;
    width: 100%; /* Full width of the container */
    background: #055e5d; /* Black background for contrast */
    padding: 5px 0;
    box-sizing: border-box;
}

.notice-title {
    background: rgb(28, 28, 30);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.notice-title h6 {
    color: #fff;
    padding: 0 20px;
    margin: 0;
    font-size: 14px;
}

.notices-list {
    display: inline-flex; /* Flexbox to align items horizontally */
    gap: 20px; /* Padding between items */
    animation: scroll-left 60s linear infinite; /* Scrolling animation */
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.notices-list li {
    color: #fff; /* White text */
    font-size: 14px; /* Adjust font size */
    padding: 0; /* Padding within each item */
}

.notices-list li img {
    height: 20px;
    padding: 0 10px;
}

.notices-socials {
    list-style: none;
    display: inline-flex;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 20px;
    background: rgb(28, 28, 30);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
.notices-socials li {
    font-size: 16px;
    color: rgb(28, 28, 30);
    background-color: #fff !important;
    border-radius: 50%;
    margin: 2px;
    padding: 2px 6px;
}
/* Keyframes for scrolling effect */
@keyframes scroll-left {
    0% {
        transform: translateX(0); /* Start in view */
    }
    100% {
        transform: translateX(-100%); /* Scroll to the left */
    }
}
