#ccBar {
    background: rgba(44, 44, 44, 0.9);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 10px;
    font-family: "Verdana", sans-serif;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
  }
  #ccBar label {
    color: #fff;
  }
  #ccBar * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  #ccBarMain,
  #ccBarMore {
    max-width: 1200px;
    margin: 0 auto;
  }
  #ccBarMain {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #ccBarMainInner {
    width: 80%;
  }
  #ccBarMain > div {
    padding: 10px;
  }
  #ccBar p {
    margin: 0;
    margin-bottom: 5px;
    color: #fff;
  }
  #ccBarIntro {
    margin-bottom: 20px;
  }
  #ccBarButtonOuttro {
    text-align: center;
    flex: 1;
    font-size: 11px;
  }
  #ccBar.visible {
    opacity: 1;
    visibility: visible !important;
    transition: opacity 0.8s;
  }
  #ccBar ul {
    list-style: none;
    padding: 0px;
    flex-wrap: wrap;
  }
  #ccBarCategories {
    display: flex;
    flex-direction: row;
  }
  .ccBarCategory {
    margin-right: 20px;
    flex-basis: 20%;
  }
  .ccBarCategory:last-child {
    flex-grow: 1;
  }
  .ccBarCategoryHeading {
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 5px;
  }
  
  /* Buttons */
  #ccBarButtons {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    width: 20%;
  }
  #ccBarButtons button {
    margin: 5px;
    border: none;
    outline: none;
    padding: 8px 5px;
    cursor: pointer;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #ccc;
    color: #333;
    transition: all 0.3s;
    text-transform: none;
    font-size: 14px;
  }
  #ccBarButtons button:hover {
    background: #fff;
  }
  #ccBarButtons #ccBarShowMoreButton {
    background: none;
    color: #ccc;
    font-size: 12px;
    cursor: pointer;
    padding: 0px;
  }
  #ccBarButtons #ccBarShowMoreButton:hover {
    text-decoration: underline;
  }
  
  /* CC Bar More */
  #ccBarMore {
    visibility: hidden;
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    height: 0;
    transition: all 0.3s;
  }
  #ccBarMore > div {
    margin-right: 20px;
  }
  #ccBarMore.visible {
    border-top: 1px solid white;
    visibility: visible;
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    height: auto;
  }
  
  /* Cookie List */
  #ccBar #ccBarCookieList {
  }
  #ccBar #ccBarCookieList ul {
    display: block !important;
    width: 100%;
    max-width: 400px;
  }
  #ccBar #ccBarCookieList ul li {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    background: #777;
    color: #fff;
    padding: 5px 10px !important;
    justify-content: space-between;
    align-items: center;
    border-left: solid 6px #54bd00;
    cursor: initial !important;
  }
  #ccBar #ccBarCookieList ul li .ccBarCookieListLeft {
    width: 120px;
  }
  #ccBar #ccBarCookieList ul li .ccBarCookieListRight {
    width: 100px;
  }
  #ccBar #ccBarCookieList ul li .ccBarCookieDelete {
    background: #ab0101;
    color: #fff;
    line-height: 1;
    padding: 3px 7px;
    cursor: pointer;
    border: none;
    outline: none;
  }
  #ccBar .ccBarCookieListHeading {
    font-weight: bold;
    margin-top: 20px;
  }
  
  #ccBar #ccBarCookieList i {
    display: block;
    margin-top: 20px;
  }
  
  #ccBar li.highlighted {
    border-radius: 5px;
  
    box-shadow: 0 0 20px 0 #54bd00;
    transform: scale(1);
    animation: pulse 2s infinite;
  }
  #ccBar a {
    color: #ccc;
  }
  
  /* Checkboxes */
  #ccBar ul {
    display: flex;
    display: -webkit-flex;
    margin: 0;
    padding: 0;
  }
  #ccBar ul li {
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 5px;
    padding: 2px;
    width: 150px;
    font-size: 12px;
  }
  #ccBar ul li label {
    position: relative;
    min-height: 25px;
    display: block;
    padding-left: 30px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    font-size: 14px;
    text-transform: none;
  }
  #ccBar ul li label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    transition: transform 0.28s ease;
    border-radius: 3px;
    background: #ccc;
  }
  #ccBar ul li label:after {
    content: "";
    display: block;
    width: 9px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform ease 0.25s;
    position: absolute;
    top: 7px;
    left: 4px;
  }
  #ccBar ul li input[type="checkbox"] {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
    margin-left: -20px;
  }
  #ccBar ul li input[type="checkbox"]:checked ~ label:before {
    background-color: #666;
  }
  #ccBar ul li input[type="checkbox"]:checked ~ label:after {
    transform: rotate(-45deg) scale(1);
  }
  #ccBar ul li input[type="checkbox"]:focus,
  #ccBar ul li label::before {
    outline: 0;
  }
  #ccBar ul li input[type="checkbox"]:checked ~ label.ccBarDisabled:before {
    background: #777;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 5px 5px rgba(173, 27, 43, 0);
    }
    50% {
      box-shadow: 0 0 5px 5px rgba(173, 27, 43, 1);
    }
    100% {
      box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0);
    }
  }
  
  @media (max-width: 1024px) {
    #ccBarMainInner {
      width: 70%;
    }
    #ccBarButtons {
      width: 30%;
    }
  }
  
  @media (max-width: 900px) {
    #ccBarCategories {
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 700px) {
    #ccBarMain {
      flex-direction: column;
    }
    #ccBarMainInner,
    #ccBarButtons {
      width: 100%;
    }
    #ccBarButtons {
      flex-direction: row;
      flex-wrap: wrap;
    }
    #ccBarButtons button {
      flex: 1;
    }
    #ccBarButtonOuttro {
      width: 100%;
      flex: none;
    }
  }
  @media (max-width: 500px) {
    #ccBar {
      font-size: 11px;
      overflow-x: auto;
      max-height: 90vh;
    }
    #ccBarIntro {
      text-align: center;
    }
    #ccBarButtons,
    #ccBarCategories {
      flex-direction: column;
    }
  }
  
  #ccBarMoreOuttro {
    text-align: right;
  }
  
  /* ========== Placeholder ========== */
  .ccBarPlaceholder {
    background: #ccc;
    padding: 25px;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Verdana", sans-serif;
    font-size: 12px;
    position: relative;
    min-height: 200px;
  }
  .ccBarPlaceholder .ccBarPlaceholderImage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
  }
  .ccBarPlaceholder .ccBarPlaceholderImage:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 224, 224, 0.8);
    transition: all 0.3s;
  }
  .ccBarPlaceholder .ccBarPlaceholderImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
  }
  .ccBarPlaceholder:hover img {
    transform: scale(1.1);
  }
  .ccBarPlaceholder .ccBarPlaceholderText {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .ccBarPlaceholderTitle {
    font-size: 1.2em;
    font-weight: bold;
  }
  .ccBarPlaceholder button {
    transition: all 0.3s;
    background-color: #54bd00;
    border: 0;
    outline: none;
    color: #fff;
    padding: 7px 15px;
    margin: 20px auto 0px auto;
    display: block;
    cursor: pointer;
    border-radius: 5px;
  }
  .ccBarPlaceholder button:hover {
    background-color: #4ba601;
  }
  .ccBar-opener {
    position:fixed;
    bottom:15px;
    left:15px;
    width:50px;
    height:50px;
    cursor:pointer
  }