/* -------------------------------------------------------------------------*/
/* MIXIN / ARGUMENT / COMMON CLASS
/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* COOKIE
/* -------------------------------------------------------------------------*/
.cookie_popUp {
  display: block;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 1000;
  transform: translateY(120%);
  width: 400px;
  background-color: #fff;
  padding: 15px;
  border: 2px solid #000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.8s ease-in-out, opacity 0.3s ease-in-out;
}
.cookie_popUp.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie_popUp.hide {
  opacity: 0;
}
.cookie_popUp .cookie_popUp_text .title {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  padding: 10px;
  line-height: 1;
  font-weight: bold;
  border-radius: 5px;
}
.cookie_popUp .cookie_popUp_text .text {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 10px 0;
}
.cookie_popUp .cookie_popUp_btn {
  text-align: center;
  margin: 20px 0 0;
}
.cookie_popUp .cookie_popUp_btn button {
  font-size: 15px;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 5px 20px;
}
@media only screen and (max-width:640px) {
  .cookie_popUp {
    width: auto;
    right: 10px;
    bottom: 40px;
  }
}

/* -------------------------------------------------------------------------*/