/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 12:30:02 */
/* Define Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.button {
  font-family: 'GT Eesti', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-transform: none;
  color: #ffffff;
  padding: 5px 10px 5px 10px; /* updated to remove left gap */
  border: none;
  background-color: #4CAF50;
  text-align: left;
  text-decoration: none;
  display: inline-block;
  margin: 4px;
  border-radius: 4px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
  position: relative;
  white-space: nowrap;
  text-transform: none;
}

.button i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

@media (max-width: 767px) {
  .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: left;
  }
  .button {
    font-size: 11px;
    line-height: 18px;
    padding: 8px 12px;
    margin: 4px;
    padding: 6px 10px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    white-space: nowrap;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    width: auto;
    text-transform: none;
  }
  .button i {
    display: inline-block;
    position: static;
    margin-right: 8px;
    vertical-align: middle;
    top: auto;
    transform: none;
    font-size: 11px;
  }
  .button span {
    display: inline-block;
    vertical-align: middle;
  }
  .button-container .button {
    flex-basis: calc(10% - 5px); /* updated to 50% */
    width: auto;
  }
  .button-container .button:first-child {
    margin-right: 0px;
  }
}