.cookie_accept{
    background-color: white;
        font-size:12px;
        color:#E88632;
        width: 150px;
    height: 45px;
            font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.09697vw;
    text-transform: uppercase;
   border: 1px solid white;
	border-radius:50px;

}
.cookie_accept:hover{
        background-color: #E88632;
        color:white !important;
        webkit-transition: all .35s;
        transition: all .35s;
}

.cookie__button {
	padding-right:20vw;
}

#cookie_notification {
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: -250px;
  left: 50%;
  width: 100%;
  max-width: 100%;
  transform: translateX(-50%);
  background-color:#E88632;
  z-index:100000;
  transition: all 0.5s ease-in-out;
  min-height:100px;
  
}

#cookie_notification.showcookie {
    bottom: 0;
    opacity: 1;
}

#cookie_notification.hidecookie {
    bottom: -250px;
    opacity: 0;
}

@media (min-width: 768px) and (max-width: 998px) {
#cookie_notification {
        padding: 15px 10vw 15px 10vw;
        }
}

#cookie_notification a {
  color:white;
text-decoration:underline;
}

#cookie_notification p{
  margin: 0;
  font-size: 12px;
  text-align: left;
  color: white;
  line-height:160%;
	padding-left:20vw;
}


@media (min-width: 768px){
  #cookie_notification.showcookie{
    display: flex;
        align-items: center;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 767px) {
 #cookie_notification {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  bottom: -500px;
  }

	.cookie__button {
  padding-left:15px;
  padding-right:15px;
	}


 #cookie_notification p {
  font-size: 11px;
  line-height:160%;
  padding-left:15px;
  padding-right:15px;

 }
 
 #cookie_notification.showcookie {
    display: block;
    text-align: left;
  }

 .cookie_accept {
        font-size:11px;
        width: 100%;
    height: 45px;
        margin-top:15px;
  }
}