/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/

#animated-text-strip
{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    overflow: hidden;
}
#animated-text-strip .marquee 
{
    white-space: nowrap;
    animation: marquee 50s linear infinite;
    max-width: none;
}
@keyframes marquee 
{
    0% 
    {
        transform: translate(0, 0);
    }
    100% 
    {
        transform: translate(-100%, 0);
    }
}
#animated-text-strip
{
    background:transparent;
    padding: 1rem 0;
}
.marquee
{
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}
.captcha-btn 
{
    width:25%;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  height: 34px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 5px;
}
.captcha-bttn 
{
  background-color: var(--accent-color);
  color: white; 
}
.captcha-bttn:hover 
{
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: white;
}
input[type="captcha"] 
{
    border: 1px solid white;
    border-radius: 5px;
}
.form-control 
{
    height: 34px;
    font-size: 14px;
}