@charset "utf-8";

/*=========================================
 /cookie_banner/
 ==========================================*/
#cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  color: rgb(255,255,255);
  background-color: rgba(0,0,0,0.5);
  padding: 20px;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 999999999;
}

#cookie-consent.is-show {
  visibility: visible;
}

#cookie-consent .cookie-agree, #cookie-consent .cookie-reject {
  color: #fff;
  background: #02A1E7;
  padding: .5em 1.5em;
  margin-left: 20px;
}
#cookie-consent .cookie-agree:hover, #cookie-consent .cookie-reject:hover {
  cursor: pointer;
}

#cookie-consent.cc-hide {
  display: none;
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#cookie-consent .cookie-text .policy-link a {
  text-decoration: underline;
  color:inherit;
}

#cookie-consent .cookie-reject {
  color: rgb(0,0,0);
  background: rgb(255,255,255);
  white-space: nowrap;
}

#cookie-consent .cookie-agree {
  white-space: nowrap;
}


#cookie-consent .cookie-contents {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cookie-consent .cookie-text {
  line-height: 1.8;
  letter-spacing: 0.98px;
}

#cookie-consent .close-icon {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}

#cookie-consent .cookie-close.cookie-button {
  width: 20px;
  padding: 0;
}

#cookie-consent .close-icon::before, #cookie-consent .close-icon::after {
  cursor: pointer;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background: rgb(255,255,255);
}

#cookie-consent .close-icon::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

#cookie-consent .close-icon::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

#cookie-consent .cookie-button {
  padding: .5em 1.5em;
  margin-left: 20px;
}


@media screen and (max-width: 620px){
  #cookie-consent {
    top: 0;
    bottom: auto;
  }
}
