@charset "UTF-8";



/**/
.components-fab1 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  inset-block-end: 13px;
  inset-inline-start: 13px;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
}
.components-fab1 > .item {
  inline-size: 128px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  border-radius: 10%;
  transition: all 0.1s ease 0s;
}
.components-fab1 > .item > a {
  display: block;
  transition: all 0.1s ease 0s;
}
.components-fab1 > .item > a > img {
  display: block;
  aspect-ratio: 1 / 1;
}
.components-fab1 > .item > a:hover {
  scale: 1.1;
}
@media screen and (max-width: 479.99px) {
  /* small */
}
@media screen and (min-width: 480px) and (max-width: 768.99px) {
  .components-fab1 > .item {
    inline-size: 100px;
  }
}
@media screen and (min-width: 769px) {
  .components-fab1 > .item {
    inline-size: 128px;
  }
}


/**/
.components-fab {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  inset-block-end: 13px;
  inset-inline-start: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}
.components-fab > .item {
  transition: all 0.1s ease 0s;
}
.components-fab > .item > a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.618em;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  border-radius: 0 13px 13px 0;
  padding: 1em;
  text-decoration: none;
  color: currentColor;
  transition: all 0.1s ease 0s;
}
.components-fab > .item > a > i {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  block-size: 2em;
  inline-size: 2em;  
  background-color: rgb(255 255 255);
  font-size: 1em;
}
.components-fab > .item > a > span {
  font-weight: bold;
  color: rgb(255 255 255);
}
.components-fab > .item > a:hover {
  scale: 1.1;
}
.components-fab > .item:nth-child(1) > a {
  background-color: #ea6d30;
}
.components-fab > .item:nth-child(1) > a > i {
  color: #ea6d30;
}
.components-fab > .item:nth-child(2) > a {
  background-color: #52bdc2;
}
.components-fab > .item:nth-child(2) > a > i {
  color: #52bdc2;
}
@media screen and (max-width: 479.99px) {
  .components-fab {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 480px) and (max-width: 768.99px) {
}
@media screen and (min-width: 769px) {
}