.contact-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.contact-widget--hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.contact-widget--hidden * {
  pointer-events: none;
}

.contact-widget__button {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: transform .3s ease;
}

.contact-widget__button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-widget__button:hover {
    transform: scale(1.1);
}

.contact-widget__icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 100px;
    right: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .4s ease;
}

.contact-widget__icons--active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.contact-widget__icon img {
    width: 53px;
    height: 53px;
    display: block;
    transition: transform .3s ease;
}



@media (max-width: 768px) {
    .contact-widget {
        right: 15px;
        bottom: 15px;
    }
    .contact-widget__button {
        width: 70px;
        height: 70px;
    }
    .contact-widget__icons {
        right: 10px;
    }
}