div.floating-action-contact
{
    display: block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 9999;
}

div.floating-action-btn
{
    position: relative;
    display: inline-block;
    background: #333333;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 10px 5px rgba(34, 31, 31, 0.14);
    border: 2px solid #666666;
}

div.floating-action-btn:hover
{
    box-shadow: 2px 2px 10px 5px rgba(34, 31, 31, 0.33);
}

div.floating-action-btn svg
{
    width: 2rem;
    height: 2rem;
}

div.floating-info
{
    display: none;
    background: #333333;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #ffffff;
    box-shadow: 2px 2px 10px 5px rgba(34, 31, 31, 0.14);
    border: 2px solid #666666;
    margin-bottom: 1rem;
}

div.floating-info.show
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

div.floating-info .flt-x
{
    align-self: flex-end;
    cursor: pointer;
    width: 25px;
    height: 25px;
    position: relative;
    border-radius: 3px;
    margin: -0.5rem -0.5rem 0.5rem 0;
    background: #555;
}

div.floating-info .flt-x:hover
{
    background: #666;
}

div.floating-info .flt-x::before, div.floating-info .flt-x::after
{
    content: '';
    position: absolute;
    width: 21px;
    height: 4px;
    background-color: white;
    top: 11px;
}

div.floating-info .flt-x::before
{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 2px;
}

div.floating-info .flt-x::after
{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 2px;
}

div.floating-info header
{
    padding-bottom: 0;
}

div.floating-info header h2
{
    font-size: 1.5rem;
}

div.floating-info p:last-child
{
    margin-bottom: 0;
}
