@charset "utf-8";
/* CSS Document */
/* Basic Styling for the Cookie Consent Popup */ 
    #cookie-consent-ck {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      padding: 20px;
      text-align: center;
      z-index: 9999;
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
      
    }

    #cookie-consent-ck p {
      margin: 25px 0 0 0;
      font-size: 14px;
    }

    #cookie-consent-ck a {
      color: #007bff;
      text-decoration: none;
    }

    /* Default button styles */
    #cookie-consent-ck button {
      padding: 10px 10px;
      font-size: 17px;
      cursor: pointer;
      margin: 10px;
      border-radius: 5px;
      border: 2px solid #007bff;
      width: 200px;
      max-width: 100%;
    }

    /* "Accept All Cookies" button */
    #cookie-consent-ck #accept-cookies-ck {
      background-color: #007bff;
      color: white;
    }

    #cookie-consent-ck #accept-cookies-ck:hover {
      background-color: #0056b3;
      color: white;
    }

    /* "Decline" button */
    #cookie-consent-ck #decline-cookies-ck {
      background-color: white;
      color: #007bff;
    }

    #cookie-consent-ck #decline-cookies-ck:hover {
      background-color: #f0f0f0;
      color: #0056b3;
    }

    /* Hide popup by default */
    .hidden-ck {
      display: none;
    }

    /* Close Button Styling */
    #close-cookie-consent {
      position: absolute;
      top: -10px;
      right: -25px;
      background: none;
      border: none!important;
	  color: #000!important;
      cursor: pointer;
      z-index: 10000;
      width: 24px;
      height: 24px;
    }

    #close-cookie-consent svg {
      width: 24px;
      height: 24px;
      fill: #333;
    }

    #close-cookie-consent:hover svg {
      fill: red;
    } 
