<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dp-bottom-panel {
	--grey-text: #6C7380;
	--active-text: #fa5d07;
	--badge-color: #3e3b3b;

	position: fixed;
	margin-bottom: 0px;
	z-index: 10000;
	bottom: 0;
 	width: 100%;
}
.dp-bottom-panel__inner {
	padding: 10px;
	background: #fdfdfd;
	-webkit-box-shadow: 0 1px 12px -6px var(--grey-text);
	box-shadow: 0 1px 12px -6px var(--grey-text);
}
.dp-bottom-panel .demo-module-settings {
	background-color: #fff;
}
.dp-bottom-panel .demo-module-setting__handle {
	margin-left: initial;
	margin-right: auto;
}

.dp-bottom-panel__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.dp-bottom-panel__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 60px;
	max-height: 60px;
	text-align: center;
	position: relative;
}
.dp-bottom-panel__button.active .dp-bottom-panel__text {
	color: var(--active-text);
}
.dp-bottom-panel__link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-o-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.dp-bottom-panel__iconText {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.dp-bottom-panel__link.has-link {
	cursor: pointer;
}
.dp-bottom-panel__link::after {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	content: '';
	opacity: 0;
	pointer-events: none;
	background: rgba(111, 148, 182, 0.5);
}
.dp-bottom-panel__link.nwy--click::after {
	-webkit-animation: anim-effect-mob 0.6s forwards;
					animation: anim-effect-mob 0.6s forwards;
}
.dp-bottom-panel__text {
	color: var(--grey-text);
	font-size: 11px;
	line-height: 16px;
	text-transform: capitalize;
	font-weight: 400;
	margin: 0;
	margin-top: 2px;
	overflow: visible;
}
.dp-bottom-panel__icon img {
	height: 24px;
	width: auto;
}
.dp-bottom-panel__badge {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.dp-bottom-panel__badge .dp-bottom-panel__cartSum {
	display: none;
}
.dp-bottom-panel__badge .badge {
	margin: 0 5px;
}
.dp-bottom-panel .badge-primary {
	background-color: #3a3a3a;
	color: #f1f1f1;
	border-radius: 2px;
}
.dp-bottom-panel__cartSum,
.dp-bottom-panel #cart_items_sum {
	color: var(--active-text);
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}
.dp-bottom-panel #mark_popup_added,
.dp-bottom-panel #mark_bookmarks_popup_added {
	position: absolute;
	bottom: 60px;
	left: 8px;
	background-color: var(--badge-color);
	border-radius: 8px;
	color: #FFF;
	width: 100px;
	height: 30px;
	line-height: 30px;
	z-index: 9999999999999;
	text-align: center;
}
.dp-bottom-panel #mark_popup_added:before,
.dp-bottom-panel #mark_bookmarks_popup_added:before,
.dp-bottom-panel #mark_compare_popup_added:before {
	content: '';
	position: absolute;
	left: 35px;
	bottom: -7px;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top-style: solid;
	border-top-width: 15px;
	border-top-color: var(--badge-color);
	color: var(--badge-color);
	z-index: 99999999999999;
}

@-webkit-keyframes anim-effect-mob {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 1);
            transform: scale3d(0.3, 0.3, 1);
  }
  25%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
  }
}

@keyframes anim-effect-mob {
  0% {
    -webkit-transform: scale3d(0.3, 0.3, 1);
            transform: scale3d(0.3, 0.3, 1);
  }
  25%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
  }
}

@media (max-width: 991px) {
	.dp-bottom-panel__link {
		-ms-touch-action: manipulation;
		touch-action: manipulation;
	}
}

@media (max-width: 560px) {
	.dp-bottom-panel #mark_popup_added,
	.dp-bottom-panel #mark_bookmarks_popup_added {
    left: -35px;
	}
	.dp-bottom-panel__badge {
		display: none;
	}
}

@media (min-width: 992px) {
	.dp-bottom-panel.visible-onMobile {
		display: none;
	}
	.dp-bottom-panel__badge .dp-bottom-panel__cartSum {
		display: block;
	}
	.dp-bottom-panel__button {
		width: auto;
	}
}</pre></body></html>