/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive 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;
}
