.cookie-card {
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 400px;
    padding: 1.5em;
    background: rgba(43, 46, 55, .65);
    border-radius: 5px;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    z-index: 99999;
  }
  
  .cookie-card * {
    background: transparent;
    color: #fff;
  }
  
  .cookieTitle {
    font-size: 1.6em;
    letter-spacing: 0.4px;
    margin-bottom: 0.5em;
  }
  
  .cookieInfo {
    line-height: 1.4em;
    letter-spacing: 0.4px;
    margin-bottom: 2em;
  }
  
  .cookie-settings {
    position: fixed;
    color: #fff;
    bottom: 2em;
    right: 2em;
    width: 400px;
    padding: 1.5em;
    background: rgba(43, 46, 55, .65);
    border-radius: 5px;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    z-index: 99999;
  }
  
  button.cookie-settings-accept {
    border: solid 1px #fff;
  }
  
  button.cookie-settings-accept:hover {
    background: #ccc;
  }
  
  .cookieOption {
    margin-bottom: 30px;
    clear: left;
  }
  
  .text {
    margin-right: 60px;
  }
  
  .cookieBox {
    float: right;
  }
  
  .cookieSwitch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 22px;
  }
  
  .cookieSwitch input.cookieCheckbox {
    opacity: 0;
    width: 0;
    height: 0;
    background: #aaa;
  }
  
  .cookieSlider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 10%;
  }
  
  .cookieSlider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 13%;
  }
  
  .pntr {
    cursor: pointer;
  }
  
  input.cookieCheckbox:checked + .cookieSlider {
    background-color: #efa697;
  }
  
  input.cookieCheckbox:focus + .cookieSlider {
    box-shadow: 0 0 1px #efa697;
  }
  
  input.cookieCheckbox:checked + .cookieSlider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
  }
  
  ul.inlineUl {
    list-style: none;
  }
  
  ul.inlineUl li.inlineLi::before {
    content: "\2022";
    color: #be9e5b;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }

  ul.inlineUl > li.inlineLi {
    margin-left: 20px;
  }


  .rotate {
    transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -ms-transform: rotate(-7deg);
    -o-transform: rotate(-7deg);  
  }