.cip-contact-icons {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cip-contact-icons.right {
    right: 20px;
}

.cip-contact-icons.left {
    left: 20px;
}

.cip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cip-icon:hover {
    transform: scale(1.1);
}

.cip-icon svg {
    width: 40px;
    height: 40px;
}