footer {
  background-color: #222222;
}

footer .ft {
  position: relative;
}

footer .fix_icons {
  width: fit-content;
  position: fixed;
  bottom: 7%;
  z-index: 9999;
  right: 2vw;
}

footer .fix_icons img {
  margin-left: auto;
  width:4vw;
  height:auto;
}

.phone-hover-container {
  position: relative;
  margin-left: auto;
  transition: all 1s ease;
  display: flex;
  align-items: center;
  width: fit-content;
}

.phone-number {
  position: absolute;
  left: 0px;
  background: white;
  border: 1px solid #3579ff;
  border-radius: 100px;
  color: #3579ff;
  padding: 1.3vw 2vw;
  padding-left: 5vw;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transform-origin: left center;
  /* transform: scaleX(0); */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1;
}

.phone-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon img {
}

.phone-hover-container:hover .phone-number {
  transform: scaleX(1);
  opacity: 1;
}
.phone-hover-container:hover {
  padding-right: 9.2vw;
}

.chat-icon {
  position: relative;
  z-index: 3; /* 가장 위에 표시 */
}

/* mobile */
@media screen and (max-width: 767px) {
  footer img {
    width: 60%;
  }
.ft_top_btn{
  margin-left:auto;
}
  .chat-icon,
  .phone-icon {
    width: 50px !important;
  }
  .phone-number {
    padding: 15px 18px;
    padding-left: 63px;
  }
  .phone-hover-container:hover {
    padding-right: 103px;
  }
  footer .fix_icons {
     bottom: 12%;
     right: 12px;
   }
}

/* tablet 세로기준 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .phone-hover-container:hover {
    padding-right: calc(272px - 71px);
  }

}

/* 태블릿 아이패드에어 가로부터 ~ , 노트북 : 11인치  ~ 15인치 */
@media screen and (min-width: 1180px) and (max-width: 1440px) {
  .phone-hover-container:hover {
    padding-right: calc(196px - 79px);
  }
}
