
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 15px 15px;
  z-index: 1400;  /* AMO, 23. Januar - UW-5503 */
  /*z-index: 91;*/
}
.cookie .alert {
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  background-color: rgba(0, 0 ,0, 0.8);
  border: none;
  border-radius: 0;
  color: white;
  font-size: 12px;
  margin-bottom: 0;
  padding: 10px 10px 10px 15px;
}
.cookie .alert a {
  //color: $white;
  text-decoration: underline;
  font-weight: 400;
}
.cookie .alert p {
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 0;
}

.cookie .alert .close-icon {
  position: relative;
  width: 20px;
  height: 20px;
  text-shadow: none;
  color: white;
  opacity: 0.5;
  display: block;
  transition: opacity .15s ease-in-out;
  margin-left: 10px;
}
.cookie .alert .close-icon:hover {
  opacity: 1;
}
.cookie .alert .close-icon:before, .cookie .alert .close-icon:after {
  position: absolute;
  left: 8px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.cookie .alert .close-icon:before {
  transform: rotate(45deg);
}
.cookie .alert .close-icon:after {
  transform: rotate(-45deg);
}

.cookie .alert .close-btn {
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  //color: #fff;
  cursor: pointer;
  line-height: 1;
  padding: 0.15rem 0.15rem 0;
  margin-left: 15px;
  margin-right: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.25s ease-out 0s, color 0.25s ease-out 0s;
  vertical-align: middle;
}
.cookie .alert .close-btn .close-btn-desktop {
  display: none;
}

@media only screen and (min-width: 768px) {

  .cookie {
    padding: 0 25px 25px;
  }
  .cookie .alert {
    font-size: 14px;
  }
  .cookie .alert .close-btn {
    padding: 0.25rem 0.15rem 0;
  }
  .cookie .alert .close-btn .close-btn-mobile {
    display: none;
  }
  .cookie .alert .close-btn .close-btn-desktop {
    display: inline-block;
  }

}

@media only screen and (min-width: 1120px) {

  .cookie {
    left: 50%;
    width: 730px;
    padding: 0 0 30px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .cookie .alert {
    padding: 15px 15px 15px 20px;
  }

}

@media only screen and (max-width: 768px) {
  .cookie {
    bottom: 50px;
  }
}

/*Custom Styles */

.cookie .alert {
  background-color: #0090d4;
  color: white;
}

.cookie .alert a {
  color: white;
}

.cookie .alert .close-btn {
  font-size: 1.2em;
  color: white;
}