form {
  margin: 0;
}
form.form_margin {
  margin-top: 35px;
}
.area_form {
  position: relative;
  font-size: 0.85rem;
  margin-bottom: 75px;
}
.area_form:last-child {
  margin-bottom: 0;
}
.title_form {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.035em;
  padding-bottom: 15px;
  border-bottom: 1px solid #d4d4d4;
}
.area_form .row.row_form {
  margin-bottom: 35px;
}
input {
  display: block;
  height: 36px;
  width: 100%;
  color: #424242;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  outline: none;
  padding: 0 0.7rem;
  border-radius: 2px;
  -webkit-appearance: none;
}
textarea {
  display: block;
  width: 100%;
  color: #424242;
  min-height: 130px;
  border: 1px solid #d4d4d4;
  padding: 0.7rem;
  border-radius: 2px;
  resize: none;
}
input[type=text]:focus {
  background-color: #fff;
  border-color: #e14c8a;
}
input[type="text"]:disabled {
  background: #f3f3f3;
}
textarea:focus {
  background-color: #fff;
}
button {
  display: block;
  padding: 7px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #e14c8a;
  font-weight: 700;
  border: 1px solid #e14c8a;
  background-color: transparent;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  transition: background 0.3s, color 0.2s;
}
button:hover {
  background-color: #e14c8a;
  color: #fff;
}
button.button_search {
  display: inline-block;
  width: 95%;
  max-width: none;
}
.label_row {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 2px;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.label_row a {
  text-decoration: underline;
}
.label_row:last-of-type {
  margin-bottom: 0 !important;
}
.label_row span.span_check {
  color: #666;
  margin-left: 15px;
}
.label_row input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
}
.label_row:hover input ~ .checkmark {
  background-color: #fff;
}
.label_row input:checked ~ .checkmark {
  background-color: #fff;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.label_row input:checked ~ .checkmark:after {
  display: block;
}
.label_row .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #424242;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radiobtn {
  position: absolute;
  top: 2px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
}
.label_row:hover input ~ .radiobtn {
  background-color: #fff;
}
.label_row input:checked ~ .radiobtn {
  background-color: #fff;
}
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}
.label_row input:checked ~ .radiobtn:after {
  display: block;
}
.label_row .radiobtn:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #424242;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.label_row.privacy {
  font-size: 0.7rem;
}
.label_row.privacy .checkmark {
  top: -1px;
}
/*ERROR*/
label.error {
  color: #fff;
  display: table;
  background-color: #d4d4d4;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  font-size: 11px;
  padding: 5px 15px;
  border-radius: 2px;
}
/*ALERT*/
.alert_message {
  display: block;
  padding: 35px;
  font-size: 0.7rem;
  border: 1px solid #d4d4d4;
  background-color: #f3f3f3;
}
/*QUANTITY*/
input.quantity_value, button.quantity_button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 !important;
}
input.quantity_value {
  width: 55%;
  height: 46px;
  text-align: center;
  font-size: 0.85rem;
}
button.quantity_button {
  width: 18%;
  padding: 0;
  height: 46px;
  font-size: 1.5rem;
}
.row_table button.quantity_button {
  font-size: 1rem;
  height: 32px;
}
.row_table input.quantity_value {
  height: 32px;
}
/*DISABLED*/
.disabled {
  pointer-events: none;
  opacity: .5;
  background-color: #999;
}
/*PLACEHOLDER*/ ::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
  opacity: 1;
}
::-moz-placeholder {
  color: #999;
  font-weight: 400;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
  opacity: 1;
}
:-moz-placeholder {
  color: #999;
  font-weight: 400;
  opacity: 1;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus:-ms-placeholder, textarea:focus:-ms-placeholder {
  opacity: 0;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus textarea:-webkit-autofill, textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
  background-color: transparent !important;
  background-image: none !important;
  -webkit-text-fill-color: #585858 !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/**/
/*RESPONSIVE*/
/**/
@media (max-width: 1700px) {}
@media (max-width: 1199px) {
	input {
		height: 34px;
	}
}
@media (max-width: 991px) {}
@media (max-width: 767px) {}