#sliding-popup {
  position: fixed;
  padding: 20px;
  background: #ededed; }
  #sliding-popup .switch-block .switch-item {
    max-width: 500px;
    margin-bottom: 20px; }
    #sliding-popup .switch-block .switch-item section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%; }
      #sliding-popup .switch-block .switch-item section h3 {
        margin-right: 10px;
        font-size: 16px; }
      #sliding-popup .switch-block .switch-item section p {
        font-size: 12px; }
  #sliding-popup .switch-block .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px; }
    #sliding-popup .switch-block .switch input {
      width: 0;
      height: 0;
      opacity: 0; }
      #sliding-popup .switch-block .switch input:checked + .slider {
        background-color: #2196f3; }
        #sliding-popup .switch-block .switch input:checked + .slider::before {
          transform: translateX(26px); }
  #sliding-popup .switch-block .slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 22px;
    transition: 0.4s; }
    #sliding-popup .switch-block .slider::before {
      position: absolute;
      bottom: 4px;
      left: 6px;
      width: 22px;
      height: 22px;
      background-color: #fff;
      border-radius: 50%;
      content: '';
      transition: 0.4s; }
  #sliding-popup .eu-cookie-compliance-message,
  #sliding-popup .eu-cookie-compliance-buttons {
    float: none; }
  #sliding-popup .eu-cookie-compliance-buttons .agree-button {
    margin-right: 10px; }
  #sliding-popup .agree-button,
  #sliding-popup .deny-button,
  #sliding-popup .save-button {
    border-radius: 22px;
    background-color: #2196f3;
    padding: 5px 20px;
    font-size: 14px;
    color: #fff;
    border: 0; }
