﻿figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
}

figcaption::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='9' cy='10' r='1.5'/%3E%3Cpath d='M21 16l-5.5-5.5L7 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-download {
  cursor: pointer;
  display: flex;
  width: 110px;
  height: 42px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.btn-download:hover {
  background: rgba(34, 50, 84, 0.03);
}
.btn-download svg {
  margin: 0 0 0 5px;
  fill: none;
  transform: translate3d(0, 0, 0);
}
.btn-download svg polyline,
.btn-download svg path {
  stroke: #0077FF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}
.btn-download svg path#check {
  stroke-dasharray: 38;
  stroke-dashoffset: 114;
  transition: all 0.4s ease;
}
.btn-download.downloaded svg .svg-out {
  opacity: 0;
  animation: drop 0.3s linear;
  transition-delay: 0.4s;
}
.btn-download.downloaded svg path#check {
  stroke: #20CCA5;
  stroke-dashoffset: 174;
  transition-delay: 0.4s;
}

@keyframes drop {
  20% {
    transform: translate(0, -3px);
  }
  80% {
    transform: translate(0, 2px);
  }
  95% {
    transform: translate(0, 0);
  }
}
.credit {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0.6;
}
.credit img {
  width: 72px;
}
.credit:hover {
  transform: scale(0.95);
}

.btn-go {
  cursor: pointer;
  display: flex;
  width: 110px;
  height: 42px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.btn-go:hover {
  background: rgba(34, 50, 84, 0.03);
}
