.cookieManager__box {
    box-sizing: border-box;
  }

  .cookieManager__box a {
    color: #000;
  }

  .cookieManager__bar {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #000;
    font-size: 1.2rem;
    line-height: 1.7rem;
    box-sizing: border-box;
    z-index: 4000;
    display: none;
    justify-content: center;
    align-items: center;
  }
  .cookieManager__content {
    max-width: 650px;
    padding: 30px;
    margin: 10px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.5);
  }
  .cookieManager__header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .cookieManager__text a{
    text-decoration: underline;
  }
  .cookieManager__buttons {
    margin-top: 15px;
  }
  .cookieManager__button {
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 7px 15px;
    color: #fff;
    background-color: #0099c6;
    border: 1px solid #0099c6;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 0.5em;
  }
  .cookieManager__button:hover {
    background-color: #dcdcdc;
    color: #0099c6;
  }

  .cookieManager__floater {
    transition: bottom 1s;
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 40px;
    height: 40px;
    margin: 10px;
    background-image: url("/public/front-static/cookie-b.png");
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
  }
  .cookieManager__floater:hover {
    opacity: 0.7;
  }

  .cookieManager__opener {
    cursor: pointer;
  }

  .cookieManager__manager {
    position: fixed;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.8);
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    display: none;
  }
  .cookieManager__holder {
    background: #dcdcdc;
    color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 500px;
    width: 840px;
  }
  .cookieManager__top {
    line-height: 50px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    background-image: url("/public/front-static/cookie-b.png");
    background-repeat: no-repeat;
    background-size: auto 70%;
    background-position: 10px center;
  }
  .cookieManager__center {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 0;
    right: 0;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    line-height: 20px;
  }
  .cookieManager__foot {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: end;
  }
  .cookieManager__foot .cookieManager__button {
    margin-top: 7px;
  }
  .cookieManager__left {
    padding: 15px;
    border-bottom: 1px solid #dcdcdc;
  }
  .cookieManager__right {
    position: absolute;
    top: 0;
    left: 230px;
    padding: 15px 20px;
    background: #fff;
    height: 100%;
    display: none;
    cursor: default;
  }
  .cookieManager__right ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .cookieManager__right ul li {
    padding: 5px;
    border-bottom: 1px solid #dcdcdc;
  }
  .cookieManager__panels {
    list-style-type: none;
    position: relative;
    margin: 0;
    padding: 0;
  }
  .cookieManager__panel,
  .cookieManager__link {
    background: #dcdcdc;
  }
  .cookieManager__panel {
    cursor: pointer;
  }
  .cookieManager__panel--active {
    background: #fff;
  }
  .cookieManager__panel--active .cookieManager__right {
    display: block;
  }
  .cookieManager__error {
    display: none;
  }
  .cookieManager__save {
    float: right;
    margin-right: 30px;
  }

  .cookieManager__visible {
    display: flex;
  }

  .cookieManager__switchCheckbox {
    display: none;
  }
  .cookieManager__switchLabel {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    text-align: left;
    margin: 16px;
    padding: 15px 0 0 44px;
  }

    .cookieManager__switchLabel:before,
    .cookieManager__switchLabel:after {
    content: "";
    position: absolute;
    margin: 0;
    outline: 0;
    top: 50%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    }
    .cookieManager__switchLabel:before {
      left: 1px;
      width: 34px;
      height: 14px;
      background-color: #dcdcdc;
      border-radius: 8px;
    }
    .cookieManager__switchLabel:after {
      left: 0;
      width: 20px;
      height: 20px;
      background-color: #ababab;
      border-radius: 50%;
      box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14),
        0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
    }

    .cookieManager__switchCheckbox:checked + .cookieManager__switchLabel:before {
    background-color: #dcdcdc;
  }
  .cookieManager__switchCheckbox:checked + .cookieManager__switchLabel:after {
    background-color: #0099c6;
    -ms-transform: translate(80%, -50%);
    -webkit-transform: translate(80%, -50%);
    transform: translate(80%, -50%);
  }

  @media all and (max-width: 840px) {
    .cookieManager__holder {
      width: 100%;
      height: 100%;
    }
    .cookieManager__right {
      box-sizing: border-box;
      left: 30%;
      width: 70%;
      padding: 10px;
    }
    .cookieManager__panels {
      height: 100%;
    }
    .cookieManager__left {
      box-sizing: border-box;
      width: 30%;
      padding: 10px;
    }
  }

  @media all and (max-width: 550px) {
    .cookieManager__top {
      background: none;
    }
    .cookieManager__left {
      width: 100%;
    }
    .cookieManager__right {
      position: relative;
      width: 100%;
      left: unset;
    }
    .cookieManager__center {
      height: auto;
    }
    .cookieManager__panels {
      height: auto;
    }
  }