.c-cookie__box {
  box-sizing: border-box;
  display: flex;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  left: 0;
  justify-content: center;
  width: 100%;
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.8);
}
.c-cookie__box .c-container.en {
  display: none;
}
.c-cookie__box .c-container {
  display: flex;
  align-items: center;
}
.c-cookie__text {
  width: 85%;
  margin: 0 20px 0 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.75;
}
.c-cookie__btn {
  display: flex;
}
.c-cookie__btn--consent a,
.c-cookie__btn--detail a {
  display: block;
  padding: 10px;
  background-color: #ababab;
  color: #fff;
  font-size: 13px;
  transition: 0.4s ease;
}
.c-cookie__btn--consent a:hover,
.c-cookie__btn--detail a:hover {
  opacity: 0.7;
}
.c-cookie__btn--consent {
  margin: 0 ;
}
.c-cookie__btn--consent a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 48px;
  background-color: #fff;
  color: #323030;
  text-decoration: none;
}
.c-cookie__btn--detail a {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 48px;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .c-cookie__box, .c-cookie__box .c-container, .c-cookie__btn, .c-cookie__btn--consent {
    display: block;
  }
  .c-cookie__text {
    width: 100%;
  }
  .c-cookie__btn--consent {width: 145px;margin:0 auto;}
}