    .cookie-popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 15px 25px 15px 15px;
      background: #ffffff;
      border: 1px solid #dfdbdb;
      border-radius: 5px;
      z-index: 99999;
      max-width: calc(100% - 40px);
      display: none;
      width: 400px;
    }

    .cookie-popup p {
      margin: 0 0 10px 0;
    }

    #accept-cookies {
      position: absolute;
      top: 3px;
      right: 3px;
      display: block;
      background: transparent;
      color: white;
      border: none;
      padding: 0;
      border-radius: 3px;
      cursor: pointer;
      margin-left: auto;
      width: 25px;
      opacity: 0.35;
    }

    #accept-cookies img {
      width: 100%;
      height: auto;
    }
    
    #cookie-popup a {
      color: #23527c;
      text-decoration: underline;
    }

    .custom-checkbox {
      display: block;
      position: relative;
      padding-left: 35px;
      margin-left: 10px;
      margin-bottom: 12px;
      cursor: pointer;
      user-select: none;
    }

    .custom-checkbox__input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
    }

    .custom-checkbox__checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 25px;
      width: 25px;
      background-color: #fff;
      border: 2px solid #ddd;
      border-radius: 4px;
      transition: all 0.3s;
    }

    .custom-checkbox__input:checked~.custom-checkbox__checkmark {
      background-color: #49b6d6;
      border-color: #49b6d6;
    }

    .custom-checkbox__checkmark:after {
      content: "";
      position: absolute;
      display: none;
    }

    .custom-checkbox__input:checked~.custom-checkbox__checkmark:after {
      display: block;
    }

    .custom-checkbox .custom-checkbox__checkmark:after {
      left: -2px;
      top: -2px;
      width: 25px;
      height: 25px;
      background-image: url(../img/check.svg);
      background-size: cover;
      border: none;
      transform: none;
    }
    
    .custom-checkbox a {
      color: #23527c;
      text-decoration: underline;
    }
