.popupPhones {
    
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #000;
    opacity: 1;
    z-index: 9999;
  
}
.popupBody{
    width:100%;
    height:100%;
    
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;
    
    gap:30px;
    
}

.popupClose{
    
    padding:10px;
    
    
    position: absolute;
    top: 10px;
    right: 10px;
}



.popupAuth {
    display:none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 200px;
  background-color: #fff;
  border: 1px solid #000;
  opacity: 1;
  z-index: 9999;
}