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

.flash-info-banner {
    position: relative;
    background-color: #7A985C;
    color: #fff;
    overflow: hidden;
    padding: 9px 20px 10px 50px;
    border-radius: 25px;
    font-size: 16px;
    margin: 10px 0;
    height: 40px;
}

.flash-info-icon {
    position: absolute;
    left: -10px;
    top: 57%;
    transform: translateY(-50%);
    height: 50px;
   
}

.flash-info-icon img {
    height: 100%;
    width: auto;
    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;
  }
}
