/*
 Dàn ngang, màu chủ đạo là màu #4267b2
*/
.fcb-call-button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.fcb-call-button a{
    display: flex;
    align-items: center;
    background-color: #0a4719db;
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

#fcb-call-button a:not(:last-child) {
    margin-bottom: 8px;
}

#fcb-call-button a:hover {
    background-color: #dd9933;
}

#fcb-call-button a i {
    font-size: 18px;
    position: relative;
    top: 0px;
    margin-right: 5px;
    margin-left: -3px;
}

#fcb-call-button a i.fa-phone {
    webkit-animation: ember-hotline-001 1s infinite ease-in-out;
    -moz-animation: ember-hotline-001 1s infinite ease-in-out;
    -ms-animation: ember-hotline-001 1s infinite ease-in-out;
    -o-animation: ember-hotline-001 1s infinite ease-in-out;
    animation: ember-hotline-001 1s infinite ease-in-out;
}

@-moz-keyframes ember-hotline-001 {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-webkit-keyframes ember-hotline-001 {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

@-o-keyframes ember-hotline-001 {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg)
    }
}

@media (max-width: 768px) {
    #fcb-call-button {
        position: fixed;
        z-index: 9999;
        left : 0px;
        bottom: 0px;
        flex-direction: row;
        gap: 0px;
    }

    #fcb-call-button a {
        display: block;
        padding: 5px 18px;
        border-radius: 0px;
        background-color: #0a4719db;
        color: #fff;
        font-size: 15px;
        -webkit-transition: background-color .3s;
        -moz-transition: background-color .3s;
        -ms-transition: background-color .3s;
        -o-transition: background-color .3s;
        transition: background-color .3s;
    }

    #fcb-call-button {
        margin-bottom: 0px;
    }

    #fcb-call-button {
        position: fixed;
        z-index: 9999;
        /* left: 3px; */
        /* bottom: 4px; */
    }

    #fcb-call-button a:not(:last-child) {
        margin-bottom: 0px;
    }

    #fcb-call-button a {
        /* padding: 3px 13px; */
        white-space: nowrap;
    }
    .fcb-call-button{
        position: fixed;
        bottom: 0px;
        left: 0px;
        display: flex;
        width: 100%;
        z-index: 9999;
        justify-content: space-between;
    }
    .fcb-call-button a{
        width: 100%;
        display: flex;
        align-items: center;
        background-color: #4267b2;
        color: #fff;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
        border: 1px solid #fff;
    }
}