.dock-menu{
	display: none;
}

.sidenav {
	position: fixed;
    right: 13px;
    background: #fff;
    border-radius: 5px;
    width: auto !important;
    z-index: 150 !important;
    bottom: 20px !important;
    padding: 5px 0;
    border: 1px solid #f2f2f2;
}

.sidenav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidenav ul>li a {
	padding: 3px;
	display: block;
	border-radius: 5px;
	text-align: center;
	font-size: 9px;
	line-height: 15px;
	color: #515151;
	font-weight: 700;
	max-width: 72.19px;
	max-height: 54px;
}

.sidenav ul>li a i {
	width: 33px;
	height: 33px;
	display: block;
	margin: auto;
}

.sidenav .menu-icon {
	background-size: cover;
	width: 36px;
	height: 36px;
}

i[class^="menu-icon-"] {
	margin: 0;
	padding: 0;
	display: inline-block;
	font-style: normal !important;
	font-weight: normal !important;
	font-variant: normal !important;
	text-transform: none !important;
	position: relative;
	line-height: 1.2;
}
i[class^="menu-icon-"]::after{
	content: '';
}

.menu-phone{
	position: relative;
	height: 50px;
}
.menu-phone .btn-phone{
	top: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    border-radius: 100%;
    background: #609ee1;
    line-height: 15px;
    width: 36px;
    height: 36px;
}

.menu-phone .text{
    position: absolute;
	top: 40px;
	left: 0;
    width: 100%;
}

.menu-phone .menu-icon{
	width: 22px !important;
	height: 22px !important;
	margin-top: 8px;
}

/* Dock menu */
.dock-menu {
    background: #f2f2f2;
    width: 100%;
    color: #fff;
    height: 50px;
    line-height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 5px;
    margin: 0;
    box-shadow: 0px 4px 10px 0 #000;
}

.dock-menu li {
    float: left;
    width: 20%;
    list-style: none;
    height: 50px;
}

.dock-menu li.menu-chat-directly{
	width: 24%;
}
.dock-menu li.menu-messenger{
	width: 16%;
}
.dock-menu li .button {
    background: 0 0;
    color: #515151;
    width: 100%;
    height: 100%;
    line-height: 16px;
    text-align: center;
    display: block;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 0 0;
    border: 0;
    text-transform: none;
}

.dock-menu li .button i {
    font-size: 26px;
    display: block;
}
.dock-menu li i.menu-icon {
	background-repeat: no-repeat;
    background-size: cover;
	width: 26px;
    height: 26px;
    margin: 0 auto;
}
.dock-menu li .button .phone_animation {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translate(-50%,0);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #609ee1;
    line-height: 15px;
}
.animation-phone:after {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 100%;
    content: "";
    top: 0;
    left: 0;
    box-shadow: 0 0 10px #609ee1, 0 0 10px #609ee1;
    animation: phone-animation 1.2s .5s infinite;
}
.dock-menu li .button .btn_phone_txt {
    position: relative;
    top: 26px;
}

.dock-menu li .button .phone_animation i {
    display: inline-block;
    width: 27px;
    margin-top: 12px;
}

.menu-icon-phone {
    color: #ffffff;
    width: 27px;
    height: 27px;
    display: inline-block;
}

.dock-menu li .menu-icon.menu-icon-zalo {
        border-radius: 7px;
}

@keyframes phone-animation {
	0% {
	  transform: scale(1.1);
	  -webkit-transform: scale(1.1);
	  -moz-transform: scale(1.1);
	  -o-transform: scale(1.1);
	}
	50% {
	  transform: scale(1.2);
	  -webkit-transform: scale(1.2);
	  -moz-transform: scale(1.2);
	  -o-transform: scale(1.2);
	}
	100% {
	  transform: scale(1.3);
	  -webkit-transform: scale(1.3);
	  -moz-transform: scale(1.3);
	  -o-transform: scale(1.3);
	  opacity: 0;
	}
  }

  .float-phone{
    position: fixed;
    bottom: 35px;
    display: flex;
    align-items: center;
    background: #fff;
    left: 10px;
    padding: 1px 10px 1px 2px;
    border-radius: 8px;
    z-index: 99999;
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.3);
    animation: phone-desktop-animation 0.4s infinite;
}
  .float-phone .left-icon {
    z-index: 2;  
}
  .float-phone .left-icon img{
    width: 38px;
  }
  .float-phone .right-phone{
    padding: 0 5px;
    font-size: 16px;
    font-weight: 700;
}


@keyframes phone-desktop-animation{
	0% {
	  transform: scale(1);
	  -webkit-transform: scale(1);
	  -moz-transform: scale(1);
	  -o-transform: scale(1);
	}
	
	50% {
	  transform: scale(1.1);
	  -webkit-transform: scale(1.1);
	  -moz-transform: scale(1.1);
	  -o-transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
  }

@media (max-width: 549px) {
    .float-phone,
	.sidenav {
		display: none;
    }
	.dock-menu{
		display: block;
    }
    
}
