
/**
 * Override WordPress 6.x block theme constrained layout
 * (.is-layout-constrained > … content-size) for GemFind Diamond Link.
 *
 * Element typography / form resets live in gemfinddl-element-reset.css
 * (scoped under .wpdl2-app-wrapper). This file only handles layout breakout.
 */

/* System font stack (no remote font CDN). */
.wpdl2-app-wrapper, .wpdl2-app-wrapper #wpdl2-root, .wpdl2-app-wrapper #wpdl-root {
	font-family: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Shortcode wrapper — always full width */
.wpdl2-app-wrapper {
	max-width: 100% !important;
	width: 100%;
	margin-left: 0 !important;
	margin-right: 0 !important;
	box-sizing: border-box;
}

#wpdl2-root, #wpdl-root {
	max-width: 100% !important;
	width: 100%;
	box-sizing: border-box;
}

/*
 * Full-bleed (theme padding / container-safe)
 * Many themes wrap content in padded containers; this pulls our tool to the viewport edges
 * without requiring a special page template.
 */
.wpdl2-app-wrapper {
	width: 100vw;
	max-width: 100vw !important;
	/*
	 * Use margin-based breakout instead of left:-50vw because some themes place the shortcode
	 * inside a narrow/right-shifted column; margin breakout stays correct regardless of parent alignment.
	 */
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Unique body class from FilterModal — do not set body.style.overflow (clobbers themes). */
body.wpdl2-modal-open {
	overflow: hidden;
}

/* Prevent horizontal scrollbars caused by 100vw + scrollbar width, only on pages with the tool. */
body:has(.wpdl2-app-wrapper) {
	overflow-x: hidden;
}

/* Strip padding only on the block that actually contains the tool, not the whole theme. */
.wp-block-shortcode:has(.wpdl2-app-wrapper).has-global-padding, .wp-block-group:has(.wpdl2-app-wrapper).has-global-padding, .wp-block-shortcode:has(.wpdl2-app-wrapper) {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* When the shortcode block is the direct child of a constrained layout */
.is-layout-constrained > .wp-block-shortcode:has(.wpdl2-app-wrapper) {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Nested groups: shortcode is inside a constrained layout but not always direct child */
.is-layout-constrained .wp-block-shortcode:has(.wpdl2-app-wrapper) {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Same as theme rule, but only for rows that contain our app — full width */
.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)):has(.wpdl2-app-wrapper) {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* Shortcode output is a direct child (no wp-block-shortcode wrapper) */
.is-layout-constrained > .wpdl2-app-wrapper {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/**
 * Element isolation for GemFind Diamond Link storefront.
 * All rules are scoped under .wpdl2-app-wrapper so theme / other-plugin
 * element styles (p, a, input, td, …) cannot bleed into the tool.
 * Component CSS (v1 / v2) loads after this and may override intentionally.
 */
.wpdl2-app-wrapper, .wpdl2-app-wrapper *, .wpdl2-app-wrapper *::before, .wpdl2-app-wrapper *::after {
	box-sizing: border-box;
}

.wpdl2-app-wrapper {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	max-width: none;
}

/* —— Typography —— */
.wpdl2-app-wrapper p, .wpdl2-app-wrapper #wpdl2-root p, .wpdl2-app-wrapper #wpdl-root p {
	margin: 0;
	padding: 0;
	padding-bottom: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	max-width: none;
	width: auto;
}

.wpdl2-app-wrapper h1, .wpdl2-app-wrapper h2, .wpdl2-app-wrapper h3, .wpdl2-app-wrapper h4, .wpdl2-app-wrapper h5, .wpdl2-app-wrapper h6 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	max-width: none;
	width: auto;
}

.wpdl2-app-wrapper span, .wpdl2-app-wrapper strong, .wpdl2-app-wrapper b, .wpdl2-app-wrapper em, .wpdl2-app-wrapper i, .wpdl2-app-wrapper small, .wpdl2-app-wrapper blockquote {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	max-width: none;
}

.wpdl2-app-wrapper strong, .wpdl2-app-wrapper b {
	font-weight: 700;
}

.wpdl2-app-wrapper em, .wpdl2-app-wrapper i {
	font-style: italic;
}

.wpdl2-app-wrapper small {
	font-size: .875em;
}

.wpdl2-app-wrapper blockquote {
	quotes: none;
}

/* —— Links —— */
.wpdl2-app-wrapper a, .wpdl2-app-wrapper a:link, .wpdl2-app-wrapper a:visited, .wpdl2-app-wrapper a:hover, .wpdl2-app-wrapper a:focus, .wpdl2-app-wrapper a:active {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	max-width: none;
	cursor: pointer;
}

/* —— Lists —— */
.wpdl2-app-wrapper ul, .wpdl2-app-wrapper ol {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	max-width: none;
}

.wpdl2-app-wrapper li {
	margin: 0;
	padding: 0;
	list-style: none;
	list-style-type: none;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
}

/* —— Forms —— */
.wpdl2-app-wrapper form {
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
	max-width: none;
	width: auto;
}

.wpdl2-app-wrapper label {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	display: inline-block;
	cursor: pointer;
}

.wpdl2-app-wrapper input, .wpdl2-app-wrapper textarea, .wpdl2-app-wrapper select, .wpdl2-app-wrapper button {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	color: inherit;
	background: transparent;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
	max-width: none;
	width: auto;
	height: auto;
	min-height: 0;
	vertical-align: baseline;
}

.wpdl2-app-wrapper input[type="text"], .wpdl2-app-wrapper input[type="email"], .wpdl2-app-wrapper input[type="search"], .wpdl2-app-wrapper input[type="tel"], .wpdl2-app-wrapper input[type="url"], .wpdl2-app-wrapper input[type="number"], .wpdl2-app-wrapper input[type="password"], .wpdl2-app-wrapper textarea {
	background-color: #fff;
}

.wpdl2-app-wrapper button, .wpdl2-app-wrapper input[type="button"], .wpdl2-app-wrapper input[type="submit"], .wpdl2-app-wrapper input[type="reset"] {
	cursor: pointer;
}

.wpdl2-app-wrapper fieldset {
	margin: 0;
	padding: 0;
	border: none;
	min-width: 0;
	background: transparent;
	box-shadow: none;
}

.wpdl2-app-wrapper legend {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	border: none;
	background: transparent;
}

/* —— Tables —— */
.wpdl2-app-wrapper table {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	max-width: none;
	width: auto;
}

.wpdl2-app-wrapper thead, .wpdl2-app-wrapper tbody, .wpdl2-app-wrapper tfoot {
	background: transparent;
	border: none;
}

.wpdl2-app-wrapper tr {
	background: transparent;
	border: none;
}

.wpdl2-app-wrapper th, .wpdl2-app-wrapper td {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: none;
	text-align: inherit;
	vertical-align: middle;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
}

.wpdl2-app-wrapper th {
	font-weight: 700;
}

/* —— Media —— */
.wpdl2-app-wrapper img, .wpdl2-app-wrapper svg, .wpdl2-app-wrapper video, .wpdl2-app-wrapper iframe {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	box-shadow: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	background: transparent;
}

.wpdl2-app-wrapper svg {
	max-width: none;
	height: auto;
	overflow: hidden;
}

/* —— Misc —— */
.wpdl2-app-wrapper hr {
	margin: 0;
	padding: 0;
	border: none;
	border-top: 1px solid currentColor;
	background: transparent;
	height: 0;
	box-shadow: none;
	max-width: none;
}

.wpdl2-app-wrapper figure, .wpdl2-app-wrapper figcaption {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	max-width: none;
}

.wpdl2-app-wrapper code, .wpdl2-app-wrapper pre, .wpdl2-app-wrapper kbd, .wpdl2-app-wrapper samp {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: normal;
	text-transform: none;
	color: inherit;
	background: transparent;
	border: none;
	box-shadow: none;
	max-width: none;
	white-space: pre-wrap;
}

.wpdl2-app-wrapper pre {
	overflow: auto;
}

/**
 * Scoped shell for GemFind DiamondLink (avoids theme conflicts).
 * Version 1: slightly denser table emphasis (same components as v2).
 */
.wpdl2-shell.wpdl2-shell--ui-v1 .diamond-table-main .table-header-row th {
	font-size: 12px;
	padding: 10px 8px;
}

.wpdl2-shell.wpdl2-shell--ui-v1 .diamond-table-row .table-cell {
	font-size: 13px;
}

.wpdl2-shell.wpdl2-shell--ui-v2 .diamond {}

/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fab, .fad, .fal, .far, .fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

.fa-lg {
	font-size: 1.33333em;
	line-height: .75em;
	vertical-align: -.0667em;
}

.fa-xs {
	font-size: .75em;
}

.fa-sm {
	font-size: .875em;
}

.fa-1x {
	font-size: 1em;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-6x {
	font-size: 6em;
}

.fa-7x {
	font-size: 7em;
}

.fa-8x {
	font-size: 8em;
}

.fa-9x {
	font-size: 9em;
}

.fa-10x {
	font-size: 10em;
}

.fa-fw {
	text-align: center;
	width: 1.25em;
}

.fa-ul {
	list-style-type: none;
	margin-left: 2.5em;
	padding-left: 0;
}

.fa-ul > li {
	position: relative;
}

.fa-li {
	left: -2em;
	position: absolute;
	text-align: center;
	width: 2em;
	line-height: inherit;
}

.fa-border {
	border: .08em solid #eee;
	border-radius: .1em;
	padding: .2em .25em .15em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
	margin-right: .3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
	margin-left: .3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s linear infinite;
	animation: fa-spin 2s linear infinite;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s steps(8) infinite;
	animation: fa-spin 1s steps(8) infinite;
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.fa-flip-vertical {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
	-webkit-transform: scale(-1);
	transform: scale(-1);
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
	-webkit-filter: none;
	filter: none;
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

.fa-500px:before {
	content: "";
}

.fa-accessible-icon:before {
	content: "";
}

.fa-accusoft:before {
	content: "";
}

.fa-acquisitions-incorporated:before {
	content: "";
}

.fa-ad:before {
	content: "";
}

.fa-address-book:before {
	content: "";
}

.fa-address-card:before {
	content: "";
}

.fa-adjust:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-adversal:before {
	content: "";
}

.fa-affiliatetheme:before {
	content: "";
}

.fa-air-freshener:before {
	content: "";
}

.fa-airbnb:before {
	content: "";
}

.fa-algolia:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-alipay:before {
	content: "";
}

.fa-allergies:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-amazon-pay:before {
	content: "";
}

.fa-ambulance:before {
	content: "";
}

.fa-american-sign-language-interpreting:before {
	content: "";
}

.fa-amilia:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-angle-double-down:before {
	content: "";
}

.fa-angle-double-left:before {
	content: "";
}

.fa-angle-double-right:before {
	content: "";
}

.fa-angle-double-up:before {
	content: "";
}

.fa-angle-down:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-angry:before {
	content: "";
}

.fa-angrycreative:before {
	content: "";
}

.fa-angular:before {
	content: "";
}

.fa-ankh:before {
	content: "";
}

.fa-app-store:before {
	content: "";
}

.fa-app-store-ios:before {
	content: "";
}

.fa-apper:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-apple-alt:before {
	content: "";
}

.fa-apple-pay:before {
	content: "";
}

.fa-archive:before {
	content: "";
}

.fa-archway:before {
	content: "";
}

.fa-arrow-alt-circle-down:before {
	content: "";
}

.fa-arrow-alt-circle-left:before {
	content: "";
}

.fa-arrow-alt-circle-right:before {
	content: "";
}

.fa-arrow-alt-circle-up:before {
	content: "";
}

.fa-arrow-circle-down:before {
	content: "";
}

.fa-arrow-circle-left:before {
	content: "";
}

.fa-arrow-circle-right:before {
	content: "";
}

.fa-arrow-circle-up:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-arrows-alt:before {
	content: "";
}

.fa-arrows-alt-h:before {
	content: "";
}

.fa-arrows-alt-v:before {
	content: "";
}

.fa-artstation:before {
	content: "";
}

.fa-assistive-listening-systems:before {
	content: "";
}

.fa-asterisk:before {
	content: "";
}

.fa-asymmetrik:before {
	content: "";
}

.fa-at:before {
	content: "";
}

.fa-atlas:before {
	content: "";
}

.fa-atlassian:before {
	content: "";
}

.fa-atom:before {
	content: "";
}

.fa-audible:before {
	content: "";
}

.fa-audio-description:before {
	content: "";
}

.fa-autoprefixer:before {
	content: "";
}

.fa-avianex:before {
	content: "";
}

.fa-aviato:before {
	content: "";
}

.fa-award:before {
	content: "";
}

.fa-aws:before {
	content: "";
}

.fa-baby:before {
	content: "";
}

.fa-baby-carriage:before {
	content: "";
}

.fa-backspace:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-bacon:before {
	content: "";
}

.fa-bacteria:before {
	content: "";
}

.fa-bacterium:before {
	content: "";
}

.fa-bahai:before {
	content: "";
}

.fa-balance-scale:before {
	content: "";
}

.fa-balance-scale-left:before {
	content: "";
}

.fa-balance-scale-right:before {
	content: "";
}

.fa-ban:before {
	content: "";
}

.fa-band-aid:before {
	content: "";
}

.fa-bandcamp:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-bars:before {
	content: "";
}

.fa-baseball-ball:before {
	content: "";
}

.fa-basketball-ball:before {
	content: "";
}

.fa-bath:before {
	content: "";
}

.fa-battery-empty:before {
	content: "";
}

.fa-battery-full:before {
	content: "";
}

.fa-battery-half:before {
	content: "";
}

.fa-battery-quarter:before {
	content: "";
}

.fa-battery-three-quarters:before {
	content: "";
}

.fa-battle-net:before {
	content: "";
}

.fa-bed:before {
	content: "";
}

.fa-beer:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-behance-square:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-bezier-curve:before {
	content: "";
}

.fa-bible:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-biking:before {
	content: "";
}

.fa-bimobject:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-biohazard:before {
	content: "";
}

.fa-birthday-cake:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-bitcoin:before {
	content: "";
}

.fa-bity:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-blackberry:before {
	content: "";
}

.fa-blender:before {
	content: "";
}

.fa-blender-phone:before {
	content: "";
}

.fa-blind:before {
	content: "";
}

.fa-blog:before {
	content: "";
}

.fa-blogger:before {
	content: "";
}

.fa-blogger-b:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-bolt:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-bone:before {
	content: "";
}

.fa-bong:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-book-dead:before {
	content: "";
}

.fa-book-medical:before {
	content: "";
}

.fa-book-open:before {
	content: "";
}

.fa-book-reader:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-bootstrap:before {
	content: "";
}

.fa-border-all:before {
	content: "";
}

.fa-border-none:before {
	content: "";
}

.fa-border-style:before {
	content: "";
}

.fa-bowling-ball:before {
	content: "";
}

.fa-box:before {
	content: "";
}

.fa-box-open:before {
	content: "";
}

.fa-box-tissue:before {
	content: "";
}

.fa-boxes:before {
	content: "";
}

.fa-braille:before {
	content: "";
}

.fa-brain:before {
	content: "";
}

.fa-bread-slice:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-briefcase-medical:before {
	content: "";
}

.fa-broadcast-tower:before {
	content: "";
}

.fa-broom:before {
	content: "";
}

.fa-brush:before {
	content: "";
}

.fa-btc:before {
	content: "";
}

.fa-buffer:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-burn:before {
	content: "";
}

.fa-buromobelexperte:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-bus-alt:before {
	content: "";
}

.fa-business-time:before {
	content: "";
}

.fa-buy-n-large:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-calendar-alt:before {
	content: "";
}

.fa-calendar-check:before {
	content: "";
}

.fa-calendar-day:before {
	content: "";
}

.fa-calendar-minus:before {
	content: "";
}

.fa-calendar-plus:before {
	content: "";
}

.fa-calendar-times:before {
	content: "";
}

.fa-calendar-week:before {
	content: "";
}

.fa-camera:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-campground:before {
	content: "";
}

.fa-canadian-maple-leaf:before {
	content: "";
}

.fa-candy-cane:before {
	content: "";
}

.fa-cannabis:before {
	content: "";
}

.fa-capsules:before {
	content: "";
}

.fa-car:before {
	content: "";
}

.fa-car-alt:before {
	content: "";
}

.fa-car-battery:before {
	content: "";
}

.fa-car-crash:before {
	content: "";
}

.fa-car-side:before {
	content: "";
}

.fa-caravan:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-caret-square-down:before {
	content: "";
}

.fa-caret-square-left:before {
	content: "";
}

.fa-caret-square-right:before {
	content: "";
}

.fa-caret-square-up:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-carrot:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-cash-register:before {
	content: "";
}

.fa-cat:before {
	content: "";
}

.fa-cc-amazon-pay:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-cc-apple-pay:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-centercode:before {
	content: "";
}

.fa-centos:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-chair:before {
	content: "";
}

.fa-chalkboard:before {
	content: "";
}

.fa-chalkboard-teacher:before {
	content: "";
}

.fa-charging-station:before {
	content: "";
}

.fa-chart-area:before {
	content: "";
}

.fa-chart-bar:before {
	content: "";
}

.fa-chart-line:before {
	content: "";
}

.fa-chart-pie:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-check-circle:before {
	content: "";
}

.fa-check-double:before {
	content: "";
}

.fa-check-square:before {
	content: "";
}

.fa-cheese:before {
	content: "";
}

.fa-chess:before {
	content: "";
}

.fa-chess-bishop:before {
	content: "";
}

.fa-chess-board:before {
	content: "";
}

.fa-chess-king:before {
	content: "";
}

.fa-chess-knight:before {
	content: "";
}

.fa-chess-pawn:before {
	content: "";
}

.fa-chess-queen:before {
	content: "";
}

.fa-chess-rook:before {
	content: "";
}

.fa-chevron-circle-down:before {
	content: "";
}

.fa-chevron-circle-left:before {
	content: "";
}

.fa-chevron-circle-right:before {
	content: "";
}

.fa-chevron-circle-up:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-chromecast:before {
	content: "";
}

.fa-church:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-circle-notch:before {
	content: "";
}

.fa-city:before {
	content: "";
}

.fa-clinic-medical:before {
	content: "";
}

.fa-clipboard:before {
	content: "";
}

.fa-clipboard-check:before {
	content: "";
}

.fa-clipboard-list:before {
	content: "";
}

.fa-clock:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-closed-captioning:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-cloud-download-alt:before {
	content: "";
}

.fa-cloud-meatball:before {
	content: "";
}

.fa-cloud-moon:before {
	content: "";
}

.fa-cloud-moon-rain:before {
	content: "";
}

.fa-cloud-rain:before {
	content: "";
}

.fa-cloud-showers-heavy:before {
	content: "";
}

.fa-cloud-sun:before {
	content: "";
}

.fa-cloud-sun-rain:before {
	content: "";
}

.fa-cloud-upload-alt:before {
	content: "";
}

.fa-cloudflare:before {
	content: "";
}

.fa-cloudscale:before {
	content: "";
}

.fa-cloudsmith:before {
	content: "";
}

.fa-cloudversify:before {
	content: "";
}

.fa-cocktail:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-code-branch:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-coffee:before {
	content: "";
}

.fa-cog:before {
	content: "";
}

.fa-cogs:before {
	content: "";
}

.fa-coins:before {
	content: "";
}

.fa-columns:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-comment-alt:before {
	content: "";
}

.fa-comment-dollar:before {
	content: "";
}

.fa-comment-dots:before {
	content: "";
}

.fa-comment-medical:before {
	content: "";
}

.fa-comment-slash:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-comments-dollar:before {
	content: "";
}

.fa-compact-disc:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-compress-alt:before {
	content: "";
}

.fa-compress-arrows-alt:before {
	content: "";
}

.fa-concierge-bell:before {
	content: "";
}

.fa-confluence:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-cookie:before {
	content: "";
}

.fa-cookie-bite:before {
	content: "";
}

.fa-copy:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-cotton-bureau:before {
	content: "";
}

.fa-couch:before {
	content: "";
}

.fa-cpanel:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-creative-commons-by:before {
	content: "";
}

.fa-creative-commons-nc:before {
	content: "";
}

.fa-creative-commons-nc-eu:before {
	content: "";
}

.fa-creative-commons-nc-jp:before {
	content: "";
}

.fa-creative-commons-nd:before {
	content: "";
}

.fa-creative-commons-pd:before {
	content: "";
}

.fa-creative-commons-pd-alt:before {
	content: "";
}

.fa-creative-commons-remix:before {
	content: "";
}

.fa-creative-commons-sa:before {
	content: "";
}

.fa-creative-commons-sampling:before {
	content: "";
}

.fa-creative-commons-sampling-plus:before {
	content: "";
}

.fa-creative-commons-share:before {
	content: "";
}

.fa-creative-commons-zero:before {
	content: "";
}

.fa-credit-card:before {
	content: "";
}

.fa-critical-role:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-crop-alt:before {
	content: "";
}

.fa-cross:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-crow:before {
	content: "";
}

.fa-crown:before {
	content: "";
}

.fa-crutch:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-css3-alt:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-cut:before {
	content: "";
}

.fa-cuttlefish:before {
	content: "";
}

.fa-d-and-d:before {
	content: "";
}

.fa-d-and-d-beyond:before {
	content: "";
}

.fa-dailymotion:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-deaf:before {
	content: "";
}

.fa-deezer:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-democrat:before {
	content: "";
}

.fa-deploydog:before {
	content: "";
}

.fa-deskpro:before {
	content: "";
}

.fa-desktop:before {
	content: "";
}

.fa-dev:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-dharmachakra:before {
	content: "";
}

.fa-dhl:before {
	content: "";
}

.fa-diagnoses:before {
	content: "";
}

.fa-diaspora:before {
	content: "";
}

.fa-dice:before {
	content: "";
}

.fa-dice-d20:before {
	content: "";
}

.fa-dice-d6:before {
	content: "";
}

.fa-dice-five:before {
	content: "";
}

.fa-dice-four:before {
	content: "";
}

.fa-dice-one:before {
	content: "";
}

.fa-dice-six:before {
	content: "";
}

.fa-dice-three:before {
	content: "";
}

.fa-dice-two:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-digital-ocean:before {
	content: "";
}

.fa-digital-tachograph:before {
	content: "";
}

.fa-directions:before {
	content: "";
}

.fa-discord:before {
	content: "";
}

.fa-discourse:before {
	content: "";
}

.fa-disease:before {
	content: "";
}

.fa-divide:before {
	content: "";
}

.fa-dizzy:before {
	content: "";
}

.fa-dna:before {
	content: "";
}

.fa-dochub:before {
	content: "";
}

.fa-docker:before {
	content: "";
}

.fa-dog:before {
	content: "";
}

.fa-dollar-sign:before {
	content: "";
}

.fa-dolly:before {
	content: "";
}

.fa-dolly-flatbed:before {
	content: "";
}

.fa-donate:before {
	content: "";
}

.fa-door-closed:before {
	content: "";
}

.fa-door-open:before {
	content: "";
}

.fa-dot-circle:before {
	content: "";
}

.fa-dove:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-draft2digital:before {
	content: "";
}

.fa-drafting-compass:before {
	content: "";
}

.fa-dragon:before {
	content: "";
}

.fa-draw-polygon:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-dribbble-square:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-drum:before {
	content: "";
}

.fa-drum-steelpan:before {
	content: "";
}

.fa-drumstick-bite:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-dumbbell:before {
	content: "";
}

.fa-dumpster:before {
	content: "";
}

.fa-dumpster-fire:before {
	content: "";
}

.fa-dungeon:before {
	content: "";
}

.fa-dyalog:before {
	content: "";
}

.fa-earlybirds:before {
	content: "";
}

.fa-ebay:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-edge-legacy:before {
	content: "";
}

.fa-edit:before {
	content: "";
}

.fa-egg:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-elementor:before {
	content: "";
}

.fa-ellipsis-h:before {
	content: "";
}

.fa-ellipsis-v:before {
	content: "";
}

.fa-ello:before {
	content: "";
}

.fa-ember:before {
	content: "";
}

.fa-empire:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-envelope-open:before {
	content: "";
}

.fa-envelope-open-text:before {
	content: "";
}

.fa-envelope-square:before {
	content: "";
}

.fa-envira:before {
	content: "";
}

.fa-equals:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-erlang:before {
	content: "";
}

.fa-ethereum:before {
	content: "";
}

.fa-ethernet:before {
	content: "";
}

.fa-etsy:before {
	content: "";
}

.fa-euro-sign:before {
	content: "";
}

.fa-evernote:before {
	content: "";
}

.fa-exchange-alt:before {
	content: "";
}

.fa-exclamation:before {
	content: "";
}

.fa-exclamation-circle:before {
	content: "";
}

.fa-exclamation-triangle:before {
	content: "";
}

.fa-expand:before {
	content: "";
}

.fa-expand-alt:before {
	content: "";
}

.fa-expand-arrows-alt:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-external-link-alt:before {
	content: "";
}

.fa-external-link-square-alt:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-eye-dropper:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-facebook:before {
	content: "";
}

.fa-facebook-f:before {
	content: "";
}

.fa-facebook-messenger:before {
	content: "";
}

.fa-facebook-square:before {
	content: "";
}

.fa-fan:before {
	content: "";
}

.fa-fantasy-flight-games:before {
	content: "";
}

.fa-fast-backward:before {
	content: "";
}

.fa-fast-forward:before {
	content: "";
}

.fa-faucet:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-feather:before {
	content: "";
}

.fa-feather-alt:before {
	content: "";
}

.fa-fedex:before {
	content: "";
}

.fa-fedora:before {
	content: "";
}

.fa-female:before {
	content: "";
}

.fa-fighter-jet:before {
	content: "";
}

.fa-figma:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-file-alt:before {
	content: "";
}

.fa-file-archive:before {
	content: "";
}

.fa-file-audio:before {
	content: "";
}

.fa-file-code:before {
	content: "";
}

.fa-file-contract:before {
	content: "";
}

.fa-file-csv:before {
	content: "";
}

.fa-file-download:before {
	content: "";
}

.fa-file-excel:before {
	content: "";
}

.fa-file-export:before {
	content: "";
}

.fa-file-image:before {
	content: "";
}

.fa-file-import:before {
	content: "";
}

.fa-file-invoice:before {
	content: "";
}

.fa-file-invoice-dollar:before {
	content: "";
}

.fa-file-medical:before {
	content: "";
}

.fa-file-medical-alt:before {
	content: "";
}

.fa-file-pdf:before {
	content: "";
}

.fa-file-powerpoint:before {
	content: "";
}

.fa-file-prescription:before {
	content: "";
}

.fa-file-signature:before {
	content: "";
}

.fa-file-upload:before {
	content: "";
}

.fa-file-video:before {
	content: "";
}

.fa-file-word:before {
	content: "";
}

.fa-fill:before {
	content: "";
}

.fa-fill-drip:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-fingerprint:before {
	content: "";
}

.fa-fire:before {
	content: "";
}

.fa-fire-alt:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-firefox-browser:before {
	content: "";
}

.fa-first-aid:before {
	content: "";
}

.fa-first-order:before {
	content: "";
}

.fa-first-order-alt:before {
	content: "";
}

.fa-firstdraft:before {
	content: "";
}

.fa-fish:before {
	content: "";
}

.fa-fist-raised:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-flag-usa:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-flipboard:before {
	content: "";
}

.fa-flushed:before {
	content: "";
}

.fa-fly:before {
	content: "";
}

.fa-folder:before {
	content: "";
}

.fa-folder-minus:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-folder-plus:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-font-awesome:before {
	content: "";
}

.fa-font-awesome-alt:before {
	content: "";
}

.fa-font-awesome-flag:before {
	content: "";
}

.fa-font-awesome-logo-full:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-fonticons-fi:before {
	content: "";
}

.fa-football-ball:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-fort-awesome-alt:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-free-code-camp:before {
	content: "";
}

.fa-freebsd:before {
	content: "";
}

.fa-frog:before {
	content: "";
}

.fa-frown:before {
	content: "";
}

.fa-frown-open:before {
	content: "";
}

.fa-fulcrum:before {
	content: "";
}

.fa-funnel-dollar:before {
	content: "";
}

.fa-futbol:before {
	content: "";
}

.fa-galactic-republic:before {
	content: "";
}

.fa-galactic-senate:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-gas-pump:before {
	content: "";
}

.fa-gavel:before {
	content: "";
}

.fa-gem:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-ghost:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-gifts:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-git-alt:before {
	content: "";
}

.fa-git-square:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-github-square:before {
	content: "";
}

.fa-gitkraken:before {
	content: "";
}

.fa-gitlab:before {
	content: "";
}

.fa-gitter:before {
	content: "";
}

.fa-glass-cheers:before {
	content: "";
}

.fa-glass-martini:before {
	content: "";
}

.fa-glass-martini-alt:before {
	content: "";
}

.fa-glass-whiskey:before {
	content: "";
}

.fa-glasses:before {
	content: "";
}

.fa-glide:before {
	content: "";
}

.fa-glide-g:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-globe-africa:before {
	content: "";
}

.fa-globe-americas:before {
	content: "";
}

.fa-globe-asia:before {
	content: "";
}

.fa-globe-europe:before {
	content: "";
}

.fa-gofore:before {
	content: "";
}

.fa-golf-ball:before {
	content: "";
}

.fa-goodreads:before {
	content: "";
}

.fa-goodreads-g:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-google-drive:before {
	content: "";
}

.fa-google-pay:before {
	content: "";
}

.fa-google-play:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-google-plus-g:before {
	content: "";
}

.fa-google-plus-square:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-gopuram:before {
	content: "";
}

.fa-graduation-cap:before {
	content: "";
}

.fa-gratipay:before {
	content: "";
}

.fa-grav:before {
	content: "";
}

.fa-greater-than:before {
	content: "";
}

.fa-greater-than-equal:before {
	content: "";
}

.fa-grimace:before {
	content: "";
}

.fa-grin:before {
	content: "";
}

.fa-grin-alt:before {
	content: "";
}

.fa-grin-beam:before {
	content: "";
}

.fa-grin-beam-sweat:before {
	content: "";
}

.fa-grin-hearts:before {
	content: "";
}

.fa-grin-squint:before {
	content: "";
}

.fa-grin-squint-tears:before {
	content: "";
}

.fa-grin-stars:before {
	content: "";
}

.fa-grin-tears:before {
	content: "";
}

.fa-grin-tongue:before {
	content: "";
}

.fa-grin-tongue-squint:before {
	content: "";
}

.fa-grin-tongue-wink:before {
	content: "";
}

.fa-grin-wink:before {
	content: "";
}

.fa-grip-horizontal:before {
	content: "";
}

.fa-grip-lines:before {
	content: "";
}

.fa-grip-lines-vertical:before {
	content: "";
}

.fa-grip-vertical:before {
	content: "";
}

.fa-gripfire:before {
	content: "";
}

.fa-grunt:before {
	content: "";
}

.fa-guilded:before {
	content: "";
}

.fa-guitar:before {
	content: "";
}

.fa-gulp:before {
	content: "";
}

.fa-h-square:before {
	content: "";
}

.fa-hacker-news:before {
	content: "";
}

.fa-hacker-news-square:before {
	content: "";
}

.fa-hackerrank:before {
	content: "";
}

.fa-hamburger:before {
	content: "";
}

.fa-hammer:before {
	content: "";
}

.fa-hamsa:before {
	content: "";
}

.fa-hand-holding:before {
	content: "";
}

.fa-hand-holding-heart:before {
	content: "";
}

.fa-hand-holding-medical:before {
	content: "";
}

.fa-hand-holding-usd:before {
	content: "";
}

.fa-hand-holding-water:before {
	content: "";
}

.fa-hand-lizard:before {
	content: "";
}

.fa-hand-middle-finger:before {
	content: "";
}

.fa-hand-paper:before {
	content: "";
}

.fa-hand-peace:before {
	content: "";
}

.fa-hand-point-down:before {
	content: "";
}

.fa-hand-point-left:before {
	content: "";
}

.fa-hand-point-right:before {
	content: "";
}

.fa-hand-point-up:before {
	content: "";
}

.fa-hand-pointer:before {
	content: "";
}

.fa-hand-rock:before {
	content: "";
}

.fa-hand-scissors:before {
	content: "";
}

.fa-hand-sparkles:before {
	content: "";
}

.fa-hand-spock:before {
	content: "";
}

.fa-hands:before {
	content: "";
}

.fa-hands-helping:before {
	content: "";
}

.fa-hands-wash:before {
	content: "";
}

.fa-handshake:before {
	content: "";
}

.fa-handshake-alt-slash:before {
	content: "";
}

.fa-handshake-slash:before {
	content: "";
}

.fa-hanukiah:before {
	content: "";
}

.fa-hard-hat:before {
	content: "";
}

.fa-hashtag:before {
	content: "";
}

.fa-hat-cowboy:before {
	content: "";
}

.fa-hat-cowboy-side:before {
	content: "";
}

.fa-hat-wizard:before {
	content: "";
}

.fa-hdd:before {
	content: "";
}

.fa-head-side-cough:before {
	content: "";
}

.fa-head-side-cough-slash:before {
	content: "";
}

.fa-head-side-mask:before {
	content: "";
}

.fa-head-side-virus:before {
	content: "";
}

.fa-heading:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-headphones-alt:before {
	content: "";
}

.fa-headset:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-heart-broken:before {
	content: "";
}

.fa-heartbeat:before {
	content: "";
}

.fa-helicopter:before {
	content: "";
}

.fa-highlighter:before {
	content: "";
}

.fa-hiking:before {
	content: "";
}

.fa-hippo:before {
	content: "";
}

.fa-hips:before {
	content: "";
}

.fa-hire-a-helper:before {
	content: "";
}

.fa-history:before {
	content: "";
}

.fa-hive:before {
	content: "";
}

.fa-hockey-puck:before {
	content: "";
}

.fa-holly-berry:before {
	content: "";
}

.fa-home:before {
	content: "";
}

.fa-hooli:before {
	content: "";
}

.fa-hornbill:before {
	content: "";
}

.fa-horse:before {
	content: "";
}

.fa-horse-head:before {
	content: "";
}

.fa-hospital:before {
	content: "";
}

.fa-hospital-alt:before {
	content: "";
}

.fa-hospital-symbol:before {
	content: "";
}

.fa-hospital-user:before {
	content: "";
}

.fa-hot-tub:before {
	content: "";
}

.fa-hotdog:before {
	content: "";
}

.fa-hotel:before {
	content: "";
}

.fa-hotjar:before {
	content: "";
}

.fa-hourglass:before {
	content: "";
}

.fa-hourglass-end:before {
	content: "";
}

.fa-hourglass-half:before {
	content: "";
}

.fa-hourglass-start:before {
	content: "";
}

.fa-house-damage:before {
	content: "";
}

.fa-house-user:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-hryvnia:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-hubspot:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-ice-cream:before {
	content: "";
}

.fa-icicles:before {
	content: "";
}

.fa-icons:before {
	content: "";
}

.fa-id-badge:before {
	content: "";
}

.fa-id-card:before {
	content: "";
}

.fa-id-card-alt:before {
	content: "";
}

.fa-ideal:before {
	content: "";
}

.fa-igloo:before {
	content: "";
}

.fa-image:before {
	content: "";
}

.fa-images:before {
	content: "";
}

.fa-imdb:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-infinity:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-info-circle:before {
	content: "";
}

.fa-innosoft:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-instagram-square:before {
	content: "";
}

.fa-instalod:before {
	content: "";
}

.fa-intercom:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-invision:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-itch-io:before {
	content: "";
}

.fa-itunes:before {
	content: "";
}

.fa-itunes-note:before {
	content: "";
}

.fa-java:before {
	content: "";
}

.fa-jedi:before {
	content: "";
}

.fa-jedi-order:before {
	content: "";
}

.fa-jenkins:before {
	content: "";
}

.fa-jira:before {
	content: "";
}

.fa-joget:before {
	content: "";
}

.fa-joint:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-journal-whills:before {
	content: "";
}

.fa-js:before {
	content: "";
}

.fa-js-square:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-kaaba:before {
	content: "";
}

.fa-kaggle:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-keybase:before {
	content: "";
}

.fa-keyboard:before {
	content: "";
}

.fa-keycdn:before {
	content: "";
}

.fa-khanda:before {
	content: "";
}

.fa-kickstarter:before {
	content: "";
}

.fa-kickstarter-k:before {
	content: "";
}

.fa-kiss:before {
	content: "";
}

.fa-kiss-beam:before {
	content: "";
}

.fa-kiss-wink-heart:before {
	content: "";
}

.fa-kiwi-bird:before {
	content: "";
}

.fa-korvue:before {
	content: "";
}

.fa-landmark:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-laptop-code:before {
	content: "";
}

.fa-laptop-house:before {
	content: "";
}

.fa-laptop-medical:before {
	content: "";
}

.fa-laravel:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-lastfm-square:before {
	content: "";
}

.fa-laugh:before {
	content: "";
}

.fa-laugh-beam:before {
	content: "";
}

.fa-laugh-squint:before {
	content: "";
}

.fa-laugh-wink:before {
	content: "";
}

.fa-layer-group:before {
	content: "";
}

.fa-leaf:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-lemon:before {
	content: "";
}

.fa-less:before {
	content: "";
}

.fa-less-than:before {
	content: "";
}

.fa-less-than-equal:before {
	content: "";
}

.fa-level-down-alt:before {
	content: "";
}

.fa-level-up-alt:before {
	content: "";
}

.fa-life-ring:before {
	content: "";
}

.fa-lightbulb:before {
	content: "";
}

.fa-line:before {
	content: "";
}

.fa-link:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-linkedin-in:before {
	content: "";
}

.fa-linode:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-lira-sign:before {
	content: "";
}

.fa-list:before {
	content: "";
}

.fa-list-alt:before {
	content: "";
}

.fa-list-ol:before {
	content: "";
}

.fa-list-ul:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-lock-open:before {
	content: "";
}

.fa-long-arrow-alt-down:before {
	content: "";
}

.fa-long-arrow-alt-left:before {
	content: "";
}

.fa-long-arrow-alt-right:before {
	content: "";
}

.fa-long-arrow-alt-up:before {
	content: "";
}

.fa-low-vision:before {
	content: "";
}

.fa-luggage-cart:before {
	content: "";
}

.fa-lungs:before {
	content: "";
}

.fa-lungs-virus:before {
	content: "";
}

.fa-lyft:before {
	content: "";
}

.fa-magento:before {
	content: "";
}

.fa-magic:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-mail-bulk:before {
	content: "";
}

.fa-mailchimp:before {
	content: "";
}

.fa-male:before {
	content: "";
}

.fa-mandalorian:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-map-marked:before {
	content: "";
}

.fa-map-marked-alt:before {
	content: "";
}

.fa-map-marker:before {
	content: "";
}

.fa-map-marker-alt:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-map-signs:before {
	content: "";
}

.fa-markdown:before {
	content: "";
}

.fa-marker:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-mars-stroke-h:before {
	content: "";
}

.fa-mars-stroke-v:before {
	content: "";
}

.fa-mask:before {
	content: "";
}

.fa-mastodon:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-mdb:before {
	content: "";
}

.fa-medal:before {
	content: "";
}

.fa-medapps:before {
	content: "";
}

.fa-medium:before {
	content: "";
}

.fa-medium-m:before {
	content: "";
}

.fa-medkit:before {
	content: "";
}

.fa-medrt:before {
	content: "";
}

.fa-meetup:before {
	content: "";
}

.fa-megaport:before {
	content: "";
}

.fa-meh:before {
	content: "";
}

.fa-meh-blank:before {
	content: "";
}

.fa-meh-rolling-eyes:before {
	content: "";
}

.fa-memory:before {
	content: "";
}

.fa-mendeley:before {
	content: "";
}

.fa-menorah:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-meteor:before {
	content: "";
}

.fa-microblog:before {
	content: "";
}

.fa-microchip:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-microphone-alt:before {
	content: "";
}

.fa-microphone-alt-slash:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-microscope:before {
	content: "";
}

.fa-microsoft:before {
	content: "";
}

.fa-minus:before {
	content: "";
}

.fa-minus-circle:before {
	content: "";
}

.fa-minus-square:before {
	content: "";
}

.fa-mitten:before {
	content: "";
}

.fa-mix:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-mixer:before {
	content: "";
}

.fa-mizuni:before {
	content: "";
}

.fa-mobile:before {
	content: "";
}

.fa-mobile-alt:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-monero:before {
	content: "";
}

.fa-money-bill:before {
	content: "";
}

.fa-money-bill-alt:before {
	content: "";
}

.fa-money-bill-wave:before {
	content: "";
}

.fa-money-bill-wave-alt:before {
	content: "";
}

.fa-money-check:before {
	content: "";
}

.fa-money-check-alt:before {
	content: "";
}

.fa-monument:before {
	content: "";
}

.fa-moon:before {
	content: "";
}

.fa-mortar-pestle:before {
	content: "";
}

.fa-mosque:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-mountain:before {
	content: "";
}

.fa-mouse:before {
	content: "";
}

.fa-mouse-pointer:before {
	content: "";
}

.fa-mug-hot:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-napster:before {
	content: "";
}

.fa-neos:before {
	content: "";
}

.fa-network-wired:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-newspaper:before {
	content: "";
}

.fa-nimblr:before {
	content: "";
}

.fa-node:before {
	content: "";
}

.fa-node-js:before {
	content: "";
}

.fa-not-equal:before {
	content: "";
}

.fa-notes-medical:before {
	content: "";
}

.fa-npm:before {
	content: "";
}

.fa-ns8:before {
	content: "";
}

.fa-nutritionix:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-octopus-deploy:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-odnoklassniki-square:before {
	content: "";
}

.fa-oil-can:before {
	content: "";
}

.fa-old-republic:before {
	content: "";
}

.fa-om:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-orcid:before {
	content: "";
}

.fa-osi:before {
	content: "";
}

.fa-otter:before {
	content: "";
}

.fa-outdent:before {
	content: "";
}

.fa-page4:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-pager:before {
	content: "";
}

.fa-paint-brush:before {
	content: "";
}

.fa-paint-roller:before {
	content: "";
}

.fa-palette:before {
	content: "";
}

.fa-palfed:before {
	content: "";
}

.fa-pallet:before {
	content: "";
}

.fa-paper-plane:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-parachute-box:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-parking:before {
	content: "";
}

.fa-passport:before {
	content: "";
}

.fa-pastafarianism:before {
	content: "";
}

.fa-paste:before {
	content: "";
}

.fa-patreon:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-pause-circle:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-peace:before {
	content: "";
}

.fa-pen:before {
	content: "";
}

.fa-pen-alt:before {
	content: "";
}

.fa-pen-fancy:before {
	content: "";
}

.fa-pen-nib:before {
	content: "";
}

.fa-pen-square:before {
	content: "";
}

.fa-pencil-alt:before {
	content: "";
}

.fa-pencil-ruler:before {
	content: "";
}

.fa-penny-arcade:before {
	content: "";
}

.fa-people-arrows:before {
	content: "";
}

.fa-people-carry:before {
	content: "";
}

.fa-pepper-hot:before {
	content: "";
}

.fa-perbyte:before {
	content: "";
}

.fa-percent:before {
	content: "";
}

.fa-percentage:before {
	content: "";
}

.fa-periscope:before {
	content: "";
}

.fa-person-booth:before {
	content: "";
}

.fa-phabricator:before {
	content: "";
}

.fa-phoenix-framework:before {
	content: "";
}

.fa-phoenix-squadron:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-phone-alt:before {
	content: "";
}

.fa-phone-slash:before {
	content: "";
}

.fa-phone-square:before {
	content: "";
}

.fa-phone-square-alt:before {
	content: "";
}

.fa-phone-volume:before {
	content: "";
}

.fa-photo-video:before {
	content: "";
}

.fa-php:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-pied-piper-hat:before {
	content: "";
}

.fa-pied-piper-pp:before {
	content: "";
}

.fa-pied-piper-square:before {
	content: "";
}

.fa-piggy-bank:before {
	content: "";
}

.fa-pills:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-pinterest-square:before {
	content: "";
}

.fa-pizza-slice:before {
	content: "";
}

.fa-place-of-worship:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-plane-arrival:before {
	content: "";
}

.fa-plane-departure:before {
	content: "";
}

.fa-plane-slash:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-play-circle:before {
	content: "";
}

.fa-playstation:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-plus:before {
	content: "";
}

.fa-plus-circle:before {
	content: "";
}

.fa-plus-square:before {
	content: "";
}

.fa-podcast:before {
	content: "";
}

.fa-poll:before {
	content: "";
}

.fa-poll-h:before {
	content: "";
}

.fa-poo:before {
	content: "";
}

.fa-poo-storm:before {
	content: "";
}

.fa-poop:before {
	content: "";
}

.fa-portrait:before {
	content: "";
}

.fa-pound-sign:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-pray:before {
	content: "";
}

.fa-praying-hands:before {
	content: "";
}

.fa-prescription:before {
	content: "";
}

.fa-prescription-bottle:before {
	content: "";
}

.fa-prescription-bottle-alt:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-procedures:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-project-diagram:before {
	content: "";
}

.fa-pump-medical:before {
	content: "";
}

.fa-pump-soap:before {
	content: "";
}

.fa-pushed:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-python:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-question:before {
	content: "";
}

.fa-question-circle:before {
	content: "";
}

.fa-quidditch:before {
	content: "";
}

.fa-quinscape:before {
	content: "";
}

.fa-quora:before {
	content: "";
}

.fa-quote-left:before {
	content: "";
}

.fa-quote-right:before {
	content: "";
}

.fa-quran:before {
	content: "";
}

.fa-r-project:before {
	content: "";
}

.fa-radiation:before {
	content: "";
}

.fa-radiation-alt:before {
	content: "";
}

.fa-rainbow:before {
	content: "";
}

.fa-random:before {
	content: "";
}

.fa-raspberry-pi:before {
	content: "";
}

.fa-ravelry:before {
	content: "";
}

.fa-react:before {
	content: "";
}

.fa-reacteurope:before {
	content: "";
}

.fa-readme:before {
	content: "";
}

.fa-rebel:before {
	content: "";
}

.fa-receipt:before {
	content: "";
}

.fa-record-vinyl:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-red-river:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-reddit-square:before {
	content: "";
}

.fa-redhat:before {
	content: "";
}

.fa-redo:before {
	content: "";
}

.fa-redo-alt:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-remove-format:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-reply:before {
	content: "";
}

.fa-reply-all:before {
	content: "";
}

.fa-replyd:before {
	content: "";
}

.fa-republican:before {
	content: "";
}

.fa-researchgate:before {
	content: "";
}

.fa-resolving:before {
	content: "";
}

.fa-restroom:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-rev:before {
	content: "";
}

.fa-ribbon:before {
	content: "";
}

.fa-ring:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-robot:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-rocketchat:before {
	content: "";
}

.fa-rockrms:before {
	content: "";
}

.fa-route:before {
	content: "";
}

.fa-rss:before {
	content: "";
}

.fa-rss-square:before {
	content: "";
}

.fa-ruble-sign:before {
	content: "";
}

.fa-ruler:before {
	content: "";
}

.fa-ruler-combined:before {
	content: "";
}

.fa-ruler-horizontal:before {
	content: "";
}

.fa-ruler-vertical:before {
	content: "";
}

.fa-running:before {
	content: "";
}

.fa-rupee-sign:before {
	content: "";
}

.fa-rust:before {
	content: "";
}

.fa-sad-cry:before {
	content: "";
}

.fa-sad-tear:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-salesforce:before {
	content: "";
}

.fa-sass:before {
	content: "";
}

.fa-satellite:before {
	content: "";
}

.fa-satellite-dish:before {
	content: "";
}

.fa-save:before {
	content: "";
}

.fa-schlix:before {
	content: "";
}

.fa-school:before {
	content: "";
}

.fa-screwdriver:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-scroll:before {
	content: "";
}

.fa-sd-card:before {
	content: "";
}

.fa-search:before {
	content: "";
}

.fa-search-dollar:before {
	content: "";
}

.fa-search-location:before {
	content: "";
}

.fa-search-minus:before {
	content: "";
}

.fa-search-plus:before {
	content: "";
}

.fa-searchengin:before {
	content: "";
}

.fa-seedling:before {
	content: "";
}

.fa-sellcast:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-servicestack:before {
	content: "";
}

.fa-shapes:before {
	content: "";
}

.fa-share:before {
	content: "";
}

.fa-share-alt:before {
	content: "";
}

.fa-share-alt-square:before {
	content: "";
}

.fa-share-square:before {
	content: "";
}

.fa-shekel-sign:before {
	content: "";
}

.fa-shield-alt:before {
	content: "";
}

.fa-shield-virus:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-shipping-fast:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-shoe-prints:before {
	content: "";
}

.fa-shopify:before {
	content: "";
}

.fa-shopping-bag:before {
	content: "";
}

.fa-shopping-basket:before {
	content: "";
}

.fa-shopping-cart:before {
	content: "";
}

.fa-shopware:before {
	content: "";
}

.fa-shower:before {
	content: "";
}

.fa-shuttle-van:before {
	content: "";
}

.fa-sign:before {
	content: "";
}

.fa-sign-in-alt:before {
	content: "";
}

.fa-sign-language:before {
	content: "";
}

.fa-sign-out-alt:before {
	content: "";
}

.fa-signal:before {
	content: "";
}

.fa-signature:before {
	content: "";
}

.fa-sim-card:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-sink:before {
	content: "";
}

.fa-sistrix:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-sith:before {
	content: "";
}

.fa-skating:before {
	content: "";
}

.fa-sketch:before {
	content: "";
}

.fa-skiing:before {
	content: "";
}

.fa-skiing-nordic:before {
	content: "";
}

.fa-skull:before {
	content: "";
}

.fa-skull-crossbones:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-slack:before {
	content: "";
}

.fa-slack-hash:before {
	content: "";
}

.fa-slash:before {
	content: "";
}

.fa-sleigh:before {
	content: "";
}

.fa-sliders-h:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-smile:before {
	content: "";
}

.fa-smile-beam:before {
	content: "";
}

.fa-smile-wink:before {
	content: "";
}

.fa-smog:before {
	content: "";
}

.fa-smoking:before {
	content: "";
}

.fa-smoking-ban:before {
	content: "";
}

.fa-sms:before {
	content: "";
}

.fa-snapchat:before {
	content: "";
}

.fa-snapchat-ghost:before {
	content: "";
}

.fa-snapchat-square:before {
	content: "";
}

.fa-snowboarding:before {
	content: "";
}

.fa-snowflake:before {
	content: "";
}

.fa-snowman:before {
	content: "";
}

.fa-snowplow:before {
	content: "";
}

.fa-soap:before {
	content: "";
}

.fa-socks:before {
	content: "";
}

.fa-solar-panel:before {
	content: "";
}

.fa-sort:before {
	content: "";
}

.fa-sort-alpha-down:before {
	content: "";
}

.fa-sort-alpha-down-alt:before {
	content: "";
}

.fa-sort-alpha-up:before {
	content: "";
}

.fa-sort-alpha-up-alt:before {
	content: "";
}

.fa-sort-amount-down:before {
	content: "";
}

.fa-sort-amount-down-alt:before {
	content: "";
}

.fa-sort-amount-up:before {
	content: "";
}

.fa-sort-amount-up-alt:before {
	content: "";
}

.fa-sort-down:before {
	content: "";
}

.fa-sort-numeric-down:before {
	content: "";
}

.fa-sort-numeric-down-alt:before {
	content: "";
}

.fa-sort-numeric-up:before {
	content: "";
}

.fa-sort-numeric-up-alt:before {
	content: "";
}

.fa-sort-up:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-sourcetree:before {
	content: "";
}

.fa-spa:before {
	content: "";
}

.fa-space-shuttle:before {
	content: "";
}

.fa-speakap:before {
	content: "";
}

.fa-speaker-deck:before {
	content: "";
}

.fa-spell-check:before {
	content: "";
}

.fa-spider:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-splotch:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-spray-can:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-square-full:before {
	content: "";
}

.fa-square-root-alt:before {
	content: "";
}

.fa-squarespace:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-stackpath:before {
	content: "";
}

.fa-stamp:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-star-and-crescent:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-star-half-alt:before {
	content: "";
}

.fa-star-of-david:before {
	content: "";
}

.fa-star-of-life:before {
	content: "";
}

.fa-staylinked:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-steam-square:before {
	content: "";
}

.fa-steam-symbol:before {
	content: "";
}

.fa-step-backward:before {
	content: "";
}

.fa-step-forward:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-sticker-mule:before {
	content: "";
}

.fa-sticky-note:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-stop-circle:before {
	content: "";
}

.fa-stopwatch:before {
	content: "";
}

.fa-stopwatch-20:before {
	content: "";
}

.fa-store:before {
	content: "";
}

.fa-store-alt:before {
	content: "";
}

.fa-store-alt-slash:before {
	content: "";
}

.fa-store-slash:before {
	content: "";
}

.fa-strava:before {
	content: "";
}

.fa-stream:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-stripe:before {
	content: "";
}

.fa-stripe-s:before {
	content: "";
}

.fa-stroopwafel:before {
	content: "";
}

.fa-studiovinari:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-subway:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-suitcase-rolling:before {
	content: "";
}

.fa-sun:before {
	content: "";
}

.fa-superpowers:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-supple:before {
	content: "";
}

.fa-surprise:before {
	content: "";
}

.fa-suse:before {
	content: "";
}

.fa-swatchbook:before {
	content: "";
}

.fa-swift:before {
	content: "";
}

.fa-swimmer:before {
	content: "";
}

.fa-swimming-pool:before {
	content: "";
}

.fa-symfony:before {
	content: "";
}

.fa-synagogue:before {
	content: "";
}

.fa-sync:before {
	content: "";
}

.fa-sync-alt:before {
	content: "";
}

.fa-syringe:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-table-tennis:before {
	content: "";
}

.fa-tablet:before {
	content: "";
}

.fa-tablet-alt:before {
	content: "";
}

.fa-tablets:before {
	content: "";
}

.fa-tachometer-alt:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-tape:before {
	content: "";
}

.fa-tasks:before {
	content: "";
}

.fa-taxi:before {
	content: "";
}

.fa-teamspeak:before {
	content: "";
}

.fa-teeth:before {
	content: "";
}

.fa-teeth-open:before {
	content: "";
}

.fa-telegram:before {
	content: "";
}

.fa-telegram-plane:before {
	content: "";
}

.fa-temperature-high:before {
	content: "";
}

.fa-temperature-low:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-tenge:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-th:before {
	content: "";
}

.fa-th-large:before {
	content: "";
}

.fa-th-list:before {
	content: "";
}

.fa-the-red-yeti:before {
	content: "";
}

.fa-theater-masks:before {
	content: "";
}

.fa-themeco:before {
	content: "";
}

.fa-themeisle:before {
	content: "";
}

.fa-thermometer:before {
	content: "";
}

.fa-thermometer-empty:before {
	content: "";
}

.fa-thermometer-full:before {
	content: "";
}

.fa-thermometer-half:before {
	content: "";
}

.fa-thermometer-quarter:before {
	content: "";
}

.fa-thermometer-three-quarters:before {
	content: "";
}

.fa-think-peaks:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-thumbtack:before {
	content: "";
}

.fa-ticket-alt:before {
	content: "";
}

.fa-tiktok:before {
	content: "";
}

.fa-times:before {
	content: "";
}

.fa-times-circle:before {
	content: "";
}

.fa-tint:before {
	content: "";
}

.fa-tint-slash:before {
	content: "";
}

.fa-tired:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-toilet:before {
	content: "";
}

.fa-toilet-paper:before {
	content: "";
}

.fa-toilet-paper-slash:before {
	content: "";
}

.fa-toolbox:before {
	content: "";
}

.fa-tools:before {
	content: "";
}

.fa-tooth:before {
	content: "";
}

.fa-torah:before {
	content: "";
}

.fa-torii-gate:before {
	content: "";
}

.fa-tractor:before {
	content: "";
}

.fa-trade-federation:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-traffic-light:before {
	content: "";
}

.fa-trailer:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-tram:before {
	content: "";
}

.fa-transgender:before {
	content: "";
}

.fa-transgender-alt:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-trash-alt:before {
	content: "";
}

.fa-trash-restore:before {
	content: "";
}

.fa-trash-restore-alt:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-truck-loading:before {
	content: "";
}

.fa-truck-monster:before {
	content: "";
}

.fa-truck-moving:before {
	content: "";
}

.fa-truck-pickup:before {
	content: "";
}

.fa-tshirt:before {
	content: "";
}

.fa-tty:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-tumblr-square:before {
	content: "";
}

.fa-tv:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-twitter-square:before {
	content: "";
}

.fa-typo3:before {
	content: "";
}

.fa-uber:before {
	content: "";
}

.fa-ubuntu:before {
	content: "";
}

.fa-uikit:before {
	content: "";
}

.fa-umbraco:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-umbrella-beach:before {
	content: "";
}

.fa-uncharted:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-undo:before {
	content: "";
}

.fa-undo-alt:before {
	content: "";
}

.fa-uniregistry:before {
	content: "";
}

.fa-unity:before {
	content: "";
}

.fa-universal-access:before {
	content: "";
}

.fa-university:before {
	content: "";
}

.fa-unlink:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-unlock-alt:before {
	content: "";
}

.fa-unsplash:before {
	content: "";
}

.fa-untappd:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-ups:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-user-alt:before {
	content: "";
}

.fa-user-alt-slash:before {
	content: "";
}

.fa-user-astronaut:before {
	content: "";
}

.fa-user-check:before {
	content: "";
}

.fa-user-circle:before {
	content: "";
}

.fa-user-clock:before {
	content: "";
}

.fa-user-cog:before {
	content: "";
}

.fa-user-edit:before {
	content: "";
}

.fa-user-friends:before {
	content: "";
}

.fa-user-graduate:before {
	content: "";
}

.fa-user-injured:before {
	content: "";
}

.fa-user-lock:before {
	content: "";
}

.fa-user-md:before {
	content: "";
}

.fa-user-minus:before {
	content: "";
}

.fa-user-ninja:before {
	content: "";
}

.fa-user-nurse:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-user-shield:before {
	content: "";
}

.fa-user-slash:before {
	content: "";
}

.fa-user-tag:before {
	content: "";
}

.fa-user-tie:before {
	content: "";
}

.fa-user-times:before {
	content: "";
}

.fa-users:before {
	content: "";
}

.fa-users-cog:before {
	content: "";
}

.fa-users-slash:before {
	content: "";
}

.fa-usps:before {
	content: "";
}

.fa-ussunnah:before {
	content: "";
}

.fa-utensil-spoon:before {
	content: "";
}

.fa-utensils:before {
	content: "";
}

.fa-vaadin:before {
	content: "";
}

.fa-vector-square:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-vest:before {
	content: "";
}

.fa-vest-patches:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-viadeo:before {
	content: "";
}

.fa-viadeo-square:before {
	content: "";
}

.fa-vial:before {
	content: "";
}

.fa-vials:before {
	content: "";
}

.fa-viber:before {
	content: "";
}

.fa-video:before {
	content: "";
}

.fa-video-slash:before {
	content: "";
}

.fa-vihara:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-vimeo-square:before {
	content: "";
}

.fa-vimeo-v:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-virus:before {
	content: "";
}

.fa-virus-slash:before {
	content: "";
}

.fa-viruses:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-vnv:before {
	content: "";
}

.fa-voicemail:before {
	content: "";
}

.fa-volleyball-ball:before {
	content: "";
}

.fa-volume-down:before {
	content: "";
}

.fa-volume-mute:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-volume-up:before {
	content: "";
}

.fa-vote-yea:before {
	content: "";
}

.fa-vr-cardboard:before {
	content: "";
}

.fa-vuejs:before {
	content: "";
}

.fa-walking:before {
	content: "";
}

.fa-wallet:before {
	content: "";
}

.fa-warehouse:before {
	content: "";
}

.fa-watchman-monitoring:before {
	content: "";
}

.fa-water:before {
	content: "";
}

.fa-wave-square:before {
	content: "";
}

.fa-waze:before {
	content: "";
}

.fa-weebly:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-weight:before {
	content: "";
}

.fa-weight-hanging:before {
	content: "";
}

.fa-weixin:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-whatsapp-square:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-whmcs:before {
	content: "";
}

.fa-wifi:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-wind:before {
	content: "";
}

.fa-window-close:before {
	content: "";
}

.fa-window-maximize:before {
	content: "";
}

.fa-window-minimize:before {
	content: "";
}

.fa-window-restore:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-wine-bottle:before {
	content: "";
}

.fa-wine-glass:before {
	content: "";
}

.fa-wine-glass-alt:before {
	content: "";
}

.fa-wix:before {
	content: "";
}

.fa-wizards-of-the-coast:before {
	content: "";
}

.fa-wodu:before {
	content: "";
}

.fa-wolf-pack-battalion:before {
	content: "";
}

.fa-won-sign:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-wordpress-simple:before {
	content: "";
}

.fa-wpbeginner:before {
	content: "";
}

.fa-wpexplorer:before {
	content: "";
}

.fa-wpforms:before {
	content: "";
}

.fa-wpressr:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-x-ray:before {
	content: "";
}

.fa-xbox:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-xing-square:before {
	content: "";
}

.fa-y-combinator:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-yammer:before {
	content: "";
}

.fa-yandex:before {
	content: "";
}

.fa-yandex-international:before {
	content: "";
}

.fa-yarn:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-yen-sign:before {
	content: "";
}

.fa-yin-yang:before {
	content: "";
}

.fa-yoast:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-youtube-square:before {
	content: "";
}

.fa-zhihu:before {
	content: "";
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.fab {
	font-family: "Font Awesome 5 Brands";
}

.fab, .far {
	font-weight: 400;
}

.fa, .far, .fas {
	font-family: "Font Awesome 5 Free";
}

.fa, .fas {
	font-weight: 900;
}
/*# sourceMappingURL=main.ee932200.css.map*/

/* gemfinddl:wpdl2-scoped */

/* gemfinddl:v1-portals */
@keyframes react-overlay-loader-spinner {
	to {
		transform: rotate(1turn);
	}
}

.wpdl2-app-wrapper .react-overlay-loader-spinner, .react-responsive-modal-root .react-overlay-loader-spinner {
	background-image: url("https://cdn-kepab.nitrocdn.com/vHcNlbhMIpbzRzleGriBnEjdfEJiquVP/assets/images/optimized/rev-04fd883/www.hanebrinkjewelers.com/wp-content/plugins/gemfind-diamond-link/public/static/media/diamond.ab83c6d22d8820a8944a.gif");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: auto;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	width: 100%;
}

.wpdl2-app-wrapper .react-overlay-loader-spinner.nitro-lazy, .react-responsive-modal-root .react-overlay-loader-spinner.nitro-lazy {
	background-image: none !important;
}

.wpdl2-app-wrapper ._gfloading_overlay_wrapper, .react-responsive-modal-root ._gfloading_overlay_wrapper {
	background-color: initial;
	bottom: 0;
	cursor: pointer;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9;
}

.wpdl2-app-wrapper ._gfloading_overlay_wrapper > div, .react-responsive-modal-root ._gfloading_overlay_wrapper > div {
	background-color: rgba(0, 0, 0, .55) !important;
}

.wpdl2-app-wrapper ._gfloading_overlay_wrapper > div > span, .react-responsive-modal-root ._gfloading_overlay_wrapper > div > span {
	display: none !important;
}

.wpdl2-app-wrapper .gf-search-bar form button, .react-responsive-modal-root .gf-search-bar form button {
	display: none;
}

.wpdl2-app-wrapper .gf-search-bar form button.gf-active, .react-responsive-modal-root .gf-search-bar form button.gf-active {
	display: flex;
}

.wpdl2-app-wrapper .gf-search-product-listing ul li a.gf-video-popup, .react-responsive-modal-root .gf-search-product-listing ul li a.gf-video-popup {
	display: none;
}

.wpdl2-app-wrapper .gf-search-product-listing ul li a.video-active, .react-responsive-modal-root .gf-search-product-listing ul li a.video-active {
	display: block !important;
}

.wpdl2-app-wrapper .product-image-gallary .top-icons .disable, .react-responsive-modal-root .product-image-gallary .top-icons .disable {
	display: none;
}

.wpdl2-app-wrapper .noUi-base .noUi-pips-horizontal, .react-responsive-modal-root .noUi-base .noUi-pips-horizontal, .wpdl2-app-wrapper .noUi-target .noUi-pips-horizontal, .react-responsive-modal-root .noUi-target .noUi-pips-horizontal {
	display: block !important;
	height: 30px;
	padding: 0 !important;
}

.wpdl2-app-wrapper .noUi-value.noUi-value-horizontal, .react-responsive-modal-root .noUi-value.noUi-value-horizontal, .wpdl2-app-wrapper .noUi-value.noUi-value-horizontal.noUi-value-large, .react-responsive-modal-root .noUi-value.noUi-value-horizontal.noUi-value-large, .wpdl2-app-wrapper .noUi-value.noUi-value-horizontal.noUi-value-sub, .react-responsive-modal-root .noUi-value.noUi-value-horizontal.noUi-value-sub {
	box-sizing: border-box;
	color: #000;
	cursor: pointer;
	font-size: 12px;
	margin: 0 !important;
	overflow: visible;
	padding: 0 !important;
	pointer-events: auto;
	position: absolute !important;
	text-align: center !important;
	transform: none !important;
	white-space: nowrap;
}

.wpdl2-app-wrapper .noUi-value.noUi-value-horizontal:empty, .react-responsive-modal-root .noUi-value.noUi-value-horizontal:empty, .wpdl2-app-wrapper .rangeSlider .noUi-value.noUi-value-horizontal.noUi-value-sub:last-child, .react-responsive-modal-root .rangeSlider .noUi-value.noUi-value-horizontal.noUi-value-sub:last-child {
	display: none !important;
}

.wpdl2-app-wrapper .noUi-marker-horizontal.noUi-marker-large:first-child, .react-responsive-modal-root .noUi-marker-horizontal.noUi-marker-large:first-child, .wpdl2-app-wrapper .noUi-marker.noUi-marker-horizontal.noUi-marker-normal:not(:first-child), .react-responsive-modal-root .noUi-marker.noUi-marker-horizontal.noUi-marker-normal:not(:first-child) {
	display: none;
}

.wpdl2-app-wrapper .noUi-marker.noUi-marker-horizontal.noUi-marker-sub:not(:first-child), .react-responsive-modal-root .noUi-marker.noUi-marker-horizontal.noUi-marker-sub:not(:first-child) {
	background-color: #fff;
	height: 16px;
	position: absolute;
	top: -16px;
	width: 5px;
}

.wpdl2-app-wrapper .noUi-base, .react-responsive-modal-root .noUi-base, .wpdl2-app-wrapper .noUi-connects, .react-responsive-modal-root .noUi-connects {
	position: static !important;
	z-index: inherit !important;
}

.wpdl2-app-wrapper .noUi-connect, .react-responsive-modal-root .noUi-connect {
	z-index: -1 !important;
}

.wpdl2-app-wrapper .fb_iframe_widget, .react-responsive-modal-root .fb_iframe_widget {
	display: inline-block !important;
	left: 0;
	margin-left: -8px;
	position: relative;
	top: 6px;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .table thead tr .table-sort.ASC:before, .react-responsive-modal-root .gf-product-list-viewdata .table thead tr .table-sort.ASC:before, .wpdl2-app-wrapper .gf-product-list-viewdata .table thead tr .table-sort.DESC:after, .react-responsive-modal-root .gf-product-list-viewdata .table thead tr .table-sort.DESC:after {
	opacity: 0;
}

.wpdl2-app-wrapper .tooltip, .react-responsive-modal-root .tooltip {
	width: 100px;
}

.wpdl2-app-wrapper .react-responsive-modal-closeButton, .react-responsive-modal-root .react-responsive-modal-closeButton {
	background-color: rgba(0, 0, 0, 0);
}

/*! nouislider - 14.7.0 - 4/6/2021 */

/*! nouislider - 14.7.0 - 4/6/2021 */
.wpdl2-app-wrapper .rc-checkbox, .react-responsive-modal-root .rc-checkbox {
	cursor: pointer;
	display: inline-block;
	line-height: 1;
	outline: none;
	position: relative;
	vertical-align: middle;
	white-space: nowrap;
}

.wpdl2-app-wrapper .rc-checkbox-input:focus + .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-input:focus + .rc-checkbox-inner, .wpdl2-app-wrapper .rc-checkbox:hover .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox:hover .rc-checkbox-inner {
	border-color: #3dbcf6;
}

.wpdl2-app-wrapper .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-inner {
	background-color: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	display: inline-block;
	height: 14px;
	left: 0;
	position: relative;
	top: 0;
	transition: border-color .3s cubic-bezier(.68, -.55, .27, 1.55), background-color .3s cubic-bezier(.68, -.55, .27, 1.55);
	width: 14px;
}

.wpdl2-app-wrapper .rc-checkbox-inner:after, .react-responsive-modal-root .rc-checkbox-inner:after {
	animation-duration: .3s;
	animation-name: amCheckboxOut;
	animation-timing-function: cubic-bezier(.68, -.55, .27, 1.55);
	border: 2px solid #fff;
	border-left: 0;
	border-top: 0;
	content: " ";
	display: table;
	height: 8px;
	left: 4px;
	position: absolute;
	top: 1px;
	transform: rotate(45deg);
	width: 5px;
}

.wpdl2-app-wrapper .rc-checkbox-input, .react-responsive-modal-root .rc-checkbox-input {
	bottom: 0;
	cursor: pointer;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9999;
}

.wpdl2-app-wrapper .rc-checkbox-checked:hover .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-checked:hover .rc-checkbox-inner {
	border-color: #3dbcf6;
}

.wpdl2-app-wrapper .rc-checkbox-checked .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-checked .rc-checkbox-inner {
	background-color: #3dbcf6;
	border-color: #3dbcf6;
}

.wpdl2-app-wrapper .rc-checkbox-checked .rc-checkbox-inner:after, .react-responsive-modal-root .rc-checkbox-checked .rc-checkbox-inner:after {
	animation-duration: .3s;
	animation-name: amCheckboxOut;
	animation-timing-function: cubic-bezier(.68, -.55, .27, 1.55);
	border: 2px solid #fff;
	border-left: 0;
	border-top: 0;
	content: " ";
	display: table;
	height: 8px;
	left: 4px;
	position: absolute;
	top: 1px;
	transform: rotate(45deg);
	width: 5px;
}

@media print {
	.wpdl2-app-wrapper .rc-checkbox-checked .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-checked .rc-checkbox-inner {
		box-shadow: inset 0 0 0 16px #3dbcf6;
	}
}

.wpdl2-app-wrapper .rc-checkbox-disabled.rc-checkbox-checked:hover .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-disabled.rc-checkbox-checked:hover .rc-checkbox-inner {
	border-color: #d9d9d9;
}

.wpdl2-app-wrapper .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
	background-color: #f3f3f3;
	border-color: #d9d9d9;
}

.wpdl2-app-wrapper .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner:after, .react-responsive-modal-root .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner:after {
	animation-name: none;
	border-color: #ccc;
}

@media print {
	.wpdl2-app-wrapper .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-disabled.rc-checkbox-checked .rc-checkbox-inner {
		box-shadow: inset 0 0 0 16px #f3f3f3;
	}
}

.wpdl2-app-wrapper .rc-checkbox-disabled:hover .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-disabled:hover .rc-checkbox-inner {
	border-color: #d9d9d9;
}

.wpdl2-app-wrapper .rc-checkbox-disabled .rc-checkbox-inner, .react-responsive-modal-root .rc-checkbox-disabled .rc-checkbox-inner {
	background-color: #f3f3f3;
	border-color: #d9d9d9;
}

.wpdl2-app-wrapper .rc-checkbox-disabled .rc-checkbox-inner:after, .react-responsive-modal-root .rc-checkbox-disabled .rc-checkbox-inner:after {
	animation-name: none;
	border-color: #f3f3f3;
}

.wpdl2-app-wrapper .rc-checkbox-disabled .rc-checkbox-inner-input, .react-responsive-modal-root .rc-checkbox-disabled .rc-checkbox-inner-input {
	cursor: default;
}

@keyframes amCheckboxIn {
	0% {
		opacity: 0;
		transform: scale(0) rotate(45deg);
		transform-origin: 50% 50%;
	}
	
	to {
		opacity: 1;
		transform: scale(1) rotate(45deg);
		transform-origin: 50% 50%;
	}
}

@keyframes amCheckboxOut {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.wpdl2-app-wrapper {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

.wpdl2-app-wrapper .image-gallery-icon, .react-responsive-modal-root .image-gallery-icon {
	-webkit-appearance: none;
	appearance: none;
	background-color: rgba(0, 0, 0, 0);
	border: 0;
	color: #fff;
	cursor: pointer;
	filter: drop-shadow(0 2px 2px #1a1a1a);
	outline: none;
	position: absolute;
	transition: all .3s ease-out;
	z-index: 4;
}

@media (hover:hover)and (pointer:fine) {
	.wpdl2-app-wrapper .image-gallery-icon:hover, .react-responsive-modal-root .image-gallery-icon:hover {
		color: #337ab7;
	}
	
	.wpdl2-app-wrapper .image-gallery-icon:hover .image-gallery-svg, .react-responsive-modal-root .image-gallery-icon:hover .image-gallery-svg {
		transform: scale(1.1);
	}
}

.wpdl2-app-wrapper .image-gallery-icon:focus, .react-responsive-modal-root .image-gallery-icon:focus {
	outline: 2px solid #337ab7;
}

.wpdl2-app-wrapper .image-gallery-using-mouse .image-gallery-icon:focus, .react-responsive-modal-root .image-gallery-using-mouse .image-gallery-icon:focus {
	outline: none;
}

.wpdl2-app-wrapper .image-gallery-fullscreen-button, .react-responsive-modal-root .image-gallery-fullscreen-button, .wpdl2-app-wrapper .image-gallery-play-button, .react-responsive-modal-root .image-gallery-play-button {
	bottom: 0;
	padding: 20px;
}

.wpdl2-app-wrapper .image-gallery-fullscreen-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-fullscreen-button .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-play-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-play-button .image-gallery-svg {
	height: 28px;
	width: 28px;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-fullscreen-button, .react-responsive-modal-root .image-gallery-fullscreen-button, .wpdl2-app-wrapper .image-gallery-play-button, .react-responsive-modal-root .image-gallery-play-button {
		padding: 15px;
	}
	
	.wpdl2-app-wrapper .image-gallery-fullscreen-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-fullscreen-button .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-play-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-play-button .image-gallery-svg {
		height: 24px;
		width: 24px;
	}
}

@media (max-width:480px) {
	.wpdl2-app-wrapper .image-gallery-fullscreen-button, .react-responsive-modal-root .image-gallery-fullscreen-button, .wpdl2-app-wrapper .image-gallery-play-button, .react-responsive-modal-root .image-gallery-play-button {
		padding: 10px;
	}
	
	.wpdl2-app-wrapper .image-gallery-fullscreen-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-fullscreen-button .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-play-button .image-gallery-svg, .react-responsive-modal-root .image-gallery-play-button .image-gallery-svg {
		height: 16px;
		width: 16px;
	}
}

.wpdl2-app-wrapper .image-gallery-fullscreen-button, .react-responsive-modal-root .image-gallery-fullscreen-button {
	right: 0;
}

.wpdl2-app-wrapper .image-gallery-play-button, .react-responsive-modal-root .image-gallery-play-button {
	left: 0;
}

.wpdl2-app-wrapper .image-gallery-left-nav, .react-responsive-modal-root .image-gallery-left-nav, .wpdl2-app-wrapper .image-gallery-right-nav, .react-responsive-modal-root .image-gallery-right-nav {
	padding: 50px 10px;
	top: 50%;
	transform: translateY(-50%);
}

.wpdl2-app-wrapper .image-gallery-left-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-left-nav .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-right-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-right-nav .image-gallery-svg {
	height: 120px;
	width: 60px;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-left-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-left-nav .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-right-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-right-nav .image-gallery-svg {
		height: 72px;
		width: 36px;
	}
}

@media (max-width:480px) {
	.wpdl2-app-wrapper .image-gallery-left-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-left-nav .image-gallery-svg, .wpdl2-app-wrapper .image-gallery-right-nav .image-gallery-svg, .react-responsive-modal-root .image-gallery-right-nav .image-gallery-svg {
		height: 48px;
		width: 24px;
	}
}

.wpdl2-app-wrapper .image-gallery-left-nav[disabled], .react-responsive-modal-root .image-gallery-left-nav[disabled], .wpdl2-app-wrapper .image-gallery-right-nav[disabled], .react-responsive-modal-root .image-gallery-right-nav[disabled] {
	cursor: disabled;
	opacity: .6;
	pointer-events: none;
}

.wpdl2-app-wrapper .image-gallery-left-nav, .react-responsive-modal-root .image-gallery-left-nav {
	left: 0;
}

.wpdl2-app-wrapper .image-gallery-right-nav, .react-responsive-modal-root .image-gallery-right-nav {
	right: 0;
}

.wpdl2-app-wrapper .image-gallery, .react-responsive-modal-root .image-gallery {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	position: relative;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.wpdl2-app-wrapper .image-gallery.fullscreen-modal, .react-responsive-modal-root .image-gallery.fullscreen-modal {
	background: #000;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 5;
}

.wpdl2-app-wrapper .image-gallery.fullscreen-modal .image-gallery-content, .react-responsive-modal-root .image-gallery.fullscreen-modal .image-gallery-content {
	top: 50%;
	transform: translateY(-50%);
}

.wpdl2-app-wrapper .image-gallery-content, .react-responsive-modal-root .image-gallery-content {
	line-height: 0;
	position: relative;
	top: 0;
}

.wpdl2-app-wrapper .image-gallery-content.fullscreen, .react-responsive-modal-root .image-gallery-content.fullscreen {
	background: #000;
}

.wpdl2-app-wrapper .image-gallery-content .image-gallery-slide .image-gallery-image, .react-responsive-modal-root .image-gallery-content .image-gallery-slide .image-gallery-image {
	max-height: calc(100vh - 80px);
}

.wpdl2-app-wrapper .image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image, .react-responsive-modal-root .image-gallery-content.image-gallery-thumbnails-left .image-gallery-slide .image-gallery-image, .wpdl2-app-wrapper .image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image, .react-responsive-modal-root .image-gallery-content.image-gallery-thumbnails-right .image-gallery-slide .image-gallery-image {
	max-height: 100vh;
}

.wpdl2-app-wrapper .image-gallery-slide-wrapper, .react-responsive-modal-root .image-gallery-slide-wrapper {
	position: relative;
}

.wpdl2-app-wrapper .image-gallery-slide-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-slide-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-slide-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
	display: inline-block;
	width: calc(100% - 110px);
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-slide-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-slide-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-slide-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
		width: calc(100% - 87px);
	}
}

.wpdl2-app-wrapper .image-gallery-slide-wrapper.image-gallery-rtl, .react-responsive-modal-root .image-gallery-slide-wrapper.image-gallery-rtl {
	direction: rtl;
}

.wpdl2-app-wrapper .image-gallery-slides, .react-responsive-modal-root .image-gallery-slides {
	line-height: 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	white-space: nowrap;
}

.wpdl2-app-wrapper .image-gallery-slide, .react-responsive-modal-root .image-gallery-slide {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.wpdl2-app-wrapper .image-gallery-slide.image-gallery-center, .react-responsive-modal-root .image-gallery-slide.image-gallery-center {
	position: relative;
}

.wpdl2-app-wrapper .image-gallery-slide .image-gallery-image, .react-responsive-modal-root .image-gallery-slide .image-gallery-image {
	object-fit: contain;
	width: 100%;
}

.wpdl2-app-wrapper .image-gallery-slide .image-gallery-description, .react-responsive-modal-root .image-gallery-slide .image-gallery-description {
	background: rgba(0, 0, 0, .4);
	bottom: 70px;
	color: #fff;
	left: 0;
	line-height: 1;
	padding: 10px 20px;
	position: absolute;
	white-space: normal;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-slide .image-gallery-description, .react-responsive-modal-root .image-gallery-slide .image-gallery-description {
		bottom: 45px;
		font-size: .8em;
		padding: 8px 15px;
	}
}

.wpdl2-app-wrapper .image-gallery-bullets, .react-responsive-modal-root .image-gallery-bullets {
	bottom: 20px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	width: 80%;
	z-index: 4;
}

.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullets-container, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullets-container {
	margin: 0;
	padding: 0;
	text-align: center;
}

.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet {
	-webkit-appearance: none;
	appearance: none;
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #fff;
	border-radius: 50%;
	box-shadow: 0 2px 2px #1a1a1a;
	cursor: pointer;
	display: inline-block;
	margin: 0 5px;
	outline: none;
	padding: 5px;
	transition: all .2s ease-out;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet {
		margin: 0 3px;
		padding: 3px;
	}
}

@media (max-width:480px) {
	.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet {
		padding: 2.7px;
	}
}

.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet:focus, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet:focus {
	background: #337ab7;
	border: 1px solid #337ab7;
	transform: scale(1.2);
}

.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet.active, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet.active {
	background: #fff;
	border: 1px solid #fff;
	transform: scale(1.2);
}

@media (hover:hover)and (pointer:fine) {
	.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet:hover, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet:hover {
		background: #337ab7;
		border: 1px solid #337ab7;
	}
	
	.wpdl2-app-wrapper .image-gallery-bullets .image-gallery-bullet.active:hover, .react-responsive-modal-root .image-gallery-bullets .image-gallery-bullet.active:hover {
		background: #337ab7;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper, .react-responsive-modal-root .image-gallery-thumbnails-wrapper {
	position: relative;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.thumbnails-swipe-horizontal {
	touch-action: pan-y;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.thumbnails-swipe-vertical {
	touch-action: pan-x;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.thumbnails-wrapper-rtl {
	direction: rtl;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
	display: inline-block;
	vertical-align: top;
	width: 100px;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
		width: 81px;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails {
	height: 100%;
	left: 0;
	padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail {
	display: block;
	margin-right: 0;
	padding: 0;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right .image-gallery-thumbnails .image-gallery-thumbnail + .image-gallery-thumbnail {
	margin-left: 0;
	margin-top: 2px;
}

.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
	margin: 0 5px;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left, .wpdl2-app-wrapper .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right, .react-responsive-modal-root .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
		margin: 0 3px;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnails, .react-responsive-modal-root .image-gallery-thumbnails {
	overflow: hidden;
	padding: 5px 0;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnails, .react-responsive-modal-root .image-gallery-thumbnails {
		padding: 3px 0;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnails .image-gallery-thumbnails-container, .react-responsive-modal-root .image-gallery-thumbnails .image-gallery-thumbnails-container {
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
}

.wpdl2-app-wrapper .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnail {
	background: rgba(0, 0, 0, 0);
	border: 4px solid rgba(0, 0, 0, 0);
	display: inline-block;
	padding: 0;
	transition: border .3s ease-out;
	width: 100px;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnail {
		border: 3px solid rgba(0, 0, 0, 0);
		width: 81px;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnail + .image-gallery-thumbnail, .react-responsive-modal-root .image-gallery-thumbnail + .image-gallery-thumbnail {
	margin-left: 2px;
}

.wpdl2-app-wrapper .image-gallery-thumbnail .image-gallery-thumbnail-inner, .react-responsive-modal-root .image-gallery-thumbnail .image-gallery-thumbnail-inner {
	display: block;
	position: relative;
}

.wpdl2-app-wrapper .image-gallery-thumbnail .image-gallery-thumbnail-image, .react-responsive-modal-root .image-gallery-thumbnail .image-gallery-thumbnail-image {
	line-height: 0;
	vertical-align: middle;
	width: 100%;
}

.wpdl2-app-wrapper .image-gallery-thumbnail.active, .react-responsive-modal-root .image-gallery-thumbnail.active, .wpdl2-app-wrapper .image-gallery-thumbnail:focus, .react-responsive-modal-root .image-gallery-thumbnail:focus {
	border: 4px solid #337ab7;
	outline: none;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnail.active, .react-responsive-modal-root .image-gallery-thumbnail.active, .wpdl2-app-wrapper .image-gallery-thumbnail:focus, .react-responsive-modal-root .image-gallery-thumbnail:focus {
		border: 3px solid #337ab7;
	}
}

@media (hover:hover)and (pointer:fine) {
	.wpdl2-app-wrapper .image-gallery-thumbnail:hover, .react-responsive-modal-root .image-gallery-thumbnail:hover {
		border: 4px solid #337ab7;
		outline: none;
	}
}

@media (hover:hover)and (pointer:fine)and (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnail:hover, .react-responsive-modal-root .image-gallery-thumbnail:hover {
		border: 3px solid #337ab7;
	}
}

.wpdl2-app-wrapper .image-gallery-thumbnail-label, .react-responsive-modal-root .image-gallery-thumbnail-label {
	box-sizing: border-box;
	color: #fff;
	font-size: 1em;
	left: 0;
	line-height: 1em;
	padding: 5%;
	position: absolute;
	text-shadow: 0 2px 2px #1a1a1a;
	top: 50%;
	transform: translateY(-50%);
	white-space: normal;
	width: 100%;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-thumbnail-label, .react-responsive-modal-root .image-gallery-thumbnail-label {
		font-size: .8em;
		line-height: .8em;
	}
}

.wpdl2-app-wrapper .image-gallery-index, .react-responsive-modal-root .image-gallery-index {
	background: rgba(0, 0, 0, .4);
	color: #fff;
	line-height: 1;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 4;
}

@media (max-width:768px) {
	.wpdl2-app-wrapper .image-gallery-index, .react-responsive-modal-root .image-gallery-index {
		font-size: .8em;
		padding: 5px 10px;
	}
}

.wpdl2-app-wrapper #wpdl-root, .react-responsive-modal-root #wpdl-root {
	margin: 50px 0 0;
}

.wpdl2-app-wrapper .gf-tool-container, .react-responsive-modal-root .gf-tool-container {
	float: none;
	font-family: Lato, sans-serif;
	margin: 20px auto;
	max-width: 1280px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-tool-container, .react-responsive-modal-root .gf-tool-container {
		width: 95%;
	}
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-tool-container, .react-responsive-modal-root .gf-tool-container {
		padding: 0 20px;
	}
}

@media (max-width:479px) {
	.wpdl2-app-wrapper .gf-tool-container, .react-responsive-modal-root .gf-tool-container {
		padding: 0 20px;
	}
}

.wpdl2-app-wrapper #wpdl-root div:empty, .react-responsive-modal-root #wpdl-root div:empty {
	display: block;
}

.wpdl2-app-wrapper .gf-tool-container h1, .react-responsive-modal-root .gf-tool-container h1, .wpdl2-app-wrapper .gf-tool-container h2, .react-responsive-modal-root .gf-tool-container h2, .wpdl2-app-wrapper .gf-tool-container h3, .react-responsive-modal-root .gf-tool-container h3, .wpdl2-app-wrapper .gf-tool-container h4, .react-responsive-modal-root .gf-tool-container h4, .wpdl2-app-wrapper .gf-tool-container h5, .react-responsive-modal-root .gf-tool-container h5, .wpdl2-app-wrapper .gf-tool-container p, .react-responsive-modal-root .gf-tool-container p {
	font-family: Lato, sans-serif;
	margin: 0;
}

.wpdl2-app-wrapper .modal-open div:empty, .react-responsive-modal-root .modal-open div:empty {
	display: block !important;
}

.wpdl2-app-wrapper .gf-tool-container p, .react-responsive-modal-root .gf-tool-container p {
	font-family: Lato, sans-serif;
	font-size: 16px;
	line-height: normal;
}

.wpdl2-app-wrapper .gf-tool-container a, .react-responsive-modal-root .gf-tool-container a {
	font-family: Lato, sans-serif;
	text-decoration: none;
}

.wpdl2-app-wrapper .gf-tool-container .f_heading, .react-responsive-modal-root .gf-tool-container .f_heading {
	color: #000;
	font-family: Lato, sans-serif !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0;
	margin-bottom: 10px !important;
	max-width: 90px;
	min-width: 90px;
	text-align: left;
	text-transform: uppercase;
}

.wpdl2-app-wrapper .gf-tool-container .f_heading .f_popup i, .react-responsive-modal-root .gf-tool-container .f_heading .f_popup i {
	cursor: pointer;
	font-size: 15px;
	padding-left: 6px;
}

.wpdl2-app-wrapper .gf-tool-container .gf-product-listing .gf-product-box-action label, .react-responsive-modal-root .gf-tool-container .gf-product-listing .gf-product-box-action label, .wpdl2-app-wrapper .gf-tool-container .gf-product-listing .gf-product-price, .react-responsive-modal-root .gf-tool-container .gf-product-listing .gf-product-price {
	letter-spacing: 0;
}

.wpdl2-app-wrapper .diamond_heading, .react-responsive-modal-root .diamond_heading {
	max-width: 136px;
	min-width: 136px;
}

.wpdl2-app-wrapper .gf-tool-container ul, .react-responsive-modal-root .gf-tool-container ul {
	margin: 0;
	padding-left: 0;
}

.wpdl2-app-wrapper .gf-tool-container ul li, .react-responsive-modal-root .gf-tool-container ul li {
	list-style: none;
}

.wpdl2-app-wrapper .gf-tool-container input, .react-responsive-modal-root .gf-tool-container input {
	border: none;
	font-family: Lato, sans-serif;
	font-size: inherit !important;
	margin-bottom: 0;
}

.wpdl2-app-wrapper .gf-tool-container .gf-filter-main-div input[type=text], .react-responsive-modal-root .gf-tool-container .gf-filter-main-div input[type=text] {
	min-height: 24px;
}

.wpdl2-app-wrapper input:active, .react-responsive-modal-root input:active, .wpdl2-app-wrapper select:active, .react-responsive-modal-root select:active, .wpdl2-app-wrapper select:focus, .react-responsive-modal-root select:focus, .wpdl2-app-wrapper textarea:active, .react-responsive-modal-root textarea:active, .wpdl2-app-wrapper textarea:focus, .react-responsive-modal-root textarea:focus {
	border: none !important;
	outline: none;
}

.wpdl2-app-wrapper .gf-tool-container textarea, .react-responsive-modal-root .gf-tool-container textarea {
	border: none;
}

.wpdl2-app-wrapper .gf-diamond-search-details select, .react-responsive-modal-root .gf-diamond-search-details select, .wpdl2-app-wrapper .gf-diamond-search-details select:active, .react-responsive-modal-root .gf-diamond-search-details select:active, .wpdl2-app-wrapper .gf-diamond-search-details select:focus, .react-responsive-modal-root .gf-diamond-search-details select:focus {
	border: 1px solid #ccc !important;
}

.wpdl2-app-wrapper .gf-tool-container select, .react-responsive-modal-root .gf-tool-container select, .wpdl2-app-wrapper .gf-tool-container textarea, .react-responsive-modal-root .gf-tool-container textarea {
	margin-bottom: 0;
}

.wpdl2-app-wrapper .gf-tool-container input[type=radio i], .react-responsive-modal-root .gf-tool-container input[type=radio i] {
	cursor: pointer;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2;
}

.wpdl2-app-wrapper .gf-tool-container select, .react-responsive-modal-root .gf-tool-container select {
	box-shadow: none !important;
}

.wpdl2-app-wrapper .react-responsive-modal-container, .react-responsive-modal-root .react-responsive-modal-container {
	align-items: center;
	display: flex;
	justify-content: center;
	overflow-y: hidden;
	text-align: center;
}

.wpdl2-app-wrapper .customOverlay, .react-responsive-modal-root .customOverlay {
	background: rgba(0, 0, 0, .549);
}

.wpdl2-app-wrapper .react-responsive-modal-modal, .react-responsive-modal-root .react-responsive-modal-modal {
	overflow: hidden;
}

.wpdl2-app-wrapper .react-responsive-modal-root:has(.popup__reset) .react-responsive-modal-container, .react-responsive-modal-root:has(.popup__reset) .react-responsive-modal-container, .wpdl2-app-wrapper .react-responsive-modal-root:has(.popup__reset) .react-responsive-modal-containerCenter, .react-responsive-modal-root:has(.popup__reset) .react-responsive-modal-containerCenter {
	overflow: hidden !important;
	overflow-y: hidden !important;
}

.wpdl2-app-wrapper .react-responsive-modal-modal.popup__reset, .react-responsive-modal-root .react-responsive-modal-modal.popup__reset {
	-ms-overflow-style: none !important;
	height: auto !important;
	max-height: none !important;
	overflow: hidden !important;
	overflow-x: hidden !important;
	overflow-y: hidden !important;
	scrollbar-width: none !important;
}

.wpdl2-app-wrapper .react-responsive-modal-modal.popup__reset::-webkit-scrollbar, .react-responsive-modal-root .react-responsive-modal-modal.popup__reset::-webkit-scrollbar {
	display: none !important;
	height: 0 !important;
	width: 0 !important;
}

.wpdl2-app-wrapper .Diamond-form form, .react-responsive-modal-root .Diamond-form form {
	height: 545px;
	overflow-y: scroll;
}

.wpdl2-app-wrapper .Diamond-form form::-webkit-scrollbar, .react-responsive-modal-root .Diamond-form form::-webkit-scrollbar {
	margin-right: 10px;
	width: 5px;
}

.wpdl2-app-wrapper .Diamond-form form::-webkit-scrollbar-track, .react-responsive-modal-root .Diamond-form form::-webkit-scrollbar-track {
	background-color: #fff;
}

.wpdl2-app-wrapper .Diamond-form form::-webkit-scrollbar-thumb, .react-responsive-modal-root .Diamond-form form::-webkit-scrollbar-thumb {
	background-color: #6c6b6b;
}

.wpdl2-app-wrapper .Diamond-form--small form, .react-responsive-modal-root .Diamond-form--small form {
	height: 462px;
	overflow-y: scroll;
}

.wpdl2-app-wrapper .Diamond-form--small form::-webkit-scrollbar, .react-responsive-modal-root .Diamond-form--small form::-webkit-scrollbar {
	margin-right: 10px;
	width: 5px;
}

.wpdl2-app-wrapper .Diamond-form--small form::-webkit-scrollbar-track, .react-responsive-modal-root .Diamond-form--small form::-webkit-scrollbar-track {
	background-color: #fff;
}

.wpdl2-app-wrapper .Diamond-form--small form::-webkit-scrollbar-thumb, .react-responsive-modal-root .Diamond-form--small form::-webkit-scrollbar-thumb {
	background-color: #6c6b6b;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form, .react-responsive-modal-root .Diamond-form--xx-small form {
	height: 473px;
	overflow-y: scroll;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form::-webkit-scrollbar, .react-responsive-modal-root .Diamond-form--xx-small form::-webkit-scrollbar {
	margin-right: 10px;
	width: 5px;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form::-webkit-scrollbar-track, .react-responsive-modal-root .Diamond-form--xx-small form::-webkit-scrollbar-track {
	background-color: #fff;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form::-webkit-scrollbar-thumb, .react-responsive-modal-root .Diamond-form--xx-small form::-webkit-scrollbar-thumb {
	background-color: #6c6b6b;
}

.wpdl2-app-wrapper .popup_product, .react-responsive-modal-root .popup_product {
	display: inline-block;
	margin: 1.2rem;
	width: 500px;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .popup_product, .react-responsive-modal-root .popup_product {
		display: block;
		height: auto;
		margin: 20px auto;
		width: 600px;
	}
}

.wpdl2-app-wrapper .popup_product .popup_pr, .react-responsive-modal-root .popup_product .popup_pr {
	margin-bottom: 10px;
}

.wpdl2-app-wrapper .popup_diamond-product, .react-responsive-modal-root .popup_diamond-product {
	display: inline-block;
	margin: 1.2rem;
	width: 500px;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .popup_diamond-product, .react-responsive-modal-root .popup_diamond-product {
		display: block;
		height: 80%;
		height: 710px;
		margin: 20px auto;
		width: 600px;
	}
}

.wpdl2-app-wrapper .popup-form, .react-responsive-modal-root .popup-form {
	display: block;
	margin: 1.2rem;
	width: 90%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .popup-form, .react-responsive-modal-root .popup-form {
		display: block;
		margin: 20px auto;
		max-height: 710px;
		width: 600px;
	}
}

.wpdl2-app-wrapper .popup-form-extra-small, .react-responsive-modal-root .popup-form-extra-small {
	display: block;
	margin: 1.2rem;
	width: 90%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .popup-form-extra-small, .react-responsive-modal-root .popup-form-extra-small {
		display: block;
		margin: 20px auto;
		max-height: 585px;
		width: 600px;
	}
}

.wpdl2-app-wrapper .popup-form-small, .react-responsive-modal-root .popup-form-small {
	display: block;
	margin: 1.2rem;
	width: 90%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .popup-form-small, .react-responsive-modal-root .popup-form-small {
		display: block;
		margin: 20px auto;
		max-height: 560px;
		width: 600px;
	}
}

.wpdl2-app-wrapper .popup-internal-form, .react-responsive-modal-root .popup-internal-form {
	border: 2px solid #000;
	display: inline-block;
	margin: 1.2rem;
	max-width: 400px;
	top: 0;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .popup-internal-form, .react-responsive-modal-root .popup-internal-form {
		display: block;
		margin: 20px auto;
	}
}

.wpdl2-app-wrapper .popup_Modal, .react-responsive-modal-root .popup_Modal {
	max-width: 600px;
	padding: 25px 15px;
}

.wpdl2-app-wrapper .popup_Modal .popup-image, .react-responsive-modal-root .popup_Modal .popup-image {
	background-color: #fafafa;
	border-radius: 4px;
	display: block;
	height: auto;
	margin: 16px auto 0;
	max-width: 480px;
	object-fit: contain;
	width: 100%;
}

.wpdl2-app-wrapper .popup_Modal .popup_content, .react-responsive-modal-root .popup_Modal .popup_content {
	border: 1px solid #ddd;
	padding: 10px;
}

.wpdl2-app-wrapper .popup_Modal .popup_content p, .react-responsive-modal-root .popup_Modal .popup_content p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 12px;
}

.wpdl2-app-wrapper .react-responsive-modal-closeButton, .react-responsive-modal-root .react-responsive-modal-closeButton {
	background-color: #000;
	right: 0;
	top: 0;
}

.wpdl2-app-wrapper .react-responsive-modal-closeButton svg path, .react-responsive-modal-root .react-responsive-modal-closeButton svg path {
	fill: #fff;
}

.wpdl2-app-wrapper .popup-print-info .gf-requested-form, .react-responsive-modal-root .popup-print-info .gf-requested-form {
	margin-bottom: 0;
	text-align: center;
}

.wpdl2-app-wrapper .gf-btn, .react-responsive-modal-root .gf-btn {
	background-color: #000;
	border: none;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	margin-bottom: 15px;
	min-height: inherit !important;
	min-width: inherit !important;
	padding: 10px 20px;
	text-transform: capitalize;
	transition: .3s;
}

.wpdl2-app-wrapper .gf-btn:hover, .react-responsive-modal-root .gf-btn:hover {
	background-color: #92cddc;
	box-shadow: none !important;
	color: #fff;
}

.wpdl2-app-wrapper .show .modal-dialog .modal-body .modal__spinner, .react-responsive-modal-root .show .modal-dialog .modal-body .modal__spinner {
	background-color: #fff;
	height: 350px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 35%;
	width: 100%;
}

.wpdl2-app-wrapper .ring-diamond-video video, .react-responsive-modal-root .ring-diamond-video video {
	margin: 0 auto;
	width: 97%;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInput-input, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root .MuiInput-input, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiInput-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiInput-root .MuiInput-input {
	box-shadow: none !important;
}

.wpdl2-app-wrapper div:empty, .react-responsive-modal-root div:empty {
	display: block !important;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.product-listing.gf-active, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.product-listing.gf-active {
	border: 2px solid #000;
	box-shadow: 5px 5px 7px 1px #dcdcdc;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination .active .page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination .active .page-link {
	padding: 6px;
}

.wpdl2-app-wrapper .noUi-target, .react-responsive-modal-root .noUi-target {
	border: none;
	z-index: 1;
}

.wpdl2-app-wrapper .noUi-base, .react-responsive-modal-root .noUi-base {
	border: 1px solid #d3d3d3;
	border-radius: 5px;
}

.wpdl2-app-wrapper .popup__reset, .react-responsive-modal-root .popup__reset {
	-ms-overflow-style: none !important;
	display: block;
	height: auto !important;
	margin: 20px auto;
	max-height: none !important;
	overflow: hidden !important;
	overflow-x: hidden !important;
	overflow-y: hidden !important;
	scrollbar-width: none !important;
	text-align: left;
	top: 0;
	width: 350px;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .popup__reset, .react-responsive-modal-root .popup__reset {
		width: 400px;
	}
}

.wpdl2-app-wrapper .popup__reset::-webkit-scrollbar, .react-responsive-modal-root .popup__reset::-webkit-scrollbar {
	display: none !important;
	height: 0 !important;
	width: 0 !important;
}

.wpdl2-app-wrapper .reset_popup-btn, .react-responsive-modal-root .reset_popup-btn {
	margin-top: 20px;
	text-align: center;
}

.wpdl2-app-wrapper .reset_popup-btn .gf-btn, .react-responsive-modal-root .reset_popup-btn .gf-btn {
	padding: 5px 20px;
}

.wpdl2-app-wrapper .reset_popup-btn .btn_left, .react-responsive-modal-root .reset_popup-btn .btn_left {
	margin-right: 20px;
}

.wpdl2-app-wrapper .gf-reset-loading, .react-responsive-modal-root .gf-reset-loading {
	inset: 0;
	position: fixed !important;
	z-index: 10000;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root {
	margin: 15px 0 0;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root, .wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiInput-root, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiInput-root {
	margin: 15px 0 0;
	width: 100%;
}

.wpdl2-app-wrapper .gf-form-field .MuiOutlinedInput-root, .react-responsive-modal-root .gf-form-field .MuiOutlinedInput-root {
	margin: 5px 0 10px;
	width: 96%;
}

.wpdl2-app-wrapper .css-1in441m > span, .react-responsive-modal-root .css-1in441m > span {
	font-size: 15px;
	opacity: 1;
}

.wpdl2-app-wrapper .Diamond-form form input, .react-responsive-modal-root .Diamond-form form input, .wpdl2-app-wrapper .Diamond-form form select, .react-responsive-modal-root .Diamond-form form select, .wpdl2-app-wrapper .Diamond-form form textarea, .react-responsive-modal-root .Diamond-form form textarea {
	font-size: 15px;
	font-size: 12px;
	height: 15px;
	line-height: 15px;
	padding: 20px 15px 10px;
}

.wpdl2-app-wrapper .Diamond-form form textarea, .react-responsive-modal-root .Diamond-form form textarea {
	height: 35px !important;
	padding: 0;
}

.wpdl2-app-wrapper .Diamond-form--small form input, .react-responsive-modal-root .Diamond-form--small form input, .wpdl2-app-wrapper .Diamond-form--small form select, .react-responsive-modal-root .Diamond-form--small form select, .wpdl2-app-wrapper .Diamond-form--small form textarea, .react-responsive-modal-root .Diamond-form--small form textarea {
	font-size: 15px;
	font-size: 12px;
	height: 15px;
	line-height: 15px;
	padding: 20px 15px 10px;
}

.wpdl2-app-wrapper .Diamond-form--small form textarea, .react-responsive-modal-root .Diamond-form--small form textarea {
	height: 35px !important;
	padding: 0;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form input, .react-responsive-modal-root .Diamond-form--xx-small form input, .wpdl2-app-wrapper .Diamond-form--xx-small form select, .react-responsive-modal-root .Diamond-form--xx-small form select, .wpdl2-app-wrapper .Diamond-form--xx-small form textarea, .react-responsive-modal-root .Diamond-form--xx-small form textarea {
	font-size: 15px;
	font-size: 12px;
	height: 15px;
	line-height: 15px;
	padding: 20px 15px 10px;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form textarea, .react-responsive-modal-root .Diamond-form--xx-small form textarea {
	height: 35px !important;
	padding: 0;
}

.wpdl2-app-wrapper .MuiInputLabel-root.MuiInputLabel-formControl, .react-responsive-modal-root .MuiInputLabel-root.MuiInputLabel-formControl {
	display: none;
	left: 0;
	top: 14px;
}

.wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-root {
	font-size: 16px;
}

.wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .wpdl2-app-wrapper .Diamond-form--xx-small form .gf-form-field .MuiInput-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--xx-small form .gf-form-field .MuiInput-root .MuiInputLabel-root {
	color: #000;
	font-size: 16px;
}

.wpdl2-app-wrapper .popup__reset p, .react-responsive-modal-root .popup__reset p {
	text-align: center;
}

.wpdl2-app-wrapper .Diamond-form input, .react-responsive-modal-root .Diamond-form input, .wpdl2-app-wrapper .Diamond-form--small input, .react-responsive-modal-root .Diamond-form--small input, .wpdl2-app-wrapper .Diamond-form--xx-small input, .react-responsive-modal-root .Diamond-form--xx-small input, .wpdl2-app-wrapper .Diamond-form select, .react-responsive-modal-root .Diamond-form select, .wpdl2-app-wrapper .Diamond-form textarea, .react-responsive-modal-root .Diamond-form textarea, .wpdl2-app-wrapper .Diamond-form--small select, .react-responsive-modal-root .Diamond-form--small select, .wpdl2-app-wrapper .Diamond-form--small textarea, .react-responsive-modal-root .Diamond-form--small textarea, .wpdl2-app-wrapper .Diamond-form--xx-small select, .react-responsive-modal-root .Diamond-form--xx-small select, .wpdl2-app-wrapper .Diamond-form--xx-small textarea, .react-responsive-modal-root .Diamond-form--xx-small textarea {
	border: none;
	box-shadow: none !important;
}

.wpdl2-app-wrapper .gf-form-field .MuiOutlinedInput-root fieldset legend, .react-responsive-modal-root .gf-form-field .MuiOutlinedInput-root fieldset legend {
	color: #000;
	height: 12px;
}

.wpdl2-app-wrapper .MuiSelect-select, .react-responsive-modal-root .MuiSelect-select {
	font-size: 12px !important;
	height: 15px !important;
	padding: 20px 14px 10px !important;
}

.wpdl2-app-wrapper .btn-tryon, .react-responsive-modal-root .btn-tryon {
	margin-left: 15px;
}

.wpdl2-app-wrapper .ringbuilder_tooltip, .react-responsive-modal-root .ringbuilder_tooltip {
	font-size: 10px !important;
	padding: 4px !important;
}

.wpdl2-app-wrapper .gf-compareitems, .react-responsive-modal-root .gf-compareitems {
	display: none;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .gf-compareitems, .react-responsive-modal-root .gf-compareitems {
		display: block;
	}
}

.wpdl2-app-wrapper .gf-compareitems .table, .react-responsive-modal-root .gf-compareitems .table {
	width: 100%;
}

.wpdl2-app-wrapper .gf-compareitems .gf-compare-product-head, .react-responsive-modal-root .gf-compareitems .gf-compare-product-head {
	position: relative;
	vertical-align: top;
}

.wpdl2-app-wrapper .gf-compare-back-button, .react-responsive-modal-root .gf-compare-back-button {
	margin: 12px 0 16px;
}

.wpdl2-app-wrapper .gf-compare-remove, .react-responsive-modal-root .gf-compare-remove {
	background: rgba(255, 255, 255, .92);
	border: none;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
	color: #666;
	cursor: pointer;
	height: 28px;
	line-height: 28px;
	padding: 0;
	position: absolute;
	right: 4px;
	text-align: center;
	top: 4px;
	width: 28px;
	z-index: 2;
}

.wpdl2-app-wrapper .gf-compare-remove i, .react-responsive-modal-root .gf-compare-remove i {
	font-size: 14px;
	pointer-events: none;
}

.wpdl2-app-wrapper .gf-compare-remove:hover, .react-responsive-modal-root .gf-compare-remove:hover {
	background: #fff;
	color: #111;
}

.wpdl2-app-wrapper .gf-compare-mob-items, .react-responsive-modal-root .gf-compare-mob-items {
	position: relative;
}

.wpdl2-app-wrapper .gf-compare-mob-items .gf-compare-remove--mobile, .react-responsive-modal-root .gf-compare-mob-items .gf-compare-remove--mobile {
	right: 8px;
	top: 8px;
}

.wpdl2-app-wrapper .gf-compareitems table, .react-responsive-modal-root .gf-compareitems table, .wpdl2-app-wrapper .gf-compareitems td, .react-responsive-modal-root .gf-compareitems td, .wpdl2-app-wrapper .gf-compareitems th, .react-responsive-modal-root .gf-compareitems th {
	background-color: #f7f7f7;
	border: 1px solid #e8e8e8;
	padding: 8px !important;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .table, .react-responsive-modal-root .gf-product-list-viewdata .table, .wpdl2-app-wrapper .gf-product-list-viewdata td, .react-responsive-modal-root .gf-product-list-viewdata td, .wpdl2-app-wrapper .gf-product-list-viewdata th, .react-responsive-modal-root .gf-product-list-viewdata th {
	background-color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .gf-compareitems .table > :not(:first-child), .react-responsive-modal-root .gf-compareitems .table > :not(:first-child) {
	border-top-color: #e8e8e8;
}

.wpdl2-app-wrapper .gf-compareitems table tfoot tr td a, .react-responsive-modal-root .gf-compareitems table tfoot tr td a {
	background-color: #000;
	color: #fff;
	display: inline-block;
	margin-right: 15px;
	padding: 5px 10px;
	text-align: center;
	width: 30%;
}

@media (max-width:1200px) {
	.wpdl2-app-wrapper .gf-compareitems table tfoot tr td a, .react-responsive-modal-root .gf-compareitems table tfoot tr td a {
		width: 24%;
	}
}

.wpdl2-app-wrapper .gf-compareitems table tfoot tr td a:hover, .react-responsive-modal-root .gf-compareitems table tfoot tr td a:hover {
	background-color: #92cddc;
	color: #000;
}

.wpdl2-app-wrapper .gf-compareitems table tfoot tr td:first-child, .react-responsive-modal-root .gf-compareitems table tfoot tr td:first-child {
	font-weight: 600;
}

.wpdl2-app-wrapper .gf-compareitems thead tr th, .react-responsive-modal-root .gf-compareitems thead tr th {
	text-align: center;
}

.wpdl2-app-wrapper .popup_product .popup_content, .react-responsive-modal-root .popup_product .popup_content {
	margin-top: 20px;
}

.wpdl2-app-wrapper .gf-model-header h2, .react-responsive-modal-root .gf-model-header h2 {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 25px;
	font-weight: 600;
}

.wpdl2-app-wrapper .diamond-information .diamond-spacification-list, .react-responsive-modal-root .diamond-information .diamond-spacification-list {
	height: 545px;
	margin: 0 auto;
	overflow-y: scroll;
	width: 560px;
}

@media (max-width:767px) {
	.wpdl2-app-wrapper .diamond-information .diamond-spacification-list, .react-responsive-modal-root .diamond-information .diamond-spacification-list {
		width: 490px;
	}
}

@media (max-width:479px) {
	.wpdl2-app-wrapper .diamond-information .diamond-spacification-list, .react-responsive-modal-root .diamond-information .diamond-spacification-list {
		width: 320px;
	}
}

@media (max-width:375px) {
	.wpdl2-app-wrapper .diamond-information .diamond-spacification-list, .react-responsive-modal-root .diamond-information .diamond-spacification-list {
		width: 295px;
	}
}

@media (max-width:322px) {
	.wpdl2-app-wrapper .diamond-information .diamond-spacification-list, .react-responsive-modal-root .diamond-information .diamond-spacification-list {
		width: 241px;
	}
}

.wpdl2-app-wrapper .diamond-information .diamond-spacification-list::-webkit-scrollbar, .react-responsive-modal-root .diamond-information .diamond-spacification-list::-webkit-scrollbar {
	margin-right: 10px;
	width: 5px;
}

.wpdl2-app-wrapper .diamond-information .diamond-spacification-list::-webkit-scrollbar-track, .react-responsive-modal-root .diamond-information .diamond-spacification-list::-webkit-scrollbar-track {
	background-color: #fff;
}

.wpdl2-app-wrapper .diamond-information .diamond-spacification-list::-webkit-scrollbar-thumb, .react-responsive-modal-root .diamond-information .diamond-spacification-list::-webkit-scrollbar-thumb {
	background-color: #e8e8e8;
}

.wpdl2-app-wrapper .diamond-information .spacification-info, .react-responsive-modal-root .diamond-information .spacification-info {
	margin-top: 10px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing a.gf-btn, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing a.gf-btn {
	color: #fff !important;
}

.wpdl2-app-wrapper .ellipsis-data .__react_component_tooltip, .react-responsive-modal-root .ellipsis-data .__react_component_tooltip {
	font-size: 8px !important;
	padding: 4px;
	text-align: center;
	width: 45px !important;
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-tooltip, .react-responsive-modal-root .noUi-horizontal .noUi-tooltip {
	background-color: #000;
	bottom: 125%;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 1px 5px;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .noUi-horizontal .noUi-tooltip, .react-responsive-modal-root .noUi-horizontal .noUi-tooltip {
		display: none;
	}
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-tooltip:after, .react-responsive-modal-root .noUi-horizontal .noUi-tooltip:after {
	border: 5px solid rgba(0, 0, 0, 0);
	border-top-color: #000;
	content: "";
	left: 50%;
	margin-left: -5px;
	position: absolute;
	top: 100%;
}

.wpdl2-app-wrapper .gf-change-view-result select, .react-responsive-modal-root .gf-change-view-result select {
	width: 75px !important;
}

@media (max-width:1100px) {
	.wpdl2-app-wrapper #Depth, .react-responsive-modal-root #Depth, .wpdl2-app-wrapper #Measurement, .react-responsive-modal-root #Measurement, .wpdl2-app-wrapper #Measurements, .react-responsive-modal-root #Measurements, .wpdl2-app-wrapper #TableMeasure, .react-responsive-modal-root #TableMeasure, .wpdl2-app-wrapper .Depthcol, .react-responsive-modal-root .Depthcol, .wpdl2-app-wrapper .HiddenCol, .react-responsive-modal-root .HiddenCol, .wpdl2-app-wrapper .Measurementscol, .react-responsive-modal-root .Measurementscol, .wpdl2-app-wrapper .TableMeasurecol, .react-responsive-modal-root .TableMeasurecol {
		display: none;
	}
}

.wpdl2-app-wrapper .gf-diamond-back-button, .react-responsive-modal-root .gf-diamond-back-button {
	margin: 2px 0;
}

.wpdl2-app-wrapper .gf-diamond-back-button a, .react-responsive-modal-root .gf-diamond-back-button a {
	color: #000;
	font-size: 20px;
	line-height: normal;
}

.wpdl2-app-wrapper .gf-diamond-back-button a i, .react-responsive-modal-root .gf-diamond-back-button a i {
	font-size: 16px;
	margin-right: 5px;
}

.wpdl2-app-wrapper .ring-diamond-video iframe, .react-responsive-modal-root .ring-diamond-video iframe {
	border: 0;
}

.wpdl2-app-wrapper .pagination li a, .react-responsive-modal-root .pagination li a {
	border: none;
}

.wpdl2-app-wrapper button.gf-search-btn.gf-active, .react-responsive-modal-root button.gf-search-btn.gf-active {
	border-radius: 0;
	padding: 0 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.wpdl2-app-wrapper table.gf-table, .react-responsive-modal-root table.gf-table {
	background: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper th.table-selecter label, .react-responsive-modal-root th.table-selecter label {
	margin-bottom: 0;
}

.wpdl2-app-wrapper .gf-table .rc-checkbox-input, .react-responsive-modal-root .gf-table .rc-checkbox-input {
	margin: 0;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody tr:hover, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody tr:hover {
	color: #fff;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody tr:hover td, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody tr:hover td {
	color: #fff !important;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody tr:hover td a, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody tr:hover td a {
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul .list-view.gf-active svg, .react-responsive-modal-root .gf-diamond-change-view ul .list-view.gf-active svg, .wpdl2-app-wrapper .gf-diamond-change-view ul li a.gf-grid-view-four svg:hover, .react-responsive-modal-root .gf-diamond-change-view ul li a.gf-grid-view-four svg:hover, .wpdl2-app-wrapper .gf-diamond-change-view ul li a.listview svg:hover, .react-responsive-modal-root .gf-diamond-change-view ul li a.listview svg:hover {
	fill: #fff;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a.gf-grid-view-four svg, .react-responsive-modal-root .gf-diamond-change-view ul li a.gf-grid-view-four svg {
	fill: #797979;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul .grid-view.gf-active a.gf-grid-view-four svg, .react-responsive-modal-root .gf-diamond-change-view ul .grid-view.gf-active a.gf-grid-view-four svg {
	fill: #fff;
}

.wpdl2-app-wrapper .react-responsive-modal-closeButton, .react-responsive-modal-root .react-responsive-modal-closeButton {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.wpdl2-app-wrapper .Diamond-form form .prefrence-action, .react-responsive-modal-root .Diamond-form form .prefrence-action, .wpdl2-app-wrapper .Diamond-form--small form .prefrence-action, .react-responsive-modal-root .Diamond-form--small form .prefrence-action, .wpdl2-app-wrapper .gf-product-info .gf-diamond-tryon .gf-diamond-btn, .react-responsive-modal-root .gf-product-info .gf-diamond-tryon .gf-diamond-btn, .wpdl2-app-wrapper .react-responsive-modal-closeButton, .react-responsive-modal-root .react-responsive-modal-closeButton {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.wpdl2-app-wrapper .gf-tool-container .noUi-touch-area, .react-responsive-modal-root .gf-tool-container .noUi-touch-area {
	height: 0;
}

.wpdl2-app-wrapper .gf-tool-container .pagination, .react-responsive-modal-root .gf-tool-container .pagination {
	padding: 0;
}

.wpdl2-app-wrapper span.gf-admin-phone-number, .react-responsive-modal-root span.gf-admin-phone-number {
	font-size: 15px !important;
	font-weight: 400 !important;
}

.wpdl2-app-wrapper span.gf-admin-phone-number-diamond-detail, .react-responsive-modal-root span.gf-admin-phone-number-diamond-detail {
	font-size: 16px !important;
	font-weight: 400 !important;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination, .react-responsive-modal-root .gf-diamond-product-pagination .pagination, .wpdl2-app-wrapper .gf-tool-container .gf-powered_by, .react-responsive-modal-root .gf-tool-container .gf-powered_by {
		text-align: center !important;
	}
}

.wpdl2-app-wrapper .__react_component_tooltip:before, .react-responsive-modal-root .__react_component_tooltip:before {
	width: -webkit-fit-content !important;
	width: -moz-fit-content !important;
	width: fit-content !important;
}

.wpdl2-app-wrapper .gem-video, .react-responsive-modal-root .gem-video {
	font-style: normal;
}

.wpdl2-app-wrapper .gem-video:before, .react-responsive-modal-root .gem-video:before {
	content: "";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	position: absolute;
}

.wpdl2-app-wrapper .gf-tool-container .diamond-ui-slider #cerfificate, .react-responsive-modal-root .gf-tool-container .diamond-ui-slider #cerfificate {
	font-family: Lato, sans-serif !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0;
}

.wpdl2-app-wrapper .gf-product-box-action label, .react-responsive-modal-root .gf-product-box-action label {
	display: inline-flex;
	font-size: 13px;
	text-transform: uppercase;
}

.wpdl2-app-wrapper .gf-product-box-action .rc-checkbox input, .react-responsive-modal-root .gf-product-box-action .rc-checkbox input {
	height: 14px;
	width: 14px;
}

.wpdl2-app-wrapper .gf_dl_tool .gf_activationPopup_heading, .react-responsive-modal-root .gf_dl_tool .gf_activationPopup_heading {
	color: #000;
	font-family: Lato, sans-serif !important;
	font-size: 30px;
	font-weight: 600;
}

.wpdl2-app-wrapper .gf_dl_tool .gf_activationPopup_block, .react-responsive-modal-root .gf_dl_tool .gf_activationPopup_block {
	padding: 40px 30px;
	text-align: center;
}

.wpdl2-app-wrapper .gf_dl_tool .gf_activationPopup_desc, .react-responsive-modal-root .gf_dl_tool .gf_activationPopup_desc {
	color: red;
	font-family: Lato, sans-serif !important;
	font-size: 20px;
	font-weight: 600;
}

.wpdl2-app-wrapper .gf_dl_tool .activation_alert, .react-responsive-modal-root .gf_dl_tool .activation_alert {
	height: 130px;
	width: 130px;
}

.wpdl2-app-wrapper .gf_dl_tool .gf_alert_img, .react-responsive-modal-root .gf_dl_tool .gf_alert_img {
	width: 10%;
}

.wpdl2-app-wrapper .gf-diamond-mobile-specification, .react-responsive-modal-root .gf-diamond-mobile-specification {
	display: none;
}

.wpdl2-app-wrapper .gf-call-to-action span, .react-responsive-modal-root .gf-call-to-action span {
	display: block;
	font-size: 18px;
	line-height: 24px;
}

.wpdl2-app-wrapper .gf-product-info .gf-diamond-tryon .gf-diamond-detail-price span, .react-responsive-modal-root .gf-product-info .gf-diamond-tryon .gf-diamond-detail-price span {
	font-size: 22px;
	line-height: 24px;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-mobile-specification, .react-responsive-modal-root .gf-diamond-mobile-specification {
		display: block;
		font-family: Lato, sans-serif;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 0;
	}
	
	.wpdl2-app-wrapper .gf-diamond-mobile-specification a, .react-responsive-modal-root .gf-diamond-mobile-specification a {
		color: #000;
	}
	
	.wpdl2-app-wrapper .gf-diamond-mobile-specification a span i, .react-responsive-modal-root .gf-diamond-mobile-specification a span i {
		font-size: 20px;
	}
}

.wpdl2-app-wrapper .gf_n_filter_div, .react-responsive-modal-root .gf_n_filter_div {
	align-items: center;
	display: flex;
	height: 100%;
	width: 100%;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li {
	justify-content: center;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li .gf_n_filter_div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li .gf_n_filter_div {
		width: 170px;
	}
}

@media (max-width:425px) {
	.wpdl2-app-wrapper .gf-product-datatable td.ellipsis-data, .react-responsive-modal-root .gf-product-datatable td.ellipsis-data, .wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td.ellipsis-data, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td.ellipsis-data {
		width: 30px;
	}
	
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table, .react-responsive-modal-root .gf-product-list-viewdata .gf-table {
		margin-left: -8px;
		width: calc(100% + 22px);
	}
}

@media (max-width:375px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table, .react-responsive-modal-root .gf-product-list-viewdata .gf-table {
		margin-left: -15px;
		width: calc(100% + 30px);
	}
}

@media only screen and (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li .gf_n_filter_div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li .gf_n_filter_div {
		width: auto;
	}
	
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left {
		display: flex !important;
		flex-wrap: nowrap;
		justify-content: center;
	}
}

@media only screen and (max-width:750px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: left;
	}
	
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li {
		width: 50%;
	}
}

.wpdl2-app-wrapper .breadCumbs, .react-responsive-modal-root .breadCumbs {
	display: flex;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb, .react-responsive-modal-root .breadCumbs .breadCumb {
	flex: 0 1 30.5%;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb, .react-responsive-modal-root .breadCumbs .breadCumb {
		flex: 0 1 32.5%;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb:first-child a, .react-responsive-modal-root .breadCumbs .breadCumb:first-child a {
	border-radius: 5px 0 0 5px;
	padding: 17px 35px;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb:first-child a, .react-responsive-modal-root .breadCumbs .breadCumb:first-child a {
		justify-content: space-between;
		padding: 15px 0 15px 35px;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb:first-child a, .react-responsive-modal-root .breadCumbs .breadCumb:first-child a {
		padding: 25px 0 25px 64px;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb .tab-icon, .react-responsive-modal-root .breadCumbs .breadCumb .tab-icon {
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAABfCAYAAACwaXS7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkRDMTAwNzk1NkUzQjExRTlCOUUwRkU5MEE4MDQ5NEQzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkRDMTAwNzk2NkUzQjExRTlCOUUwRkU5MEE4MDQ5NEQzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6REMxMDA3OTM2RTNCMTFFOUI5RTBGRTkwQTgwNDk0RDMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6REMxMDA3OTQ2RTNCMTFFOUI5RTBGRTkwQTgwNDk0RDMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5KGtYpAAALXElEQVR42uxce3BUVxk/u0l289hswiZZUqQkJopKq60EzAOclAZL+khKYehY6XS0amtHsHZgxqGOtozjc9DOaKdS7YzjCPoH9AGBlkILBEKTAJFHtSIpiWmaggnZhOxu3g+/b/fczblnz937pmO738w32Xv2nj2/3z3nfN93vnNuHJs2bSKs5OXltfX39y8mFkl6evrU6OhoKlu2bds2tWptoJZhAJkClWFwshdz587dYiVpFCCdkpube1lHlS0Wk0ZJAb0sJF5YWFja29v7M2KDDA4OFhYUFPxZw62loLZgQIqgMQyx7g8EAhdnZmZkd+bn57c4nc7TRlrp6+vbwP4eXD8ED3fHlStXDiWodlFQ1gJ62iDZDdz1Q6A7QA9FiHu93sDQ0JBs2GdnZwevXr1aafTx+v1+AiNoA/cwDgJ5N3wcF1QJ8FMPJAhaabKnefIHQd1OAFIHpOfIJkRKCgkGg14zrQHpjfBAB2QWZmqKjIyMdAturwOdIyj3miS9EXRAUN7thKHXkJWVNcaW4hDFOW92Uk1OTmbJDIrTSTIyMqoEtzaAjinMebOSJSirigytcDic7nK5YhNyenqagHVvN9NaTk5O//DwsIsb/vXwoC8peT585lxZu0nS/aAurqwe9FJsTvl8vnwc4pJMTEw4MjMzx4y0Bu6r+9q1az6O9LM4ulSq5nPXDoWRoEVwSvm4smfp6Jo1JgAqAC6nnr0LewxJ6GkNPEETuK/5XNkJnPMaqgdoj7DioiT0SBPofK7sBJ3z8QEM9gj0zFbOB88H4Ic1WvLnwRMs43r/fShbrgM09shWrgxJHNZY/3nQZVzZ+6DLFSM3ao2fBqL72DIAvgJIPZ2oNYj6HoW6j7BlMFXG4cHdaGCYYlv7uLIVtDyRPAr6CFeGrjMOg1NUG4jWYU9xPvgpsPTlwpAIyoH0dtn4BGMJU8VtwjDV0Z5i5SnQcoX7sXw7V4bGUojBmSDMvNHj8YRZFwfkW4CkjyPtw3I2SkO3hcbSAleEPRUWRHK80fLRcjVjqU4cJRQKeVg3hwHIwMBAr8waBQJXsVzgtgIWxdgegZvr5QepoF49NZb6iYvc3NjYWAqEs0N0Do+Nj487ONJbNbgtvZIvWG0NSZCo22Nlq+S2DBOnbq7C4Zj9bQhns91u9xQfoIBRbETjaMPKCnuugivLputsPkBp1GAE1YlT8q1AXuZioOedArd1G7FPWgVuzilwW5owOLW2ij0J5PcIJ6HHM2LQbRlxc3sUvhsRuS3TxKlLWw1zvp13W2AEM8n1k9WCGB6Nny4MTt2TLRBYKLk5NHoWuS29spBzc7oxpBppFd0cWPYQLGdrLHRbRtxcCLQmkdtSEgefbvq4iJN8TCVJPEk8STxJPEk8SfwjIHGR2+bNm0X3lZHo/tUkaJrCb0mRkEP0pYat4Zj87cWXhRgeWHvf6Y6OzslQOJwWDIXI6NgY+cQNhbhJQTLS03FLegYiSsLnCCSBpbTukPU0cz8mAPitnWnuATjM9Mb9q+sVMZSUfDL1/Nv/EGLwer2aMWgl3gVaxCQA/gNaTK8nuUZOmh2GLSdPCTEsq6yIYPjC52/OPtHcIsPg9/tjGJqaW4QYam6r1j3HsQF2h7OIJgZGSTQNJMkgUc6CmpXi9vZ3YxjoQ4hgKFqwIIbh72fPasKgZ3XmJvKk35e47zENNMcKhu99ED284M/zEbfLRS739pE1dXeTw43H3H5/wUxOTo7UgzIM3d3dEQyF/gJSXFQUWTb39HxAmtvOmLLqR1W+vx7LvKNgwBS/nJ6enll8662WubP1lFS1htEzQ+Lz4FZIBMNXbl9RzVpmXoqKijRjUBvquKVbohNkphWWncWwbnW9Lgw3LVqUGQ6HE2JI1OOtBkhbPfRbl1dVligMa8z04uEDIkqmZGVlJcSgRLxMYLwkq+0QqNLJhXETpMt448VY7TgMEPSUjo6Oyu6l9mBcD3HRKSNHAqvdQb/nc18Y5fl0h5NgjdfW3S3DQLepVDG0nTkjw1BaWiLEkKpgSESktUgeie5rFTBl/Qbm+3qXa3aDhA5lzRhOtbX1Li0ri2G4985VcRhExHdw14/rBO03O79ra1bIMLzcsD+GoXjBfE0YJiYmZtLSosuK7GwPOfDGm6R2ZY0ud/ZbA9j5h/Wqnsoejyf2GQhoxvDqwTdIV3cP6e65TBpeez0hBjXi7xjsNB5orZ7K7AblWy2t7+TNySWSBoMh0ni8SRMG1tqX3XJLrR4/fpNFvtiMT1fFgIZv3b11wvLU1ChFrzfboYf4hy7VX058bgh9eUIPQYnjKY3/K+K7XtkrLMfEwz21d5Bde/ZBb9+j+jsY8OiZ4+stwm/Gyqti+PfFdoIWXKSSBIPBGT09/hfQnRYQP6LrKYFRkgxcdVVlHAa320WON7fG1dn/+iESHhmJXFctWYyLltj3befOH1lVc7vmHjdqlCb45IeeyqHQ7OIK1t8RDJ1dXRCXT+C1JRhExB9MkE/TFGObtR0H3jxsGgNdokYEVmpkeUW56hzfKej1Kzoa5eN8I0evd9LAhe11TRi+umY1qgzD3gMHS0E1Gbcl3PVcmlpSC1p4IzZJFw+6ZBL87+69+2QYypcu0YyBDYA6OjuFGJSI4+tP5wT3zlCVYmlc9QzRMtHp5DQTI77t6LHjMgzz5s1LiKH+rtqNLGnq49P0JiIwedWjko7CVU+2DdFaDENz68k4DJhsBB8ewfDg/Wv7Md3MHkJEGR4eJkYzMCi4FHrSgEW3Ku0UwfBSw/4n9RxZuXSpQxWDltXZz+mPXNAQpOB9LhsCuAiGY00nLmCqScn39/b2asaQPPyTJJ4kniSeJP5REq0nInDDCt8KWpngtzAYxvxPXAJfz2mIBGIKg9Ee/6tKgyh3WLR2vy4YtBJ/AaNAlXvw+z/aSNxSDFqJvwZ6F4m+zy0SXCTU0qFml1iKQStxPILwA9DvkPj3sQN0iD1M4t8LtVIsxaCV+K9A7wT9Bf3x/9JyTA7gq4/4auPX6Tz020TcUgxaif+ELubxZZdnSPR/LbxFG/wu6DfofT8m8S/DWSWWYtBKHF9rWgXaR6InoJ7DLA9tUHqJFXviNzYOdUsx6EkKvguKmXtMFWMe7Z9MEuJPBtbtRsQyDFp7HPNd+P9ZdpPZ15zYzMtKOhR9NpK2FIMW4o+R6HteW4jyC21Y/kMSPSz0mA2kLceQiHgKDQae457sFP3xU3TosSmRXHr/C0R+4tGo2IYhEfFfg36LuX6PGhEccp8i0cNBn6au42EKQJJv0vpmxTYMSsQxAvoec43x72fp0+/n7h2ghgX3sf/AlD9O/a5RsRWDU6EMXYKUpcT8NW7pjKgAHadBxO+ZsmcMLn1tx+BUeNKfo5/RoHxbJ+jvg56nnz9jsNdtxyAivob5/FMSPZqtR/Cps+95rzVA3HYMIuJLmMovGpyfmDCQ9norDNS3HYOI+A30L24ghAw2ioClfa9iA/VtxyAinsesb83IIP2bYaCu7RhExKW1boHJRqWlYb+BurZjEBG/wAyPDIMN4tbsQvr5ooH6tmMQEW+kfzGreZ/BRtF9SO9CHTFQ33YMSkdBpJ1EDPr17n5ifPwj+pndwNcjtmMQEf8X6Ev08yLQ3+ls9JeMO3qF/p5esR2DUjj5BGNgcFGwnagf60ihYeYmxqI+YcIw2YpBiTj+x7yvkdkdCYx/3wZ9gET/tyIrLhppnWMaGac5sS4TxG3FkCj1dIDGzLtpVgNjXsxgDtOUzzW6Rr6ZyP8TJqZ61xHt/3GPfBgY1FZOR+hc2c+UYdpnKU31lDMNohHZRe+3grStGLQkGztpgu+LdGlYTRf/XhpZtVP3g2dOz9qUb7Mcw/8EGABegu17hRDxwwAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
	display: inline-block;
	height: 37px;
	width: 30px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb .finalring-icon, .react-responsive-modal-root .breadCumbs .breadCumb .finalring-icon {
	background-position: 0 -60px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb .diamond-icon, .react-responsive-modal-root .breadCumbs .breadCumb .diamond-icon {
	background-position: 0 10px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb .ring-icon, .react-responsive-modal-root .breadCumbs .breadCumb .ring-icon {
	background-position: 0 -24px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb p.subTitle, .react-responsive-modal-root .breadCumbs .breadCumb p.subTitle {
	font-size: 14px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb h2.btitle, .react-responsive-modal-root .breadCumbs .breadCumb h2.btitle, .wpdl2-app-wrapper .breadCumbs .breadCumb p.subTitle, .react-responsive-modal-root .breadCumbs .breadCumb p.subTitle {
	color: #797979;
	font-family: Lato, sans-serif;
	font-weight: 400;
	line-height: 20px;
}

.wpdl2-app-wrapper .breadCumbs .breadCumb h2.btitle, .react-responsive-modal-root .breadCumbs .breadCumb h2.btitle {
	display: block;
	font-size: 15px;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb h2.btitle, .react-responsive-modal-root .breadCumbs .breadCumb h2.btitle {
		font-size: 20px;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb h2.btitle, .react-responsive-modal-root .breadCumbs .breadCumb h2.btitle {
		font-size: 24px;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb a, .react-responsive-modal-root .breadCumbs .breadCumb a {
	align-items: center;
	background-color: #fafafa;
	border: 1px solid #797979;
	display: flex;
	justify-content: center;
	padding: 17px 0 17px 35px;
	position: relative;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb a, .react-responsive-modal-root .breadCumbs .breadCumb a {
		justify-content: space-between;
		padding: 15px 0 15px 35px;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb a, .react-responsive-modal-root .breadCumbs .breadCumb a {
		padding: 25px 0 25px 64px;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb a:before, .react-responsive-modal-root .breadCumbs .breadCumb a:before {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #797979;
	border-style: solid;
	border-width: 36px 0 36px 31px;
	content: "";
	height: 0;
	position: absolute;
	right: -32px;
	top: -1px;
	width: 0;
	z-index: 1;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb a:before, .react-responsive-modal-root .breadCumbs .breadCumb a:before {
		border-width: 46px 0 46px 31px;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb a:after, .react-responsive-modal-root .breadCumbs .breadCumb a:after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #fafafa;
	border-style: solid;
	border-width: 36px 0 36px 31px;
	content: "";
	height: 0;
	position: absolute;
	right: -30px;
	top: -1px;
	width: 0;
	z-index: 2;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb a:after, .react-responsive-modal-root .breadCumbs .breadCumb a:after {
		border-width: 46px 0 46px 31px;
	}
}

.wpdl2-app-wrapper .breadCumbs .breadCumb a .breadcumb-title, .react-responsive-modal-root .breadCumbs .breadCumb a .breadcumb-title {
	display: none;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .breadCumbs .breadCumb a .breadcumb-title, .react-responsive-modal-root .breadCumbs .breadCumb a .breadcumb-title {
		display: block;
	}
}

.wpdl2-app-wrapper .breadCumbs .gf-active a, .react-responsive-modal-root .breadCumbs .gf-active a {
	background-color: #000;
}

.wpdl2-app-wrapper .breadCumbs .gf-active a:after, .react-responsive-modal-root .breadCumbs .gf-active a:after, .wpdl2-app-wrapper .breadCumbs .gf-active a:before, .react-responsive-modal-root .breadCumbs .gf-active a:before {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000;
}

.wpdl2-app-wrapper .breadCumbs .gf-active a .finalring-icon, .react-responsive-modal-root .breadCumbs .gf-active a .finalring-icon {
	background-position: -34px -60px;
}

.wpdl2-app-wrapper .breadCumbs .gf-active a .diamond-icon, .react-responsive-modal-root .breadCumbs .gf-active a .diamond-icon {
	background-position: -32px 10px;
}

.wpdl2-app-wrapper .breadCumbs .gf-active a .ring-icon, .react-responsive-modal-root .breadCumbs .gf-active a .ring-icon {
	background-position: -33px -25px;
}

.wpdl2-app-wrapper .breadCumbs .gf-active a h2.title, .react-responsive-modal-root .breadCumbs .gf-active a h2.title, .wpdl2-app-wrapper .breadCumbs .gf-active a p.subTitle, .react-responsive-modal-root .breadCumbs .gf-active a p.subTitle {
	color: #fff;
}

.wpdl2-app-wrapper .Type, .react-responsive-modal-root .Type {
	margin: 15px 0;
}

.wpdl2-app-wrapper .Type img, .react-responsive-modal-root .Type img {
	max-height: 60px;
	max-width: 60px;
}

.wpdl2-app-wrapper .Type ul, .react-responsive-modal-root .Type ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .Type ul, .react-responsive-modal-root .Type ul {
		flex-wrap: nowrap;
	}
}

.wpdl2-app-wrapper .Type ul li, .react-responsive-modal-root .Type ul li {
	border: 1px solid #797979;
	display: inline-block;
	flex: 33% 0;
	margin: 0;
	padding: 5px 0;
	position: relative;
	text-align: center;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .Type ul li, .react-responsive-modal-root .Type ul li {
		border: 2px solid rgba(0, 0, 0, 0);
	}
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .Type ul li, .react-responsive-modal-root .Type ul li {
		flex: 1 1;
		margin: 0 .5%;
	}
}

.wpdl2-app-wrapper .Type ul li span, .react-responsive-modal-root .Type ul li span {
	display: block;
	font-family: Lato, sans-serif;
	font-size: 15px;
	font-weight: 400;
	margin: 5px 0;
}

.wpdl2-app-wrapper .Type ul .gf-active, .react-responsive-modal-root .Type ul .gf-active, .wpdl2-app-wrapper .Type ul li:hover, .react-responsive-modal-root .Type ul li:hover {
	border-bottom: 2px solid #92cddc;
}

.wpdl2-app-wrapper .filter-container, .react-responsive-modal-root .filter-container {
	display: block;
	justify-content: space-between;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .filter-container, .react-responsive-modal-root .filter-container {
		display: flex;
	}
}

.wpdl2-app-wrapper .filter-container .filter-bg, .react-responsive-modal-root .filter-container .filter-bg {
	background-color: #fafafa;
	margin-bottom: 20px;
	padding: 15px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .filter-container .filter-bg, .react-responsive-modal-root .filter-container .filter-bg {
		width: 49%;
	}
}

.wpdl2-app-wrapper .gf-shapes, .react-responsive-modal-root .gf-shapes {
	display: block;
	margin-bottom: 30px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes, .react-responsive-modal-root .gf-shapes {
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .gf-shapes .f_heading, .react-responsive-modal-root .gf-shapes .f_heading {
	float: none;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes .f_heading, .react-responsive-modal-root .gf-shapes .f_heading {
		float: left;
	}
}

.wpdl2-app-wrapper .gf-shapes ul, .react-responsive-modal-root .gf-shapes ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding: 0;
	text-align: center;
	width: auto;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-shapes ul, .react-responsive-modal-root .gf-shapes ul {
		flex-wrap: nowrap;
		justify-content: center;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul, .react-responsive-modal-root .gf-shapes ul {
		flex-wrap: nowrap;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .gf-shapes ul, .react-responsive-modal-root .gf-shapes ul {
		flex-wrap: nowrap;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .disabled, .react-responsive-modal-root .gf-shapes ul .disabled {
	opacity: .5;
	pointer-events: none;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists, .react-responsive-modal-root .gf-shapes ul .shapes_lists {
	flex: 31% 0;
	margin: 0 3px 10px;
	position: relative;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists, .react-responsive-modal-root .gf-shapes ul .shapes_lists {
		flex: 1 1 18%;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists .shape_box, .react-responsive-modal-root .gf-shapes ul .shapes_lists .shape_box {
	background: #f7f7f7;
	border: 1px solid #797979;
	font-family: Lato, sans-serif;
	margin-bottom: 5px;
	min-height: 45px;
	padding: 5px 0;
	position: relative;
	text-align: center;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists .shape_box:after {
	background-image: url("https://cdn-kepab.nitrocdn.com/vHcNlbhMIpbzRzleGriBnEjdfEJiquVP/assets/images/optimized/rev-04fd883/www.hanebrinkjewelers.com/wp-content/plugins/gemfind-diamond-link/public/static/media/shape-images.cdd2376994bc14bad604.png");
	background-size: 240px;
	content: "";
	float: left;
	height: 35px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s cubic-bezier(0, .4, .51, 1.35);
	width: 32px;
	z-index: 1;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists .shape_box span, .react-responsive-modal-root .gf-shapes ul .shapes_lists .shape_box span {
	display: block;
	font-family: Lato, sans-serif;
	font-size: 16px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists .shape_box img, .react-responsive-modal-root .gf-shapes ul .shapes_lists .shape_box img {
	border: 1px solid #797979;
	padding: 0 15px;
}

.wpdl2-app-wrapper .gf-shapes ul .diamond_shapes_lists, .react-responsive-modal-root .gf-shapes ul .diamond_shapes_lists {
	flex: 31% 0;
	margin: 0 3px 10px;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-shapes ul .diamond_shapes_lists, .react-responsive-modal-root .gf-shapes ul .diamond_shapes_lists {
		flex: 0 0 9%;
		margin: 5px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .gf-inactive, .react-responsive-modal-root .gf-shapes ul .gf-inactive {
	opacity: .5;
	pointer-events: none;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Round .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Round .shape_box:after {
	background-position: -54px -2px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Radiant .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Radiant .shape_box:after {
	background-position: -345px -4px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Princess .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Princess .shape_box:after {
	background-position: -439px -4px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Pear .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Pear .shape_box:after {
	background-position: -7px -108px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Oval .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Oval .shape_box:after {
	background-position: -104px -108px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Marquise .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Marquise .shape_box:after {
	background-position: -56px -109px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Heart .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Heart .shape_box:after {
	background-position: -153px -108px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Emerald .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Emerald .shape_box:after {
	background-position: -7px -4px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Cushion .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Cushion .shape_box:after {
	background-position: 40px -110px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Asscher .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Asscher .shape_box:after {
	background-position: -152px -5px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Round .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Round .shape_box:hover:after {
	background-position: -54px -2px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Round .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Round .shape_box:hover:after {
		background-position: -54px -52px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Radiant .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Radiant .shape_box:hover:after {
	background-position: -345px -4px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Radiant .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Radiant .shape_box:hover:after {
		background-position: -345px -54px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Princess .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Princess .shape_box:hover:after {
	background-position: -439px -4px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Princess .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Princess .shape_box:hover:after {
		background-position: -439px -53px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Pear .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Pear .shape_box:hover:after {
	background-position: -7px -108px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Pear .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Pear .shape_box:hover:after {
		background-position: -7px -159px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Oval .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Oval .shape_box:hover:after {
	background-position: -104px -108px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Oval .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Oval .shape_box:hover:after {
		background-position: -104px -159px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Marquise .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Marquise .shape_box:hover:after {
	background-position: -56px -109px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Marquise .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Marquise .shape_box:hover:after {
		background-position: -56px -160px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Heart .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Heart .shape_box:hover:after {
	background-position: -153px -108px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Heart .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Heart .shape_box:hover:after {
		background-position: -150px -159px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Emerald .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Emerald .shape_box:hover:after {
	background-position: -7px -4px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Emerald .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Emerald .shape_box:hover:after {
		background-position: -7px -55px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Cushion .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Cushion .shape_box:hover:after {
	background-position: 40px -110px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Cushion .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Cushion .shape_box:hover:after {
		background-position: 40px -159px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Asscher .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Asscher .shape_box:hover:after {
	background-position: -152px -5px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Asscher .shape_box:hover:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Asscher .shape_box:hover:after {
		background-position: -152px -55px;
	}
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Round.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Round.gf-active .shape_box:after {
	background-position: -54px -52px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Radiant.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Radiant.gf-active .shape_box:after {
	background-position: -345px -54px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Princess.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Princess.gf-active .shape_box:after {
	background-position: -439px -53px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Pear.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Pear.gf-active .shape_box:after {
	background-position: -7px -159px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Oval.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Oval.gf-active .shape_box:after {
	background-position: -104px -159px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Marquise.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Marquise.gf-active .shape_box:after {
	background-position: -56px -160px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Heart.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Heart.gf-active .shape_box:after {
	background-position: -150px -159px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Emerald.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Emerald.gf-active .shape_box:after {
	background-position: -7px -55px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Cushion.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Cushion.gf-active .shape_box:after {
	background-position: 40px -159px;
}

.wpdl2-app-wrapper .gf-shapes ul .shapes_lists.Asscher.gf-active .shape_box:after, .react-responsive-modal-root .gf-shapes ul .shapes_lists.Asscher.gf-active .shape_box:after {
	background-position: -152px -55px;
}

.wpdl2-app-wrapper .popup-Diamond-Table ul, .react-responsive-modal-root .popup-Diamond-Table ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	list-style: none;
	padding: 0;
}

.wpdl2-app-wrapper .popup-Diamond-Table ul li, .react-responsive-modal-root .popup-Diamond-Table ul li {
	flex: 0 0 20%;
	margin: 10px;
	text-align: center;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .popup-Diamond-Table ul li, .react-responsive-modal-root .popup-Diamond-Table ul li {
		flex: 0 0 20%;
		margin: 10px 0 0;
	}
}

.wpdl2-app-wrapper .popup-Diamond-Table ul li span, .react-responsive-modal-root .popup-Diamond-Table ul li span {
	color: #000;
	display: block;
	font-size: 14px;
	text-align: -webkit-center;
	text-transform: capitalize;
}

.wpdl2-app-wrapper .popup-Diamond-Table ul li span img, .react-responsive-modal-root .popup-Diamond-Table ul li span img {
	margin: 10px 0;
}

.wpdl2-app-wrapper .gf-filter-main-div, .react-responsive-modal-root .gf-filter-main-div {
	background-color: #fafafa;
	padding: 8px 15px;
}

.wpdl2-app-wrapper .gf-mobile-compare-view, .react-responsive-modal-root .gf-mobile-compare-view {
	display: block;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .gf-mobile-compare-view, .react-responsive-modal-root .gf-mobile-compare-view {
		display: none;
	}
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items {
	align-items: center;
	border-bottom: 2px solid #f3f3f3;
	display: flex;
	justify-content: space-evenly;
	padding: 10px 0 0;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items:nth-child(odd), .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items:nth-child(odd) {
	background-color: #f7f7f7;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists {
	flex: 1 0 25%;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists .list-items, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists .list-items {
	margin-bottom: 10px;
	text-align: center;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists .item-value, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists .item-value {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists .item-name, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists .item-name {
	color: #a2a2a2;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists .item-image img, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists .item-image img {
	height: 70px;
	width: 70px;
}

.wpdl2-app-wrapper .gf-mobile-compare-view .gf-compare-mob-items .lists a, .react-responsive-modal-root .gf-mobile-compare-view .gf-compare-mob-items .lists a {
	background-color: #000;
	color: #fff;
	display: inline-block;
	margin-right: 15px;
	padding: 5px 10px;
	text-align: center;
}

.wpdl2-app-wrapper .rangeSlider .slider, .react-responsive-modal-root .rangeSlider .slider {
	display: block;
	margin-bottom: 10px;
}

.wpdl2-app-wrapper .rangeSlider .slider .f_heading, .react-responsive-modal-root .rangeSlider .slider .f_heading {
	float: none;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .slider .f_heading, .react-responsive-modal-root .rangeSlider .slider .f_heading {
		float: left;
	}
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-rail, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-rail {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid hsla(0, 3%, 50%, .651);
	border-radius: 5px;
	height: 11px;
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-track, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-track {
	background-color: #828282;
	height: 10px;
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-thumb, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-thumb {
	background-color: #828282;
	height: 23px;
	width: 23px;
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-valueLabel, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-valueLabel {
	display: none;
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-active, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-active {
	height: 35px;
	top: -1px;
	width: 35px;
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-root, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-root {
	margin: 0 auto;
	padding: 7px 0;
	width: 98%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-root, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-root {
		width: 82%;
	}
}

.wpdl2-app-wrapper .rangeSlider .slider .MuiSlider-mark, .react-responsive-modal-root .rangeSlider .slider .MuiSlider-mark {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 1px;
	height: 11px;
	position: absolute;
	width: 6px;
}

.wpdl2-app-wrapper .rangeSlider input[type=text i], .react-responsive-modal-root .rangeSlider input[type=text i] {
	border: 1px solid #828282;
	border-radius: 100px !important;
	color: #797979;
	font-size: 16px;
	height: 24px;
	line-height: 24px;
	margin-top: 0;
	padding: 0 8px;
	text-align: right;
	width: 150px;
}

@media (max-width:767px) {
	.wpdl2-app-wrapper .rangeSlider input[type=text i], .react-responsive-modal-root .rangeSlider input[type=text i] {
		width: 145px;
	}
}

.wpdl2-app-wrapper .rangeSlider .input-left, .react-responsive-modal-root .rangeSlider .input-left {
	text-align: left !important;
}

.wpdl2-app-wrapper .rangeSlider .input-value-pr, .react-responsive-modal-root .rangeSlider .input-value-pr {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: 0;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .input-value-pr, .react-responsive-modal-root .rangeSlider .input-value-pr {
		width: 84%;
	}
}

.wpdl2-app-wrapper .rangeSlider .input-value-pr .icon, .react-responsive-modal-root .rangeSlider .input-value-pr .icon {
	position: absolute;
	right: 10px !important;
}

.wpdl2-app-wrapper .rangeSlider .input-value, .react-responsive-modal-root .rangeSlider .input-value {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: 0;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .input-value, .react-responsive-modal-root .rangeSlider .input-value {
		width: 88%;
	}
}

.wpdl2-app-wrapper .rangeSlider .input-value .icon-left, .react-responsive-modal-root .rangeSlider .input-value .icon-left {
	font-size: 16px;
	left: 10px;
	position: absolute;
}

.wpdl2-app-wrapper .rangeSlider .input-value .icon-right, .react-responsive-modal-root .rangeSlider .input-value .icon-right {
	font-size: 16px;
	position: absolute;
	right: 5px;
}

.wpdl2-app-wrapper .rangeSlider .input-value-left, .react-responsive-modal-root .rangeSlider .input-value-left {
	float: none;
	position: relative;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .input-value-left, .react-responsive-modal-root .rangeSlider .input-value-left {
		float: left;
	}
}

.wpdl2-app-wrapper .rangeSlider .input-value-right, .react-responsive-modal-root .rangeSlider .input-value-right {
	float: none;
	position: relative;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .rangeSlider .input-value-right, .react-responsive-modal-root .rangeSlider .input-value-right {
		float: right;
	}
}

.wpdl2-app-wrapper .cut-rangeslider .MuiSlider-rail, .react-responsive-modal-root .cut-rangeslider .MuiSlider-rail {
	border-radius: 0 !important;
}

.wpdl2-app-wrapper .slider__diamond, .react-responsive-modal-root .slider__diamond {
	display: block;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .slider__diamond, .react-responsive-modal-root .slider__diamond {
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .slider__diamond .slider-div, .react-responsive-modal-root .slider__diamond .slider-div {
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .slider__diamond .slider-div, .react-responsive-modal-root .slider__diamond .slider-div {
		width: 48%;
	}
}

.wpdl2-app-wrapper .ui-sliders, .react-responsive-modal-root .ui-sliders {
	margin-bottom: 0;
	margin-top: 0;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .ui-sliders, .react-responsive-modal-root .ui-sliders {
		margin-bottom: 20px;
		margin-top: 20px;
	}
}

.wpdl2-app-wrapper .ui-sliders .input-value, .react-responsive-modal-root .ui-sliders .input-value {
	margin-bottom: 20px;
	padding-right: 10px;
	width: 97%;
}

@media (min-width:991px) {
	.wpdl2-app-wrapper .ui-sliders .input-value, .react-responsive-modal-root .ui-sliders .input-value {
		margin-bottom: 0;
		width: 76%;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .ui-sliders .input-value, .react-responsive-modal-root .ui-sliders .input-value {
		margin-bottom: 0;
		width: 80%;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .ui-sliders .input-value, .react-responsive-modal-root .ui-sliders .input-value {
		margin-bottom: 0;
		width: 81%;
	}
}

.wpdl2-app-wrapper .ui-sliders .dia-input-value, .react-responsive-modal-root .ui-sliders .dia-input-value {
	padding-right: 10px;
	width: 97%;
}

@media (min-width:991px) {
	.wpdl2-app-wrapper .ui-sliders .dia-input-value, .react-responsive-modal-root .ui-sliders .dia-input-value {
		margin-right: 15px;
		width: 76%;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .ui-sliders .dia-input-value, .react-responsive-modal-root .ui-sliders .dia-input-value {
		margin-right: 15px;
		width: 80%;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .ui-sliders .dia-input-value, .react-responsive-modal-root .ui-sliders .dia-input-value {
		margin-right: 15px;
		width: 82%;
	}
}

.wpdl2-app-wrapper .range-slider_diamond, .react-responsive-modal-root .range-slider_diamond {
	margin-bottom: 8px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .range-slider_diamond, .react-responsive-modal-root .range-slider_diamond {
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .range-slider_diamond .slider, .react-responsive-modal-root .range-slider_diamond .slider {
	display: block;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .range-slider_diamond .slider, .react-responsive-modal-root .range-slider_diamond .slider {
		display: flex;
	}
}

.wpdl2-app-wrapper .range-slider_diamond .dia_heading, .react-responsive-modal-root .range-slider_diamond .dia_heading {
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .range-slider_diamond .dia_heading, .react-responsive-modal-root .range-slider_diamond .dia_heading {
		width: 10%;
	}
}

.wpdl2-app-wrapper .range-slider_diamond .diamond-ui-slider, .react-responsive-modal-root .range-slider_diamond .diamond-ui-slider {
	height: 45px;
	margin: 0 auto;
	width: 96%;
}

@media (min-width:991px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-ui-slider, .react-responsive-modal-root .range-slider_diamond .diamond-ui-slider {
		width: 88%;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-ui-slider, .react-responsive-modal-root .range-slider_diamond .diamond-ui-slider {
		height: 60px;
		width: 89%;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-ui-slider, .react-responsive-modal-root .range-slider_diamond .diamond-ui-slider {
		height: 60px;
		width: 90%;
	}
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-value-sub, .react-responsive-modal-root .range-slider_diamond .noUi-value-sub {
	box-sizing: border-box;
	color: #000;
	font-size: 12px;
	margin: 0 !important;
	position: absolute !important;
	text-align: center !important;
	transform: none !important;
	white-space: nowrap;
}

@media (max-width:476px) {
	.wpdl2-app-wrapper .range-slider_diamond .noUi-value-sub, .react-responsive-modal-root .range-slider_diamond .noUi-value-sub {
		font-size: 7.5px;
		padding-right: 0;
	}
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-value.noUi-value-horizontal.noUi-value-large, .react-responsive-modal-root .range-slider_diamond .noUi-value.noUi-value-horizontal.noUi-value-large {
	color: #000;
	font-size: 12px;
	margin-left: 0 !important;
	margin-top: 8px;
	position: absolute !important;
	text-align: center !important;
	transform: none !important;
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-horizontal, .react-responsive-modal-root .range-slider_diamond .noUi-horizontal {
	height: 11px;
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-connect, .react-responsive-modal-root .range-slider_diamond .noUi-connect {
	background: #828282;
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-horizontal .noUi-handle, .react-responsive-modal-root .range-slider_diamond .noUi-horizontal .noUi-handle {
	background-color: #828282;
	border: none;
	border-radius: 50% !important;
	box-shadow: none;
	cursor: pointer;
	height: 23px;
	right: -7px;
	top: -6px;
	width: 23px;
	z-index: 1;
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-handle:after, .react-responsive-modal-root .range-slider_diamond .noUi-handle:after, .wpdl2-app-wrapper .range-slider_diamond .noUi-handle:before, .react-responsive-modal-root .range-slider_diamond .noUi-handle:before {
	content: none;
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-marker.noUi-marker-horizontal.noUi-marker-large:not(:first-child), .react-responsive-modal-root .range-slider_diamond .noUi-marker.noUi-marker-horizontal.noUi-marker-large:not(:first-child) {
	background-color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-marker, .react-responsive-modal-root .range-slider_diamond .noUi-marker, .wpdl2-app-wrapper .range-slider_diamond .noUi-marker-large, .react-responsive-modal-root .range-slider_diamond .noUi-marker-large {
	background: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .range-slider_diamond .noUi-marker-sub, .react-responsive-modal-root .range-slider_diamond .noUi-marker-sub {
	z-index: 0;
}

.wpdl2-app-wrapper .range-slider_diamond .diamond-small-slider, .react-responsive-modal-root .range-slider_diamond .diamond-small-slider {
	height: auto;
	margin-top: 0;
	width: 96%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-small-slider, .react-responsive-modal-root .range-slider_diamond .diamond-small-slider {
		margin-top: 5px;
		width: 74%;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-small-slider, .react-responsive-modal-root .range-slider_diamond .diamond-small-slider {
		margin-top: 5px;
		width: 77%;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .range-slider_diamond .diamond-small-slider, .react-responsive-modal-root .range-slider_diamond .diamond-small-slider {
		margin-top: 5px;
		width: 79%;
	}
}

.wpdl2-app-wrapper .advance-slider, .react-responsive-modal-root .advance-slider {
	margin-top: 20px;
}

.wpdl2-app-wrapper .advance-slider .advance-heading, .react-responsive-modal-root .advance-slider .advance-heading {
	color: #444;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 0;
	text-align: left;
	width: 100%;
}

.wpdl2-app-wrapper .advance-slider .advance-heading .heading, .react-responsive-modal-root .advance-slider .advance-heading .heading {
	display: flex;
}

.wpdl2-app-wrapper .advance-slider .advance-heading span, .react-responsive-modal-root .advance-slider .advance-heading span {
	margin-right: 10px;
}

.wpdl2-app-wrapper .advance-slider .advance-heading span i, .react-responsive-modal-root .advance-slider .advance-heading span i {
	align-items: center;
	background-color: #797979;
	color: #fff;
	display: flex;
	height: 25px;
	justify-content: center;
	width: 25px;
}

.wpdl2-app-wrapper .advance-slider .advance-heading-div, .react-responsive-modal-root .advance-slider .advance-heading-div {
	color: #444;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 30px;
	padding: 10px 0;
	text-align: left;
	width: 100%;
}

.wpdl2-app-wrapper .advance-slider .advance-heading-div .heading, .react-responsive-modal-root .advance-slider .advance-heading-div .heading {
	display: flex;
}

.wpdl2-app-wrapper .advance-slider .advance-heading-div span, .react-responsive-modal-root .advance-slider .advance-heading-div span {
	margin-right: 10px;
}

.wpdl2-app-wrapper .advance-slider .advance-heading-div span i, .react-responsive-modal-root .advance-slider .advance-heading-div span i {
	align-items: center;
	background-color: #797979;
	color: #fff;
	display: flex;
	height: 25px;
	justify-content: center;
	width: 25px;
}

.wpdl2-app-wrapper .advance-slider .advance-search-sliders .slider__diamond, .react-responsive-modal-root .advance-slider .advance-search-sliders .slider__diamond {
	margin-bottom: 30px;
}

.wpdl2-app-wrapper .advance-slider .advance-search-sliders select, .react-responsive-modal-root .advance-slider .advance-search-sliders select {
	height: 35px;
	padding: 0 10px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .advance-slider .advance-search-sliders select, .react-responsive-modal-root .advance-slider .advance-search-sliders select {
		width: 50%;
	}
}

.wpdl2-app-wrapper .advance-search-sliders, .react-responsive-modal-root .advance-search-sliders {
	display: none;
}

.wpdl2-app-wrapper .advance-heading.gf-active, .react-responsive-modal-root .advance-heading.gf-active, .wpdl2-app-wrapper .advance-search-sliders.gf-active, .react-responsive-modal-root .advance-search-sliders.gf-active {
	display: block;
}

.wpdl2-app-wrapper .advance-heading, .react-responsive-modal-root .advance-heading {
	display: none;
}

.wpdl2-app-wrapper .noUi-target .noUi-pips-horizontal, .react-responsive-modal-root .noUi-target .noUi-pips-horizontal {
	display: block !important;
	height: 30px;
	padding: 0 !important;
}

.wpdl2-app-wrapper .noUi-value-sub, .react-responsive-modal-root .noUi-value-sub {
	box-sizing: border-box;
	color: #000;
	cursor: pointer;
	font-size: 12px;
	margin: 0 !important;
	pointer-events: auto;
	position: absolute !important;
	text-align: center !important;
	transform: none !important;
	white-space: nowrap;
}

.wpdl2-app-wrapper .slider__diamond .range-slider_diamond, .react-responsive-modal-root .slider__diamond .range-slider_diamond {
	margin-bottom: 20px;
}

.wpdl2-app-wrapper .metal, .react-responsive-modal-root .metal {
	display: block;
	margin: 20px 0 0;
}

.wpdl2-app-wrapper .metal .f_heading, .react-responsive-modal-root .metal .f_heading {
	float: none;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .metal .f_heading, .react-responsive-modal-root .metal .f_heading {
		float: left;
	}
}

.wpdl2-app-wrapper .metal .metal_lists, .react-responsive-modal-root .metal .metal_lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 0;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box, .react-responsive-modal-root .metal .metal_lists .metal_box {
	border-bottom: 2px solid rgba(0, 0, 0, 0);
	flex: 0 0 32%;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 20px;
	padding-bottom: 0;
	position: relative;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box:hover, .react-responsive-modal-root .metal .metal_lists .metal_box:hover {
	border-bottom: 2px solid #92cddc;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .metal .metal_lists .metal_box, .react-responsive-modal-root .metal .metal_lists .metal_box {
		flex: 0 0 65px;
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box span, .react-responsive-modal-root .metal .metal_lists .metal_box span {
	display: block;
	font-family: Lato, sans-serif;
	font-size: 16px;
	margin: 7px 0;
	text-align: center;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box .metalcolor_box, .react-responsive-modal-root .metal .metal_lists .metal_box .metalcolor_box {
	border: 2px solid #fff;
	font-size: 16px;
	margin: 0;
	padding: 4px;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box .Platinum, .react-responsive-modal-root .metal .metal_lists .metal_box .Platinum, .wpdl2-app-wrapper .metal .metal_lists .metal_box .White, .react-responsive-modal-root .metal .metal_lists .metal_box .White {
	border-color: #797979;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box .Rose, .react-responsive-modal-root .metal .metal_lists .metal_box .Rose {
	border-color: #ff8080;
}

.wpdl2-app-wrapper .metal .metal_lists .metal_box .Yellow, .react-responsive-modal-root .metal .metal_lists .metal_box .Yellow {
	border-color: #c9a63a;
}

.wpdl2-app-wrapper .metal .metal_lists .gf-active, .react-responsive-modal-root .metal .metal_lists .gf-active {
	border-bottom: 2px solid #92cddc;
}

.wpdl2-app-wrapper .gf-diamond-filter, .react-responsive-modal-root .gf-diamond-filter {
	background-color: #000;
	display: block;
	margin: 20px 0;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-filter, .react-responsive-modal-root .gf-diamond-filter {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left {
	display: block;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left {
		display: flex;
	}
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li {
	align-items: center;
	background-color: rgba(0, 0, 0, 0);
	display: flex;
	margin: 0;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li > .gf_n_filter_div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li > .gf_n_filter_div, .wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li > div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li > div {
	align-items: center;
	display: flex;
	height: 100%;
	width: 100%;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active {
	background-color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active > .gf_n_filter_div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active > .gf_n_filter_div, .wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active > div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active > div {
	background-color: #92cddc;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active a, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active a {
	background-color: rgba(0, 0, 0, 0);
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active span, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active span {
	background-color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active span i, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li.gf-active span i {
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover {
	background-color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover > .gf_n_filter_div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover > .gf_n_filter_div, .wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover > div, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover > div {
	background-color: #92cddc;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover a, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover a {
	background-color: rgba(0, 0, 0, 0) !important;
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover span, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover span {
	background-color: rgba(0, 0, 0, 0) !important;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover span i, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li:hover span i {
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li span, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li span {
	align-items: center;
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	display: flex;
	height: 100%;
	padding-right: 15px;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li span i, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li span i {
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a.gf-active, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a.gf-active {
	background-color: rgba(0, 0, 0, 0);
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a {
	background-color: rgba(0, 0, 0, 0);
	color: #fff;
	display: block;
	font-family: Lato, sans-serif;
	font-size: 18px;
	line-height: normal;
	margin-right: 0;
	padding: 15px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a {
		margin-right: 0;
	}
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a:hover, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a:hover {
	background-color: rgba(0, 0, 0, 0) !important;
	color: #000;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a span, .react-responsive-modal-root .gf-diamond-filter .gf-navigation_filter_left .n_filter_left li a span {
	margin-left: 8px;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter {
	border-top: 1px solid #ddd;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter {
		border-top: none;
	}
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right {
	display: flex;
	justify-content: center;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right {
		justify-content: flex-end;
	}
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li {
	margin-bottom: 0;
	position: relative;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a {
	align-items: center;
	color: #fff;
	display: block;
	display: flex;
	font-family: Lato, sans-serif;
	font-size: 18px;
	line-height: normal;
	margin-right: 0;
	padding: 15px;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a svg, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a svg {
	margin-right: 5px;
}

.wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a:hover, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a:hover, .wpdl2-app-wrapper .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a:hover svg, .react-responsive-modal-root .gf-diamond-filter .gf-save-reset-filter .gf-navigation_right li a:hover svg {
	color: #92cddc;
}

.wpdl2-app-wrapper .gf-save-reset-filter, .react-responsive-modal-root .gf-save-reset-filter {
	justify-content: space-between;
}

.wpdl2-app-wrapper .search-details, .react-responsive-modal-root .search-details {
	display: block;
	position: relative;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .search-details, .react-responsive-modal-root .search-details {
		display: flex;
	}
}

.wpdl2-app-wrapper .search-details select, .react-responsive-modal-root .search-details select {
	font-size: 14px;
	height: 33px;
	outline: none;
	padding: 5px 28px 5px 5px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .search-details select, .react-responsive-modal-root .search-details select {
		width: auto;
	}
}

.wpdl2-app-wrapper .search-details .gf-change-view-result, .react-responsive-modal-root .search-details .gf-change-view-result {
	margin-bottom: 10px;
	margin-right: 0;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .search-details .gf-change-view-result, .react-responsive-modal-root .search-details .gf-change-view-result {
		margin-bottom: 0;
		margin-right: 10px;
	}
}

.wpdl2-app-wrapper .searching-result, .react-responsive-modal-root .searching-result {
	display: block;
	margin: 20px 0 12px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .searching-result, .react-responsive-modal-root .searching-result {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .searching-result .gf-result-number, .react-responsive-modal-root .searching-result .gf-result-number {
	align-items: center;
	display: flex;
}

.wpdl2-app-wrapper .searching-result .gf-result-number span.pattern-line, .react-responsive-modal-root .searching-result .gf-result-number span.pattern-line {
	font-size: 20px;
	font-weight: 700;
	margin: 0 8px;
}

.wpdl2-app-wrapper .searching-result .gf-result-number p, .react-responsive-modal-root .searching-result .gf-result-number p {
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 20px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .searching-result .gf-result-number p, .react-responsive-modal-root .searching-result .gf-result-number p {
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .searching-result .gf-result-number p strong, .react-responsive-modal-root .searching-result .gf-result-number p strong {
	font-size: 18px;
	margin-left: 2px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-search-bar, .react-responsive-modal-root .gf-search-bar {
		margin-top: 0;
	}
}

.wpdl2-app-wrapper .gf-search-bar button, .react-responsive-modal-root .gf-search-bar button {
	margin-bottom: 0;
}

.wpdl2-app-wrapper .gf-search-bar .close_button, .react-responsive-modal-root .gf-search-bar .close_button {
	background-color: #e8f0fe;
	border: none;
	padding: 0 10px;
}

.wpdl2-app-wrapper .change-view ul, .react-responsive-modal-root .change-view ul {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-right: 10px;
	position: absolute;
	right: 0;
	top: -42px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .change-view ul, .react-responsive-modal-root .change-view ul {
		position: inherit;
	}
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .change-view ul, .react-responsive-modal-root .change-view ul {
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .change-view ul .gf-active a.gf-grid-view-four, .react-responsive-modal-root .change-view ul .gf-active a.gf-grid-view-four, .wpdl2-app-wrapper .change-view ul .gf-active a.grid-view-three, .react-responsive-modal-root .change-view ul .gf-active a.grid-view-three {
	background-color: #000;
}

.wpdl2-app-wrapper .change-view ul li, .react-responsive-modal-root .change-view ul li {
	display: flex;
	margin-left: 6px;
	position: relative;
}

.wpdl2-app-wrapper .change-view ul li a.grid-view-three, .react-responsive-modal-root .change-view ul li a.grid-view-three {
	background-position: 7px 11px;
}

.wpdl2-app-wrapper .change-view ul li a.gf-grid-view-four, .react-responsive-modal-root .change-view ul li a.gf-grid-view-four {
	background-position: 7px -14px;
}

.wpdl2-app-wrapper .change-view ul li a, .react-responsive-modal-root .change-view ul li a {
	background-color: #fafafa;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAAlCAYAAADiMKHrAAAAAXNSR0IArs4c6QAAAThJREFUWEftWFEOgyAMpV7Eg3kWTfRau42fXoIFsyVICIPHI3aGfW3F1/X10aZWlmWx5vrZt20bnQk9C/xl/bTW+nHsIjLCNjTwFC6LRfAQTCBGvpMyJutqgkq9PNwhIpO1FrPN8+wDzTAMx7quk/sD9AwhxcQI01mNL2pN1QTCxFJJ9UbxL41Ci1LMqyxaSFFrCm3bKRySdSopJIAWmKeSwqaH2OTRIut3+1QzUTAT0Ukxs9nSV1eqZXaZvrtSzGy29PVMpYKB9txB1NhaKpDrO5zSbyMVzH4u/nP3574Un9WoEsPmZjN8rjjwFGH/FeK7SaqxqSCFBsHGUZVSdP0u+0djzLnQ/NRU2ZkWUkzl1XQ/KqmaphDDosFRawoNgo2jktJSU53Ur2lDkVJlbTvV7rU0CmaNvgEV9Ag7sTNzJwAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
	font-size: 0;
	height: 32px;
	width: 33px;
}

.wpdl2-app-wrapper .change-view ul li a.nitro-lazy, .react-responsive-modal-root .change-view ul li a.nitro-lazy {
	background-image: none !important;
}

.wpdl2-app-wrapper .change-view ul li a:hover, .react-responsive-modal-root .change-view ul li a:hover {
	background-color: #92cddc;
}

.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three, .react-responsive-modal-root .gf-search-product-listing .grid-col-three {
	display: block;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three, .react-responsive-modal-root .gf-search-product-listing .grid-col-three {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing {
	flex: 0 0 100%;
}

.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing img {
	height: 150px;
	object-fit: contain;
	width: 150px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing img {
		height: 200px;
		width: 200px;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing img {
		height: 300px;
		width: 300px;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing img {
		height: 350px;
		width: 350px;
	}
}

.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details {
	min-height: auto;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details {
		min-height: 79px;
	}
}

@media (min-width:1200px) {
	.wpdl2-app-wrapper .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details, .react-responsive-modal-root .gf-search-product-listing .grid-col-three li.gf-product-listing .gf-product-details {
		min-height: auto;
	}
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four {
	display: block;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing img {
		height: 260px;
		width: 260px;
	}
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-result-pagination, .react-responsive-modal-root .gf-result-pagination {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-result-pagination .gf-btn-compare, .react-responsive-modal-root .gf-result-pagination .gf-btn-compare {
	margin-top: 30px;
	text-align: center;
}

@media (min-width:767px) {
	.wpdl2-app-wrapper .gf-result-pagination .gf-btn-compare, .react-responsive-modal-root .gf-result-pagination .gf-btn-compare {
		margin-top: 0;
		text-align: left;
	}
}

.wpdl2-app-wrapper .gf-result-pagination .gf-result-bottom, .react-responsive-modal-root .gf-result-pagination .gf-result-bottom {
	display: block;
	margin-top: 20px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-result-pagination .gf-result-bottom, .react-responsive-modal-root .gf-result-pagination .gf-result-bottom {
		display: inherit;
		margin-top: 0;
	}
}

.wpdl2-app-wrapper .gf-result-pagination .gf-result-bottom h2, .react-responsive-modal-root .gf-result-pagination .gf-result-bottom h2 {
	text-align: center !important;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-result-pagination .gf-result-bottom h2, .react-responsive-modal-root .gf-result-pagination .gf-result-bottom h2 {
		text-align: left;
	}
}

.wpdl2-app-wrapper .product-pagination .pagination, .react-responsive-modal-root .product-pagination .pagination {
	flex-wrap: wrap;
}

.wpdl2-app-wrapper .product-pagination .pagination .gf-active .page-link, .react-responsive-modal-root .product-pagination .pagination .gf-active .page-link {
	background-color: #454748;
	border-color: #454748;
	color: #fff;
}

.wpdl2-app-wrapper .product-pagination .pagination li, .react-responsive-modal-root .product-pagination .pagination li {
	border-color: #e8e8e8;
	display: inline-block;
	margin: 0 2px;
	min-height: 35px;
	min-width: 35px;
	text-align: center;
	vertical-align: middle;
}

.wpdl2-app-wrapper .product-pagination .pagination li:first-child .page-link, .react-responsive-modal-root .product-pagination .pagination li:first-child .page-link {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.wpdl2-app-wrapper .product-pagination .pagination li:last-child .page-link, .react-responsive-modal-root .product-pagination .pagination li:last-child .page-link {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.wpdl2-app-wrapper .product-pagination .pagination li a.page-link, .react-responsive-modal-root .product-pagination .pagination li a.page-link {
	box-sizing: border-box;
	color: #000;
	font-size: 16px;
	line-height: normal;
	padding: 8px;
	transition: .3s;
	width: 100%;
}

.wpdl2-app-wrapper .product-pagination .pagination li a.page-link:hover, .react-responsive-modal-root .product-pagination .pagination li a.page-link:hover {
	background-color: #454748;
	border-color: #454748;
	color: #fff;
}

.wpdl2-app-wrapper .product-pagination .pagination li a.page-link span, .react-responsive-modal-root .product-pagination .pagination li a.page-link span {
	font-size: 16px;
}

.wpdl2-app-wrapper .modal-body, .react-responsive-modal-root .modal-body {
	text-align: center;
}

.wpdl2-app-wrapper .modal-backdrop, .react-responsive-modal-root .modal-backdrop {
	background-color: rgba(0, 0, 0, .149);
}

.wpdl2-app-wrapper .modal-content, .react-responsive-modal-root .modal-content {
	border-radius: 0;
}

.wpdl2-app-wrapper .modal-header, .react-responsive-modal-root .modal-header {
	border-bottom: none;
}

.wpdl2-app-wrapper .gf-product-listing, .react-responsive-modal-root .gf-product-listing {
	position: relative;
}

.wpdl2-app-wrapper .gf-product-listing .image_loaader, .react-responsive-modal-root .gf-product-listing .image_loaader {
	height: 300px;
	width: 300px;
}

.wpdl2-app-wrapper .gf-product-listing .gf-product-images .preloaderr, .react-responsive-modal-root .gf-product-listing .gf-product-images .preloaderr {
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 42%;
}

.wpdl2-app-wrapper .ring-diamond-video, .react-responsive-modal-root .ring-diamond-video {
	position: relative;
}

.wpdl2-app-wrapper .ring-diamond-video .preloaderr, .react-responsive-modal-root .ring-diamond-video .preloaderr {
	height: 100px;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	top: 40%;
	width: 100px;
	z-index: 99;
}

.wpdl2-app-wrapper .gf-product-info, .react-responsive-modal-root .gf-product-info {
	display: block;
	margin-top: 10px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-info, .react-responsive-modal-root .gf-product-info {
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-product-info__box, .react-responsive-modal-root .gf-product-info__box {
	padding: 6px 0 0;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-info__box, .react-responsive-modal-root .gf-product-info__box {
		width: 49%;
	}
}

.wpdl2-app-wrapper .gf-product-info__image, .react-responsive-modal-root .gf-product-info__image {
	border: 1px solid #e8e8e8;
	height: 100%;
	position: relative;
	text-align: center;
	width: auto !important;
}

.wpdl2-app-wrapper .gf-product-info__detail, .react-responsive-modal-root .gf-product-info__detail {
	padding-left: 0;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-info__detail, .react-responsive-modal-root .gf-product-info__detail {
		padding-left: 20px;
		width: 49%;
	}
}

.wpdl2-app-wrapper .gf-product-info__title, .react-responsive-modal-root .gf-product-info__title {
	display: block;
	margin-bottom: 15px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-info__title, .react-responsive-modal-root .gf-product-info__title {
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-product-info__title h2, .react-responsive-modal-root .gf-product-info__title h2 {
	font-size: 26px;
	font-weight: 400;
	margin: 20px 0 10px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-info__title h2, .react-responsive-modal-root .gf-product-info__title h2 {
		margin: 0;
		width: calc(100% - 230px);
	}
}

.wpdl2-app-wrapper .gf-product-info__title h4.gf-ring-spacifacation, .react-responsive-modal-root .gf-product-info__title h4.gf-ring-spacifacation {
	color: #000;
	cursor: pointer;
	font-size: 14px;
	line-height: 21px;
	text-transform: capitalize;
}

@media (max-width:992px) {
	.wpdl2-app-wrapper .gf-product-info__title h4.gf-ring-spacifacation, .react-responsive-modal-root .gf-product-info__title h4.gf-ring-spacifacation {
		display: none;
	}
}

.wpdl2-app-wrapper .gf-product-info__title h4.gf-ring-spacifacation a, .react-responsive-modal-root .gf-product-info__title h4.gf-ring-spacifacation a {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
}

.wpdl2-app-wrapper .gf-product-info__title h4.gf-ring-spacifacation a span i, .react-responsive-modal-root .gf-product-info__title h4.gf-ring-spacifacation a span i {
	font-size: 20px;
}

.wpdl2-app-wrapper .gf-product-info__descreption, .react-responsive-modal-root .gf-product-info__descreption {
	margin-bottom: 15px;
}

.wpdl2-app-wrapper .gf-product-info__descreption p, .react-responsive-modal-root .gf-product-info__descreption p {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown {
	background-color: #f2f2f2;
	margin-bottom: 8px;
	max-width: 360px;
	padding: 10px;
	position: relative;
	width: 100%;
}

.wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown span, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown span {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
}

.wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown .metaldropdown, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown .metaldropdown {
	float: right;
	padding: 0 25px;
	text-align: left;
}

.wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown .ringdropdown, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown .ringdropdown, .wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown .stonesizedropdown, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown .stonesizedropdown {
	float: right;
	padding: 0 25px;
}

.wpdl2-app-wrapper .gf-product-info .diaomnd-info .product-dropdown select, .react-responsive-modal-root .gf-product-info .diaomnd-info .product-dropdown select {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	float: right;
	outline: none;
	padding: 0 25px;
	text-align: right;
}

.wpdl2-app-wrapper .gf-product-info p.image-note, .react-responsive-modal-root .gf-product-info p.image-note {
	clear: both;
	color: #000;
	font-size: 18px;
	margin: 10px 0;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller, .react-responsive-modal-root .gf-product-info .gf-product-controller {
	clear: both;
	float: left;
	margin-top: 22px;
	width: 100%;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li {
	float: left;
	margin-bottom: 22px !important;
	width: 100%;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li {
		width: 50%;
	}
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li a, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li a {
	align-items: center;
	color: #828282;
	display: flex;
	font-size: 16px;
	font-weight: 400;
	transition: .3s;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li a:hover, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li a:hover {
	color: #92cddc;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li a:hover span i, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li a:hover span i {
	background-color: #92cddc;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li a span, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li a span {
	margin-right: 10px;
}

.wpdl2-app-wrapper .gf-product-info .gf-product-controller ul li a span i, .react-responsive-modal-root .gf-product-info .gf-product-controller ul li a span i {
	align-items: center;
	background-color: #000;
	color: #fff;
	display: flex;
	font-size: 16px;
	height: 28px;
	justify-content: center;
	padding: 6px;
	text-align: center;
	width: 28px;
}

.wpdl2-app-wrapper .gf-product-info .gf-diamond-tryon .gf-diamond-btn, .react-responsive-modal-root .gf-product-info .gf-diamond-tryon .gf-diamond-btn {
	margin-top: 10px;
}

.wpdl2-app-wrapper .gf-product-info .gf-diamond-tryon .btn-diamond, .react-responsive-modal-root .gf-product-info .gf-diamond-tryon .btn-diamond {
	margin-right: 15px;
}

.wpdl2-app-wrapper .gf-product-info .gf-diamond-tryon span, .react-responsive-modal-root .gf-product-info .gf-diamond-tryon span {
	display: block;
	font-size: 30px;
	font-weight: 600;
}

.wpdl2-app-wrapper .gf-product-info .image-gallery-thumbnail, .react-responsive-modal-root .gf-product-info .image-gallery-thumbnail {
	border: 1px solid #e8e8e8;
	margin: 3px;
	width: auto;
}

.wpdl2-app-wrapper .gf-product-info .image-gallery-thumbnail-image, .react-responsive-modal-root .gf-product-info .image-gallery-thumbnail-image {
	height: 50px;
	margin: 5px;
	width: 50px;
}

.wpdl2-app-wrapper .gf-product-info .top-icons, .react-responsive-modal-root .gf-product-info .top-icons {
	cursor: pointer;
	float: right;
	padding: 20px;
	position: absolute;
	right: 0;
	z-index: 1;
}

.wpdl2-app-wrapper .gf-product-info .top-icons span, .react-responsive-modal-root .gf-product-info .top-icons span {
	margin-left: 10px;
}

.wpdl2-app-wrapper .gf-product-info .top-icons span i, .react-responsive-modal-root .gf-product-info .top-icons span i {
	color: #949494;
	font-size: 22px;
}

.wpdl2-app-wrapper .diamond-information ul, .react-responsive-modal-root .diamond-information ul {
	margin-left: 0;
	padding-left: 0;
}

.wpdl2-app-wrapper .diamond-information ul li, .react-responsive-modal-root .diamond-information ul li {
	box-sizing: border-box;
	clear: both;
	float: left;
	font-family: Lato, sans-serif;
	list-style: none;
	margin-bottom: 0;
	padding: 11px 20px;
	width: 100%;
}

.wpdl2-app-wrapper .diamond-information ul li:nth-child(2n), .react-responsive-modal-root .diamond-information ul li:nth-child(2n) {
	background-color: #f7f7f7;
}

.wpdl2-app-wrapper .diamond-information ul li .diamonds-info p, .react-responsive-modal-root .diamond-information ul li .diamonds-info p {
	text-align: right;
}

.wpdl2-app-wrapper .diamond-information ul li div, .react-responsive-modal-root .diamond-information ul li div {
	float: left;
	width: 50%;
}

.wpdl2-app-wrapper .diamond-information ul li div p, .react-responsive-modal-root .diamond-information ul li div p {
	color: #000;
	font-size: 14px;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .diamond-information ul li div p, .react-responsive-modal-root .diamond-information ul li div p {
		font-size: 16px;
	}
}

.wpdl2-app-wrapper .diamond-information .spacification-info, .react-responsive-modal-root .diamond-information .spacification-info {
	background: #e8e8e8;
	box-sizing: border-box;
	display: table;
	padding: 16px 20px;
	vertical-align: middle;
	width: 100%;
}

.wpdl2-app-wrapper .diamond-information .spacification-info h2, .react-responsive-modal-root .diamond-information .spacification-info h2 {
	color: #000;
	display: inline-block;
	font-family: Lato, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: normal;
	width: calc(100% - 25px) !important;
}

.wpdl2-app-wrapper .diamond-information .spacification-info h4, .react-responsive-modal-root .diamond-information .spacification-info h4 {
	display: inline-block;
	font-size: 18px;
	width: 25px !important;
}

.wpdl2-app-wrapper .diamond-information .spacification-info h4 a, .react-responsive-modal-root .diamond-information .spacification-info h4 a {
	color: #828282;
}

.wpdl2-app-wrapper .gf-social-icons .gf-social-share, .react-responsive-modal-root .gf-social-icons .gf-social-share {
	align-items: center;
	display: flex;
	float: left;
	margin: 10px 0;
}

.wpdl2-app-wrapper .gf-social-icons .gf-social-share li, .react-responsive-modal-root .gf-social-icons .gf-social-share li {
	margin-right: 10px;
	z-index: 11;
}

.wpdl2-app-wrapper .gf-social-icons .gf-social-share li a, .react-responsive-modal-root .gf-social-icons .gf-social-share li a {
	border-radius: 3px;
	color: #fff;
	font-size: 11px;
	padding: 4px 5px;
}

.wpdl2-app-wrapper .gf-social-icons .gf-social-share li a i, .react-responsive-modal-root .gf-social-icons .gf-social-share li a i {
	margin-right: 5px;
}

.wpdl2-app-wrapper .red, .react-responsive-modal-root .red {
	background-color: #e60023;
}

.wpdl2-app-wrapper .sky-blue, .react-responsive-modal-root .sky-blue {
	background-color: #1d9bf0;
	border-radius: 25px !important;
}

.wpdl2-app-wrapper .blue, .react-responsive-modal-root .blue {
	background-color: #1877f2;
}

.wpdl2-app-wrapper .ring-diamond-image.gf-active, .react-responsive-modal-root .ring-diamond-image.gf-active {
	display: block;
}

.wpdl2-app-wrapper .ring-diamond-image, .react-responsive-modal-root .ring-diamond-image {
	display: none;
}

.wpdl2-app-wrapper .ring-diamond-image .imageloader, .react-responsive-modal-root .ring-diamond-image .imageloader {
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .ring-diamond-image img, .react-responsive-modal-root .ring-diamond-image img {
	width: 60%;
}

.wpdl2-app-wrapper .ring-diamond-image-dia.gf-active, .react-responsive-modal-root .ring-diamond-image-dia.gf-active {
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .ring-diamond-image-dia, .react-responsive-modal-root .ring-diamond-image-dia {
	display: none;
}

.wpdl2-app-wrapper .ring-diamond-image-dia .imageloader, .react-responsive-modal-root .ring-diamond-image-dia .imageloader {
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .ring-diamond-image-dia img, .react-responsive-modal-root .ring-diamond-image-dia img {
	width: 40%;
}

.wpdl2-app-wrapper .ring-diamond-video.gf-active, .react-responsive-modal-root .ring-diamond-video.gf-active {
	display: block;
}

@media (max-width:575.98px) {
	.wpdl2-app-wrapper .ring-diamond-video iframe, .react-responsive-modal-root .ring-diamond-video iframe {
		width: 100%;
	}
}

.wpdl2-app-wrapper .product-skus h2, .react-responsive-modal-root .product-skus h2 {
	font-size: 20px;
	margin: 10px 0;
	text-align: center;
}

.wpdl2-app-wrapper .image-thumb-image, .react-responsive-modal-root .image-thumb-image {
	margin-bottom: 20px;
}

.wpdl2-app-wrapper .image-thumb-image .image-gallary-box, .react-responsive-modal-root .image-thumb-image .image-gallary-box {
	align-items: center;
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .image-thumb-image .image-gallary-box .gf-active, .react-responsive-modal-root .image-thumb-image .image-gallary-box .gf-active {
	border: 2px solid #000;
}

.wpdl2-app-wrapper .image-thumb-image .image-gallary-box .image-gallary-list, .react-responsive-modal-root .image-thumb-image .image-gallary-box .image-gallary-list {
	border: 1px solid #ddd;
	margin: 5px;
}

.wpdl2-app-wrapper .image-thumb-image .image-gallary-box .gf-active, .react-responsive-modal-root .image-thumb-image .image-gallary-box .gf-active {
	border: 1px solid #000;
}

.wpdl2-app-wrapper .image-thumb-image .image-gallary-box img, .react-responsive-modal-root .image-thumb-image .image-gallary-box img {
	cursor: pointer;
	height: 50px;
	width: auto;
}

@media (min-width:1400px) {
	.wpdl2-app-wrapper .image-thumb-image .image-gallary-box img, .react-responsive-modal-root .image-thumb-image .image-gallary-box img {
		height: 50px;
		width: 100%;
	}
}

.wpdl2-app-wrapper .gf-diamond-intro-field, .react-responsive-modal-root .gf-diamond-intro-field {
	float: left;
	max-width: 100%;
	width: 100%;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field, .react-responsive-modal-root .gf-diamond-intro-field {
		margin-bottom: 16px;
	}
}

@media (max-width:425px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field, .react-responsive-modal-root .gf-diamond-intro-field {
		width: calc(100% + 20px);
	}
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul, .react-responsive-modal-root .gf-diamond-intro-field ul {
	box-sizing: border-box;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 45%;
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul:first-child, .react-responsive-modal-root .gf-diamond-intro-field ul:first-child {
	border-right: 1px solid #9f9f9f;
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul:first-child li, .react-responsive-modal-root .gf-diamond-intro-field ul:first-child li {
	padding-right: 30px;
}

@media (max-width:525px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:first-child li, .react-responsive-modal-root .gf-diamond-intro-field ul:first-child li {
		padding-right: 15px;
	}
}

@media (max-width:375px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:first-child li, .react-responsive-modal-root .gf-diamond-intro-field ul:first-child li {
		padding-right: 10px;
	}
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul:nth-child(2), .react-responsive-modal-root .gf-diamond-intro-field ul:nth-child(2) {
	padding-left: 30px;
}

@media (max-width:1230px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:nth-child(2), .react-responsive-modal-root .gf-diamond-intro-field ul:nth-child(2) {
		padding-left: 16px;
	}
}

@media (max-width:525px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:nth-child(2), .react-responsive-modal-root .gf-diamond-intro-field ul:nth-child(2) {
		padding-left: 15px;
	}
}

@media (max-width:495px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:nth-child(2), .react-responsive-modal-root .gf-diamond-intro-field ul:nth-child(2) {
		padding-left: 10px;
	}
}

@media (max-width:425px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul:nth-child(2), .react-responsive-modal-root .gf-diamond-intro-field ul:nth-child(2) {
		padding-left: 5px;
	}
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul li, .react-responsive-modal-root .gf-diamond-intro-field ul li {
	box-sizing: border-box;
	display: table;
	padding: 9px 10px 9px 0;
	vertical-align: middle;
	width: 100%;
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
	display: table-cell;
	font-size: 16px;
}

@media (max-width:1230px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 14px;
	}
}

@media (max-width:1075px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 13px;
	}
}

@media (max-width:565px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 13px;
	}
}

@media (max-width:465px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 11px;
	}
}

@media (max-width:375px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 9px;
	}
}

@media (max-width:325px) {
	.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p, .wpdl2-app-wrapper .gf-diamond-intro-field ul li strong, .react-responsive-modal-root .gf-diamond-intro-field ul li strong {
		font-size: 8px;
	}
}

.wpdl2-app-wrapper .gf-diamond-intro-field ul li p, .react-responsive-modal-root .gf-diamond-intro-field ul li p {
	text-align: right;
}

.wpdl2-app-wrapper .diamond-image, .react-responsive-modal-root .diamond-image {
	text-align: center;
}

.wpdl2-app-wrapper .diamond-report-link, .react-responsive-modal-root .diamond-report-link {
	padding-bottom: 15px;
	text-align: center;
}

.wpdl2-app-wrapper .diamond-report-link p, .react-responsive-modal-root .diamond-report-link p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 700;
}

.wpdl2-app-wrapper .diamond-report-link p a, .react-responsive-modal-root .diamond-report-link p a {
	color: #000;
	text-decoration: underline;
}

.wpdl2-app-wrapper .diamond-grade, .react-responsive-modal-root .diamond-grade {
	align-items: center;
	background: #f7f7f7;
	display: flex;
	margin-top: 10px;
	padding: 17px 20px;
}

.wpdl2-app-wrapper .diamond-grade p, .react-responsive-modal-root .diamond-grade p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 16px;
	padding-left: 15px;
}

.wpdl2-app-wrapper .diamond-grade .grade-image img, .react-responsive-modal-root .diamond-grade .grade-image img {
	height: 100px;
	object-fit: contain;
	width: 100px;
}

.wpdl2-app-wrapper .gf-internam-use, .react-responsive-modal-root .gf-internam-use {
	padding: 10px 0;
}

.wpdl2-app-wrapper .gf-internam-use p, .react-responsive-modal-root .gf-internam-use p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 700;
}

.wpdl2-app-wrapper .gf-internam-use p a, .react-responsive-modal-root .gf-internam-use p a {
	color: #000;
	text-decoration: underline;
}

@media (max-width:576px) {
	.wpdl2-app-wrapper .gf-internam-use, .react-responsive-modal-root .gf-internam-use {
		text-align: center;
	}
}

.wpdl2-app-wrapper .internaluseform, .react-responsive-modal-root .internaluseform {
	margin-top: 20px;
}

.wpdl2-app-wrapper .internaluseform #auth_password, .react-responsive-modal-root .internaluseform #auth_password {
	border: 1px solid #ddd;
	border-radius: 0;
	font-size: 16px;
	margin-bottom: 10px;
	outline: none;
	width: 100%;
}

.wpdl2-app-wrapper .internaluseform .gf-btn, .react-responsive-modal-root .internaluseform .gf-btn {
	display: block;
}

.wpdl2-app-wrapper .dia-ring-price, .react-responsive-modal-root .dia-ring-price {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
}

.wpdl2-app-wrapper .dia-ring-price, .react-responsive-modal-root .dia-ring-price, .wpdl2-app-wrapper .diamond-sku, .react-responsive-modal-root .diamond-sku {
	color: #000;
	font-family: Lato, sans-serif;
}

.wpdl2-app-wrapper .diamond-sku, .react-responsive-modal-root .diamond-sku {
	font-size: 16px;
	font-weight: 400;
	margin: 10px 0;
}

.wpdl2-app-wrapper .diamond-product-controller, .react-responsive-modal-root .diamond-product-controller {
	margin-top: 0 !important;
}

.wpdl2-app-wrapper .gf-form-field p, .react-responsive-modal-root .gf-form-field p {
	color: red;
	font-size: 14px;
	margin-bottom: 3px;
}

.wpdl2-app-wrapper .gf-diamond-details-text, .react-responsive-modal-root .gf-diamond-details-text {
	background: #f2f2f2;
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px;
	width: 100%;
}

.wpdl2-app-wrapper .gf-diamond-details-text span, .react-responsive-modal-root .gf-diamond-details-text span {
	color: #000;
	font-size: 16px;
	font-weight: 700;
}

.wpdl2-app-wrapper .completeRing .gf-product-info__title, .react-responsive-modal-root .completeRing .gf-product-info__title {
	align-items: center;
	background-color: #f2f2f2;
	padding: 10px;
}

.wpdl2-app-wrapper .complete_setting_price, .react-responsive-modal-root .complete_setting_price {
	font-size: 20px;
	margin-left: 10px;
}

.wpdl2-app-wrapper .completering-info, .react-responsive-modal-root .completering-info {
	height: auto;
}

.wpdl2-app-wrapper .Diamond-form .gf-requested-form, .react-responsive-modal-root .Diamond-form .gf-requested-form {
	margin-bottom: 10px;
}

.wpdl2-app-wrapper .Diamond-form .gf-requested-form h2, .react-responsive-modal-root .Diamond-form .gf-requested-form h2 {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 30px;
	line-height: 1.1;
}

.wpdl2-app-wrapper .Diamond-form .gf-requested-form p, .react-responsive-modal-root .Diamond-form .gf-requested-form p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 18px;
	margin-top: 10px;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root {
	margin: 0;
	width: 100%;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root .MuiInputLabel-root {
	color: #000;
	font-size: 14px;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInputLabel-shrink, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInputLabel-shrink, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root .MuiInputLabel-shrink, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root .MuiInputLabel-shrink {
	display: none;
	font-size: 18px;
}

.wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInput-input, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiFormControl-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form form .gf-form-field .MuiInput-root .MuiInput-input, .react-responsive-modal-root .Diamond-form form .gf-form-field .MuiInput-root .MuiInput-input {
	color: #000;
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	outline: none;
}

.wpdl2-app-wrapper .Diamond-form form .prefrence-action, .react-responsive-modal-root .Diamond-form form .prefrence-action {
	margin-top: 20px;
	text-align: left;
}

.wpdl2-app-wrapper .Diamond-form form .prefrence-action .preference-btn, .react-responsive-modal-root .Diamond-form form .prefrence-action .preference-btn {
	font-size: 14px;
	padding: 10px 20px;
}

.wpdl2-app-wrapper .Diamond-form--small .gf-requested-form, .react-responsive-modal-root .Diamond-form--small .gf-requested-form {
	margin-bottom: 10px;
}

.wpdl2-app-wrapper .Diamond-form--small .gf-requested-form h2, .react-responsive-modal-root .Diamond-form--small .gf-requested-form h2 {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 30px;
	line-height: 1.1;
}

.wpdl2-app-wrapper .Diamond-form--small .gf-requested-form p, .react-responsive-modal-root .Diamond-form--small .gf-requested-form p {
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 18px;
	margin-bottom: 20px;
	margin-top: 10px;
}

.wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root {
	margin: 0;
	width: 100%;
}

.wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-root, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-root, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-root {
	color: #000;
	font-size: 14px;
}

.wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-shrink, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInputLabel-shrink, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-shrink, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInputLabel-shrink {
	display: none;
	font-size: 18px;
}

.wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiFormControl-root .MuiInput-input, .wpdl2-app-wrapper .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInput-input, .react-responsive-modal-root .Diamond-form--small form .gf-form-field .MuiInput-root .MuiInput-input {
	color: #000;
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	outline: none;
}

.wpdl2-app-wrapper .Diamond-form--small form .prefrence-action, .react-responsive-modal-root .Diamond-form--small form .prefrence-action {
	margin-top: 20px;
}

.wpdl2-app-wrapper .Diamond-form--small form .prefrence-action .preference-btn, .react-responsive-modal-root .Diamond-form--small form .prefrence-action .preference-btn {
	font-size: 14px;
	padding: 10px 20px;
}

.wpdl2-app-wrapper .contact-prefrtence span, .react-responsive-modal-root .contact-prefrtence span {
	color: #000;
	font-size: 15px;
}

.wpdl2-app-wrapper .contact-prefrtence .pref_container label .MuiFormControlLabel-label, .react-responsive-modal-root .contact-prefrtence .pref_container label .MuiFormControlLabel-label {
	font-size: 15px;
}

.wpdl2-app-wrapper .MuiInputBase-root fieldset, .react-responsive-modal-root .MuiInputBase-root fieldset {
	border-color: #6c757d !important;
	border-width: 1px !important;
}

.wpdl2-app-wrapper .MuiInputBase-root fieldset legend, .react-responsive-modal-root .MuiInputBase-root fieldset legend {
	font-size: 15px;
	height: 20px !important;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	visibility: visible;
}

.wpdl2-app-wrapper .MuiInputBase-root fieldset legend span, .react-responsive-modal-root .MuiInputBase-root fieldset legend span {
	font-size: 12px;
	opacity: 1;
}

.wpdl2-app-wrapper .gf-diamond-search-details, .react-responsive-modal-root .gf-diamond-search-details {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-search-details, .react-responsive-modal-root .gf-diamond-search-details {
		display: flex;
		flex-direction: row;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-details select, .react-responsive-modal-root .gf-diamond-search-details select {
	font-size: 14px;
	height: 33px;
	outline: none;
	padding: 5px 18px 5px 5px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-search-details select, .react-responsive-modal-root .gf-diamond-search-details select {
		padding-right: 12px;
		width: 100%;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-details .gf-change-view-result, .react-responsive-modal-root .gf-diamond-search-details .gf-change-view-result {
	align-items: center;
	display: flex;
	margin-bottom: 10px;
	margin-right: 0;
	margin-top: 15px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-search-details .gf-change-view-result, .react-responsive-modal-root .gf-diamond-search-details .gf-change-view-result {
		align-items: center;
		display: flex;
		margin-bottom: 0;
		margin-right: 10px;
		margin-top: 0;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-details .gf-change-view-result p, .react-responsive-modal-root .gf-diamond-search-details .gf-change-view-result p {
	text-wrap: nowrap;
	color: #000;
	font-size: 16px;
	margin-right: 10px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-search-details .gf-change-view-result p, .react-responsive-modal-root .gf-diamond-search-details .gf-change-view-result p {
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-details .gf-grid-view-sort, .react-responsive-modal-root .gf-diamond-search-details .gf-grid-view-sort {
	margin-bottom: 10px;
	margin-right: 0;
	margin-top: 11px;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-search-details .gf-grid-view-sort, .react-responsive-modal-root .gf-diamond-search-details .gf-grid-view-sort {
		margin-top: 15px;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-details .sorting-dropdown-text, .react-responsive-modal-root .gf-diamond-search-details .sorting-dropdown-text {
	text-wrap: nowrap;
}

.wpdl2-app-wrapper .gf-diamond-search-details .sorting-dropdown, .react-responsive-modal-root .gf-diamond-search-details .sorting-dropdown {
	align-items: center;
	display: flex;
	gap: 5px;
}

.wpdl2-app-wrapper .gf-diamond-search-details select.result-perpage, .react-responsive-modal-root .gf-diamond-search-details select.result-perpage {
	padding: 5px;
	width: 55px !important;
}

.wpdl2-app-wrapper .gf-diamond-search-details select.in-house, .react-responsive-modal-root .gf-diamond-search-details select.in-house {
	padding-right: 23px;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-search-details select.in-house, .react-responsive-modal-root .gf-diamond-search-details select.in-house {
		padding-inline: 10px 25px;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-lists, .react-responsive-modal-root .gf-diamond-search-lists {
	align-items: center;
	display: flex;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-diamond-search-lists, .react-responsive-modal-root .gf-diamond-search-lists {
		margin-top: 15px;
	}
}

.wpdl2-app-wrapper .gf-diamond-search-lists .gf-search-bar, .react-responsive-modal-root .gf-diamond-search-lists .gf-search-bar {
	margin-top: 0 !important;
}

.wpdl2-app-wrapper .gf-diamond-searching-result, .react-responsive-modal-root .gf-diamond-searching-result {
	display: flex;
	flex-direction: column;
	margin: 50px 0 12px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-searching-result, .react-responsive-modal-root .gf-diamond-searching-result {
		align-items: center;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number {
	align-items: center;
	align-self: center;
	display: flex;
}

@media (max-width:1074px) {
	.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number {
		display: -webkit-inline-box;
	}
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number span.pattern-line, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number span.pattern-line {
	font-size: 20px;
	font-weight: 700;
	margin: 0 8px;
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number p, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number p {
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number p strong, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number p strong {
	font-size: 18px;
	margin-left: 2px;
}

@media (max-width:1074px) {
	.wpdl2-app-wrapper .gf-diamond-searching-result .gf-result-number p strong, .react-responsive-modal-root .gf-diamond-searching-result .gf-result-number p strong {
		font-size: 14px;
	}
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-diamond-shape-sorting, .react-responsive-modal-root .gf-diamond-searching-result .gf-diamond-shape-sorting {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-searching-result .gf-diamond-shape-sorting, .react-responsive-modal-root .gf-diamond-searching-result .gf-diamond-shape-sorting {
		gap: 5px;
		width: auto;
	}
}

.wpdl2-app-wrapper .gf-diamond-searching-result .gf-diamond-shape-sorting .shape-sort-dropdown, .react-responsive-modal-root .gf-diamond-searching-result .gf-diamond-shape-sorting .shape-sort-dropdown {
	min-width: 95px;
}

.wpdl2-app-wrapper .gf-search-bar, .react-responsive-modal-root .gf-search-bar {
	border: none;
	height: auto;
	margin-top: 10px;
	width: 90%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-search-bar, .react-responsive-modal-root .gf-search-bar {
		margin-top: 0;
		width: 100%;
	}
}

.wpdl2-app-wrapper .gf-search-bar form, .react-responsive-modal-root .gf-search-bar form {
	display: flex;
}

.wpdl2-app-wrapper .gf-search-bar input, .react-responsive-modal-root .gf-search-bar input {
	background-color: #fafafa;
	border: none;
	height: 32px;
	outline: none;
	padding: 6px 10px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-search-bar input, .react-responsive-modal-root .gf-search-bar input {
		width: auto;
	}
}

.wpdl2-app-wrapper .gf-search-bar .gf-search-btn, .react-responsive-modal-root .gf-search-bar .gf-search-btn {
	align-items: center;
	background-color: #000;
	border: none;
	display: flex;
	justify-content: center;
	position: relative;
}

.wpdl2-app-wrapper .gf-search-bar .gf-search-btn svg, .react-responsive-modal-root .gf-search-bar .gf-search-btn svg {
	fill: #fff;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul, .react-responsive-modal-root .gf-diamond-change-view ul {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-right: 10px;
	right: 0;
	top: -42px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-change-view ul, .react-responsive-modal-root .gf-diamond-change-view ul {
		position: inherit;
	}
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-diamond-change-view ul, .react-responsive-modal-root .gf-diamond-change-view ul {
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-diamond-change-view ul .gf-active a.gf-grid-view-four, .react-responsive-modal-root .gf-diamond-change-view ul .gf-active a.gf-grid-view-four, .wpdl2-app-wrapper .gf-diamond-change-view ul .gf-active a.listview, .react-responsive-modal-root .gf-diamond-change-view ul .gf-active a.listview {
	background-color: #000;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul .gf-active a.listview:before, .react-responsive-modal-root .gf-diamond-change-view ul .gf-active a.listview:before {
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li, .react-responsive-modal-root .gf-diamond-change-view ul li {
	display: flex;
	margin-left: 6px;
	position: relative;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a.gf-grid-view-four, .react-responsive-modal-root .gf-diamond-change-view ul li a.gf-grid-view-four {
	background-position: 7px 11px;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a.listview, .react-responsive-modal-root .gf-diamond-change-view ul li a.listview {
	align-items: center;
	background-image: none;
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a.listview.nitro-lazy, .react-responsive-modal-root .gf-diamond-change-view ul li a.listview.nitro-lazy {
	background-image: none !important;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a.listview svg, .react-responsive-modal-root .gf-diamond-change-view ul li a.listview svg {
	fill: #797979;
	padding-left: 2px;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a, .react-responsive-modal-root .gf-diamond-change-view ul li a {
	background-color: #fafafa;
	background-repeat: no-repeat;
	font-size: 0;
	height: 32px;
	width: 32px;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul li a:hover, .react-responsive-modal-root .gf-diamond-change-view ul li a:hover {
	background-color: #92cddc;
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-change-view ul .__react_component_tooltip, .react-responsive-modal-root .gf-diamond-change-view ul .__react_component_tooltip {
	font-size: 8px !important;
	padding: 4px;
	text-align: center;
	width: 35px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view {
	display: block;
	margin: 0 -8px;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing {
	position: relative;
	text-align: center;
	width: 25%;
}

@media (max-width:1024px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing {
		width: 33.33%;
	}
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing {
		width: 50%;
	}
}

@media (max-width:767px) {
	.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing {
		width: 100%;
	}
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .Gf_product_box, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .Gf_product_box {
	border: 1px solid #e8e8e8;
	margin: 8px;
	padding: 20px;
	position: relative;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing a, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing a {
	color: #000;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-video-popup, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-video-popup {
	left: 20px;
	position: absolute;
	top: 20px;
	z-index: 2;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-slidebutton, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-slidebutton {
	font-size: 25px;
	position: absolute;
	right: 20px;
	top: 15px;
	z-index: 2;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing h2.product-name, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing h2.product-name {
	font-family: Lato, sans-serif;
	font-size: 15px;
	line-height: 20px;
	text-transform: uppercase;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing h5.gf-product-price, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing h5.gf-product-price {
	font-family: Lato, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	margin: 8px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info {
	display: none;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active {
	background-color: hsla(0, 0%, 98%, .902);
	display: block;
	height: 100%;
	left: 0;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 3;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul {
	height: 390px;
	margin-top: 5px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding: 30px 20px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li {
	margin-bottom: 11px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li p, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li p {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li p span, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul li p span {
	color: #000;
	font-size: 13px;
	font-weight: 600;
	text-align: left;
	width: 50%;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing img, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing img {
	height: 200px;
	margin: 0 auto;
	object-fit: contain;
	width: 200px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action input, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action input {
	cursor: pointer;
	margin-right: 10px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action .state, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-box-action .state {
	color: #92cddc;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-details, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-details {
	min-height: 79px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-details .gf-product-item-name span, .react-responsive-modal-root .gf-search-product-listing .gf-grid-col-four li.gf-product-listing .gf-product-details .gf-product-item-name span {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 21px;
}

.wpdl2-app-wrapper .gf-result-pagination, .react-responsive-modal-root .gf-result-pagination {
	display: block;
	margin: 10px 0;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-result-pagination, .react-responsive-modal-root .gf-result-pagination {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .gf-result-pagination .gf-result-bottom h2, .react-responsive-modal-root .gf-result-pagination .gf-result-bottom h2 {
	font-family: Lato, sans-serif;
	font-size: 18px;
	line-height: 24px;
	text-align: left;
	text-transform: none;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination .active .page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination .active .page-link {
	padding: 6px 10px;
	vertical-align: -webkit-baseline-middle;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination, .react-responsive-modal-root .gf-diamond-product-pagination .pagination {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 20px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination, .react-responsive-modal-root .gf-diamond-product-pagination .pagination {
		margin-top: 0;
	}
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination .active .page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination .active .page-link {
	background-color: #454748;
	border-color: #454748;
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination .active span.visually-hidden, .react-responsive-modal-root .gf-diamond-product-pagination .pagination .active span.visually-hidden {
	display: none;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li {
	border-color: #e8e8e8;
	display: inline-block;
	margin: 0 2px;
	min-height: 35px;
	text-align: center;
	vertical-align: middle;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li:first-child .page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li:first-child .page-link {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li:last-child .page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li:last-child .page-link {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li a.page-link, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li a.page-link {
	border: 1px solid #e8e8e8;
	box-sizing: border-box;
	color: #000;
	font-size: 16px;
	line-height: normal;
	padding: 6px 10px;
	transition: .3s;
	vertical-align: -webkit-baseline-middle;
	width: 100%;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li a.page-link:hover, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li a.page-link:hover {
	background-color: #454748;
	border-color: #454748;
	color: #fff;
}

.wpdl2-app-wrapper .gf-diamond-product-pagination .pagination li a.page-link span.visually-hidden, .react-responsive-modal-root .gf-diamond-product-pagination .pagination li a.page-link span.visually-hidden {
	display: none;
	font-size: 16px;
}

.wpdl2-app-wrapper .gf-grid-view-orderby, .react-responsive-modal-root .gf-grid-view-orderby {
	display: block;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-grid-view-orderby, .react-responsive-modal-root .gf-grid-view-orderby {
		display: block;
	}
}

.wpdl2-app-wrapper .gf-grid-view-orderby a.gf-active, .react-responsive-modal-root .gf-grid-view-orderby a.gf-active {
	display: block;
}

.wpdl2-app-wrapper .gf-grid-view-orderby a.gf-active:hover, .react-responsive-modal-root .gf-grid-view-orderby a.gf-active:hover {
	color: #797979;
}

.wpdl2-app-wrapper .gf-grid-view-orderby #desc:before, .react-responsive-modal-root .gf-grid-view-orderby #desc:before {
	background-position: -30px -11px;
	height: 20px;
	top: 20px;
}

.wpdl2-app-wrapper .gf-grid-view-orderby a, .react-responsive-modal-root .gf-grid-view-orderby a {
	color: rgba(0, 0, 0, 0);
	display: none;
	font-size: 11px;
	font-weight: 400;
	margin-bottom: 45px;
	position: relative;
}

.wpdl2-app-wrapper .gf-grid-view-orderby a:hover, .react-responsive-modal-root .gf-grid-view-orderby a:hover {
	color: rgba(0, 0, 0, 0);
}

.wpdl2-app-wrapper .gf-grid-view-orderby a:before, .react-responsive-modal-root .gf-grid-view-orderby a:before {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANgAAACNCAYAAADVY7SpAAAAAXNSR0IArs4c6QAABw1JREFUeF7tnDuOFEsURGMMPiYeywAsPsKFLYDwHgIMFoQBiOch2AK4iI8FLAMPk4/zlFKjNxoN3ZnVWVnRUWfcvpV5b2Scyaxb1X0k/lAABWZT4Gi2kRkYBVBAAIYJUGBGBQBsRnEZGgUADA+gwIwKANiM4jI0CjgAdl3SE0mPJX1gSVBgogIPJD1ruPahpOcN8ZNClwbsiqT3ks5L+iHphqTPkyrhorUrUIB52iDCo0YgG4b+P3RJwC5L+ijp3LHMf0q6JunLpGq4aM0K/CPpRYMA9yX92xA/KXQpwE6D608BQDZpKVd/EYBtLFDg+iTp7BZL/JJ0lZ1s9dC0CABgkrbtXCfFZCdrsRexqwesNDTKPde2neukTcpOVu7JaHwA0C4FVg1Yy87FTrbLSnx+mgKrBWwfuGh8AFOtAqsErKahUSsgjY9apdYZtzrAeuxcHBfXCcuUqlcF2JSGRq2oND5qlVpX3GoAu7R5znX8DY3eS11a+OU52dfeAzPewSqwCsDKzlVe2J0TruONj/KiMC38g2Wia+LxgPVsaNQqT+OjVqn8uGjA5mho1FqCNz5qlcqOiwVsiZ3rtDc+eHcxG6Bd1UUCVuAq91zl+1xL/5Xvk5V7Mr7qsvRKLDN/HGAjGxq1S1aOizQ+atXKiosCbMl7rl224J5sl0KZn8cA5nQs/JtVOC5mQrStqgjAyrGwfFnyzAGs3+/Nw2iekx3AYnVI8eABuyPpVQchRg9xV9Lr0ZMy33AFDh6we5IuSvq+h3Q3JZUfG6n9Kz9i8q42+JS4C5K+SXq5xxhcehgKHDxgPWS+JelNw0C3Jb1tiCd0vQoAmCRLEdbryajKLb01+mfbLEWIstl6i7H0FoCt15BplQMYR8Q0T1vVA2AAZmXItGQADMDSPG1VD4ABmJUh05IBMABL87RVPQAGYFaGTEsGwAAszdNW9QAYgFkZMi0ZAAOwNE9b1QNgAGZlyLRkAAzA0jxtVQ+AAZiVIdOSATAAS/O0VT0ABmBWhkxLBsAALM3TVvUAGIBZGTItGQADsDRPW9UDYABmZci0ZAAMwNI8bVUPgAGYlSHTkgEwAEvztFU9AAZgVoZMSwbAACzN01b1ABiAWRkyLRkAA7A0T1vVA2AAZmXItGQADMDSPG1VD4ABmJUh05IBMABL87RVPQAGYFaGTEsGwAAszdNW9QAYgFkZMi0ZAAOwNE9b1QNgAGZlyLRkAAzA0jxtVQ+AAZiVIdOSATAAS/O0VT0ABmBWhkxLBsAALM3TVvUAGIBZGTItGQADsDRPW9UDYABmZci0ZAAMwNI8bVUPgAGYlSHTkgEwAEvztFU9AAZgVoZMSwbAACzN01b1ABiAWRkyLRkAA7A0T1vVA2AAZmXItGQADMDSPG1VD4ABmJUh05IBMABL87RVPQAGYFaGTEsGwAAszdNW9QAYgFkZMi0ZAAOwNE9b1QNgAGZlyLRkAAzA0jxtVQ+AAZiVIdOSATAAS/O0VT0ABmBWhkxLBsAALM3TVvUAGIBZGTItGQADsDRPW9UDYABmZci0ZAAMwNI8bVUPgAGYlSHTkgEwAEvztFU9AAZgVoZMSwbAACzN01b1ABiAWRkyLRkAA7A0T1vVA2AAZmXItGQADMDSPG1VD4ABmJUh05IBMABL87RVPbckvWnI6Laktw3xk0KPJl01/SLL/zLTy+HKTgrck3RR0vc9xrsp6X7D9S8kvWuIPxl6QdI3SS+3jQFgeyjMpd0UuCPpVbfRxg10V9JrABsnODNNV+CKpE+SzkwfYtiVvyVdlfR514zsYLsU4vORClyW9EHS+ZGTNs71Q9J1SV9qrgOwGpWIGalAgeyjpHMjJ62c66eka7VwlTEBrFJZwoYqUI6LZSdzgqzAVXauncfC40oB2FDfMFmDAk7HxaZjIYA1rDKhiypQICuNj7MLZvFr09Couuc6mSc72IIrx9RVCix5T9Z8zwVgVWtKkJkCS+xke+1cf/RjBzNzEun8VYGRjY9JDY3TMgcwHH1IClza3JPN2V0scJWHyF97CANgPVRkjJEKlJ2sPCebo/FRjoXlOVdTK35b8QA20hrM1UuBORofezc0OCL2Wl7GcVCgZ+OjS0MDwBxsQQ49Feixk82yc9FF7LnMjLWkAvtANitcRRTuwZa0BnP3UmBK46N7Q4MjYq/lZBxHBVp2stl3Lo6IjhYhp30VqGl8zNbQYAfbd/m4/hAU2LaTDdu52MEOwSrkOFWB0yAbDtcSTY6Hkp42qPZI0rOGeEJR4I8CpfHxfvPzA+X7XDd6vqFRK/PoLuKDRmAKkM9riyEOBU4oUL6B/ETS4803pIcLNBqw4QUyIQosqQCALak+c8crAGDxS0yBSyoAYEuqz9zxCgBY/BJT4JIKANiS6jN3vAL/AZilNKwmvQhCAAAAAElFTkSuQmCC");
	background-repeat: no-repeat;
	background-size: 4em;
	color: #000;
	content: "";
	height: 20px;
	left: 5px;
	opacity: 1;
	position: absolute;
	top: 14px;
	width: 17px;
}

@media (max-width:991px) {
	.wpdl2-app-wrapper .gf-grid-view-orderby a, .react-responsive-modal-root .gf-grid-view-orderby a {
		margin-bottom: 40px;
	}
}

.wpdl2-app-wrapper .gf-grid-view-orderby .active, .react-responsive-modal-root .gf-grid-view-orderby .active {
	display: block;
}

.wpdl2-app-wrapper .gf-btn-compare .gf-btn, .react-responsive-modal-root .gf-btn-compare .gf-btn {
	font-size: 14px;
	margin-bottom: 20px;
	padding: 8px 20px;
	width: 100%;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .gf-btn-compare .gf-btn, .react-responsive-modal-root .gf-btn-compare .gf-btn {
		margin-bottom: 10px;
		width: auto;
	}
}

.wpdl2-app-wrapper .gf-SettingsContainer .gf-search-product-listing.inactive, .react-responsive-modal-root .gf-SettingsContainer .gf-search-product-listing.inactive {
	display: none;
}

.wpdl2-app-wrapper .gf-SettingsContainer .gf-product-datatable.gf-active, .react-responsive-modal-root .gf-SettingsContainer .gf-product-datatable.gf-active, .wpdl2-app-wrapper .gf-SettingsContainer .gf-search-product-listing.gf-active, .react-responsive-modal-root .gf-SettingsContainer .gf-search-product-listing.gf-active {
	display: block;
}

.wpdl2-app-wrapper .gf-SettingsContainer .gf-product-datatable.gf-grid-list-view, .react-responsive-modal-root .gf-SettingsContainer .gf-product-datatable.gf-grid-list-view, .wpdl2-app-wrapper .gf-SettingsContainer .gf-product-datatable.inactive, .react-responsive-modal-root .gf-SettingsContainer .gf-product-datatable.inactive {
	display: none;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar {
	height: 12px;
	width: 3px;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-track, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-track {
	background-color: #fff;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-thumb, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-thumb {
	background-color: #ddd;
}

.wpdl2-app-wrapper .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-button, .react-responsive-modal-root .gf-search-product-listing .gf-product-grid-view li.gf-product-listing .gf-product-inner-info.gf-active ul::-webkit-scrollbar-button {
	height: 12px;
}

@keyframes react-loading-skeleton {
	to {
		transform: translateX(100%);
	}
}

.wpdl2-app-wrapper .react-loading-skeleton, .react-responsive-modal-root .react-loading-skeleton {
	--base-color: #ebebeb;
	--highlight-color: #f5f5f5;
	--animation-duration: 1.5s;
	--animation-direction: normal;
	--pseudo-element-display: block;
	background-color: var(--base-color);
	border-radius: 0;
	display: inline-flex;
	line-height: 1;
	margin-top: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 1;
}

.wpdl2-app-wrapper .react-loading-skeleton:after, .react-responsive-modal-root .react-loading-skeleton:after {
	animation-direction: var(--animation-direction);
	animation-duration: var(--animation-duration);
	animation-iteration-count: infinite;
	animation-name: react-loading-skeleton;
	animation-timing-function: ease-in-out;
	background-image: linear-gradient(90deg, var(--base-color), var(--highlight-color), var(--base-color));
	background-repeat: no-repeat;
	content: " ";
	display: var(--pseudo-element-display);
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(-100%);
}

.wpdl2-app-wrapper .Skeleton-type span, .react-responsive-modal-root .Skeleton-type span {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.wpdl2-app-wrapper .Skeleton-type span .react-loading-skeleton, .react-responsive-modal-root .Skeleton-type span .react-loading-skeleton {
	flex: 1 0 25%;
	margin-right: 10px;
	margin-top: 10px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .Skeleton-type span .react-loading-skeleton, .react-responsive-modal-root .Skeleton-type span .react-loading-skeleton {
		flex: 1 0 10%;
	}
}

.wpdl2-app-wrapper .div-inner, .react-responsive-modal-root .div-inner {
	display: block;
	margin-top: 20px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .div-inner, .react-responsive-modal-root .div-inner {
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .div-inner .div-skelton-inner, .react-responsive-modal-root .div-inner .div-skelton-inner {
	background-color: #fafafa;
	border: 1px solid #ddd;
	padding: 15px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .div-inner .div-skelton-inner, .react-responsive-modal-root .div-inner .div-skelton-inner {
		width: 49%;
	}
}

.wpdl2-app-wrapper .Skeleton-settings, .react-responsive-modal-root .Skeleton-settings {
	display: block;
	margin-top: 20px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .Skeleton-settings, .react-responsive-modal-root .Skeleton-settings {
		display: flex;
		justify-content: space-between;
	}
}

.wpdl2-app-wrapper .Skeleton-settings .skeleton-div, .react-responsive-modal-root .Skeleton-settings .skeleton-div {
	background-color: #fafafa;
	border: 1px solid #ddd;
	padding: 15px;
	width: 100%;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .Skeleton-settings .skeleton-div, .react-responsive-modal-root .Skeleton-settings .skeleton-div {
		width: 49%;
	}
}

.wpdl2-app-wrapper .Skeleton-settings .div-right-price .react-loading-skeleton, .react-responsive-modal-root .Skeleton-settings .div-right-price .react-loading-skeleton {
	margin-top: 0;
}

.wpdl2-app-wrapper .Skeleton-settings .div-right span, .react-responsive-modal-root .Skeleton-settings .div-right span {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wpdl2-app-wrapper .Skeleton-settings .div-right .react-loading-skeleton, .react-responsive-modal-root .Skeleton-settings .div-right .react-loading-skeleton {
	flex: 1 0 25%;
	margin-right: 10px;
	margin-top: 10px;
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .Skeleton-settings .div-right .react-loading-skeleton, .react-responsive-modal-root .Skeleton-settings .div-right .react-loading-skeleton {
		flex: 1 0 10%;
	}
}

.wpdl2-app-wrapper .s_gridview, .react-responsive-modal-root .s_gridview {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 30px 0 0;
}

.wpdl2-app-wrapper .s_gridview .Skeleton__lists, .react-responsive-modal-root .s_gridview .Skeleton__lists {
	border: 1px solid #ddd;
	flex: 100% 1;
	margin: 10px;
	padding: 0 0 25px;
	text-align: center;
}

@media (min-width:576px) {
	.wpdl2-app-wrapper .s_gridview .Skeleton__lists, .react-responsive-modal-root .s_gridview .Skeleton__lists {
		flex: 1 0 20%;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata, .react-responsive-modal-root .gf-product-list-viewdata {
	margin: 10px 0;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table, .react-responsive-modal-root .gf-product-list-viewdata .gf-table {
	overflow-x: scroll;
}

@media (min-width:426px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table, .react-responsive-modal-root .gf-product-list-viewdata .gf-table {
		overflow-x: inherit;
		width: 100%;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead {
	background-color: #000;
	vertical-align: middle;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr .table-sort:before, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr .table-sort:before {
	content: "";
	font-family: Font Awesome\ 5 Free;
	font-size: 12px;
	font-weight: 900;
	margin-left: 4px;
	position: absolute;
	right: 6px;
	top: 7px;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr .table-sort:after, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr .table-sort:after {
	content: "";
	cursor: pointer;
	font-family: Font Awesome\ 5 Free;
	font-size: 12px;
	font-weight: 900;
	position: absolute;
	right: 6px;
	top: 14px;
}

@media (max-width:1100px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr .table-sort:after, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr .table-sort:after, .wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr .table-sort:before, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr .table-sort:before {
		display: none;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr th, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr th {
	color: #fff;
	font-family: Lato, sans-serif;
	font-size: 8px;
	font-weight: 400;
	line-height: 0;
	padding: 8px 4px !important;
	position: relative;
	text-align: center;
	white-space: nowrap;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr th, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr th {
		font-size: 10px;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table thead tr th, .react-responsive-modal-root .gf-product-list-viewdata .gf-table thead tr th {
		font-size: 14px;
		line-height: normal;
		padding-right: 17px !important;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody {
	background-color: #fafafa;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .selected_row, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .selected_row {
	background-color: #d9e2ec;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox {
	display: inline-block;
	vertical-align: middle;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-inner, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-inner {
	background: #fff;
	border: 1px solid #bfbfbf;
	border-radius: 2px;
	box-sizing: border-box;
	display: inline-block;
	height: 16px;
	position: relative;
	width: 16px;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-inner:after, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-inner:after {
	border: 2px solid #fff;
	border-left: 0;
	border-top: 0;
	content: " ";
	height: 9px;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 1px;
	transform: rotate(45deg);
	width: 5px;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-checked .rc-checkbox-inner, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-checked .rc-checkbox-inner {
	background-color: #1890ff;
	border-color: #1890ff;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-checked .rc-checkbox-inner:after, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-checked .rc-checkbox-inner:after {
	opacity: 1;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-input, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter .rc-checkbox-input {
	cursor: pointer;
	inset: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	z-index: 1;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody tr:hover, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody tr:hover {
	background-color: #92cddc;
	cursor: pointer;
}

@media (max-width:991.98px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .table-selecter, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .table-selecter {
		padding: 0 !important;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody th, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody th {
	border-bottom: none;
	border-right: 1px solid #ddd;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
}

@media (max-width:991.98px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody th, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody th {
		padding: 0;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td {
	border-bottom: none;
	border-right: 1px solid #ddd;
	box-shadow: none;
	color: #000;
	font-family: Lato, sans-serif;
	font-size: 8px;
	font-weight: 400;
	padding: 5px !important;
	text-align: center;
	vertical-align: middle;
}

@media (min-width:768px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td {
		font-size: 10px;
	}
}

@media (min-width:992px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td {
		font-size: 14px;
		padding: 8px !important;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td img, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td img {
	height: 20px;
	width: 20px;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td a, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td a {
	color: #000;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td:nth-child(2), .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td:nth-child(2) {
	min-width: auto;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span {
	float: right;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .Cutcol, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .Cutcol {
	border: #ffdead;
	display: flex;
	text-align: left;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .Cutcol .shape-name, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .Cutcol .shape-name {
	margin-left: 20px;
}

@media (max-width:991.98px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .Cutcol .shape-name, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .Cutcol .shape-name {
		display: none;
	}
}

@media (max-width:992px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody .Cutcol, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody .Cutcol {
		text-align: left;
		width: auto;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td.Cutcol span, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td.Cutcol span {
	float: none;
	margin-left: 30px;
}

@media (max-width:991.98px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td.Cutcol span, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td.Cutcol span {
		margin-left: 15px;
	}
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td.Sizecol, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td.Sizecol {
	min-width: auto;
	text-align: center;
}

.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span {
	display: inline-block;
	float: none;
	margin-left: 0;
	width: 50%;
}

@media (max-width:991.98px) {
	.wpdl2-app-wrapper .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span, .react-responsive-modal-root .gf-product-list-viewdata .gf-table tbody td:nth-child(2) span {
		display: block;
		margin-left: 0;
		width: 100%;
	}
}

.wpdl2-app-wrapper .top_header-area, .react-responsive-modal-root .top_header-area {
	background-color: #000;
	margin-bottom: 10px;
	padding: 15px 0;
	text-align: center;
}

.wpdl2-app-wrapper .top_header-area span, .react-responsive-modal-root .top_header-area span {
	color: #fff;
	font-size: 16px;
}

.wpdl2-app-wrapper .fa, .react-responsive-modal-root .fa, .wpdl2-app-wrapper .fab, .react-responsive-modal-root .fab, .wpdl2-app-wrapper .fad, .react-responsive-modal-root .fad, .wpdl2-app-wrapper .fal, .react-responsive-modal-root .fal, .wpdl2-app-wrapper .far, .react-responsive-modal-root .far, .wpdl2-app-wrapper .fas, .react-responsive-modal-root .fas, .wpdl2-app-wrapper [class*=fa-], .react-responsive-modal-root [class*=fa-] {
	font-feature-settings: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.wpdl2-app-wrapper .fa, .react-responsive-modal-root .fa, .wpdl2-app-wrapper .fal, .react-responsive-modal-root .fal, .wpdl2-app-wrapper .far, .react-responsive-modal-root .far, .wpdl2-app-wrapper .fas, .react-responsive-modal-root .fas, .wpdl2-app-wrapper [class*=fa-]:not(.fab), .react-responsive-modal-root [class*=fa-]:not(.fab) {
	font-family: Font Awesome\ 5 Free !important;
}

.wpdl2-app-wrapper .fab, .react-responsive-modal-root .fab {
	font-family: Font Awesome\ 5 Brands !important;
	font-weight: 400 !important;
}

.wpdl2-app-wrapper .fa, .react-responsive-modal-root .fa, .wpdl2-app-wrapper .fas, .react-responsive-modal-root .fas {
	font-weight: 900 !important;
}

.wpdl2-app-wrapper .far, .react-responsive-modal-root .far {
	font-weight: 400 !important;
}

.wpdl2-app-wrapper .gem-video:before, .react-responsive-modal-root .gem-video:before, .wpdl2-app-wrapper .table-sort:after, .react-responsive-modal-root .table-sort:after, .wpdl2-app-wrapper .table-sort:before, .react-responsive-modal-root .table-sort:before {
	font-family: Font Awesome\ 5 Free !important;
	font-style: normal;
	font-weight: 900 !important;
}

.wpdl2-app-wrapper .icon-hover, .react-responsive-modal-root .icon-hover {
	background-color: #f9fafb;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-shadow: 0 1px 8px -7px #000;
	display: none;
	left: -29px;
	position: absolute;
	top: 5px;
}

.wpdl2-app-wrapper .ellipsis-data, .react-responsive-modal-root .ellipsis-data {
	position: relative;
}

.wpdl2-app-wrapper .ellipsis-data i, .react-responsive-modal-root .ellipsis-data i {
	font-size: 18px;
	line-height: 20px;
}

.wpdl2-app-wrapper .ellipsis-data:hover .icon-hover, .react-responsive-modal-root .ellipsis-data:hover .icon-hover {
	color: #000;
	display: block;
	z-index: 1;
}

.wpdl2-app-wrapper .ellipsis-data:hover .icon-hover i, .react-responsive-modal-root .ellipsis-data:hover .icon-hover i {
	align-items: center;
	color: #000;
	display: flex;
	height: 40px;
	justify-content: center;
	vertical-align: middle;
	width: 40px;
}

.wpdl2-app-wrapper .ellipsis-data:hover .icon-hover i:hover, .react-responsive-modal-root .ellipsis-data:hover .icon-hover i:hover {
	background-color: #92cddc;
	color: #fff;
}

.wpdl2-app-wrapper .diamond-information ul li div p, .react-responsive-modal-root .diamond-information ul li div p {
	text-align: left;
}

.wpdl2-app-wrapper .gf-price-login, .react-responsive-modal-root .gf-price-login {
	font-weight: 400;
	overflow-wrap: break-word;
	white-space: normal;
}

.wpdl2-app-wrapper .gf-price-login--sentence, .react-responsive-modal-root .gf-price-login--sentence {
	display: inline-block !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 22px !important;
	max-width: 100%;
	overflow-wrap: break-word;
	white-space: normal !important;
}

.wpdl2-app-wrapper .gf-price-login--sentence .gf-price-login-link, .react-responsive-modal-root .gf-price-login--sentence .gf-price-login-link {
	display: inline !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
}

.wpdl2-app-wrapper a.gf-price-login-link, .react-responsive-modal-root a.gf-price-login-link {
	color: inherit;
}

.wpdl2-app-wrapper a.gf-price-login-link, .react-responsive-modal-root a.gf-price-login-link, .wpdl2-app-wrapper a.gf-price-login-link:focus, .react-responsive-modal-root a.gf-price-login-link:focus, .wpdl2-app-wrapper a.gf-price-login-link:hover, .react-responsive-modal-root a.gf-price-login-link:hover {
	text-decoration: underline;
}

:root, .wpdl2-app-wrapper, .react-responsive-modal-root {
	--toastify-color-light: #fff;
	--toastify-color-dark: #121212;
	--toastify-color-info: #3498db;
	--toastify-color-success: #07bc0c;
	--toastify-color-warning: #f1c40f;
	--toastify-color-error: #e74c3c;
	--toastify-color-transparent: rgba(255, 255, 255, .7);
	--toastify-icon-color-info: var(--toastify-color-info);
	--toastify-icon-color-success: var(--toastify-color-success);
	--toastify-icon-color-warning: var(--toastify-color-warning);
	--toastify-icon-color-error: var(--toastify-color-error);
	--toastify-toast-width: 320px;
	--toastify-toast-background: #fff;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-font-family: sans-serif;
	--toastify-z-index: 9999;
	--toastify-text-color-light: #757575;
	--toastify-text-color-dark: #fff;
	--toastify-text-color-info: #fff;
	--toastify-text-color-success: #fff;
	--toastify-text-color-warning: #fff;
	--toastify-text-color-error: #fff;
	--toastify-spinner-color: #616161;
	--toastify-spinner-color-empty-area: #e0e0e0;
	--toastify-color-progress-light: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	--toastify-color-progress-dark: #bb86fc;
	--toastify-color-progress-info: var(--toastify-color-info);
	--toastify-color-progress-success: var(--toastify-color-success);
	--toastify-color-progress-warning: var(--toastify-color-warning);
	--toastify-color-progress-error: var(--toastify-color-error);
}

.wpdl2-app-wrapper .Toastify__toast-container, .react-responsive-modal-root .Toastify__toast-container {
	box-sizing: border-box;
	color: #fff;
	padding: 4px;
	position: fixed;
	-webkit-transform: translate3d(0, 0, 9999 px);
	-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
	width: 320px;
	width: var(--toastify-toast-width);
	z-index: 9999;
	z-index: var(--toastify-z-index);
}

.wpdl2-app-wrapper .Toastify__toast-container--top-left, .react-responsive-modal-root .Toastify__toast-container--top-left {
	left: 1em;
	top: 1em;
}

.wpdl2-app-wrapper .Toastify__toast-container--top-center, .react-responsive-modal-root .Toastify__toast-container--top-center {
	left: 50%;
	top: 1em;
	transform: translateX(-50%);
}

.wpdl2-app-wrapper .Toastify__toast-container--top-right, .react-responsive-modal-root .Toastify__toast-container--top-right {
	right: 1em;
	top: 1em;
}

.wpdl2-app-wrapper .Toastify__toast-container--bottom-left, .react-responsive-modal-root .Toastify__toast-container--bottom-left {
	bottom: 1em;
	left: 1em;
}

.wpdl2-app-wrapper .Toastify__toast-container--bottom-center, .react-responsive-modal-root .Toastify__toast-container--bottom-center {
	bottom: 1em;
	left: 50%;
	transform: translateX(-50%);
}

.wpdl2-app-wrapper .Toastify__toast-container--bottom-right, .react-responsive-modal-root .Toastify__toast-container--bottom-right {
	bottom: 1em;
	right: 1em;
}

@media only screen and (max-width:480px) {
	.wpdl2-app-wrapper .Toastify__toast-container, .react-responsive-modal-root .Toastify__toast-container {
		left: 0;
		margin: 0;
		padding: 0;
		width: 100vw;
	}
	
	.wpdl2-app-wrapper .Toastify__toast-container--top-center, .react-responsive-modal-root .Toastify__toast-container--top-center, .wpdl2-app-wrapper .Toastify__toast-container--top-left, .react-responsive-modal-root .Toastify__toast-container--top-left, .wpdl2-app-wrapper .Toastify__toast-container--top-right, .react-responsive-modal-root .Toastify__toast-container--top-right {
		top: 0;
		transform: translateX(0);
	}
	
	.wpdl2-app-wrapper .Toastify__toast-container--bottom-center, .react-responsive-modal-root .Toastify__toast-container--bottom-center, .wpdl2-app-wrapper .Toastify__toast-container--bottom-left, .react-responsive-modal-root .Toastify__toast-container--bottom-left, .wpdl2-app-wrapper .Toastify__toast-container--bottom-right, .react-responsive-modal-root .Toastify__toast-container--bottom-right {
		bottom: 0;
		transform: translateX(0);
	}
	
	.wpdl2-app-wrapper .Toastify__toast-container--rtl, .react-responsive-modal-root .Toastify__toast-container--rtl {
		left: auto;
		right: 0;
	}
}

.wpdl2-app-wrapper .Toastify__toast, .react-responsive-modal-root .Toastify__toast {
	border-radius: 4px;
	box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .1), 0 2px 15px 0 rgba(0, 0, 0, .05);
	box-sizing: border-box;
	cursor: pointer;
	direction: ltr;
	display: flex;
	font-family: sans-serif;
	font-family: var(--toastify-font-family);
	justify-content: space-between;
	margin-bottom: 1rem;
	max-height: 800px;
	max-height: var(--toastify-toast-max-height);
	min-height: 64px;
	min-height: var(--toastify-toast-min-height);
	overflow: hidden;
	padding: 8px;
	position: relative;
}

.wpdl2-app-wrapper .Toastify__toast--rtl, .react-responsive-modal-root .Toastify__toast--rtl {
	direction: rtl;
}

.wpdl2-app-wrapper .Toastify__toast-body, .react-responsive-modal-root .Toastify__toast-body {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	margin: auto 0;
	padding: 6px;
}

.wpdl2-app-wrapper .Toastify__toast-body > div:last-child, .react-responsive-modal-root .Toastify__toast-body > div:last-child {
	flex: 1 1;
}

.wpdl2-app-wrapper .Toastify__toast-icon, .react-responsive-modal-root .Toastify__toast-icon {
	-webkit-margin-end: 10px;
	display: flex;
	flex-shrink: 0;
	margin-inline-end: 10px;
	width: 20px;
}

.wpdl2-app-wrapper .Toastify--animate, .react-responsive-modal-root .Toastify--animate {
	animation-duration: .7s;
	animation-fill-mode: both;
}

.wpdl2-app-wrapper .Toastify--animate-icon, .react-responsive-modal-root .Toastify--animate-icon {
	animation-duration: .3s;
	animation-fill-mode: both;
}

@media only screen and (max-width:480px) {
	.wpdl2-app-wrapper .Toastify__toast, .react-responsive-modal-root .Toastify__toast {
		border-radius: 0;
		margin-bottom: 0;
	}
}

.wpdl2-app-wrapper .Toastify__toast-theme--dark, .react-responsive-modal-root .Toastify__toast-theme--dark {
	background: #121212;
	background: var(--toastify-color-dark);
	color: #fff;
	color: var(--toastify-text-color-dark);
}

.wpdl2-app-wrapper .Toastify__toast-theme--colored.Toastify__toast--default, .react-responsive-modal-root .Toastify__toast-theme--colored.Toastify__toast--default, .wpdl2-app-wrapper .Toastify__toast-theme--light, .react-responsive-modal-root .Toastify__toast-theme--light {
	background: #fff;
	background: var(--toastify-color-light);
	color: #757575;
	color: var(--toastify-text-color-light);
}

.wpdl2-app-wrapper .Toastify__toast-theme--colored.Toastify__toast--info, .react-responsive-modal-root .Toastify__toast-theme--colored.Toastify__toast--info {
	background: #3498db;
	background: var(--toastify-color-info);
	color: #fff;
	color: var(--toastify-text-color-info);
}

.wpdl2-app-wrapper .Toastify__toast-theme--colored.Toastify__toast--success, .react-responsive-modal-root .Toastify__toast-theme--colored.Toastify__toast--success {
	background: #07bc0c;
	background: var(--toastify-color-success);
	color: #fff;
	color: var(--toastify-text-color-success);
}

.wpdl2-app-wrapper .Toastify__toast-theme--colored.Toastify__toast--warning, .react-responsive-modal-root .Toastify__toast-theme--colored.Toastify__toast--warning {
	background: #f1c40f;
	background: var(--toastify-color-warning);
	color: #fff;
	color: var(--toastify-text-color-warning);
}

.wpdl2-app-wrapper .Toastify__toast-theme--colored.Toastify__toast--error, .react-responsive-modal-root .Toastify__toast-theme--colored.Toastify__toast--error {
	background: #e74c3c;
	background: var(--toastify-color-error);
	color: #fff;
	color: var(--toastify-text-color-error);
}

.wpdl2-app-wrapper .Toastify__progress-bar-theme--light, .react-responsive-modal-root .Toastify__progress-bar-theme--light {
	background: linear-gradient(90deg, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	background: var(--toastify-color-progress-light);
}

.wpdl2-app-wrapper .Toastify__progress-bar-theme--dark, .react-responsive-modal-root .Toastify__progress-bar-theme--dark {
	background: #bb86fc;
	background: var(--toastify-color-progress-dark);
}

.wpdl2-app-wrapper .Toastify__progress-bar--info, .react-responsive-modal-root .Toastify__progress-bar--info {
	background: #3498db;
	background: var(--toastify-color-progress-info);
}

.wpdl2-app-wrapper .Toastify__progress-bar--success, .react-responsive-modal-root .Toastify__progress-bar--success {
	background: #07bc0c;
	background: var(--toastify-color-progress-success);
}

.wpdl2-app-wrapper .Toastify__progress-bar--warning, .react-responsive-modal-root .Toastify__progress-bar--warning {
	background: #f1c40f;
	background: var(--toastify-color-progress-warning);
}

.wpdl2-app-wrapper .Toastify__progress-bar--error, .react-responsive-modal-root .Toastify__progress-bar--error {
	background: #e74c3c;
	background: var(--toastify-color-progress-error);
}

.wpdl2-app-wrapper .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error, .react-responsive-modal-root .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error, .wpdl2-app-wrapper .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .react-responsive-modal-root .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .wpdl2-app-wrapper .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .react-responsive-modal-root .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .wpdl2-app-wrapper .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .react-responsive-modal-root .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
	background: rgba(255, 255, 255, .7);
	background: var(--toastify-color-transparent);
}

.wpdl2-app-wrapper .Toastify__close-button, .react-responsive-modal-root .Toastify__close-button {
	align-self: flex-start;
	background: rgba(0, 0, 0, 0);
	border: none;
	color: #fff;
	cursor: pointer;
	opacity: .7;
	outline: none;
	padding: 0;
	transition: .3s ease;
}

.wpdl2-app-wrapper .Toastify__close-button--light, .react-responsive-modal-root .Toastify__close-button--light {
	color: #000;
	opacity: .3;
}

.wpdl2-app-wrapper .Toastify__close-button > svg, .react-responsive-modal-root .Toastify__close-button > svg {
	fill: currentColor;
	height: 16px;
	width: 14px;
}

.wpdl2-app-wrapper .Toastify__close-button:focus, .react-responsive-modal-root .Toastify__close-button:focus, .wpdl2-app-wrapper .Toastify__close-button:hover, .react-responsive-modal-root .Toastify__close-button:hover {
	opacity: 1;
}

@keyframes Toastify__trackProgress {
	0% {
		transform: scaleX(1);
	}
	
	to {
		transform: scaleX(0);
	}
}

.wpdl2-app-wrapper .Toastify__progress-bar, .react-responsive-modal-root .Toastify__progress-bar {
	bottom: 0;
	height: 5px;
	left: 0;
	opacity: .7;
	position: absolute;
	transform-origin: left;
	width: 100%;
	z-index: 9999;
	z-index: var(--toastify-z-index);
}

.wpdl2-app-wrapper .Toastify__progress-bar--animated, .react-responsive-modal-root .Toastify__progress-bar--animated {
	animation: Toastify__trackProgress linear 1 forwards;
}

.wpdl2-app-wrapper .Toastify__progress-bar--controlled, .react-responsive-modal-root .Toastify__progress-bar--controlled {
	transition: transform .2s;
}

.wpdl2-app-wrapper .Toastify__progress-bar--rtl, .react-responsive-modal-root .Toastify__progress-bar--rtl {
	left: auto;
	right: 0;
	transform-origin: right;
}

.wpdl2-app-wrapper .Toastify__spinner, .react-responsive-modal-root .Toastify__spinner {
	animation: Toastify__spin .65s linear infinite;
	border: 2px solid #e0e0e0;
	border-color: var(--toastify-spinner-color-empty-area);
	border-radius: 100%;
	border-right-color: #616161;
	border-right-color: var(--toastify-spinner-color);
	box-sizing: border-box;
	height: 20px;
	width: 20px;
}

@keyframes Toastify__bounceInRight {
	0%, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	
	75% {
		transform: translate3d(10px, 0, 0);
	}
	
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes Toastify__bounceInLeft {
	0%, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	
	90% {
		transform: translate3d(5px, 0, 0);
	}
	
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes Toastify__bounceInUp {
	0%, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	
	75% {
		transform: translate3d(0, 10px, 0);
	}
	
	90% {
		transform: translate3d(0, -5px, 0);
	}
	
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes Toastify__bounceInDown {
	0%, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	
	75% {
		transform: translate3d(0, -10px, 0);
	}
	
	90% {
		transform: translate3d(0, 5px, 0);
	}
	
	to {
		transform: none;
	}
}

@keyframes Toastify__bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.wpdl2-app-wrapper .Toastify__bounce-enter--bottom-left, .react-responsive-modal-root .Toastify__bounce-enter--bottom-left, .wpdl2-app-wrapper .Toastify__bounce-enter--top-left, .react-responsive-modal-root .Toastify__bounce-enter--top-left {
	animation-name: Toastify__bounceInLeft;
}

.wpdl2-app-wrapper .Toastify__bounce-enter--bottom-right, .react-responsive-modal-root .Toastify__bounce-enter--bottom-right, .wpdl2-app-wrapper .Toastify__bounce-enter--top-right, .react-responsive-modal-root .Toastify__bounce-enter--top-right {
	animation-name: Toastify__bounceInRight;
}

.wpdl2-app-wrapper .Toastify__bounce-enter--top-center, .react-responsive-modal-root .Toastify__bounce-enter--top-center {
	animation-name: Toastify__bounceInDown;
}

.wpdl2-app-wrapper .Toastify__bounce-enter--bottom-center, .react-responsive-modal-root .Toastify__bounce-enter--bottom-center {
	animation-name: Toastify__bounceInUp;
}

.wpdl2-app-wrapper .Toastify__bounce-exit--bottom-left, .react-responsive-modal-root .Toastify__bounce-exit--bottom-left, .wpdl2-app-wrapper .Toastify__bounce-exit--top-left, .react-responsive-modal-root .Toastify__bounce-exit--top-left {
	animation-name: Toastify__bounceOutLeft;
}

.wpdl2-app-wrapper .Toastify__bounce-exit--bottom-right, .react-responsive-modal-root .Toastify__bounce-exit--bottom-right, .wpdl2-app-wrapper .Toastify__bounce-exit--top-right, .react-responsive-modal-root .Toastify__bounce-exit--top-right {
	animation-name: Toastify__bounceOutRight;
}

.wpdl2-app-wrapper .Toastify__bounce-exit--top-center, .react-responsive-modal-root .Toastify__bounce-exit--top-center {
	animation-name: Toastify__bounceOutUp;
}

.wpdl2-app-wrapper .Toastify__bounce-exit--bottom-center, .react-responsive-modal-root .Toastify__bounce-exit--bottom-center {
	animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	50% {
		opacity: 1;
	}
}

@keyframes Toastify__zoomOut {
	0% {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	to {
		opacity: 0;
	}
}

.wpdl2-app-wrapper .Toastify__zoom-enter, .react-responsive-modal-root .Toastify__zoom-enter {
	animation-name: Toastify__zoomIn;
}

.wpdl2-app-wrapper .Toastify__zoom-exit, .react-responsive-modal-root .Toastify__zoom-exit {
	animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
	0% {
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
	
	40% {
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg);
	}
	
	60% {
		opacity: 1;
		transform: perspective(400px) rotateX(10deg);
	}
	
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	
	to {
		transform: perspective(400px);
	}
}

@keyframes Toastify__flipOut {
	0% {
		transform: perspective(400px);
	}
	
	30% {
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg);
	}
	
	to {
		opacity: 0;
		transform: perspective(400px) rotateX(90deg);
	}
}

.wpdl2-app-wrapper .Toastify__flip-enter, .react-responsive-modal-root .Toastify__flip-enter {
	animation-name: Toastify__flipIn;
}

.wpdl2-app-wrapper .Toastify__flip-exit, .react-responsive-modal-root .Toastify__flip-exit {
	animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
	0% {
		transform: translate3d(110%, 0, 0);
		visibility: visible;
	}
	
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInLeft {
	0% {
		transform: translate3d(-110%, 0, 0);
		visibility: visible;
	}
	
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInUp {
	0% {
		transform: translate3d(0, 110%, 0);
		visibility: visible;
	}
	
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideInDown {
	0% {
		transform: translate3d(0, -110%, 0);
		visibility: visible;
	}
	
	to {
		transform: translateZ(0);
	}
}

@keyframes Toastify__slideOutRight {
	0% {
		transform: translateZ(0);
	}
	
	to {
		transform: translate3d(110%, 0, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	
	to {
		transform: translate3d(-110%, 0, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutDown {
	0% {
		transform: translateZ(0);
	}
	
	to {
		transform: translate3d(0, 500px, 0);
		visibility: hidden;
	}
}

@keyframes Toastify__slideOutUp {
	0% {
		transform: translateZ(0);
	}
	
	to {
		transform: translate3d(0, -500px, 0);
		visibility: hidden;
	}
}

.wpdl2-app-wrapper .Toastify__slide-enter--bottom-left, .react-responsive-modal-root .Toastify__slide-enter--bottom-left, .wpdl2-app-wrapper .Toastify__slide-enter--top-left, .react-responsive-modal-root .Toastify__slide-enter--top-left {
	animation-name: Toastify__slideInLeft;
}

.wpdl2-app-wrapper .Toastify__slide-enter--bottom-right, .react-responsive-modal-root .Toastify__slide-enter--bottom-right, .wpdl2-app-wrapper .Toastify__slide-enter--top-right, .react-responsive-modal-root .Toastify__slide-enter--top-right {
	animation-name: Toastify__slideInRight;
}

.wpdl2-app-wrapper .Toastify__slide-enter--top-center, .react-responsive-modal-root .Toastify__slide-enter--top-center {
	animation-name: Toastify__slideInDown;
}

.wpdl2-app-wrapper .Toastify__slide-enter--bottom-center, .react-responsive-modal-root .Toastify__slide-enter--bottom-center {
	animation-name: Toastify__slideInUp;
}

.wpdl2-app-wrapper .Toastify__slide-exit--bottom-left, .react-responsive-modal-root .Toastify__slide-exit--bottom-left, .wpdl2-app-wrapper .Toastify__slide-exit--top-left, .react-responsive-modal-root .Toastify__slide-exit--top-left {
	animation-name: Toastify__slideOutLeft;
}

.wpdl2-app-wrapper .Toastify__slide-exit--bottom-right, .react-responsive-modal-root .Toastify__slide-exit--bottom-right, .wpdl2-app-wrapper .Toastify__slide-exit--top-right, .react-responsive-modal-root .Toastify__slide-exit--top-right {
	animation-name: Toastify__slideOutRight;
}

.wpdl2-app-wrapper .Toastify__slide-exit--top-center, .react-responsive-modal-root .Toastify__slide-exit--top-center {
	animation-name: Toastify__slideOutUp;
}

.wpdl2-app-wrapper .Toastify__slide-exit--bottom-center, .react-responsive-modal-root .Toastify__slide-exit--bottom-center {
	animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
	0% {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(1turn);
	}
}

/*! nouislider - 14.7.0 - 4/6/2021 */

/*! nouislider - 14.7.0 - 4/6/2021 */
.wpdl2-app-wrapper .noUi-target, .react-responsive-modal-root .noUi-target, .wpdl2-app-wrapper .noUi-target *, .react-responsive-modal-root .noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-sizing: border-box;
	touch-action: none;
	-webkit-user-select: none;
	user-select: none;
}

.wpdl2-app-wrapper .noUi-target, .react-responsive-modal-root .noUi-target {
	position: relative;
}

.wpdl2-app-wrapper .noUi-base, .react-responsive-modal-root .noUi-base, .wpdl2-app-wrapper .noUi-connects, .react-responsive-modal-root .noUi-connects {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 1;
}

.wpdl2-app-wrapper .noUi-connects, .react-responsive-modal-root .noUi-connects {
	overflow: hidden;
	z-index: 0;
}

.wpdl2-app-wrapper .noUi-connect, .react-responsive-modal-root .noUi-connect, .wpdl2-app-wrapper .noUi-origin, .react-responsive-modal-root .noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform-style: preserve-3d;
	transform-style: flat;
	will-change: transform;
	z-index: 1;
}

.wpdl2-app-wrapper .noUi-connect, .react-responsive-modal-root .noUi-connect {
	height: 100%;
	width: 100%;
}

.wpdl2-app-wrapper .noUi-origin, .react-responsive-modal-root .noUi-origin {
	height: 10%;
	width: 10%;
}

.wpdl2-app-wrapper .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin, .react-responsive-modal-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
	left: 0;
	right: auto;
}

.wpdl2-app-wrapper .noUi-vertical .noUi-origin, .react-responsive-modal-root .noUi-vertical .noUi-origin {
	width: 0;
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-origin, .react-responsive-modal-root .noUi-horizontal .noUi-origin {
	height: 0;
}

.wpdl2-app-wrapper .noUi-handle, .react-responsive-modal-root .noUi-handle {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
}

.wpdl2-app-wrapper .noUi-touch-area, .react-responsive-modal-root .noUi-touch-area {
	height: 100%;
	width: 100%;
}

.wpdl2-app-wrapper .noUi-state-tap .noUi-connect, .react-responsive-modal-root .noUi-state-tap .noUi-connect, .wpdl2-app-wrapper .noUi-state-tap .noUi-origin, .react-responsive-modal-root .noUi-state-tap .noUi-origin {
	transition: transform .3s;
}

.wpdl2-app-wrapper .noUi-state-drag *, .react-responsive-modal-root .noUi-state-drag * {
	cursor: inherit !important;
}

.wpdl2-app-wrapper .noUi-horizontal, .react-responsive-modal-root .noUi-horizontal {
	height: 18px;
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-handle, .react-responsive-modal-root .noUi-horizontal .noUi-handle {
	height: 28px;
	right: -17px;
	top: -6px;
	width: 34px;
}

.wpdl2-app-wrapper .noUi-vertical, .react-responsive-modal-root .noUi-vertical {
	width: 18px;
}

.wpdl2-app-wrapper .noUi-vertical .noUi-handle, .react-responsive-modal-root .noUi-vertical .noUi-handle {
	height: 34px;
	right: -6px;
	top: -17px;
	width: 28px;
}

.wpdl2-app-wrapper .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle, .react-responsive-modal-root .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
	left: -17px;
	right: auto;
}

.wpdl2-app-wrapper .noUi-target, .react-responsive-modal-root .noUi-target {
	background: #fafafa;
	border: 1px solid #d3d3d3;
	border-radius: 4px;
	box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.wpdl2-app-wrapper .noUi-connects, .react-responsive-modal-root .noUi-connects {
	border-radius: 3px;
}

.wpdl2-app-wrapper .noUi-connect, .react-responsive-modal-root .noUi-connect {
	background: #3fb8af;
}

.wpdl2-app-wrapper .noUi-draggable, .react-responsive-modal-root .noUi-draggable {
	cursor: ew-resize;
}

.wpdl2-app-wrapper .noUi-vertical .noUi-draggable, .react-responsive-modal-root .noUi-vertical .noUi-draggable {
	cursor: ns-resize;
}

.wpdl2-app-wrapper .noUi-handle, .react-responsive-modal-root .noUi-handle {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
	cursor: default;
}

.wpdl2-app-wrapper .noUi-active, .react-responsive-modal-root .noUi-active {
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

.wpdl2-app-wrapper .noUi-handle:after, .react-responsive-modal-root .noUi-handle:after, .wpdl2-app-wrapper .noUi-handle:before, .react-responsive-modal-root .noUi-handle:before {
	background: #e8e7e6;
	content: "";
	display: block;
	height: 14px;
	left: 14px;
	position: absolute;
	top: 6px;
	width: 1px;
}

.wpdl2-app-wrapper .noUi-handle:after, .react-responsive-modal-root .noUi-handle:after {
	left: 17px;
}

.wpdl2-app-wrapper .noUi-vertical .noUi-handle:after, .react-responsive-modal-root .noUi-vertical .noUi-handle:after, .wpdl2-app-wrapper .noUi-vertical .noUi-handle:before, .react-responsive-modal-root .noUi-vertical .noUi-handle:before {
	height: 1px;
	left: 6px;
	top: 14px;
	width: 14px;
}

.wpdl2-app-wrapper .noUi-vertical .noUi-handle:after, .react-responsive-modal-root .noUi-vertical .noUi-handle:after {
	top: 17px;
}

.wpdl2-app-wrapper [disabled] .noUi-connect, .react-responsive-modal-root [disabled] .noUi-connect {
	background: #b8b8b8;
}

.wpdl2-app-wrapper [disabled] .noUi-handle, .react-responsive-modal-root [disabled] .noUi-handle, .wpdl2-app-wrapper [disabled].noUi-handle, .react-responsive-modal-root [disabled].noUi-handle, .wpdl2-app-wrapper [disabled].noUi-target, .react-responsive-modal-root [disabled].noUi-target {
	cursor: not-allowed;
}

.wpdl2-app-wrapper .noUi-pips, .react-responsive-modal-root .noUi-pips, .wpdl2-app-wrapper .noUi-pips *, .react-responsive-modal-root .noUi-pips * {
	box-sizing: border-box;
}

.wpdl2-app-wrapper .noUi-pips, .react-responsive-modal-root .noUi-pips {
	color: #999;
	position: absolute;
}

.wpdl2-app-wrapper .noUi-value, .react-responsive-modal-root .noUi-value {
	position: absolute;
	text-align: center;
	white-space: nowrap;
}

.wpdl2-app-wrapper .noUi-value-sub, .react-responsive-modal-root .noUi-value-sub {
	color: #ccc;
	font-size: 10px;
}

.wpdl2-app-wrapper .noUi-marker, .react-responsive-modal-root .noUi-marker {
	background: #ccc;
	position: absolute;
}

.wpdl2-app-wrapper .noUi-marker-large, .react-responsive-modal-root .noUi-marker-large, .wpdl2-app-wrapper .noUi-marker-sub, .react-responsive-modal-root .noUi-marker-sub {
	background: #aaa;
}

.wpdl2-app-wrapper .noUi-pips-horizontal, .react-responsive-modal-root .noUi-pips-horizontal {
	height: 80px;
	left: 0;
	padding: 10px 0;
	top: 100%;
	width: 100%;
}

.wpdl2-app-wrapper .noUi-value-horizontal, .react-responsive-modal-root .noUi-value-horizontal {
	transform: translate(-50%, 50%);
}

.wpdl2-app-wrapper .noUi-rtl .noUi-value-horizontal, .react-responsive-modal-root .noUi-rtl .noUi-value-horizontal {
	transform: translate(50%, 50%);
}

.wpdl2-app-wrapper .noUi-marker-horizontal.noUi-marker, .react-responsive-modal-root .noUi-marker-horizontal.noUi-marker {
	height: 5px;
	margin-left: -1px;
	width: 2px;
}

.wpdl2-app-wrapper .noUi-marker-horizontal.noUi-marker-sub, .react-responsive-modal-root .noUi-marker-horizontal.noUi-marker-sub {
	height: 10px;
}

.wpdl2-app-wrapper .noUi-marker-horizontal.noUi-marker-large, .react-responsive-modal-root .noUi-marker-horizontal.noUi-marker-large {
	height: 15px;
}

.wpdl2-app-wrapper .noUi-pips-vertical, .react-responsive-modal-root .noUi-pips-vertical {
	height: 100%;
	left: 100%;
	padding: 0 10px;
	top: 0;
}

.wpdl2-app-wrapper .noUi-value-vertical, .react-responsive-modal-root .noUi-value-vertical {
	padding-left: 25px;
	transform: translateY(-50%);
}

.wpdl2-app-wrapper .noUi-rtl .noUi-value-vertical, .react-responsive-modal-root .noUi-rtl .noUi-value-vertical {
	transform: translateY(50%);
}

.wpdl2-app-wrapper .noUi-marker-vertical.noUi-marker, .react-responsive-modal-root .noUi-marker-vertical.noUi-marker {
	height: 2px;
	margin-top: -1px;
	width: 5px;
}

.wpdl2-app-wrapper .noUi-marker-vertical.noUi-marker-sub, .react-responsive-modal-root .noUi-marker-vertical.noUi-marker-sub {
	width: 10px;
}

.wpdl2-app-wrapper .noUi-marker-vertical.noUi-marker-large, .react-responsive-modal-root .noUi-marker-vertical.noUi-marker-large {
	width: 15px;
}

.wpdl2-app-wrapper .noUi-tooltip, .react-responsive-modal-root .noUi-tooltip {
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	color: #000;
	display: block;
	padding: 5px;
	position: absolute;
	text-align: center;
	white-space: nowrap;
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-tooltip, .react-responsive-modal-root .noUi-horizontal .noUi-tooltip {
	bottom: 120%;
	left: 50%;
	transform: translate(-50%);
}

.wpdl2-app-wrapper .noUi-vertical .noUi-tooltip, .react-responsive-modal-root .noUi-vertical .noUi-tooltip {
	right: 120%;
	top: 50%;
	transform: translateY(-50%);
}

.wpdl2-app-wrapper .noUi-horizontal .noUi-origin > .noUi-tooltip, .react-responsive-modal-root .noUi-horizontal .noUi-origin > .noUi-tooltip {
	bottom: 10px;
	left: auto;
	transform: translate(50%);
}

.wpdl2-app-wrapper .noUi-vertical .noUi-origin > .noUi-tooltip, .react-responsive-modal-root .noUi-vertical .noUi-origin > .noUi-tooltip {
	right: 28px;
	top: auto;
	transform: translateY(-18px);
}

.wpdl2-app-wrapper .react-responsive-modal-root, .react-responsive-modal-root {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.wpdl2-app-wrapper .react-responsive-modal-overlay, .react-responsive-modal-root .react-responsive-modal-overlay {
	background: rgba(0, 0, 0, .5);
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: -1;
}

.wpdl2-app-wrapper .react-responsive-modal-container, .react-responsive-modal-root .react-responsive-modal-container {
	height: 100%;
	outline: 0;
	overflow-x: hidden;
	overflow-y: auto;
	text-align: center;
}

.wpdl2-app-wrapper .react-responsive-modal-containerCenter:after, .react-responsive-modal-root .react-responsive-modal-containerCenter:after {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0;
}

.wpdl2-app-wrapper .react-responsive-modal-modal, .react-responsive-modal-root .react-responsive-modal-modal {
	background: #fff;
	box-shadow: 0 12px 15px 0 rgba(0, 0, 0, .25);
	display: inline-block;
	margin: 1.2rem;
	max-width: 800px;
	overflow-y: auto;
	padding: 1.2rem;
	position: relative;
	text-align: left;
	vertical-align: middle;
}

.wpdl2-app-wrapper .react-responsive-modal-closeButton, .react-responsive-modal-root .react-responsive-modal-closeButton {
	background-color: initial;
	border: none;
	cursor: pointer;
	display: flex;
	padding: 0;
	position: absolute;
	right: 14px;
	top: 14px;
}

.wpdl2-app-wrapper .react-responsive-modal-container, .react-responsive-modal-root .react-responsive-modal-container, .wpdl2-app-wrapper .react-responsive-modal-modal, .react-responsive-modal-root .react-responsive-modal-modal, .wpdl2-app-wrapper .react-responsive-modal-overlay, .react-responsive-modal-root .react-responsive-modal-overlay {
	animation-fill-mode: forwards !important;
}

@keyframes react-responsive-modal-overlay-in {
	0% {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes react-responsive-modal-overlay-out {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

@keyframes react-responsive-modal-modal-in {
	0% {
		opacity: 0;
		transform: scale(.96);
	}
	
	to {
		opacity: 1;
		transform: scale(100%);
	}
}

@keyframes react-responsive-modal-modal-out {
	0% {
		opacity: 1;
		transform: scale(100%);
	}
	
	to {
		opacity: 0;
		transform: scale(.96);
	}
}
