/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.cf7-price-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap; /* ép 1 dòng */
  width: 100%;
}

.cf7-price-bar .cf7-field {
  flex: 1;
}

.cf7-price-bar input,
.cf7-price-bar select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
  box-sizing: border-box;
}

.cf7-price-bar select {
  background-color: #fff;
}

.cf7-price-bar .cf7-submit {
  flex: 0 0 auto;
}

.cf7-price-bar input[type="submit"] {
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8a00, #ff5a00);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
@media (max-width: 768px) {
  .cf7-price-bar {
    flex-wrap: wrap;
  }

  .cf7-price-bar .cf7-submit {
    width: 100%;
  }

  .cf7-price-bar input[type="submit"] {
    width: 100%;
  }
}
