@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

.floating{
    width:60px;
    height:60px;
    
    box-sizing: border-box;
    padding: 12px;
    
    background-color:#25d366 ;
    
    border-radius: 50px;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease-in-out;
    overflow: hidden;

    cursor: pointer;

    position: fixed;
    bottom:40px;
	right:20px;
    z-index:100;
}

.floating > a{
    text-decoration: none;
    color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    
    text-align: center;

    width: 100%;
    height: 100%;

    font-family: Arial, sans-serif;
    text-wrap: nowrap;
}



.floatText{
    width: fit-content;
    height: fit-content;


    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 600;
    user-select: none;
    transition: all 500ms ease-in-out;
    overflow: hidden;
    text-overflow: "";
    overflow: hidden;
    font-family: "DM Sans", serif;
}

.floatTextAfter{
    
    margin-left: 10px;

}



.opening{
    width: 250px;
    height: 60px;


    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;


}

.after{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    

}




