/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 12 2025 | 11:24:51 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.floating-button {
            position: fixed;
            bottom: 5%;
            left: 2.5%;


            color: #fff;

            display: flex;
            align-items: center;
	z-index:999;

        }

        .floating-button .icon {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
            background: #9b0319;
            border-radius: 50%;
        }

        .floating-button .icon::after {
            position: absolute;
            content: "";
            width: 100%;
            aspect-ratio: 1 /1;
            border-radius: inherit;
            border: 2px solid #9b0319;
            animation: scaleup 1000ms ease-in infinite;
        }


        .floating-button .icon img {
            width: 72px;
            aspect-ratio: 1/1;

        }

        .floating-button .content {
            position: relative;
            padding: 15px 30px 15px 10px;
            background: #9b0319;
            border-radius: 0 100px 100px 0;
            font-size: large;
            font-weight: 700;
            letter-spacing: 3px;
        }

        .floating-button .content::before {
            position: absolute;
            content: "";
            top: 0;
            left: -20%;
            width: 20%;
            height: 100%;
            background: inherit;
            z-index: -1;
        }

        @keyframes scaleup {
            0% {
                scale: 1;
                border: 1px solid rgba(155, 3, 25, 1);
            }

            100% {
                scale: 1.2;
                border: 4px solid rgba(155, 3, 25, 0);
            }
        }
