/* start block cookies */

.cookies { 
  position: fixed;
  z-index: 10000000000;
  bottom: 0;
  background: #282828;
  
  width: 100%;
  
  
  
 
  padding: 16px 0;
  max-width: 100%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s;
}

.cookies.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookies_container{
  display: flex;
  align-items: center;
}
.cookies_text {
 
  font-size: 12px;
  color: #fff;
  line-height: 18px;  
}

.cookies_text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #fff; 
  transition: border-color .3s;
  &:hover{
    border-color: transparent;
  }
}

.cookies_btn {
  height: 34px;
  width: 60px;
  background: #0094FF;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  font-weight: 300;
  color: #FFFFFF;
  font-size: 15px;
  margin-left: 6%;
  flex-shrink: 0;
  
}

@media (max-width: 767.98px) {
  .cookies {
    padding: 12px 0;
  }
  .cookies_btn {
    
    margin-left: 8px;
  }
  .cookies_container{
    justify-content: space-between;
  }
  
}

/*  eof block cookies */

/* Для форм и подвала  */

 .main-form__agree a { 
  
  text-decoration: none;
  border-bottom: 1px dotted #fff;
  transition: border-color .3s;
}

.main-form__agree a:hover {
  border-color: transparent; 
}