#popup-law {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 20px;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: rgba(0, 91, 168, 0.8);
  z-index: -1;
}
.popup-law__title{
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  max-width: 800px;
  color: #fff;
  margin-bottom: 10px;
}
.success-conditions{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 20px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
  background: #005ba8;
  z-index: 100;
}
.success-conditions__text{
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  max-width: 800px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 10px;
}
.success-conditions__button{
  border: none;
  background: none;
}

#popup-law .text {
  font-family: "Roboto", sans-serif;
  /*max-width: 1200px;*/
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}
.text a {
  color: white;
}
#popup-law .ok-btn {
  background: #fff;
  color: #2f2f2f;
  font-size: 14px;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.running-block{
  height: 34px;
  padding-top: 10px;
  padding-bottom: 10px;
  width:100%;
  margin:0 auto;
  background:lightgrey;
}
.running-block p{
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
  letter-spacing: 0.3px;
  text-align:center;
  color:#005ba8;
  text-transform: uppercase;
  animation: text 40s infinite linear;
  padding-left: 100%;
  white-space: nowrap;
}
.running-block a{
  text-transform: none;
}
@keyframes text {
  0%{
    transform: translate(0, 0);
  }

  100%{
    transform: translate(-290%, 0);
  }
}
main{
  padding-top: 150px;
}
