/*連結按鈕*/

.social-icon {
    position: fixed;
    top: 20%;
    right: 10px;
    z-index: 1050;
    width: 90px;
    animation: icon1 2s linear infinite;
}

@keyframes icon1 {
    0% {
        top: 15%;
    }

    50% {
        top: 17%;
    }

    100% {
        top: 15%;
    }
}

.social-icon a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 4px #000);
    cursor: pointer;
}

.social-icon a:hover {
    filter: drop-shadow(0px 0px 10px #000);
    transform: scale(.9);
    transition: all .15s ease-out;
}

.hide {
    display: none !important;
}

@media all and (max-width:768px) {}

@media screen and (max-width: 575px) {
    .social-icon {
        top: unset;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        animation: unset;
    }

    .social-icon a {
        width: 100% !important;
        float: left;
        margin-bottom: unset;
        border-radius: 0;
        color: #fff !important;
        font-size: 1.5em;
        padding: 0;
        filter: unset;
    }

    .social-icon a:hover {
        transform: unset;
        filter: unset;
    }

    .social-icon p {
        line-height: 1.2em;
    }

    .act_btn {
        background-image: linear-gradient(to top, #22ac38 0%, #92fb4b 100%) !important;
    }
}