/*
Theme Name: Custom theme
Theme URI: 
Author: Alex
Description: Custom Theme.
Version: 2.0

*/

#button-consultation-container {
    position: fixed;
    top: 30%;
    right: -80px;
    z-index: 1000;
    transform: rotate(-90deg);
  }
  
  #button-consultation-container a {
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 20px;
      background-color: #83952c;
      border: none;
      font-size: 18px;
      transition: .5s ease-in-out;
    }
	
	#button-consultation-container a:hover {
      text-decoration: none;
      background-color: #bf302f;
      transform: scaleX(1.1);
    }
	
	#button-magnet-container {
		top: 60% !important;
	}
	
	@media (max-width:639px) {
      #button-consultation-container {
		  top: 40%;
	  }
	  #button-magnet-container {
		  top:75% !important;
	  }
    }
