.call-now-button {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: stretch;
  font-family: sans-serif;

  overflow: hidden;
}

.call-now-button.cnb-full {
  flex-direction: row;
  width: 100%;
}

.call-now-button.cnb-full a {
  color: #fff;
  flex: 1 1 0;
  text-align: center;
  text-decoration: none;
  font-size: 11px;        
  font-family: sans-serif;
  padding: 5px 1px;        
  position: relative;
  pointer-events: auto;
  transition: filter .5s;
  text-transform: uppercase;
  
}



.call-now-button.cnb-full a:first-child {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
.call-now-button.cnb-full a:last-child {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}

.cnb-inside-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 42px;       
  justify-content: center;
  line-height: 1.4;
}

.cnb-inside-item .material-symbols-rounded {
  font-size: 24px;
  margin-bottom: 2px;    
  line-height: 1;
  transition: transform .5s;
  transform-origin: center center; 
}
.call-now-button.cnb-full a:hover .cnb-inside-item {
  transform: none !important;
}
.call-now-button.cnb-full a:hover .material-symbols-rounded {
  transform: scale(1.1);
}

.material-symbols-rounded {
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 3px;
  transition: transform 0.5s;
}
.call-now-button.cnb-full {
  opacity: 1;
  z-index: 2147483647; 
}


@media (min-width: 450px) {
  .call-now-button.cnb-full.cnb-full-bottom.cnb-items-3,
  .call-now-button.cnb-full.cnb-full-top.cnb-items-3 {
    max-width: 450px;
    left: calc(50% - 150px * 1.5); 
  }

  .call-now-button.cnb-full.cnb-full-bottom {
    bottom: 5px;
  }
}

@media (max-width: 767px) {
  .call-now-button.cnb-full {
    border-radius: 0 !important;
    width: 100%;
    bottom: 0px;
    
  }
  .call-now-button.cnb-full a:first-child,
  .call-now-button.cnb-full a:last-child {
    border-radius: 0 !important;
  }
}
.cnb-inside-item svg,
.cnb-inside-item .material-symbols-rounded {
  width: 22px;
  height: 22px;
  margin: 0 auto 4px auto; /* increase last value for more space */
  display: block;
  fill: #fff;
  line-height: 1;
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center center;
}

.call-now-button.cnb-full a:hover svg,
.call-now-button.cnb-full a:hover .material-symbols-rounded {
  transform: scale(1.1);
}

/* === Text below icons === */
.cnb-inside-item span {
  display: block;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* === Alignment fix === */
.cnb-inside-item {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers icon + text */
  justify-content: center;
  height: 100%;
  min-height: 42px;

   
   
  transform-origin: center center;
}





@media (min-width: 768px) {
  .call-now-button.cnb-items-3 {
    max-width: 440px;
    
    border-radius: 35px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.25); */
  }
}
