/*Cookie Consent Begin*/

#cookie-consent {
    position: fixed;
    bottom: 0;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: #0f0e0e;
    /* background-image: url("/assets/img/cookies.png"); */
    min-height: 100px;
    /* width: 100%; */
    /* font-size: 0.85em; */
    /* color: #111; */
    line-height: 26px;
    padding: 20px 55px 10px 55px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-right: 1px solid #0f0e0e !important;
    border-left: 1px solid #0f0e0e !important;
    border-top: 1px solid #0f0e0e !important;
    border-bottom: none;
    left: 8%;
    right: 8%;
    display: none;
    z-index: 2147483645;
  }
  
  #cookie-consent p {
    letter-spacing: auto;
    font-size: 0.85em;
    line-height: 1.5;
    font-family: "Raleway", sans-serif;
    color: #adadad;
  }
  
  #cookie-consent a {
    color: #fff;
    transition-duration: 0.3s;
  }
  
  #cookie-consent a:hover {
    color: #adadad;
    /* text-decoration: none !important; */
  }
  
  #cookie-consent .jbtn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 5px;
    /* color: #0f0e0e; */
    color: white;
    text-transform: uppercase;
    text-decoration: none;
  
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 7px 55px;
  
    transition-duration: 0.5s;
  }
  
  #cookie-consent .jbtn:hover {
    text-decoration: none;
    border: 1px solid #adadad;
    /* background-color: #adadad; */
    background-color: #fff;
    color: #0f0e0e;
    text-decoration: none;
    transition-duration: 0.5s;
  }
  
  #cookie-consent .consent-content {
    display: grid;
    grid-template-columns: auto auto;
  }
  
  #cookie-consent .consent-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 30px 55px;
  }
  
  #cookie-consent strong {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
  }
  
  /* TABLET */
  
  @media (max-width: 990px) {
    #cookie-consent .consent-content {
      grid-template-columns: 1fr;
    }
  
    #cookie-consent .consent-btn-container {
      padding: 15;
    }
  
    #cookie-consent .consent-btn-container {
      padding: 15px 0 15px 0;
    }
  }
  