﻿
.btn-action-button-call {
    background: #282972;
    font-weight: bold;
    color: white;
    font-size: 14px;
    border: 3px solid #282972;
    border-radius: 30px;
    width: 19%;
    /*cursor: text;*/
    float: left;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    outline: none;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}

.btn-action-button-call:active {
    color: white;
    background-color: #282972;
    -webkit-animation: hover 1200ms linear 2 alternate;
    animation: hover 1200ms linear 2 alternate;
}

.btn-action-button-call:hover,
.btn-action-button-call:focus {
    color: white;
    background-color: #282972;
    -webkit-animation: active 1200ms ease 1 alternate;
    animation: active 1200ms ease 1 alternate;
}
