/*
Theme Name: Artemis Pest (Flatsome Child)
Description: CSS to support the Header Call Button
Author: Gareth
Template: flatsome
Version: 1.2
*/


.header-call-div {
    position: fixed;
    top: 5px;
    right: 60px;
    background-color: transparent;
    display: block;
}

.header-call-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(215,38,61,1.0);
    border-radius: 50%; /* round button */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.5);
    /* Transition to hover state */
    transition: background-color 0.3s, bottom 0.3s, right 0.3s, box-shadow 0.3s;
}

.header-call-button img {
    width: 30px;
    height: 30px;
}