#callContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

#callButton {
    background: linear-gradient(-30deg, #15c64a 50%, #38d439 50%);
    background-color: #15c64a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    z-index: 10001;
        transition: opacity 0.5s ease; /* Добавляем плавный переход для свойства opacity */

}
#callButton.hidden {
    opacity: 0; /* Устанавливаем нулевую непрозрачность для скрытия кнопки */
    display: none;
}
#callWidget {
    display: none;
    position: fixed;
    left: 17px;
    right: 17px;
    top: 70%; /* Размещаем форму по вертикали в центре страницы */

    z-index: 10000;
}

#callWidget form {
    position: relative;
    
    /* Քո #dec1ac գույնը՝ 70% թափանցիկությամբ, որպեսզի ապակու նման լինի */
    background: rgba(222, 193, 172, 0.75); 

    
    /* Սպիտակ նուրբ եզրագծեր՝ փայլի համար (Glass borders) */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.6); /* Վերևի մասը ավելի պայծառ */
    border-left: 1px solid rgba(255, 255, 255, 0.6); /* Ձախ մասը ավելի պայծառ */
    
    /* Գեղեցիկ ստվեր (Շողք) */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    
    padding: 20px; /* 10px-ը քիչ էր, սարքեցի 20px ավելի սիրուն տեսքի համար */
    border-radius: 15px;
}

#blurBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(104 101 101 / 15%);
    backdrop-filter: blur(5px);
    z-index: -1;
}

/* #callWidget form input{
    background-color: #fff; 
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px; 
    border-radius: 10px;
}
#callWidget form button {
    background-color: #60e186;
    padding: 10px;
    border: 3px solid #ccc;
    margin: 3px;
    border-radius: 10px;
} */



@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
@keyframes heartbeat1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes animate_pulse {
	0% {
		box-shadow: 0 0 0 0 rgb(25 228 99 / 66%);
        border-radius: 10px;
	}
	70% {
		box-shadow: 0 0 0 10px rgba(228, 25, 49, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(228, 25, 49, 0);
	}
}