*{
  font-family: "Open Sans", sans-serif;
}


#cookie_note{
	display: none;
}
 /* Позиционирование плашки  */
#cookie_note{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#cookie_note.show{
  
  display: flex;
}

#cookie_note .cookies-inner{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  border: 0.5px solid hsl(219, 14%, 49%);
  border-radius: 4px;

  max-width: 840px;
  color: #000000;
  background-color: #fff;
}

#cookie_note .cookies-inner__text{
  margin-block: 20px;
  margin-left: 18px;

  font-weight: normal;
  line-height: 24px;
  font-size: 16px;
}

#cookie_note .cookies-inner__link{
  color: #796DAF;
  text-decoration: none;
}

#cookie_note .button{
  min-width: 110px;
  height: 52px;
  border: 1px solid #F6B59C;
  border-radius: 4px;
  padding: 10px;
  font-weight: 600;
  line-height: 20px;
  font-size: 14px;
  color:#000;
  background-color: #F6B59C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#cookie_note .cookies-inner__button{
  margin-block: 18px;
  margin-right: 25px;
}

#cookie_note .cookies-inner__button:active{
  transform: scale(0.95);
}


@media(max-width: 800px){
  #cookie_note .cookies-inner__text{
    line-height: 20px;
    font-size: 14px;
  }
}

@media(max-width: 620px){
  #cookie_note .cookies-inner{
    flex-direction: column;
    padding: 18px;
    column-gap: 0;
    row-gap: 18px;
  }

  #cookie_note .cookies-inner__text{
    margin: 0;
  }

  #cookie_note .button{
    width: 100%;
  }
  #cookie_note .cookies-inner__button{
    margin: 0;
  }
}


