/*===========================================*/
/*	DESKTOP LAYOUT 
/*===========================================*/


#whatsapp{
    z-index:999;
    position: fixed;
    bottom: 0;
    right: 17px;
    height: 72px;
    display: block;
  }
  #whatsapp-msg {
    background-color: #0dc143;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.50);
    z-index: 99999;
    padding: 12px;
    border-radius: 50%;
  }
  #whatsapp-msg a{
    width: 32px;
    height: 32px;
    display: block;
  }
  #whatsapp-msg .badge-whatsapp {
    font-family: Arial, Helvetica;
    position: absolute;
    top: -5px;
    right: -7px;
    background: #eb3e22;
    color: #FFF;
    padding: 0;
    border-radius: 50%;
    text-align: center;
    display:block;
    width:20px;
    height:20px;
    font-size:13px;
    line-height: 22px;
  }
  #whatsapp-msg svg {
    height: 31px;
    width: 33px;
  }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@media (min-width: 1200px) {
	

}
@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-width: 992px) {
		
}

/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
@media (min-width: 200px) and (max-width: 991px) {
	
}


/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 991px) {

}


/*===========================================*/
/*	MOBILE
/*===========================================*/
@media (min-width: 200px) and (max-width: 767px) {
	
}
@media (min-width: 600px) and (max-width: 767px) {
}
@media (min-width: 480px) and (max-width: 599px) {

}
@media (min-width: 200px) and (max-width: 479px) {

}