/*YOUR CUSTOM STYLES*/


#cookiePopup {
  background: white;
  width: 90%;
  max-width: 500px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  box-shadow: 0px 0px 15px #cccccc;
  padding: 5px 10px;
  z-index: 100000000000;
  display: none;
}
  #cookiePopup p {
  text-align: left;
  font-size: 15px;
  color: #4e4e4e;
}



#notificationWindow {
  z-index: 10000000000;
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 30%;
  border-radius: 10px;
  border: 1px solid #CCC;
  background-color: white;
}

.notificationDone {
  padding: 20px;
  background-color: green;
  color: white;
  border-radius: 10px;
}


.notificationError {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  background-color: red;
  color: white;
  border-radius: 10px;
}





@media all and (max-width: 992px) {

  #notificationWindow {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 40%;
    bottom: inherit;
    left: 50%;
    width: 90%;
  }

}
