﻿.scrollTop {
  position: fixed;
  bottom: 48px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  column-gap: 10px;
  height: 54px;
  border-radius: 50%;
  background-color: #123648;
  box-shadow: 4px 4px 6px #00000029;
  text-align: center;
  opacity: 0;
  transition: all 300ms;
  transform: scale(0);
  overflow: hidden;
  cursor: pointer;
  z-index: 99;
}

.scrollTop__div {
  background-color: #fff;
  border-radius: 50%;
  width: 36px;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  margin-left: 0;
}

.scrollTop__icon {
  color: #123648;
  font-size: 37px;
  font-weight: 700;
  text-align: center;
  transition: all 300ms;
}

.scrollTop__p {
  display: none;
  transition: all 400ms;
  width: 30px;
  text-align: center;
  margin-right: 20px;
  margin-bottom: 0;
}

.scrollTop:hover {
  width: 118px;
  border-radius: 27px 10px 10px 27px;
  background: #123648 0% 0% no-repeat padding-box;
}

.scrollTop:hover .scrollTop__div {
  margin-left: 0px;
  margin-right: 0px;
}

.scrollTop:hover .scrollTop__p {
  display: block;
  color: #fff;
}

.scrollTop:hover .scrollTop__icon {
  color: #123648;
}

.scrollTop:focus {
  border: 1px solid #000;
}
