html.pushbar_locked {
  overflow: hidden;
  touch-action: none;
}

.pushbar_locked .pushbar_main_content.pushbar_blur {
  filter: blur(15px);
}

.pushbar_overlay {
  z-index: -999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  will-change: opacity;
  transition: opacity 0.5s ease;
  opacity: 0;
  background: #3c3442;
}

html.pushbar_locked .pushbar_overlay {
  opacity: 0.8;
  z-index: 999;
}

[data-pushbar-id] {
  z-index: 1000;
  position: fixed;
  overflow-y: auto;
  will-change: transform;
  transition: transform 0.5s ease;
  background: #fff;
}

[data-pushbar-direction=left][data-pushbar-id],
[data-pushbar-direction=right][data-pushbar-id] {
  top: 0;
  width: 256px;
  max-width: 100%;
  height: 100%;
}

[data-pushbar-direction=top][data-pushbar-id],
[data-pushbar-direction=bottom][data-pushbar-id] {
  left: 0;
  width: 100%;
  min-height: 150px;
}

[data-pushbar-direction=left][data-pushbar-id] {
  left: 0;
  transform: translateZ(0) translateX(-100%);
}

[data-pushbar-direction=right][data-pushbar-id] {
  right: 0;
  transform: translateZ(0) translateX(100%);
}

[data-pushbar-direction=top][data-pushbar-id] {
  top: 0;
  transform: translateZ(0) translateY(-100%);
}

[data-pushbar-direction=bottom][data-pushbar-id] {
  bottom: 0;
  transform: translateZ(0) translateY(100%);
}

[data-pushbar-id].opened {
  display: block;
  transform: translateX(0px) translateY(0px);
}

@media screen and (max-width: 768px) {
  .PB001-pushbar {
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(to bottom, rgb(233, 51, 141) 0%, rgb(233, 51, 141) 70%, rgb(172, 51, 127) 100%) !important;
  }
  .PB001-pushbar .contenedor-pushbar {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .PB001-pushbar .boton-cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .PB001-pushbar .circle-btn-cerrar {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
  }
  .PB001-pushbar .marca-pushbar {
    display: flex;
    justify-content: center;
    padding-top: 25px;
  }
  .PB001-pushbar .marca-pushbar img {
    height: 170px;
  }
  .PB001-pushbar .menu-pushbar {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 50px;
    text-align: center;
  }
  .PB001-pushbar .menu-pushbar nav {
    width: 80%;
  }
  .PB001-pushbar .menu-pushbar nav ul li {
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid #ffffff;
  }
  .PB001-pushbar .menu-pushbar nav ul li:last-child {
    border-bottom: 0;
  }
  .PB001-pushbar .menu-pushbar nav ul li a {
    font-family: "Regular";
    font-size: 26px;
    text-decoration: none;
  }
  .PB001-pushbar .menu-pushbar nav ul li a:link {
    color: #ffffff;
  }
  .PB001-pushbar .menu-pushbar nav ul li a:visited {
    color: #ffffff;
  }
  .PB001-pushbar .redes-pushbar {
    display: flex;
    justify-content: center;
    margin-top: 50px;
  }
  .PB001-pushbar .red-pushbar {
    display: block;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #000000;
    margin: 0 15px;
    border-radius: 10px;
  }
  .PB001-pushbar .red-pushbar a {
    font-size: 26px;
  }
  .PB001-pushbar .red-pushbar a:link {
    color: rgba(255, 255, 255, 0.9);
  }
  .PB001-pushbar .red-pushbar a:visited {
    color: rgba(255, 255, 255, 0.9);
  }
  .PB001-pushbar .red-pushbar a:hover {
    color: rgb(168, 207, 69);
  }
}