/* Cookie Policy Container Styles */
#cookie_policy_container {
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    left: 0;
    right: 0;
    bottom: 0px;
    padding: 0px;
    opacity: 0.8;
    background: #424242;
    color: white;
    transition: all 0.7s ease;
    z-index: 9999;
    display: none;
  }
  
  #cookie_policy_container.show_cookie {
    bottom: 0px;
    display: flex;
  }
  
  #cookie_policy_container.hide_cookie {
    display: none !important;
  }
  
  #cookie_policy_container > p {
    margin: 0 50px;
  }
  
  #cookie_policy_container > p > a {
    color: #f44336;
  }
  
  #cookie_policy_container > p > a:hover {
    color: white !important;
    text-decoration: underline !important;
  }
  
  #cookie_policy_container > span {
    position: absolute;
    right: 0;
    padding-right: 20px;
    cursor: pointer;
  }
  
  /* Loader Styles */
  #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #333;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  /* Keyframes for Loader Animation */
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Media Queries */
  @media screen and (max-width: 1311px) {
    #cookie_policy_container {
      height: 75px;
    }
  }
  
  @media screen and (max-width: 722px) {
    #cookie_policy_container {
      height: 95px;
    }
  }
  
  @media screen and (max-width: 522px) {
    #cookie_policy_container {
      height: 115px;
    }
    #cookie_policy_container > p {
      margin: 0 30px;
    }
  }
  
  @media screen and (max-width: 429px) {
    #cookie_policy_container {
      height: 128px;
    }
    #cookie_policy_container > p {
      margin: 0 20px;
    }
  }
  
  @media screen and (max-width: 373px) {
    #cookie_policy_container {
      height: 147px;
    }
    #cookie_policy_container > p {
      margin: 0 20px;
    }
  }
  
  @media screen and (max-width: 326px) {
    #cookie_policy_container {
      height: 163px;
    }
    #cookie_policy_container > p {
      margin: 0 10px;
    }
  }
  