/* General css */
.no-padding-botom{
    padding-bottom: 0!important;
}
.pdt-no-padding-lr{
	padding-left:0!important;
	padding-right:0!important;
}
/* Effect rung chuong */
.phoenixdt-call-to-action{
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 40px;
    left: 20px;
    z-index: 9999;
}
.phoenixdt-call-to-action .box-zalo{
    --bg-cover-1:rgb(8,109,255);
    --bg-cover-2:rgb(105,219,254);
}
.phoenixdt-call-to-action .box-phone{
    --bg-cover-1:rgb(253, 0, 0);
    --bg-cover-2:rgb(248, 53, 53);
    margin-top: 30px;
}
.box-contact .contact-img{
    padding: 10px;
    background: linear-gradient(45deg,
    var(--bg-cover-1),
    var(--bg-cover-2));
    border-radius: 100%;
    color: #fff;
    cursor: pointer;
    transform-origin: center;
    animation: bellPulse 300ms infinite;
}
.box-contact .contact-img img{
    height: 100%;
    width: 30px;
}
.box-contact{
    position: relative;
    border-radius: 100%;
}
.box-contact::before,.box-contact::after{
    content: '';
    position: absolute;
    background: linear-gradient(45deg,
    var(--bg-cover-1),
    var(--bg-cover-2));
    border-radius: 100%;
}
.box-contact::before{
    animation: pulseOne 1.2s infinite alternate;
    z-index: -1;
    opacity: .7;
}
.box-contact::after{
    animation: pulseSecond 750ms infinite alternate;
    z-index: -1;
    opacity: .5;
}
@keyframes pulseOne {
    0%{
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    100%{
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }    
}
@keyframes pulseSecond {
    0%{
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    100%{
        top: -20px;
        right: -20px;
        bottom: -20px;
        left: -20px;
    }    
}
@keyframes bellPulse {
    0%{
        transform: rotate(0deg);
    }
    50%{
        transform: rotate(10deg);
    }
    10%{
        transform: rotate(-10deg);
    }
}
.phoenixdt-call-custom{
    display: flex;
}
.phoenixdt-call-custom li{
    list-style: none;
    margin-bottom: 0;
}
.phoenixdt-call-custom li:first-child{
    margin-right: 20px;
}
.phoenixdt-call-custom li .call-title{
    font-size: 17px;
}
.phoenixdt-call-custom li .num-call a{
    font-size: 20px;
    text-decoration: none;
    color: #ff0000;
    font-weight: bold;
}
.footer-wrapper .row .col-inner p{
    margin-bottom: 10px;
}