/**
 * B2B Validator Frontend Styles
 */

/* Select2 container */
.b2b-company-search.select2-hidden-accessible + .select2-container {
	width: 100% !important;
}

/* Field wrappers */
.b2b-company-name,
.b2b-company-regcode,
.b2b-company-vat {
	margin-bottom: 15px;
	transition: opacity 0.3s ease;
}

/* Readonly fields */
.b2b-company-name input[readonly],
.b2b-company-vat input[readonly] {
	background-color: #f5f5f5;
	cursor: not-allowed;
}

/* Select2 styling */
.select2-container--default .select2-selection--single {
	height: 38px;
	/*padding: 5px;*/
	border: 1px solid #ddd;
	border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 26px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 36px;
}

.select2-container--default .select2-dropdown {
	border: 1px solid #ddd;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.select2-container--default .select2-results__option {
	padding: 10px 15px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #2271b1;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #ddd;
	padding: 8px;
}

/* Required indicator */
.b2b-company-name .required,
.b2b-company-regcode .required {
	color: #e00;
	font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
	.select2-container--default .select2-results__option {
		padding: 12px 15px;
	}
}

input.disabled {
    background-color: #f5f5f5 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

#billing_reg_nr_field .select2-container {
	width: 100% !important;
}