/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
#tx_form {
  display: inline-block;
  white-space: nowrap;
}
#tx_form * {
  box-sizing: border-box;
}
#tx_form .tx_form_title {
  font-weight: bold;
}
#tx_form .tx_form_input .tx_form_input_title {
  display: inline-block;
  width: 200px;
  height: 30px;
  line-height: 30px;
}
#tx_form .tx_form_input input[type="text"],
#tx_form .tx_form_input select {
  padding: 5px;
  min-width: unset;
  width: 200px;
  height: 30px;
  line-height: 20px;
}
#tx_form .tx_form_input input[type="radio"],
#tx_form .tx_form_input input[type="checkbox"] {
  margin: 0 1% 0 4%;
  vertical-align: middle;
}
#tx_form .tx_form_input .tx_form_input_title + span input[type="radio"],
#tx_form .tx_form_input .tx_form_input_title + span input[type="checkbox"] {
  margin-left: 0;
}
#tx_form .tx_form_input br {
  display: block;
  content: " ";
  height: 5px;
}
#tx_form .tx_form_input br:first-child {
  display: none;
}
#tx_form #tx_form_submit {
  margin-top: 20px;
  width: 100%;
}
#tx_form #tx_form_success:empty,
#tx_form #tx_form_error {
  display: none;
}
#tx_form #tx_form_success {
  margin-top: 10px;
  padding: 3px 5px;
  border: 1px solid #89e594;
  background-color: #e3f6e5;
}
#tx_form #tx_form_error {
  margin-top: 10px;
  padding: 3px 5px;
  border: 1px solid #f58888;
  background-color: #f9c8c8;
}
