/*.action_button {*/
/*    position: fixed;*/
/*    bottom: 50px;*/
/*    right: 50px;*/
/*    width: 60px;*/
/*    height: 60px;*/
/*    background: #fff;*/
/*    border-radius: 50%;*/
/*    cursor: pointer;*/
/*    box-shadow: 0 5px 5px rgba(0,0,0,0.1);*/
/*}*/
/*.action_button span {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    color: #a13dea;*/
/*    font-size: 3em;*/
/*    transition: .3s ease-in-out;*/
/*}*/
/*.action_button.active span  {*/
/*    transform: rotate(135deg);*/
/*}*/
.action_button {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 65px;
    height: 65px;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
    transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .action_button {
        bottom: 30px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .action_button {
        bottom: 20px;
        right: 10px;
        width: 55px;
        height: 55px;
    }
}

.action_button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.6);
}

.action_button span {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5em;
    transition: .3s ease-in-out;
}

.action_button:hover span {
    color: #ffe600;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(0, 198, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 198, 255, 0.8); }
    100% { box-shadow: 0 0 10px rgba(0, 198, 255, 0.5); }
}

.action_button.blink {
    animation: glow 1.5s infinite alternate;
}







.action_button ul {
    position: absolute;
    bottom: 55px;
    background: #fff;
    min-width: 250px;
    padding: 20px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.action_button.active ul {
    bottom: 65px;
    opacity: 1;
    visibility: visible;
    transition: .3s;
}
.action_button ul li {
    list-style:none;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 7px 0;
}

.action_button ul li:hover {
    font-weight: 600;
}
.action_button ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.action_button ul li img {
    margin-right: 15px;
    opacity: .2;
    transform: scale(.7);
}
.action_button ul li:hover img {
    opacity: .8;
    transform: scale(1.0);
}