.m-icon-svg {
    font-size: 0;
    height: auto;
    line-height: 1;
    padding: 0;
    width: auto
}

.m-icon-svg,
.m-icon-svg svg {
    display: inline-block;
    position: relative;
    vertical-align: top
}

.m-icon-svg svg {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%
}

.m-icon-svg svg path {
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-in-out
}

@keyframes pulse-video-w {
    0% {
        transform: scale(1)
    }

    70% {
        box-shadow: 0 0 0 50px rgba(218, 41, 28, 0);
        transform: scale(1.1)
    }

    to {
        box-shadow: 0 0 0 0 rgba(218, 41, 28, 0);
        transform: scale(1)
    }
}

.float {
    align-items: center;
    background-color: #25d366;
    border-radius: 100%;
    bottom: 113px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    position: fixed;
    right: 20px;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: ease-in-out;
    width: 48px;
    z-index: 4
}

.float span {
    width: 24px
}

.float span path {
    fill: #fff
}

.bounce {
    animation: pulse-video-w 1.5s infinite
}

@media only screen and (min-width:481px) {

    .float {
        bottom: 128px;
        right: 30px
    }
}

@media only screen and (min-width:769px) {

    .float {
        height: 56px;
        width: 56px
    }
}

@media only screen and (min-width:1024px) {

    .float {
        bottom: 151px;
        right: 50px
    }
}