﻿.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);
}
