.floating {
  cursor: pointer;
  display: flex;
  position: fixed;
  bottom: 50px;
  right: calc((100vw - 1644px) / 2 - 62px);
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  border: 1px solid #01afb5;
  z-index: 11;
}

.floating__icon {
  position: absolute;
}

.floating__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: auto;
}

@media (max-width: 1644px) {
  .floating {
    right: 40px;
  }
}

@media (max-width: 1024px) {
  .floating {
    width: 54px;
    height: 54px;
    right: 20px;
  }
  .floating__icon img {
    width: 18px;
  }
}
