﻿.reciteme-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #002e6d;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    cursor: pointer;
    z-index: 9999;
    transition: background-color .3s ease;
}

    .reciteme-launcher:hover {
        background-color: #004a9f;
    }

    .reciteme-launcher svg {
        width: 28px;
        height: 28px;
        fill: #fff;
    }

@media (max-width:768px) {
    .reciteme-launcher {
        bottom: 15px;
        right: 15px;
    }
}
