/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.fixed-contact{
    justify-content: space-between;
    align-items: baseline;
    gap: .25rem;
    position: fixed;
    bottom: 10%;
    right: 10px;
    color: #FFF;
    z-index: 999;
    display: flex;
    width: 60px;
    flex-direction: column;
    align-items: center;
	
}
.fixed-contact a{
	width: 100%;
    display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 50%;
    text-align: center;
    font-size: 13px;
    color: #FFF;
	box-shadow: 0 -1px 5px rgba(0,0,0,0.15);
	background-color: #d74040;
}
.fixed-contact a img{
    display: block;
    height: 30px;
    width: auto;
    margin: 0 auto;
}
.fixed-contact a span{
    display: none;
    margin-top: 5px;
    line-height: 1;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
	.fixed-contact{
		width: 50px;
	}

}