#newsFloating {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 506px;
  padding: 20px 24px 20px 28px;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0 1px 6px -2px rgba(22, 33, 69, 0.06), 0 4px 10px -5px rgba(23, 26, 58, 0.02), 0 6px 30px 0 rgba(22, 33, 69, 0.05);
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#newsFloating.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

#newsFloating .btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: 
  background: unset;
  border: unset;
}

#newsFloating .btn-close img {
  width: 100%;
  height: 100%;
}

#newsFloating>strong {
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

#newsFloating>a {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 16px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  border-radius: 4px;
  background: #15BD6C;
}

@media (max-width: 1023px) {
  #newsFloating {
    bottom: 0;
    flex-direction: column;
    row-gap: 16px;
    width:100%;
    padding: 16px 12px 20px;
    border-radius: 12px 12px 0 0;
  }
  
  #newsFloating>strong {
    text-align: center;
  }

  #newsFloating>a {
    width: 100%;
    justify-content: center;
  }
}