/*--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
.register-input + .select2 {
	margin-bottom: 16px;
}

.field_country .select2>.selection>.select2-selection {
	background-color: #fff;
	border: 1px solid var(--bb-content-border-color);
	border-radius: 6px;
	padding: 10px 6px;
	height: revert;
	color: var(--bb-body-text-color);
	font-size: 15px;
	height: 50px;
}

.postbox .field_country .select2>.selection>.select2-selection {
	background-color: revert;
	border: revert;
	border-radius: revert;
	padding: revert;
	height: revert;
	color: revert;
	font-size: revert;
	height: revert;

	box-shadow: 0 0 0 transparent;
	border-radius: 4px;
	border: 1px solid #8c8f94;
	background-color: #fff;
	color: #2c3338;
}

.register-input + .select2>.selection>.select2-selection {
	background-color: #fff;
	border: 1px solid var(--bb-content-border-color);
	border-radius: 6px;
	padding: 6px 6px;
	height: revert;
	color: var(--bb-body-text-color);
	font-size: 16px;
}

.field_country .select2>.selection>.select2-selection .select2-selection__placeholder,
.register-input + .select2>.selection>.select2-selection .select2-selection__placeholder {
	opacity: 0.7;
}

.field_country .select2>.selection>.select2-selection>.select2-selection__arrow,
.register-input + .select2>.selection>.select2-selection>.select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 8px;
	right: 7px;
	width: 20px;
}

.field_country .select2>.selection>.select2-selection>.select2-selection__arrow {
	height: 26px;
	top: 12px;
	right: 9px;
}

.postbox .field_country .select2>.selection>.select2-selection>.select2-selection__arrow {
	height: 17px;
	top: 8px;
	right: 5px;
	width: 20px;
}

.field_country .select2-container--open>.selection>.select2-selection,
.register-input + .select2-container--open>.selection>.select2-selection {
	border-color: var(--bb-input-focus-border-color);
	box-shadow: var(--bb-input-focus-shadow);
}

.profile-edit .select2-results__option.select2-results__option--highlighted,
.login .select2-results__option--selectable.select2-results__option--highlighted {
	background-color: var(--bb-login-register-button-background-color-hover) !important;
}

.profile-edit .select2-search__field {
	padding-left: 10px !important;
}

/*.learndash-wrapper .ld-status {
	height: revert !important;
}*/

.data-missing-popup {
	background: rgba(0, 0, 0, 0.2);
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 615;
}

.data-missing-popup > div {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(calc(-50% + 70px), calc(-50% + 70px));
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.3);
	margin: -70px;
}

.data-missing-popup > div > div >  a {
	display: inline-block;
	padding: 5px 20px;
	border-radius: var(--bb-button-radius);
	background: var(--bb-primary-button-background-regular);
	border: 1px solid var(--bb-primary-button-border-regular);
	color: var(--bb-primary-button-text-regular);
}

.data-missing-popup > div > div > a:hover {
	border-radius: var(--bb-button-radius);
	background: var(--bb-primary-button-background-hover);
	border: 1px solid var(--bb-primary-button-border-hover);
	color: var(--bb-primary-button-text-hover);
}

.data-missing-popup > div > .center {
	text-align: center;
}

.data-missing-popup > div > p {
	text-align: center;
}

.data-missing-popup + .site {
	transition: filter 0.3s;
	filter: blur(5px);
}

.data-missing-popup.accepted + .site {
	filter: blur(0);
}

/*19-03-2025*/
.checkbox-wrapper-3 input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.checkbox-wrapper-3 .toggle {
	position: relative;
	display: block;
	width: 40px;
	height: 20px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transform: translate3d(0, 0, 0);
}
.checkbox-wrapper-3 .toggle:before {
	content: "";
	position: relative;
	top: 3px;
	left: 3px;
	width: 34px;
	height: 14px;
	display: block;
	background: #9A9999;
	border-radius: 8px;
	transition: background 0.2s ease;
}
.checkbox-wrapper-3 .toggle span {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	display: block;
	background: white;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
	transition: all 0.2s ease;
}
.checkbox-wrapper-3 .toggle span:before {
	content: "";
	position: absolute;
	display: block;
	margin: -18px;
	width: 56px;
	height: 56px;
	background: rgba(79, 46, 220, 0.5);
	border-radius: 50%;
	transform: scale(0);
	opacity: 1;
	pointer-events: none;
}

.checkbox-wrapper-3 :checked + .toggle:before {
	background: rgb(185, 157, 210);
}
.checkbox-wrapper-3 :checked + .toggle span {
	background: rgb(109, 59, 155);
	transform: translateX(20px);
	transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
	box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}
.checkbox-wrapper-3 :checked + .toggle span:before {
	transform: scale(1);
	opacity: 0;
	transition: all 0.4s ease;
}
.checkbox-wrapper-3 :checked + .toggle span:hover {
	background-color: #535db3;
}
.metabox-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
}
.metabox-row input {
	width: 60%;
}
#pre_reg_date_selection h2 {
	text-wrap: nowrap;
}

/*07-07-2025*/
.ajax-controls {
	padding-left: 0.7em;
	padding-right: 0.7em;
}
/*08.07.2025*/
.product_meta span {
	margin-bottom: 8px;
}
.pr-sub-heading {
	font-size: 1.05rem !important;
}
.vendor-img-list {
	display: flex;
	flex-direction: column;
}
.vendor-img-list>div:not(:first-child) {
	margin-top: 9px;
	border-top: 1px solid silver;
	padding-top: 11px;
}
.vendor-img-list>div>a:first-child {
	margin-right: 10px;
}
/*09.07.2025*/
.bapf_button.bapf_reset, .bapf_search {
	background: transparent;
	color: var(--bb-primary-button-border-regular);
}
.bapf_button.bapf_reset:hover, .bapf_search:hover {
	background: rgba(97, 56, 157, 0.75);
	color: #FFFFFF;
}
.bapf_search {
	content: "\f002";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	padding: 0.8em 0.9em;
}
.bapf_search::before {
	content: "\f002";
}
.bapf_head>h3 {
	margin-bottom: 0.5em;
	font-weight: bold;
}
.bapf_sfilter.bapf_ckbox input[type="checkbox"] {
	margin-right: 13px;
	cursor: pointer;
}
/*11.07.2025*/
.clear-filters button::before {
	content: "\f00d";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	padding: 0 8px 0 0;
}
.widget label:not(.bps-label) {
	font-weight: normal !important;
	font-size: revert;
}
.bapf_sfilter:not(.clear-filters) {
	margin-bottom: 40px !important;
}
.bapf_sfilter.bapf_ckbox input[type="checkbox"]:checked {
	background: rgba(97, 56, 157, 1);
	border-radius: 2px;
	border: 0 !important;
}
.bapf_ckbox_smlchck input[type="checkbox"]:checked::after {
	content: "";
	width: 6px;
	height: 3px;
	border: solid #FFFFFF;
	border-width: 0 0 2px 2px;
	display: block;
	position: absolute;
	top: 4px;
	left: 3px;
	transform: rotate(-45deg);
	box-sizing: content-box;
}
.bapf_show_hide {
	color: rgba(97, 56, 157, 1);
	line-height: 2em;
}
.compare_button {
	background: transparent;
	color: var(--bb-primary-button-border-regular);
	border-radius: 100%;
	width: 40px;
	height: 42px;
	justify-content: center;
	margin-top: 15px;
}
.compare_button.woosc-added,
.compare_button:hover {
	background: rgba(97, 56, 157, 0.75);
	color: #FFFFFF;
}
.woocommerce ul.products:not(.elementor-grid) li.product,
.woocommerce ul.products:not(.elementor-grid) li.product.type-product {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}
.view-more-btn {
	margin-right: 20px;
	margin-top: 15px;
}
/*31.07.2025*/
.berocket_ajax_filters_sidebar_toggle.berocket_ajax_filters_toggle {
	position: fixed;
	z-index: 100;
	background: white;
	bottom: 0;
	padding: 15px;
	margin: 0;
	display: inline-flex;
	height: auto;
	width: 100vW !important;
	left: 0;
	box-shadow: 0 -1px 2px #00000010;
	justify-content: center;
	align-items: center;
}

.berocket_ajax_filters_sidebar_toggle.berocket_ajax_filters_toggle span {
	width: 26px;
	margin-left: revert;
	height: 37px;
}

#berocket-ajax-filters-sidebar > div {
	padding: 0 25px !important;
}
#berocket-ajax-filters-sidebar-close + * {
	margin-top: 20px !important;
}
#berocket-ajax-filters-sidebar-close {
	position: absolute !important;
	right: 0 !important;
	line-height: 39px;
	padding: 10px 20px 10px !important;
	font-family: Arial,serif !important;
	color: #a2a2a2;
}
#berocket-ajax-filters-sidebar .bapf_search {
	padding: 0.7em 0.8em;
}
@media screen and (max-width: 800px) {
	body .berocket_ajax_filters_sidebar_back.brapf_sidebar_float_mobile {
		z-index: 10;
	}
}
/*01.08.2025*/
.from_vendor.vendor-message-row {
	display: flex;
	justify-content: space-between;
}
.vendor-message-btn-wrapper {
	flex: 1;
}
.vendor-message-btn-wrapper button {
	width: 100%;
}
