.alert-cookie {
  position: fixed;
  box-sizing: border-box;
  left: 15px;
  bottom: 20px;
  max-height: 50vh;
  width: calc(100% - 30px);
  padding: 10px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
 

.alert-cookie-enable {
  display: none; }

.alert-cookie__text {
  flex: 1 1 calc(100% - 110px);
  font-size: 14px;
  color: black; }

.alert-cookie__button {
  flex: 0 0 110px; }

.alert-cookie #alert-cookie__agree {
  background-color: green;
  border: 1px solid green;
  border-radius: 5px;
  font-size: 14px;
  color: white;
  padding: 5px 10px;
  width: 100px;
  transition: all .25s; }

.alert-cookie #alert-cookie__agree:hover {
  background-color: white;
  color: green;
  transition: all .25s; }

.alert-cookie__set_max {
  cursor: pointer; }

.alert-cookie__set_min {
  cursor: pointer; }

.alert-cookie__min {
  display: block;
  margin: 0; }

.alert-cookie__min.hide {
  display: none; }

.alert-cookie__max {
  display: none;
  margin: 0; }

.alert-cookie__max.show {
  display: block; }

.alert-cookie.scroll {
  overflow-y: scroll; }

/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */

@media (max-width: 600px) {
.alert-cookie {
  flex-direction: column;
  left: 5px;
  bottom: 5px;
  width: calc(100% - 10px);
  padding: 5px;}  
  
  .alert-cookie__text {
  flex: 1 1 calc(100% - 110px);
  font-size: 10px;
  line-height: 14px;
  color: black; }
  
  .alert-cookie__button {
  flex: 0; }
  
  .alert-cookie #alert-cookie__agree {
  font-size: 12px;
  padding: 2px 10px;
 }
}