.call {
    position: fixed;
    right: -250px;
    top: calc(70% - 100px);
    background: #00164b;
    width: 250px;
    padding: 15px;call
    z-index: 999;
}

.call .phone-button {
    width: 53px;
    height: 53px;
    background: #e83a3a;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: -53px;
    cursor: pointer;
}

.call .phone-button img {
    -webkit-animation: swing 3s infinite;
    animation: swing 3s infinite;
}

.call label {
    color: #fff;
    display: block;
    font-family: Etelka-Text, sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.call label input {
    display: block;
    width: 100%;
    color: #000;
    font: 400 14px Roboto;
    padding: 0 10px;
    height: 30px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.call input[type="button"] {
    line-height: 31px;
    font-family: Etelka-Text, sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid #e83a3a;
    background: #e83a3a;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
    margin-top: 5px;
}

.call button:hover {
    color: #e83a3a;
    background: #fff;
}