.trialFixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #f7a41c;
  z-index: 9999;
  height: 45px;
}
.trialFixed .trialText {
  font-family: "Almarai", "Roboto", "Droid Arabic Kufi";
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0;
}

.trialFixed .trialCTA {
  background: #ffffff;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 8px;
  font-family: "Almarai", "Roboto", "Droid Arabic Kufi";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  padding: 4px 27px;
  text-decoration: none;
}

@media (max-width: 768px) {
    .trialFixed {
        gap: 8px;
      }
      .trialFixed .trialText {
        font-size: 14px;
      }
      .trialFixed .trialCTA {
        font-size: 14px;
        padding: 4px 12px;
      }
}