@charset "UTF-8";

@media screen and (min-width: 769px) {
  #cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -15px 50px -15px #949494;
    z-index: 9999;
  }

  #cookie .container {
    max-width: 1024px;
    height: 55px;
    margin: 0 auto;
    display: flex;
    font-size: 12px;
    color: #000;
    justify-content: space-around;
    align-items: center;
  }

  #cookie .container .agree {
    width: 80px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 16px -6px rgba(0, 0, 0, .6);
    cursor: pointer;
    transition: .1s;
  }

  #cookie .container .text br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -1vw 7vw -4vw #949494;
    z-index: 9999;
  }

  #cookie .container {
    width: 100%;
    height: 15vw;
    margin: 0 auto;
    display: flex;
    font-size: 2vw;
    line-height: 150%;
    color: #000;
    justify-content: space-around;
    align-items: center;
  }

  #cookie .container .agree {
    width: 20vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 3vw;
    text-align: center;
    background-color: #000;
    color: #fff;
    border-radius: 1vw;
    box-shadow: 0 0 16px -6px rgba(0, 0, 0, .6);
    cursor: pointer;
    transition: .1s;
  }

  #cookie .container .text br {
    display: block;
  }
}
