/* Media query breakpoints */
.addtoany__items {
  position: fixed;
  top: 50%;
  left: -53px;
  transform: translate(0%, -50%);
  z-index: 10;
  transition: left 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .addtoany__items.show {
    left: 0;
  }
}
.addtoany__items.show-mobile {
  left: 0;
}
@media (min-width: 1025px) {
  .addtoany__items.show-mobile {
    left: auto;
  }
}
.addtoany__items .addtoany_list {
  display: flex;
  flex-direction: column;
  background-color: rgba(123, 123, 123, 0.2);
  width: 53px;
  height: 210px;
  gap: 8px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 8px 8px 8px 3px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.addtoany__items .addtoany_list > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: var(--darkGrayishBlue200);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px;
  border-radius: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.addtoany__items .addtoany_list > a svg {
  display: none;
}

.addtoany__mobile {
  position: fixed;
  left: 5px;
  bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  margin-left: 3px;
  background-color: var(--darkGrayishBlue200);
  border-radius: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .addtoany__mobile {
    display: none;
  }
}
/*# sourceMappingURL=addtoany.css.map */
