@charset "UTF-8";
/******************************

Journal - Advanced Opencart Theme Framework
Version 3.0.0
Copyright (c) 2018 Digital Atelier
https://www.journal-theme.com/

*******************************/
/******************************
Family.scss
*******************************/
/******************************

Journal - Advanced Opencart Theme Framework
Version 3.0.0
Copyright (c) 2018 Digital Atelier
https://www.journal-theme.com/

*******************************/
/******************************
Family.scss
*******************************/
.buttons .btn-default {
  background-color: rgb(171,171,171,1);
}

.buttons .btn-primary {
  background-color: rgb(171,171,171,1);
}

/* whatsappLink css styling code */
#whatsappLink {
  display: none; /* Hide the button by default */
}
@media (max-width: 767px) {
  #whatsappLink{
    display: inline;
    background-color: green;
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 15px;
    left: 2%;
    transition: transform .5s;
    z-index: 2;
  }
  #whatsappLink:hover{
    transform: scale(1.1); 
  }
  #whatsappLink a{
    color:white;
  }
  #whatsappLink > a > i{ 
    position:relative;
    top: -4.5px;
    left: -3.5px;
  }
}
/* whatsappLink css styling code */