/**
 * jQuery.fontpicker - A font picker for Google Web Fonts and local fonts.
 *
 * Made by Arjan Haverkamp, https://www.webgear.nl
 * Copyright 2020-2023 Arjan Haverkamp
 * MIT Licensed
 * @version 1.6 - 2023-03-21
 * @url https://github.com/av01d/fontpicker-jquery-plugin
 */

.vb-font-picker {
	color: #000;
	pointer-events: auto;
}

.vb-font-picker * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.vb-font-picker.vb-fp-select {
	display: inline-block;
	outline: 0;

	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

	background: var(--vb-background-color) !important;
	color: var(--vb-link-color) !important;
	border: solid 1px var(--vb-border-color) !important;
	border-radius: 5px !important;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding: 15px;
	font-size: 20px;
	cursor: pointer;
}

.vb-font-picker.vb-fp-select:hover {
	background: var(--vb-input-color) !important;
}

.vb-fp-row,
.vb-fp-btns {
	display: flex;
}

.fp-row {
	display: grid;
	grid-template-columns: 50% 50%;
}

.vb-fp-row>input,
.vb-fp-row>select {
	flex: 1;
}

.vb-fp-favorite {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-inline-end: 2px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M923 283.6a260.04 260.04 0 0 0-56.9-82.8a264.4 264.4 0 0 0-84-55.5A265.34 265.34 0 0 0 679.7 125c-49.3 0-97.4 13.5-139.2 39c-10 6.1-19.5 12.8-28.5 20.1c-9-7.3-18.5-14-28.5-20.1c-41.8-25.5-89.9-39-139.2-39c-35.5 0-69.9 6.8-102.4 20.3c-31.4 13-59.7 31.7-84 55.5a258.44 258.44 0 0 0-56.9 82.8c-13.9 32.3-21 66.6-21 101.9c0 33.3 6.8 68 20.3 103.3c11.3 29.5 27.5 60.1 48.2 91c32.8 48.9 77.9 99.9 133.9 151.6c92.8 85.7 184.7 144.9 188.6 147.3l23.7 15.2c10.5 6.7 24 6.7 34.5 0l23.7-15.2c3.9-2.5 95.7-61.6 188.6-147.3c56-51.7 101.1-102.7 133.9-151.6c20.7-30.9 37-61.5 48.2-91c13.5-35.3 20.3-70 20.3-103.3c.1-35.3-7-69.6-20.9-101.9zM512 814.8S156 586.7 156 385.5C156 283.6 240.3 201 344.3 201c73.1 0 136.5 40.8 167.7 100.4C543.2 241.8 606.6 201 679.7 201c104 0 188.3 82.6 188.3 184.5c0 201.2-356 429.3-356 429.3z' fill='%23fff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
}

.vb-fp-favorite.checked {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M923 283.6a260.04 260.04 0 0 0-56.9-82.8a264.4 264.4 0 0 0-84-55.5A265.34 265.34 0 0 0 679.7 125c-49.3 0-97.4 13.5-139.2 39c-10 6.1-19.5 12.8-28.5 20.1c-9-7.3-18.5-14-28.5-20.1c-41.8-25.5-89.9-39-139.2-39c-3.5 0-69.9 6.8-102.4 20.3c-31.4 13-59.7 31.7-84 55.5a258.44 258.44 0 0 0-56.9 82.8c-13.9 32.3-21 66.6-21 101.9c0 33.3 6.8 68 20.3 103.3c11.3 29.5 27.5 60.1 48.2 91c32.8 48.9 77.9 99.9 133.9 151.6c92.8 85.7 184.7 144.9 188.6 147.3l23.7 15.2c10.5 6.7 24 6.7 34.5 0l23.7-15.2c3.9-2.5 95.7-61.6 188.6-147.3c56-51.7 101.1-102.7 133.9-151.6c20.7-30.9 37-61.5 48.2-91c13.5-35.3 20.3-70 20.3-103.3c.1-35.3-7-69.6-20.9-101.9z' fill='%23d00'/%3E%3C/svg%3E");
}

.vb-font-picker .vb-fp-btn {
	display: inline-block;
	background-color: #103040;
	color: #fff;
	padding: 3px 8px;
	font-size: 14px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
}

.vb-font-picker .vb-fp-btn:hover {
	background-color: #333;
	-webkit-box-shadow: 0 0 4px #ddd;
	box-shadow: 0 0 4px #ddd;
}

.vb-font-picker .vb-fp-btn:active {
	background-color: #fff;
	color: #000;
}

.vb-font-picker .vb-fp-btns {
	inset-inline-end: 12px;
	height: auto;
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
	width: auto !important;
	font-family: rubik;
}


.vb-font-picker .vb-fp-header {
	flex: none;

	padding: 0px;
	font-size: 20px;
}

.vb-font-picker .vb-fp-header h5 {
	margin: 0;
	line-height: 1.5;
	font-weight: 500;
}

.vb-font-picker .vb-fp-header .vb-fp-icons {
	float: inline-end;
	height: 50px;
	width: 50px;
	line-height: 50px;
	text-align: center;
}

.vb-font-picker .vb-fp-header .vb-fp-icons>span {
	cursor: pointer;
}

.vb-fp-modal-open {
	overflow: hidden;
}

.vb-font-picker .vb-fp-modal-backdrop {
	position: fixed;
	top: 0;
	inset-inline-start: 0;
	z-index: 1040;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: .5;
}

.vb-font-picker .vb-fp-modal {
	display: none;
	flex-flow: column;
	position: fixed;
	height: 100%;
	max-height: 90vh;
	width: calc(100% - 40px);
	background: rgb(255, 255, 255);
	z-index: 1500000;
	box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
	border-radius: 5px;
	margin: 20px;
	top: 0px;
	inset-inline-start: 0px;
}

.vb-font-picker .vb-fp-filter {

	font-size: 12px;
	padding: 6px;
	flex: none;
	background: rgb(48, 64, 80);

}

.vb-font-picker .vb-fp-lang {
	display: none !important;

}

.vb-font-picker .vb-fp-search:focus {
	box-shadow: 0 0 0 2px #bfdeff;

}

.vb-fp-row {
	display: grid;
	grid-template-columns: 100%;
}

.vb-font-picker .vb-fp-lang {
	margin: 10px;
	width: calc(100% - 20px);
}

.vb-font-picker .vb-fp-search-wrap {
	position: relative;

}

.vb-font-picker .vb-fp-clear {
	margin-inline-start: 8px;
	vertical-align: -2px;
	width: 16px;
	height: 16px;
	display: inline-block;
	cursor: pointer;
 
  vertical-align: top;
	display: var(--vb-remove-display, none);
}
.vb-font-picker .vb-fp-clear::before{
	font-size:12px;
	width:1em;
	height:1em;
	content:"\f005";
		font-family: 'visualbuilder';
		font-weight:400;
		color:red;
		float:left;	
}
.vb-font-picker[style*=""] {
	display: inline-block !important;
}

.vb-font-picker .vb-fp-search-wrap .vb-fp-clear {
	position: absolute;
	top: 6px;
	inset-inline-end: 4px;
}


.vb-font-picker .vb-fp-sample {
	flex: none;
	border-bottom: 1px solid rgb(206, 212, 218);
	font-size: 25px;
	height: 80px;
	padding: 0 6px;
	line-height: 80px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

.vb-font-picker .hr {
	border-bottom: 1px solid #ced4da;
	margin: 6px -6px;
	display: none;
}

.vb-font-picker .vb-fp-divider {
	background-color: var(--vb-gray-color);
	color: var(--vb-link-color);
	font-size: 20px !important;
	padding: 10px 20px;

	text-align: center;
	cursor: default !important;
}

.vb-font-picker [contenteditable] {
	outline: none;
}

.vb-font-picker .vb-fp-results {
	list-style: none;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0;
	padding: 0;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-top: -1px;
	outline: none;
	padding: 20px;
	display: inline-grid !important;
	grid-template-columns: repeat(var(--vb-font-picker-column, 5), 1fr);

}

@media (max-width: 1500px) {
	.vb-font-picker {
		--vb-font-picker-column: 4;
	}
}

@media (max-width: 1200px) {
	.vb-font-picker {
		--vb-font-picker-column: 3;
	}
}

@media (max-width: 900px) {
	.vb-font-picker {
		--vb-font-picker-column: 2;
	}
}

@media (max-width: 600px) {
	.vb-font-picker {
		--vb-font-picker-column: 2;
	}
}

.vb-font-picker .vb-fp-results li {
	padding: 10px 10px;
	list-style: none;
	border-radius: 5px;
	font-size: 23px;
	cursor: pointer;
	line-height: 1.5em;
}

.vb-fp-divider {
	padding: 10px 20px;
	font-size: 17px;
	line-height: 1.5em;
	grid-column-end: calc(var(--vb-font-picker-column, 5) + 1);
	grid-column-start: 1;
}

.vb-font-picker .vb-fp-results li>small {
	font-size: 10px;
	display: none;
	color: #999;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.vb-font-picker .vb-fp-results li.vb-fp-hover {
	background-color: #d5e2f6;
}

.vb-font-picker .vb-fp-results li.vb-fp-active {
	background-color: var(--vb-main-color);
	color: #fff;
	position: relative;
}

.vb-font-picker .vb-fp-results li.vb-fp-active small {
	color: #fff;
}

.vb-font-picker .vb-fp-variants {
	margin-top: 3px;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.vb-font-picker .vb-fp-pill {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: inline-block;
	padding: 2px 6px;
	margin-bottom: 2px;
	white-space: nowrap;
	border-radius: 5rem;
	background-color: #eee;
	color: #555;
	cursor: pointer;
	display: none;
}

.vb-font-picker .vb-fp-variants .vb-fp-pill {
	padding: 1px 4px;
	border-radius: 5rem;
	background-color: #eee;
	color: #555;
}

.vb-font-picker .vb-fp-pill.checked {
	background-color: #000;
	color: #fff;
}

.vb-font-picker .vb-fp-variants .vb-fp-pill.italic {
	font-style: italic;
}

.vb-font-picker .vb-fp-variants .vb-fp-pill.italic.checked {
	background-color: #804;
	font-style: italic;
}