@charset "UTF-8";
@layer assets {

  #cookieWrap{
    display: none;
    /* display: inline-block; */
    position: fixed;
    z-index: 100;
    left: 10px;
    bottom: 10px;
    background: #fff;
    box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 60%);
    padding: 16px;
    line-height: 1.75;
    color: #666;
    font-size: 12px;
  }
  #cookieWrap a {
    display: inline-block;
    text-decoration: none;
    border-bottom:1px solid;
  }
  #cookieWrap a:hover {
    color: #222;
    text-decoration: none;
  }
  .cookie--btn{
    text-align: center;
    padding: 10px 0 0 0 ;
  }
  .cookie--btn a{
    background: #111;
    color: #fff !important;
    font-weight: bold;
    padding: 4px 24px;
    text-align: center;
    border-radius: 2px;
    border-bottom:none;
  }
  .cookie--btn a:hover{
    background: #333;
    color: #fff;
  }

  .cookie--close{
    border: none;
    outline: none;
    position: absolute;
    right: -8px;
    top: -8px;
    background: #eee;
    color: #999;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    cursor: pointer;
  }
  .cookie--close:hover{
    color: #333;
  }

}