@charset "UTF-8";
/*------------------------------------------
 *  Reponsive
 * -----------------------------------------*/
/*------------------------------------------
 *  BUTTON
 * -----------------------------------------*/
/*------------------------------------------
 *  Before/After
 * -----------------------------------------*/
.ik-share {
  min-width: 170px;
  position: relative;
}
.ik-share .ik-share-button {
  appearance: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: var(--pmd);
  background-color: transparent;
  border: solid 1px var(--wp--preset--color--gray);
  padding: 10px 25px;
  width: 100%;
  text-align: center;
  justify-content: center;
  color: var(--wp--preset--color--second);
}
.ik-share .ik-share-button svg path {
  transition: all ease 0.3s;
}
.ik-share .ik-share-button:hover {
  background-color: var(--wp--preset--color--lightgray);
}
.ik-share .ik-share-button:focus, .ik-share .ik-share-button:active, .ik-share .ik-share-button.active {
  background-color: var(--wp--preset--color--second);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--second);
}
.ik-share .ik-share-button:focus svg path, .ik-share .ik-share-button:active svg path, .ik-share .ik-share-button.active svg path {
  fill: var(--wp--preset--color--white);
  stroke: var(--wp--preset--color--white);
}
.ik-share .ik-share-options {
  border: solid 1px var(--wp--preset--color--second);
  background-color: var(--wp--preset--color--white);
  transition: all ease 0.3s;
  position: absolute;
  bottom: calc(100% + 10px);
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}
.ik-share .ik-share-options::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: var(--wp--preset--color--second) transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.ik-share .ik-share-options .ik-share-item {
  font-size: var(--pxs);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  width: 100%;
  color: var(--wp--preset--color--black);
}
.ik-share .ik-share-options .ik-share-item:hover {
  text-decoration: underline;
}
.ik-share .ik-share-options .ik-share-item svg {
  width: 16px;
  height: 14px;
  object-fit: contain;
  object-position: center;
}
.ik-share .ik-share-options .ik-share-item.ik-share-copy {
  font-size: var(--psm);
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--wp--preset--color--second);
  transition: all ease 0.3s;
}
.ik-share .ik-share-options .ik-share-item.ik-share-copy::after {
  content: "✓";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--third);
  text-decoration: none;
  opacity: 0;
  transition: all ease 0.3s;
}
.ik-share .ik-share-options .ik-share-item.ik-share-copy.copied::after {
  opacity: 1;
}
.ik-share .ik-share-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}/*# sourceMappingURL=block.css.map */