      /* -------------------------------------------------- */
      .cookiesbox{
        position: fixed;
        bottom: 50px;
        right: -370px;
        max-width: 345px;
        width: 100%;
        background: #ffffff;
        border-radius: 8px;
        padding: 15px 25px 22px ;
        box-shadow: 0 5px 10px rgba(0,0,0,.2);
        transition: right 0.3s ease;
      }
      .cookiesbox.show{
        right: 20px;
      }


      .bx-x{
        position: absolute;
        right: 5px;
        top: 5px;
      }

      .cookiesbox header{
        font-family: "Noto Sans Thai",sans-serif;
        display: flex;
        align-items: center;
        column-gap: 15px; /* ? */
        font-weight: 500;
      }

      .cookiesbox > header .bx-x{
        color: #000000;
        font-size: 20px;
      }
      .cookiesbox > header > i{
        color: #884324;
        font-size: 32px;
      }

      .cookiesbox > header h2{
        color: #884324;
        font-weight: 500;
        font-size: 25px;
      }

      .cookiesbox .main-text-cookie{
        margin-top: 11px;
      }

      .cookiesbox .main-text-cookie p{
        color: #333;
        font-size: 0.9rem;
        font-family: "Noto Sans Thai",sans-serif;
        font-weight: 400;
      }

      .buttons-cookie a{
        color: #e2cc00;
        text-decoration: none;
      }

      .buttons-cookie a:hover{
        text-decoration: underline;
      }
      .buttons-cookie a ,button{
        font-family: "Noto Sans Thai",sans-serif;
        font-weight: 400;
        font-size: 1rem;
      }

      .cookiesbox .buttons-cookie{
        margin-top: -10px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .buttons-cookie .button{
        border: none;
        color: #fff ;
        padding: 8px 0;
        border-radius: 4px;
        background: #884324;
        cursor: pointer;
        width: calc(100% / 2 - 10px); /* ? */
        transition: all 0.2s ease;
      }

      .buttons-cookie .button:hover{
        background-color: #572c18;
      }
      .closes-cookie{
        cursor: pointer;
      }

      /* -------------------------------------------------- */