/* PROCESS (registration.html.twig / overview.html.twig / payment.html.twig) */
.mx_sales_process {
    padding: 5px 10px;
    background: #f9f9f9;
    border: 1px #DDD solid;
    color: #000;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: table;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}
.mx_sales_process a {color:#000 !important;}
.mx_sales_your_data h2 {
	margin-bottom:10px;
}

.mx_sales_process ul, .mx_sales_process li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mx_sales_process li {
    float: left;
}

.mx_sales_process a {
    color: #777;
    text-decoration: underline;
}

.mx_sales_process li:after {
    color: #777;
    padding: 0 10px;
    content: '/';
    font-weight: normal;
}

.mx_sales_process li:last-child:after {
    padding: 0;
    content: '';
}

/* GENERAL ROWS / INPUT */
.mx_sales_row {
    display: table;
    width: 100%;
    margin-bottom: 5px;
    padding-right: 15px;
    box-sizing: border-box;
    clear: both;
}

.mx_sales_row label, .mx_sales_input {
    display: inline-block;
    float: left;
    box-sizing: border-box;
}

.mx_sales_row > label {
    width: 40%;
}

.mx_sales_input {
    width: 60%;
}

.mx_sales_row input[type=text], .mx_sales_row input[type=email], .mx_sales_row input[type=password], .mx_sales_row textarea {
    padding: 4px 10px;
    border: 1px #DDD solid;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}

.mx_sales_row textarea {
    height: 70px;
}

.mx_sales_row input[type=submit], .mx_sales_row input[type=reset], .mx_sales_row input[type=button] {
    background: #f9f9f9;
    padding: 4px 10px;
    font-size: 14px;
    border: 1px #DDD solid;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    cursor: pointer;
    color: #000;
    height: auto;
}

/* RESPONSIVE */
@media screen and (max-width: 767px) {
    .mx_sales_row > label, .mx_sales_input {
        width: 100%;
    }
    .mx_sales_row {

    }
}