/*
Theme Name: Bark & Bloom (Flatsome Child)
Description: CSS to support the header Call Button
Author: Gareth
Template: flatsome
Version: 1.1
*/


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

.header-call-button {
    position: absolute;
    /* reduced from 55 to 50 */
    width: 50px;
    height: 50px;
    background-color: #800020;
    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;
}

.header-call-div img {
    display: block;
    margin: 10px 0;
}
