.blinds-general-contact-widget {
    position: fixed;
    left: 0;
    z-index: 8888;
}

.elementor-editor-active .blinds-general-contact-modal-content {
    display: none;
}

.blinds-general-contact-rounded-element {
    display: flex;
    justify-content: flex-end;
    width: 155px;
    background: #A995C4;
    border-radius: 0 99px 99px 0;
    cursor: pointer;
    box-shadow: 0 3px 6px #00000029;
}

.blinds-general-contact-content {
    width: 96%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 2px solid #6A5D87;
    border-left: 0px;
    border-radius: 0 99px 99px 0;
    padding: 5px;
    padding-right: 15px;
    transition: transform ease-in-out 0.2s; /* Added transition to the parent container */
}

.blinds-general-contact-icon{
    height: 37px;
    width: 37px;
    transition: transform ease-in-out 0.2s; /* Ensure SVG transitions smoothly */
    transform: translateY(0);
}

.blinds-general-contact-text span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #161615;
    transition: transform ease-in-out 0.2s; /* Ensure text transitions smoothly */
    transform: translateY(0);
}

/* Hover Effect */
.blinds-general-contact-content:hover .blinds-general-contact-text span,
.blinds-general-contact-content:hover .blinds-general-contact-icon {
    transform: translateY(-3px); /* Move text and icon upwards */
}

@media screen and (max-width: 1024px) {
    .blinds-general-contact-widget{
        display: none;
    }
}
