/*
-- CSS: css/flash-info.css --
*/

.flash-info-banner {
    position: relative;
    background-color: #4D8BC0;
    color: #fff;
    overflow: hidden;
    border-radius: 25px;
    font-size: 16px;
    margin: 10px 0;
    height: 40px;
    display: flex;
    align-items: center;
	padding-left: 3px;
}

.flash-info-icon img {
	height: 31px;
    width: auto;
    background: white;
    border-radius: 19px;
    padding: 5px;
    display: block;
}

.flash-info-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

.flash-info-content {
    white-space: nowrap;
    padding-right: 50px;
    flex-shrink: 0;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .flash-info-banner {
    border-radius: 0;
  }
}
