.animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {top:-300px;opacity:0} 
    to {top:0;opacity:1}
}

.cookiemodal {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookiemodal-content {
  margin: 10% auto;
  width: 700px;
  max-width: 90%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: .3rem;
  outline: 0;
  padding: 1rem;
}

.cookiemodal-header {
    display: flex;
    justify-content: flex-end;
}

.cookiemodal-title {
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 0;
    text-align: center;
    padding: 1rem 0;
}

.cookiemodal-header .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.cookiemodal-body {
    flex: 1 1 auto;
    padding: 0;
}

.cookiemodal-body p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cookiemodal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookiemodal-footer >* {
    margin: 5px;
}

.cookie-button:hover {
    background-color: #f8f9fa;
}

.cookie-button {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    cursor: pointer;
}
