@charset "UTF-8";

.call-phone-kakaotalk {
    position: fixed;
    bottom: 220px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    z-index: 999999999;
    opacity: 0.9;
  
    &:hover {
      background-color: var(--color-primary);
    }
}

.call-phone-whatapp {
    position: fixed;
    bottom: 155px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    z-index: 999999999;
    opacity: 0.9;
  
    &:hover {
      background-color: var(--color-primary);
    }
}

.call-phone {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.9;
    transition: background-color 0.3s ease-in-out;
    z-index: 999999999;
    &:hover {
      background-color: var(--color-primary);
    }
}
