.phone-selia {
    /* لون خلفية زر الهاتف*/
    background: #dd1d24;
}
.phone-selia {
	  position: fixed;
    bottom: 115px;
    z-index: 9;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
    justify-content: center;
    color: #fff;
    right: 30px;
}

.phone-selia a{
	  height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.phone-selia a:after, .phone-selia a:before {
    content: "";
    display: block;
    position: absolute;
    border: 2px solid #dd1d24;
    inset: -20px;
    border-radius: 50%;
    animation: 1.5s linear infinite animate;
    opacity: 0;
}

@-webkit-keyframes animate {
    0% {
        transform: scale(.3);
        opacity: 0 
    }
    50% {
        opacity: 1 
    }
    100% {
        transform: scale(.8);
        opacity: 0 
    }
}
@keyframes animate {
    0% {
        transform: scale(.3);
        opacity: 0 
    }
    50% {
        opacity: 1 
    }
    100% {
        transform: scale(0.8);
        opacity: 0 
    }
}
@media (max-width: 991px){
	.phone-selia {
	bottom: 167px !important;
	}
}