.call-wp-buttons {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items:center;
    text-align: center;
    height: auto;
    z-index: 999999;
    top: 60%;
    right: 0;
	transition: transform 0.5s ease-in;
}

.call-wp-button {
	display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
    background: #eee;
    margin-bottom: 10px;
    width: 100%;
    color: #333;
    font-weight: bolder;
}

.call-wp-button img {
	width: 20px;
	margin-right: 10px;
}

.call-wp-button:hover {
    color: #000;
}

@media screen and (max-width: 768px){
	.call-wp-buttons {
		position: fixed;
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		justify-content: flex-end;
		width: 100%;
		height: auto;
		bottom: 0;
		top: 100%;
		z-index: 999999;
	}
	.call-wp-button {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 15px;
		background: #eee;
		width: 100%;
		margin-bottom:0;
	}
}