/* form editor (begin) */

.form-layout{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 70%;
  padding: 15px;

  color: #000;
  background: #fff;
  }
.form-layout .product-text{
  padding: 0;
  }
.form-layout .product-image{
  float: none;

  padding:15px 0;
  }
.form-layout .product-image img{
  width: auto;
  max-width: 100%;

  border: none;
  }
.form-layout .field{
  margin-bottom: 15px;
  }
.form-layout .label{
  font-size: 18px;

  padding-bottom: 5px;
  }
.form-layout .help{
  font-size: 13px;

  color: #999;
  }
.form-layout input[type='text'],
.form-layout input[type='password'],
.form-layout input[type='email']{
  padding: 8px;
  }
.form-layout textarea{
  height: 80px;
  }
.form-layout select{
  width: 50%;
  margin: 6px 0;
  }
.form-layout h3{
  font-size: 22px;
  font-weight: normal;

  margin: 0;

  color: #000;
  }
.form-layout .buttons{
  margin-top: 20px;
  }
@media only screen and (max-width: 794px) and (min-width: 0){
  .form-layout,
  .form-layout select{
    width: 100%;
    }
  }
