/*==================================================
  GDPR POP CSS
==================================================*/

#gdpr_pop_container {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 10px 50px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  transition: opacity .3s ease;
  backface-visibility: hidden;
}

#gdpr_pop_container a {
  color: #FFFFFF;
  text-decoration: underline;
}

/*#gdpr_pop_container br {
  display: none;
}*/

#gdpr_pop_permit {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 9999999;
  width: 30px;
  height: 30px;
  transform: translateY(-100%);
  background: transparent;
  border: none;
  outline: 0;
  cursor: pointer;
}

#gdpr_pop_permit:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity .2s ease;
  backface-visibility: hidden;
}

#gdpr_pop_permit:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: opacity .2s ease;
  backface-visibility: hidden;
}

#gdpr_pop_permit:hover:before,
#gdpr_pop_permit:hover:after {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #gdpr_pop_container {
    padding: 10px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  #gdpr_pop_permit{
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
  #gdpr_pop_container br {
    display: none;
  }
}
/* TATERU Apartmentのみ、wovn解約によってbottom値を修正 */
@media screen and (max-width: 480px) {
    #gdpr_pop_container {
        bottom: 49px;}
}
