.back-to-top {
  position: fixed;
  bottom: 60px;
  right: 60px;

  display: flex;
  align-items: center;
  gap: 8px;
  width: 120px;
  height: 120px;

  /*padding: 12px 16px;
  padding-left: 21px;
  border: none;
  border-radius: 999px;*/

  /*background: #FFFEF8;*/
  cursor: pointer;
  border: none;
  background-color: transparent;


  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover{
  transform: scale(1.1);
}

.back-to-top:active{
  transform: scale(1.1);
}

.arrow_svg_icon_scroll{

}


@media only screen and (max-width: 600px) {
  .back-to-top {
  width: 90px;
  height: 90px;
  bottom: 40px;
  right: 40px;
}
