form {
  position: relative;
}

.form-error {
	color: #A94442;
	background-color: #F2DEDE;
	border-color: #EBCCD1;
	padding: 15px;
	margin-bottom: 15px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.form-item {
	margin: 10px 0;
	max-width: 100%;
	width: 500px;
  box-sizing: border-box;
}
.form-item:first-of-type {
	margin-top: 0;
}
.form-item:last-of-type {
	margin-bottom: 0;
}
.form-item.inactive {
	display: none;
}

.form-label {
	display: block;
	font-weight: normal;
}

.form-input {
	position: relative;
}

.form-root-container:after,
.form-items > .inner:after {
	content: "";
	display: block;
	clear: both;
}

.form-type-hidden {
	margin: 0;
	display: none;
}

select,
textarea,
input {
	font-family: inherit;
	font-size: inherit;
}
.ios select,
.ios textarea,
.ios input {
  font-size: 16px;
}

.form-select,
.form-textfield {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 50px;
	padding: 13px 24px;
	color: #59554e;
	background: transparent;
	border: 1px solid rgba(89,85,78,0.2);
	transition: border-color 0.15s ease-in-out;
}
.form-select:focus,
.form-textfield:focus {
	border-color: #1f5a9f;
	outline: 0px none;
}
.form-textfield {
	-webkit-appearance: none;
}
.form-textfield:disabled {
	background: #f8f8f8;
	color: #555;
}
.form-textarea {
	height: 100px;
	margin: 0;
}
.form-number {
	max-width: 100px;
}
.form-date {
	max-width: 120px;
}
.form-time {
	max-width: 120px;
}

.form-password-generator {
	cursor: pointer;
	position: absolute;
	top: 5px;
	left: 100%;
	margin-left: 7px;
}

.form-delete-button,
.form-add-button {
	margin-top: 10px;
}


.radio-label,
.checkbox-label {
	cursor: pointer;
}
.radio-label .fa,
.checkbox-label .fa {
	margin-right: 2px;
}
.radio-label .radio-icon-checked,
.checkbox-label .checkbox-icon-checked {
	display: none;
}
.radio-label input,
.checkbox-label input {
	/*display: none;*/
}
.radio-label input:checked ~ .radio-icon-checked,
.checkbox-label input:checked ~ .checkbox-icon-checked {
	display: inline-block;
}
.radio-label input:checked ~ .radio-icon-unchecked,
.checkbox-label input:checked ~ .checkbox-icon-unchecked {
	display: none;
}
.form-item-error .form-label {
	color: #A94442;
}
.form-item-error .form-textfield {
	border-color: #A94442;
}
.form-item-error .form-textfield:focus {
	border-color: #843534;
}

.form-input-error {
	color: #A94442;
}

.form-item-icon .form-input {
	display: table;
	width: 100%;
}
.form-item-icon .form-textfield {
	display: table-cell;
	border-radius: 0 4px 4px 0;
	width: 100%;
}
.form-icon-addon {
	display: table-cell;
	width: 40px;
	vertical-align: middle;
	font-size: 16px;
	padding: 0 10px;
	line-height: 14px;
	color: #555;
	text-align: center;
	background-color: #EEE;
	border: 1px solid #CCC;
	border-radius: 4px 0 0 4px;
	border-right: 0;
	box-sizing: border-box;
}

.form-icon-feedback {
	position: absolute;
	right: 10px;
	top: 0;
	font-size: 18px;
	line-height: 50px;
}
.form-icon-error {
	color: #A94442;
}
.form-type-select .form-icon-feedback {
	right: 25px;
}

.loader,
.form-loader,
.form-item-loader {
	display: none;
	font-size: 14px;
}
.form-loader {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	text-align: center;
	margin-top: 10px;
}
.loader.fa-spin,
.form-loader .fa-spin,
.form-item-loader .fa-spin {
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
}
.loading > .loader {
	display: inline-block;
}
.form.loading > .form-loader,
.form-item.loading > .form-item-loader {
	display: block;
}
.form-item.loading > .form-add-button {
	display: none;
}


.form-type-address,
.form-type-fieldset {
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 4px;
	box-sizing: border-box;
}
.form-type-container:after,
.form-type-fieldset:after {
	content: "";
	display: block;
	clear: both;
}
.form-type-fieldset > .form-label,
.form-type-address > .form-label {
	font-weight: 600;
	color: #959595;
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.form-type-address .form-name-postal-code {
	max-width: 100px;
	float: left;
	margin-top: 0;
}
.form-type-address .form-name-locality {
	max-width: 356px;
	margin-left: 10px;
	float: left;
	margin-top: 0;
}
.form-type-address .form-name-country {
	clear: both;
}
.form-collapsible.collapsed .form-delete-button {
	display: none;
}

.form-item-sortable {
	padding-left: 25px;
}
.form-sortable {
	width: 25px;
	text-align: center;
}

.form-type-editor {
	width: auto;
}

.form-type-actions .form-item {
	float: left;
	margin: 0 10px 0 0;
	width: auto;
}
.form-type-actions:after {
	clear: both;
	content: "";
	display: block;
}

.form-type-checkboxes .form-label,
.form-type-checkbox .form-label {
	cursor: pointer;
	margin: 0;
}

/*.form-type-checkboxes .form-label:hover,
.form-type-checkbox .form-label:hover {
	background-color: #5495e1;
}*/

.form-file-upload,
.form-type-file.has-value > .form-input > .form-file-preview {
	display: block;
}
.form-type-file.has-value > .form-input > .form-file-upload,
.form-type-file.loading > .form-input > .form-file-upload,
.form-type-file.loading > .form-input > .form-file-preview,
.form-file-preview {
	display: none;
}
.form-file-upload-button {
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.form-file {
	position: absolute;
	top: 2px;
	bottom: 2px;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
}
.form-file-preview-image {
	height: auto;
	width: auto;
	max-width: 100%;
	max-height: 350px;
}
.form-type-file .form-add-button,
.form-type-file .form-delete-button {
	display: none;
}

.form-search .form-item {
	float: left;
	margin: 20px 10px 0 0;
}
.form-search:after {
	clear: both;
	display: block;
	content: "";
}

.select-custom-title .fa {
  width: 15px;
  height: 8px;
  right: 22px;
  margin-top: 8px;
  background: url("../images/dropdown.png") no-repeat 0 0;
  background-size: 100% auto;
}
.select-custom-title .fa:before {
  display: none;
}
.select-custom-options {
	background: #fff;
	margin-top: 2px;
	border: 1px solid #59554e;
}
.select-custom-option {
  box-sizing: border-box;
  padding: 5px 15px;
}
.select-custom-option:hover,
.select-custom-option.active {
	background: #f2f2f2;
}
.select-custom.active .select-custom-title {
  border-color: #59554e;
}

.autocomplete-preview {
	white-space: nowrap;
	vertical-align: middle;
	-moz-user-select: none;
	padding-right: 20px;
}
.autocomplete-remove {
	color: #C9302C;
	top: 6px;
	right: 12px;
}
.autocomplete-items {
	background: #fff;
	padding: 3px 0;
	margin-top: 2px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.18);
	border-radius: 4px;
	border: 1px solid #ccc;
}
.autocomplete-item.active {
	background: #f5f5f5;
}

.autoselect-options {
	background: #fff;
	padding: 3px 0;
	margin-top: 2px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.18);
	border-radius: 4px;
	border: 1px solid #ccc;
}
.autoselect-option:hover,
.autoselect-option.active {
	background: #f5f5f5;
}

.checkboxes-select-options {
	background: #fff;
	padding: 3px 0;
	margin-top: 2px;
	box-shadow: 0 6px 12px rgba(0,0,0,0.18);
	border-radius: 4px;
	border: 1px solid #ccc;
}
.checkboxes-select-option:hover,
.checkboxes-select-option.active {
	background: #f5f5f5;
}

.interval-slider:after {
	content: "";
	display: block;
	clear: both;
}
.slider-text {
	float: left;
	width: 17%;
	font-style: italic;
}
.slider-text-max {
	text-align: right;
}
.slider-outer {
	float: left;
	width: 60%;
	margin: 10px 3% 0;
	background-color: #f7f7f7;
	background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
	background-repeat: repeat-x;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3) inset;
}
.slider-inner {
	border-top: 1px solid #ccc;
	background-image: linear-gradient(to bottom, #ddd, #afafaf);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}
.slider-point-inner {
	background-color: #0E90D2;
	background-image: linear-gradient(to bottom, #149BDF, #0480BE);
	background-repeat: repeat-x;
	box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px rgba(0, 0, 0, 0.2);
}


/* ADD TO CART */
.form-add-to-cart .form-name-size-id {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.form-add-to-cart .size-guide {
	display: block;
	box-sizing: border-box;
  width: 48%;
  float: left;
	height: 50px;
	padding: 13px 24px;
  margin: 0 0 10px;
	color: #59554e;
	background: transparent;
	border: 1px solid rgba(89,85,78,0.2);
	transition: border-color 0.15s ease-in-out;
  cursor: pointer;
}
.form-add-to-cart .size-guide:hover {
	border-color: #59554e;
	outline: 0px none;
}
.form-add-to-cart .form-type-submit {
  clear: both;
}
.btn.read-more {
	position: relative;
    overflow: hidden;
	padding: 9px 13px;
	background: #FFF;
    border: 1px solid #1f5a9f;
    color: #1f5a9f;
    font-size: 11px;
}
.btn.read-more:hover {
	position: relative;
    overflow: hidden;
	padding: 9px 13px;
	background: #FFF;
    border: 1px solid #5495e1;
    color: #5495e1;
}
.btn.history-btn {
	position: relative;
    overflow: hidden;
	padding: 9px 13px;
	background: #FFF;
    border: 1px solid #1f5a9f;
    color: #1f5a9f;
    font-size: 9px;
    margin-right: 44px;
}
.btn.history-btn:hover {
	position: relative;
    overflow: hidden;
	padding: 9px 13px;
	background: #FFF;
    border: 1px solid #5495e1;
    color: #5495e1;
}
.form-add-to-cart .btn {
  position: relative;
  overflow: hidden;
  /*display: block;*/
  padding: 9px 13px;
  background: #fff;
  color: #1F5A9F;
  font-size: 11px;
}
.form-add-to-cart .btn:hover {
  background: #5495e1;
  color: #fff;
}
.form-add-to-cart .btn .hover {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}
.form-add-to-cart .btn > .inner {
  /*transform: translate3d(0,0,0);
  transition: transform 0.2s ease 0.1s;
  -webkit-transition: -webkit-transform 0.2s ease 0.1s;*/
}
.form-add-to-cart .btn:hover > .inner {
  /*transform: translate3d(0, 100%, 0);
  -webkit-transform: translate3d(0, 100%, 0);*/
}
.form-add-to-cart .btn.loading > .inner {
  display: none;
}


/* NEWSLETTER SIGNUP */
.form-newsletter-signup .form-item-textfield {
	width: 480px;
}
.form-newsletter-signup .nf-button {
	width: 190px;
}
.form-newsletter-signup .nf-button .btn-progress {
  position: absolute;
  width: 0;
  background: #7a6a53;
  transition: width 1s ease-out;
  -webkit-transition: width 1s ease-out;
}
.form-newsletter-signup.loading .nf-button .btn-progress {
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
}
.form-newsletter-signup .nf-button .inner {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
}
.form-newsletter-signup.submitted .nf-button .inner {
  transform: translate3d(0,-100%,0);
  -webkit-transform: translate3d(0,-100%,0);
}
.form-newsletter-signup .nf-button .mobile {
  display: none;
}
.form-newsletter-signup .nf-button .complete {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 100%;
  background: url("../images/newsletter.png") no-repeat center center;
  background-size: 24px 16px;
  display: none;
}
.form-newsletter-signup .progress-current {
	margin: 20px 0 0;
}
.form-newsletter-signup .progress-bar {
	display: none;
}
.form-newsletter-signup .form-loader {
  display: none !important;
}

/* Search */
.form-product-search .nf-button .mobile, .form-product-search .nf-button .complete {
	display: none;
}

.form-product-search .form-item-textfield {
	width: 87%;
}

.form-product-search .nf-button {
	width: 122px;
}
.user-profile .form-submit.btn.btn-primary {
    padding: 10px 20px;
}

.form-user-order-edit > .form-items > .form-type-fieldset {
    clear: both;
    float: none;
    margin: 10px 0;
    max-width: 100%;
    width: auto;
}

.form-user-order-edit .form-collapsible {
    border: medium none;
    padding: 0;
}

.form-user-order-edit > .form-items > .form-type-fieldset .form-item {
    float: left;
    margin: 0 1% 10px 0;
    max-width: 32%;
    width: 250px;
}

.form-user-order-edit > .form-items .form-name-shoes {
    float: none;
    margin: 0;
    max-width: 100%;
    width: auto;
}

.form-user-order-edit .form-name-shoes .form-type-container {
    margin: 0 0 5px;
    max-width: 95%;
    position: relative;
    width: auto;
}

.form-user-order-edit .form-name-shoes .form-name-article {
    width: 36%;
}

.form-user-order-edit .form-name-shoes .form-name-article, .form-user-order-edit .form-name-shoes .form-name-price, .form-user-order-edit .form-name-shoes .form-name-quantity {
    float: left;
    margin: 0;
}

.form-user-order-edit .form-name-shoes .form-name-article .form-label, .form-user-order-edit .form-name-shoes .form-name-price .form-label, .form-user-order-edit .form-name-shoes .form-name-quantity .form-label {
    margin-top: 19.5px;
}

.form-user-order-edit .form-name-shoes .form-name-quantity {
    width: 16%;
}

.form-user-order-edit .form-name-shoes .form-name-price {
    width: 16%;
}

.form-user-order-edit .form-label {
    margin-bottom: 2px;
}

.form-user-order-edit .form-label {
    display: block;
    font-weight: normal;
}

.form-user-order-edit .form-name-shoes .form-name-article .form-input {
    border-left-width: 1px;
}

.form-user-order-edit .form-name-shoes .form-delete-button {
    bottom: 35px;
    font-family: FontAwesome;
    left: 97%;
    position: absolute;
}

.form-user-order-edit .form-delete-button {
    background: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}

.form-user-order-edit .form-order-edit .form-name-shoes .form-button {
    width: auto;
}

.form-user-order-edit .form-delete-button, .form-user-order-edit .form-add-button {
    margin-top: 10px;
}

.form-user-order-edit .form-name-shoes .form-input {
    border-color: #cdcdcd;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 1px 0;
}

.form-user-order-edit .autocomplete-remove, .form-user-order-edit .form-add-button {
	display: none;
}

.form-user-order-edit .form-input {
    position: relative;
}

.form-user-order-edit .form-textfield {
    border: 1px solid #cdcdcd;
    border-radius: 2px;
    box-shadow: none;
    box-sizing: border-box;
    display: block;
    font-size: 13px;
    height: 31px;
    padding: 5px;
    width: 100%;
}

.form-user-order-edit .btn-primary {
	padding: 6px 12px;
}

.form-user-order-edit .radio-label input, .form-user-order-edit .checkbox-label input {
    display: none;
}

.form-user-order-edit .form-name-summary .form-item-textfield {
    float: left;
    margin: 0 1% 10px 0;
    max-width: 24%;
    width: 180px;
}

.content-form {
	margin-bottom: 20px;
}

.user-order .content-form .customer-name {
	margin-top: 20px;
}

.user-order .content-form .customer-name .name {
	font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.user-order .content-form .address-content {
	margin-bottom: 20px;
	margin-top: 20px;
}

.user-order .content-form .billing-address-content, .user-order .content-form .delivery-address-content {
	width: 49%;
}

.user-order .content-form .billing-address-items label, .user-order .content-form .delivery-address-items label {
	display: block;
	font-size: 14px;
}

.user-order .content-form .billing-address-items span, .user-order .content-form .delivery-address-items span {
	font-size: 14px;
}

.user-order .content-form .billing-address-items .address-item, .user-order .content-form .delivery-address-items .address-item {
	margin-bottom: 10px;
} 

.user-order .content-form .billing-address-content .address-header, .user-order .content-form .delivery-address-content .address-header {
	font-size: 18px;
}

.user-order .content-form .order-items {
	margin-bottom: 30px;
}

.user-order .content-form .order-items .order-item-header {
	font-size: 18px;
}

.user-order .content-form .order-items .item-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.user-order .content-form .order-items .item-list .order-item .item {
	text-align: left;
}

.user-order .content-form .order-items .item-list .order-item .item .item-title {
	width: 40%;
	font-size: 14px;
}

.user-order .content-form .order-items .item-list .order-item .item .item-quantity {
	width: 10%;
	font-size: 14px;
}

.user-order .content-form .order-items .item-list .order-item .item .item-price {
	width: 20%;
	font-size: 14px;
	text-align: right;
}

.user-order .content-form .order-prices .item .include-vat {
	width: 40%;
}

.user-order .content-form .order-prices .item .exclude-vat {
	width: 10%;
}

.user-order .content-form .order-prices .item .to-pay {
	width: 20%;
}

.user-order .content-form .order-prices {
	margin-bottom: 30px;
}

.user-order .content-form .order-prices .price-item {
	width: 20%;
	text-align: right;
	margin-right: 5px;
}

.user-order .content-form .order-prices .price-item label {
	font-size: 14px;
}

.user-order .content-form .order-prices .price-item .value {
	font-size: 14px;
}

.user-order .form-type-button input[name="proceed"] {
	padding: 6px 12px;
	background: #c0392b;
}

.user-order .form-type-button input[name="proceed"]:hover {
	background: #e74c3c;
}

.product-price .form-add-to-cart .btn {
	background: #1F5A9F !important;
	color: #FFF !important;
}

.individualist td {
	font-size: 24px;
}
.individualist a.btn{
	margin: 10px;
	padding: 10px;
	line-height: 20px;

}