@charset "UTF-8";
/** colors **/

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.absolute-center {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.bg-cover {
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}

.bg-contain {
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
}

/** colors **/
.text-black {
	color: #000000;
}
.text-darkgray, .text-darkgray-hover:hover {
	color: #303030;
}
.text-lightgray {
	color: #BDBCBC;
}
.text-gray, .text-gray-hover:hover {
	color: #676767;
}
.text-semi-darkgray {
	color: #5C5C5C;
}
.text-light-blue {
	color: #5CABDC;
}
.text-blue, .text-blue-hover:hover {
	color: #409ED6;
}
.text-yellow {
	color: #F5BD2C;
}
.text-green {
	color: #689400 !important;
}
.text-forest-green, .text-forest-green-hover:hover {
	color: #008A00;
}
.text-green-light {
	color: #78A500;
}
.text-green-lighter, .text-green-lighter-hover:hover {
	color: #709A00;
}
.text-danger-red {
	color: #BA3A47;
}
.text-strong-red {
	color: #BB5A57;
}
.text-white {
	color: #FFFFFF;
}
.text-yellow {
	color: #F5BD2C;
}
.text-dark-yellow {
	color: #D4B465;
}
.text-gold {
	color: #D2B464;
}
.text-big {
	font-size: 16px;
	line-height: 1.4;
}
.text-10px {
	font-size: 10px;
}
.text-11px {
	font-size: 11px;
}
.text-small {
	font-size: 12px;
}
.text-13px {
	font-size: 13px;
}
.text-14px {
	font-size: 14px;
}
.text-15px {
	font-size: 15px;
}
.text-medium {
	font-size: 16px;
}
.text-18px {
	font-size: 18px;
}
.text-20px {
	font-size: 20px;
}
.text-large {
	font-size: 22px;
}
.text-24px {
	font-size: 24px;
}
.text-largest {
	font-size: 30px;
}
.text-bigest {
	font-size: 34px;
	line-height: 44px;
}
@media screen and (max-width: 767px) {
	.text-m-12 {
		font-size: 12px;
	}
}
.text-underline {
	text-decoration: underline;
}
.text-none, .text-none-hover:hover {
	text-decoration: none;
}

.font-bold {
	font-weight: bold;
}

.font-normal {
	font-weight: normal;
}

.whitespace-nowrap {
	white-space: nowrap;
}

.line-height-0 {
	line-height: 0;
}

.line-height-1 {
	line-height: 1;
}

.line-height-1-2 {
	line-height: 1.2;
}

.line-height-1-4 {
	line-height: 1.4;
}

.bg-white {
	background-color: #FFFFFF;
}
.bg-lightgray, .bg-lightgray-focus:focus, .bg-lightgray-hover:hover {
	background-color: #F2F2F2;
}
.bg-gray, .bg-gray-hover:hover {
	background-color: #E7E7E7;
}
.bg-darkgray, .bg-darkgray-hover:hover {
	background-color: #303030;
}
.bg-light-yellow {
	background-color: #FFFAE9;
}
.bg-forest-green {
	background-color: #008A00;
}
.bg-blue {
	background-color: #409ED6;
}
.bg-light-blue {
	background-color: #5CABDC;
}

.line-through {
	text-decoration: line-through;
}

.opacity-5 {
	opacity: 0.5;
}
.opacity-10 {
	opacity: 1;
}

.btn svg {
	width: 18px;
	height: 18px;
}

.primary-btn svg, .secondary-btn svg {
	fill: #FFF;
}

.d-none-320 {
	display: none;
}

.d-none-425 {
	display: block;
}

@media screen and (min-width: 424px) {
	.d-none-425 {
		display: none;
	}
	
	.d-none-320 {
		display: block;
	}
}
.primary-btn {
	color: #FFF;
	background: transparent linear-gradient(180deg, #61B7EA 0%, #519DCB 100%) 0 0 no-repeat padding-box;
	border: 0px solid transparent;
}
.primary-btn:hover {
	background: transparent linear-gradient(180deg, #54A3D3 0%, #468DB7 100%) 0 0 no-repeat padding-box;
}

.secondary-btn {
	background: transparent;
	color: #303030;
	border: 1px solid rgba(48, 48, 48, 0.5);
}
.secondary-btn:hover {
	color: #FFFFFF;
	border: 1px solid transparent;
	background: transparent linear-gradient(180deg, #61B7EA 0%, #519DCB 100%) 0% 0% no-repeat padding-box;
}
.secondary-btn:hover svg {
	fill: #FFFFFF;
}
.secondary-btn svg {
	fill: #676767;
}

.btn-blue svg {
	fill: #FFF;
}

.mx-30 {
	margin: 0 30px;
}
.mx-minus-30 {
	margin: 0 -30px;
}
.my-10 {
	margin: 10px 0;
}
.my-30 {
	margin: 30px 0;
}
.mt-10 {
	margin-top: 10px;
}
.mt-15 {
	margin-top: 15px;
}
.mt-40 {
	margin-top: 40px;
}
.mr-10 {
	margin-right: 10px;
}
.mr-20 {
	margin-right: 20px;
}
.mr-100 {
	margin-right: 100px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-15 {
	margin-bottom: 15px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mr-30 {
	margin-right: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-60 {
	margin-bottom: 60px;
}
.ml-10 {
	margin-left: 10px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-30 {
	margin-top: 30px;
}
.ml-30 {
	margin-left: 30px;
}

.py-5px {
	padding-top: 5px;
	padding-bottom: 5px;
}
.p-10 {
	padding: 10px;
}
.p-15 {
	padding: 15px;
}
.p-20 {
	padding: 20px;
}
.px-10 {
	padding-left: 10px;
	padding-right: 10px;
}
.px-15 {
	padding-left: 15px;
	padding-right: 15px;
}
.px-20 {
	padding-left: 20px;
	padding-right: 20px;
}
.px-30 {
	padding-left: 30px;
	padding-right: 30px;
}
.px-40 {
	padding-left: 40px;
	padding-right: 40px;
}
.py-8 {
	padding-top: 8px;
	padding-bottom: 8px;
}
.py-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.py-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.py-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.pt-10 {
	padding-top: 10px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pt-15 {
	padding-top: 15px;
}
.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pl-30 {
	padding-left: 30px;
}
.pl-35 {
	padding-left: 35px;
}
.pt-40 {
	padding-top: 40px;
}
.pb-15 {
	padding-bottom: 15px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px !important;
}
.pb-40 {
	padding-bottom: 40px;
}
.pr-50 {
	padding-right: 50px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pl-20 {
	padding-left: 20px;
}
.pt-60 {
	padding-top: 60px;
}
.pl-60 {
	padding-left: 60px;
}

.border-top {
	border-top-style: solid !important;
}
.border-4 {
	border-width: 4px !important;
}
.border-5 {
	border-width: 5px !important;
}
.border-light-gray {
	border-color: #F2F2F2 !important;
}
.border-dark-gray {
	border-color: #303030 !important;
}
.border-gold {
	border-color: #D2B464 !important;
}
.border-red {
	border-color: #BA3A47 !important;
}
.border-strong-red {
	border-color: #BB5A57 !important;
}
.border-blue {
	border-color: #409ED6 !important;
}
.border-dark-yellow {
	border-color: #D4B465 !important;
}
.border-top-muted {
	border-top: 1px solid #DCDCDC;
}
.border-bottom-muted {
	border-bottom: 1px solid #DCDCDC;
}
.border-left-muted {
	border-left: 1px solid #DCDCDC;
}
.border-right-muted {
	border-right: 1px solid #DCDCDC;
}

@media screen and (max-width: 767.98px) {
	.border-xs-none {
		border: none !important;
	}
}
.flex-grow {
	flex-grow: 1;
}

.flex-grow-equal {
	flex-grow: 1;
	width: 0;
}

.justify-content-evenly {
	justify-content: space-evenly;
}

.transform-mirrow-x {
	transform: scale(-1, 1);
}

.separator {
	width: 100%;
	height: 1px;
	background: #DCDCDC;
}

.top-0 {
	top: 0;
}

.right-0 {
	right: 0;
}

.bottom-0 {
	bottom: 0;
}

.left-0 {
	left: 0;
}

.z-100 {
	z-index: 100;
}

.z-1000 {
	z-index: 1000 !important;
}

.width-min {
	width: min-content;
}

.width-max {
	width: max-content;
}

.w-15 {
	width: 15%;
}

.min-width-max {
	min-width: max-content;
}

.h-3rem {
	height: 3rem;
}

.cursor-pointer {
	cursor: pointer;
}

.list-styles {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pointer-events-none {
	pointer-events: none;
}

.img-inset-shadow {
	position: relative;
}
.img-inset-shadow::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	-webkit-box-shadow: inset -3px 2px 6px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: inset -3px 2px 6px rgba(0, 0, 0, 0.2);
	box-shadow: inset -3px 2px 6px rgba(0, 0, 0, 0.2);
}

.owl-dots .owl-dot span {
	background-color: #DCDCDC !important;
}

.owl-dots .owl-dot:hover span,
.owl-dots .owl-dot.active span {
	background-color: #409ED6 !important;
}

textarea.input-white,
input.input-white,
select.input-white {
	background-color: #FFFFFF !important;
	border: 1px solid #DCDCDC !important;
}

textarea.input-white:focus,
input.input-white:focus {
	background-color: #FFFFFF !important;
	border: 1px solid #DCDCDC !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.btn-arrow-right {
	position: relative;
	padding-right: 40px;
}
.btn-arrow-right:before {
	content: "";
	border: solid #FFFFFF;
	border-width: 0 2px 2px 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	position: absolute;
	right: 20px;
	top: 12px;
	transform: rotate(-45deg);
}
@media screen and (max-width: 767.98px) {
	.btn-arrow-right--mob-notext {
		font-size: 0;
		padding: 0 17px;
	}
	
	.btn-arrow-right--mob-notext:before {
		right: 14px;
	}
}

.btn-arrow-left {
	position: relative;
	padding-left: 40px;
}
.btn-arrow-left:before {
	content: "";
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 20px;
	top: 12px;
	transform: rotate(135deg);
}
@media screen and (max-width: 767.98px) {
	.btn-arrow-left--mob-notext {
		font-size: 0;
		padding: 0 17px;
	}
	
	.btn-arrow-left--mob-notext:before {
		left: 24px;
		color:white !important;
		border-color:white !important;
	}
}

.btn-arrow {
	padding: 0 14px;
}

.btn-arrow:hover {
	padding: 0 14px;
}

@media screen and (max-width: 767.98px) {
	.btn-arrow svg {
		width: 16px;
	}
}
.btn-gray {
	background-image: linear-gradient(#FAFAFA, #ECECEC);
	border: 1px solid #DCDCDC;
	color: #409ED6;
}
.btn-gray:before {
	color: #676767;
}
.btn-gray:after {
	color: #676767;
}
.btn-gray:hover {
	border: 1px solid #DCDCDC;
	color: #409ED6;
	background-image: linear-gradient(#F4F4F4, #E4E4E4);
	text-shadow: none;
}
.btn-gray:hover svg {
	fill: #676767;
}

.btn-gold {
	border: 1px solid #D1AB00;
	background-color: #FEE454;
	background-image: linear-gradient(#FEE454, #FAB31E);
	border-radius: 0;
}
.btn-gold:hover {
	background-color: #FAB31E;
	background-image: linear-gradient(#FAB31E, #FEE454);
}
.btn-gold--noborder {
	border: none;
}

.btn-transparent {
	background-color: #FFFFFF;
	border: 1px solid #DCDCDC;
	color: #676767;
}
.btn-transparent:before {
	color: #676767;
}
.btn-transparent:after {
	color: #676767;
}
.btn-transparent:hover {
	border: 1px solid #DCDCDC;
}

.btn-check {
	text-align: center;
	color: #303030;
}
.btn-check:before {
	content: "";
	font-family: fontIcon, serif !important;
	width: 27px;
	height: 27px;
	font-size: 12px;
	color: #FFFFFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #409ED6;
	border-radius: 50%;
	margin-right: 15px;
}
.btn-check:hover {
	color: #303030;
	text-decoration: none;
}

.btn-lg {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	height: auto;
}

.btn-50 {
	height: 54px;
}

.btn-close {
	position: absolute;
	right: 24px;
	top: 24px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	opacity: 1 !important;
}

.btn-close:before {
	position: absolute;
	left: 15px;
	top: 5px;
	content: "";
	font-size: 16px;
	color: #676767;
	background-image: url("../images/x-circle-dark.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 16px;
	height: 16px;
	display: block;
	font-weight: 100;
}

.btn-close--small:before {
	width: 10px;
	height: 10px;
	right: 10px;
	top: 10px;
}

.btn-close--medium {
	width: 10px;
	height: 10px;
	right: 0;
	top: 0;
}
.btn-close--medium:before, .btn-close--medium:after {
	width: 11px;
	height: 11px;
	left: auto;
	top: 0;
	position: static;
}

.btn-close--30 {
	right: 38px;
	top: 39px;
}

@media screen and (max-width: 767.98px) {
	.btn-close {
		right: 35px;
		top: 28px;
	}
	
	.modal-content button.btn-close {
		right: 19px;
		top: 16px;
		z-index: 50;
	}
	
	.btn-close--medium {
		right: 21px;
		top: 21px;
		float: right;
		position: static;
	}
}
.modal-content button.btn-close--old {
	opacity: 1 !important;
	position: absolute;
	top: -16px;
	right: -16px;
	z-index: 1200;
}
.modal-content button.btn-close--old:before {
	content: "";
	display: block;
	background-image: url("../images/fancybox_sprite.png");
	width: 36px;
	height: 36px;
}

.modal-content button.btn-close--old-square {
	opacity: 1 !important;
	background-color: #FFF !important;
	text-align: center;
	width: 30px;
	height: 30px;
	position: absolute;
	top: -15px;
	right: -15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	z-index: 1200;
}
.modal-content button.btn-close--old-square:before {
	content: "x";
	font-size: 22px;
	font-weight: 700;
	line-height: 0;
	color: #000;
	text-shadow: 0 1px 0 #FFF;
	position: absolute;
	top: 14px;
	left: 10px;
}
.modal-content button.btn-close--old-square:hover {
	background-color: #000 !important;
}
.modal-content button.btn-close--old-square:hover:before {
	color: #FFF;
}

.btn-saves {
	background-image: url("../images/icon_safe.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 2px;
	width: 35px;
	height: 35px;
	display: inline-block;
}
.btn-saves:before {
	content: "";
	width: 100%;
	height: 100%;
}

.edit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	z-index: 1;
	background: rgba(224, 224, 224, 0.8);
	cursor: pointer;
}
.edit-btn:after {
	content: "";
	font-family: "ds" !important;
	font-size: 12px;
}
.edit-btn.active {
	box-shadow: 0 0 0 3px #F5BD2C;
}
.edit-btn--transparent {
	width: auto;
	height: auto;
	background: transparent;
}
.edit-btn--old {
	cursor: pointer;
}
.edit-btn--old:after {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../images/icon_edit_old.png");
}

.btn-large-old {
	height: 44px;
	line-height: 44px;
	border-radius: 4.4px;
	font-size: 18px;
	padding: 0 17px;
}

.back-button__arrow--left:before {
	color: #303030;
	content: "";
	font-family: "ds";
	position: absolute;
	top: -4px;
	left: -29px;
	font-size: 16px;
}
.back-button__arrow--small {
	padding-left: 23px;
}
.back-button__arrow--small:before {
	font-size: 9px;
	left: 0;
	top: 1px;
}
@media screen and (max-width: 767.98px) {
	.back-button__arrow--left {
		font-size: 12px;
	}
}

.modal-standart .back-button + .modal-title {
	padding-right: 0;
}

.forward-button__arrow--right:before {
	font-family: "ds" !important;
	content: "";
	position: absolute;
	top: -3px;
	right: -29px;
	transform: rotate(180deg);
}
.forward-button__arrow--right-edit:before {
	font-family: "ds" !important;
	content: "";
	position: absolute;
	top: -3px;
	right: -29px;
	transform: rotate(0deg);
}
.forward-button__arrow--small {
	font-size: 12px;
	padding-right: 23px;
}
.forward-button__arrow--small:before {
	left: 0;
	top: -3px;
}
@media screen and (max-width: 767.98px) {
	.forward-button__arrow--left {
		font-size: 12px;
	}
}

.primary-btn .icon-menu_arrow,
.secondary-btn .icon-menu_arrow {
	margin-top: 1px;
}

.popover {
	max-width: 100%;
	border: none;
	box-shadow: 0 0 15px #00000026;
	border-radius: 0;
}

.popover-header {
	padding: 10px;
	background-color: #FFFFFF;
	border-bottom: 0;
	border-bottom-left-radius: calc(.3rem - 1px);
	border-bottom-right-radius: calc(.3rem - 1px);
}

.popover-body {
	padding: 0;
	font-weight: bold;
	box-shadow: none;
}

.bs-popover-auto[x-placement^=bottom] > .arrow, .bs-popover-bottom > .arrow {
	box-shadow: 2px -2px 14px 1px #676767;
	height: 0;
}

.bs-popover-auto[x-placement^=bottom] > .arrow::before, .bs-popover-bottom > .arrow::before {
	border-top-color: transparent;
	top: -6px;
	border-width: 0 15px 15px 15px;
	border-bottom-color: #FFFFFF;
	margin-left: -5px;
}

.bs-popover-auto[x-placement^=top] > .arrow::before, .bs-popover-top > .arrow::before {
	border-top-color: transparent;
	box-shadow: 2px 7px 11px -2px #676767;
}

.bs-popover-auto[x-placement^=right] > .arrow::before, .bs-popover-right > .arrow::before {
	border-right-color: #FFF;
	right: -1px;
}

.bs-popover-auto[x-placement^=right] > .arrow::after, .bs-popover-right > .arrow::after {
	bottom: -5px;
	margin-left: -5px;
	border-width: 15px 15px 0;
}

.bs-popover-auto[x-placement^=right], .bs-popover-right {
	box-shadow: -4px 2px 36px -5px #00000026;
}

.bs-popover-auto[x-placement^=bottom] > .arrow::after, .bs-popover-bottom > .arrow::after {
	bottom: -5px;
	margin-left: -5px;
	border-width: 15px 15px 0;
}

.bs-popover-auto[x-placement^=top] > .arrow::after, .bs-popover-top > .arrow::after {
	bottom: -5px;
	margin-left: -5px;
	border-width: 15px 15px 0;
}

.tooltip-right {
	border: none !important;
	outline: none !important;
	display: inline-block;
}

.tooltip-big {
	border: none !important;
	outline: none !important;
	display: inline-block;
}

.tooltip-big-content {
	display: none;
}
.tooltip-big-content-in {
	max-width: 600px;
	padding: 20px;
}
.tooltip-big-content-in h4 {
	margin-top: 20px;
	color: #5C5C5C;
}
.tooltip-big-content-in p {
	color: #303030;
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
	line-height: 1.4;
}
.tooltip-big-content-in p:last-child {
	margin-bottom: 0;
}
.tooltip-big-content-in--large {
	max-width: 460px;
}
.tooltip-big-content-in--big {
	max-width: 345px;
}
.tooltip-big-content-in--medium {
	max-width: 300px;
}
.tooltip-big-content-in--small {
	max-width: 150px;
}
@media screen and (max-width: 600px) {
	.tooltip-big-content-in {
		max-width: 400px;
	}
}
@media screen and (max-width: 424px) {
	.tooltip-big-content-in {
		max-width: 300px;
	}
}

.tooltip-bestprice {
	display: none;
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1.4;
	border-style: solid;
	border-width: 0 0 44px 44px;
	border-color: transparent transparent #F5BD2C transparent;
}
.tooltip-bestprice-star:before {
	font-family: "ds" !important;
	content: "";
	position: absolute;
	top: 22px;
	left: -20px;
	font-size: 12px;
	color: #FFFFFF;
}
.tooltip-bestprice-txt {
	position: absolute;
	right: 0;
	bottom: -73px;
}

.bestprice .tooltip-bestprice {
	display: block;
}

.tooltip-title-img__title {
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	padding: 6px 12px;
	background-color: #FFF;
	margin-top: 0;
}

.popover {
	border-radius: 4px;
}

@media screen and (max-width: 767.98px) {
	.popover {
		border-radius: 0;
	}
}
.select-tab__select-list-item {
	padding: 12px;
	display: inline-block;
}
.select-tab__select-list-item-title {
	margin-bottom: 5px;
}
.select-tab__select-list-item-val input {
	max-width: 126px;
}
.select-tab__select-list a {
	cursor: auto;
}
.select-tab__select-list a:hover .select-list__title {
	font-weight: bold;
}
@media screen and (max-width: 767.98px) {
	.select-tab__select-list {
		padding-top: 30px;
	}
	
	.select-tab__select-list-item {
		display: none;
	}
	
	.select-tab__select-list-item.active {
		display: inline-block;
	}
}
.select-tab__top-select-list-item {
	display: none;
}
.select-tab__top-select-list-item.active {
	display: inline-block;
	width: 100%;
}
.select-tab .select-list__title {
	padding-left: 15px;
}
.select-tab .select-list__select select {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.select-tab .select-list__select-i {
	content: "";
	font-family: fontIcon, serif !important;
	border: 1px solid #DCDCDC;
	border-left: none;
	padding: 3px;
	color: #409ED6;
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.select-tab__mob-tab {
	display: none;
}
@media screen and (max-width: 767.98px) {
	.select-tab__mob-tab {
		display: block;
	}
	
	.select-tab__mob-tab-in {
		background-color: #F2F2F2;
	}
	
	.select-tab__mob-tab-items {
		overflow-x: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
		padding: 7px 0;
	}
	
	.select-tab__mob-tab-items::-webkit-scrollbar {
		display: none;
	}
	
	.select-tab__mob-tab-items:after {
		content: "..";
		color: transparent;
		width: 10px;
	}
	
	.select-tab__mob-tab-item {
		color: #303030;
		background-color: #FFFFFF;
		box-shadow: 0 3px 6px #00000029;
		border-radius: 4px;
		margin-right: 5px;
		padding: 5px 10px;
		white-space: nowrap;
	}
	
	.select-tab__mob-tab-item.active {
		color: #FFFFFF;
		background-color: #303030;
	}
	
	.select-tab__mob-tab-item:first-child {
		margin-left: 15px;
	}
}

.custom-tabs-old__switcher-btn {
	cursor: pointer;
}
.custom-tabs-old__switcher-btn-img {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	width: 42px;
	height: 42px;
}
.custom-tabs-old__switcher-btn-img-in {
	width: 100%;
	height: 100%;
	box-shadow: inset 1px 2px 12px #303030;
	border-radius: 50%;
}
.custom-tabs-old__switcher-btn.active .wardrobe__switcher-btn-img {
	box-shadow: 0 0 0 3px #F5BD2C;
}
.custom-tabs-old__switcher-btn.active .wardrobe__switcher-btn-text:after {
	content: "";
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
	position: absolute;
	background-color: #F5BD2C;
}
.custom-tabs-old__switcher-btn-old {
	color: #409ED6;
	padding: 0;
	position: relative;
}
.custom-tabs-old__switcher-btn-old .custom-tabs-old__switcher-btn-img {
	width: 56px;
	height: 56px;
	border: 3px solid transparent;
	border-radius: 100%;
	text-align: center;
	box-shadow: inset -3px 2px 6px rgba(0, 0, 0, 0.2);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
.custom-tabs-old__switcher-btn-old .custom-tabs-old__switcher-btn-img .custom-tabs-old__switcher-btn-img-in {
	box-shadow: none;
}
.custom-tabs-old__switcher-btn-old.nav-link.active {
	color: #303030;
}
.custom-tabs-old__switcher-btn-old.active .custom-tabs-old__switcher-btn-img {
	box-shadow: none;
	border: 3px solid #F5BD2C;
}
.custom-tabs-old__switcher-btn-old.active:after {
	width: 15px;
	height: 15px;
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(225deg);
	bottom: -28px;
	background: #F5F5F5;
	border-right: 1px solid #DEE2E6;
	border-bottom: 1px solid #DEE2E6;
	clear: both;
	z-index: 100;
}
.custom-tabs-old-simple.active:after {
	background: #FFFFFF;
}
.custom-tabs-old__switch-tabs-nav {
	position: relative;
	background-color: #F5F5F5;
	padding-top: 9px;
}
.custom-tabs-old__switch-tabs-nav.nav-tabs .nav-link {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid transparent;
	padding-bottom: 9px;
}
.custom-tabs-old__switch-tabs-nav.nav-tabs .nav-link.disabled {
	color: #BDBCBC;
}
.custom-tabs-old__switch-tabs-nav.nav-tabs .nav-link.active {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #F5BD2C;
	background-color: transparent;
	color: #303030;
}
.custom-tabs-old__switch-tabs-nav.nav-tabs .nav-link:hover {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: none;
	color: #409ED6;
}
.custom-tabs-old__switch-tabs-nav.nav-tabs .nav-link.active:hover {
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 2px solid #F5BD2C;
	background-color: transparent;
	color: #303030;
}

.tab-content__tab {
	display: none;
}
.tab-content__tab .active {
	display: block;
}

.select-custom {
	position: relative;
}
.select-custom-cur {
	border: 1px solid #DCDCDC;
	cursor: pointer;
	z-index: 600;
	padding: 6px 40px 6px 6px;
	position: relative;
}
.select-custom-cur:after {
	content: "";
	border: solid #676767;
	border-width: 0 1px 1px 0;
	display: inline-block;
	width: 7px;
	height: 7px;
	position: absolute;
	right: 17px;
	top: 12px;
	transform: rotate(45deg);
}
.select-custom-drop {
	display: none;
	width: 100%;
	padding: 2px 6px;
	border: 1px solid #DCDCDC;
	background: #F8F8F8;
	position: absolute;
	top: 34px;
	left: 0;
}
.select-custom-val {
	display: block;
}

.custom-select--mod {
	padding: 10px 40px 10px 20px;
	line-height: inherit;
	background: #FFF url("../images/icon_down.png") no-repeat right 8px center;
	webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 35px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
	.custom-select--mod {
		padding: 0px 30px 0px 10px;
	}
}

.custom-select--mod::-ms-expand {
	display: none;
}

.custom-select--num {
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-select--num-min {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 35px;
	border: 1px solid #DCDCDC;
	border-right: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	font-size: 0;
	color: #BDBCBC;
}
.custom-select--num-min:before {
	content: "";
	font-family: "ds";
	font-size: 10px;
}
.custom-select--num-max {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 35px;
	border: 1px solid #DCDCDC;
	border-left: none;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	font-size: 0;
	color: #BDBCBC;
}
.custom-select--num-max:before {
	content: "";
	font-family: "ds";
	font-size: 10px;
}
.custom-select--num-center {
	position: relative;
	width: 57px;
}
.custom-select--num-center.active .custom-select--num-drop {
	display: block;
}
.custom-select--num-input {
	height: 35px;
	line-height: 35px;
	padding-top: 0;
	padding-bottom: 0;
	border: 1px solid #DCDCDC;
	color: #303030;
	-moz-appearance: textfield;
	width: 100%;
	text-align: center;
	font-size: 16px;
	outline: none !important;
}
.custom-select--num-drop {
	display: none;
	position: absolute;
	bottom: 34px;
	width: 100%;
	height: 125px;
	overflow-y: scroll;
	border: 1px solid #DCDCDC;
	-webkit-box-shadow: 0px -10px 27px -7px rgba(0, 0, 0, 0.23);
	box-shadow: 0px -10px 27px -7px rgba(0, 0, 0, 0.23);
	text-align: center;
	color: #303030;
	font-size: 16px;
	background-color: #FFFFFF;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	z-index: 4;
}
.custom-select--num-drop-item {
	padding: 9px 0;
}
.custom-select--num-drop-item:hover, .custom-select--num-drop-item.active {
	background-color: #F2F2F2;
}

.custom_nice_select--small {
	height: 27px;
	padding-left: 9px;
	padding-right: 30px;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 25px;
	text-align-last: right;
	direction: rtl;
}

.nice-select.custom-select--small {
	height: 29px;
	line-height: 17px;
	width: auto;
	min-width: 68px;
}
.nice-select.custom-select--small:after {
	right: 18px;
	top: 11px;
}

.nice-select.nav-steps-switch-select {
	width: calc(100% - 110px);
}
.nice-select.nav-steps-switch-select .current {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: pre;
	padding-right: 20px;
}
.nice-select.nav-steps-switch-select .option {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: pre;
	display: block;
}

@media screen and (max-width: 424px) {
	.nice-select.nav-steps-switch-select .list {
		width: calc(100% + 110px);
		left: -56px;
	}
}
.select-old {
	width: 63px !important;
	margin-left: 15px;
	padding-left: 4px;
	padding-right: 4px;
	background: #FFF url(../images/icon_down.png) no-repeat right 1px center;
}

/** colors **/
.accordion-module.accordion-small .btn-link {
	font-size: 16px;
}
.accordion-module.accordion-big .btn-link {
	font-size: 20px;
	font-weight: normal;
}
.accordion-module .card {
	border: 0;
}
.accordion-module .card:first-child {
	margin-top: 0;
}
.accordion-module .card-header {
	background-color: #F2F2F2;
	border-bottom: 0;
}
.accordion-module .card-header button {
	padding: 18px 25px 18px 20px;
}
.accordion-module .card-header button:after {
	display: inline-block;
	font-family: fontIcon, serif !important;
	content: "";
	position: absolute;
	top: 32px;
	right: 20px;
	width: 17px;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: #BDBCBC;
}
.accordion-module .card-header .accordion-title {
	padding: 18px 47px 18px 20px;
	border-radius: 0;
	height: auto;
	line-height: 22px;
}
.accordion-module .card-header .accordion-title:after {
	font-size: 16px;
}
.accordion-module .card-header.is--active button:after {
	content: "";
}
.accordion-module .card-body {
	padding: 0 20px 22px 20px;
	background-color: #F2F2F2;
}
.accordion-module .btn-link {
	color: #303030;
	font-weight: bold;
	padding: 0;
	border: 0;
}
.accordion-module .btn-link:hover {
	text-decoration: none;
}
.accordion-module .btn-link:focus {
	text-decoration: none;
}

@media screen and (max-width: 767.98px) {
	.accordion-mobile__item {
		justify-content: flex-start;
	}
	
	.accordion-mobile__item .title-text {
		border-bottom: 1px solid #DCDBD9;
	}
	
	.accordion-mobile__item .title {
		position: relative;
		padding: 10px 0;
	}
	
	.accordion-mobile__item .title:after {
		content: "";
		border: solid #676767;
		border-width: 0 1px 1px 0;
		display: inline-block;
		width: 7px;
		height: 7px;
		position: absolute;
		right: 17px;
		top: 19px;
		transition: 0.5s all;
		transform: rotate(45deg);
	}
	
	.accordion-mobile__item .text {
		padding-bottom: 20px;
		display: none;
	}
	
	.accordion-mobile__item.active .title:after {
		transform: rotate(-135deg);
	}
}

.loader {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(48, 48, 48, 0.75);
	z-index: 200;
}
.loader .loader-popup {
	display: inline-block;
	padding: 40px;
	background: #FFF;
	border-radius: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loader .loader-popup p {
	color: #303030;
	font-size: 30px;
	text-align: center;
}
.loader .lds-ring {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 16px;
}
.loader .lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 6px;
	border: 6px solid #409ED6;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #409ED6 transparent transparent transparent;
}
.loader .lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.loader .lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.loader .lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}
@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.config-bills-slider_filter .config-category-slider {
	padding-left: 0;
}

.config-bills-slider_filter .filter_link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 12px 2px 13px;
	border: 1px solid #D8D8D8;
	box-shadow: 0 3px 6px #00000029;
	background-color: #FFF;
	border-radius: 4px;
	height: 29px;
	line-height: 29px;
	color: #303030;
}

.config-bills-slider_filter .filter_link:hover {
	text-decoration: none;
}

.config-bills-slider_filter .filter_link.active {
	color: #FFF;
	background-color: #303030;
}

.tab-pane_filter {
	display: none;
}

.tab-content_filter > .active {
	display: block;
}

.config-sticky {
	height: 100%;
	position: sticky;
	top: 0;
	background: #FFF;
	margin-bottom: 10px;
	box-shadow: -7.5px 0 15px rgba(0, 0, 0, 0.16);
}
@media all and (min-width: 991px) {
	.config-sticky {
		padding-right: 0;
		padding-left: 0;
	}
}
@media all and (max-width: 991px) {
	.config-sticky {
		position: relative;
		height: auto !important;
		box-shadow: none;
	}
}

.config-desktop {
	position: relative;
	background: #FFF;
}
@media all and (max-width: 992px) {
	.config-desktop {
		height: auto !important;
	}
}
.config-desktop .tab-pane {
	min-height: auto;
	overflow-x: hidden;
	overflow-y: auto;
}
@media all and (max-width: 991px) {
	.config-desktop .tab-pane {
		height: auto !important;
		max-height: 400px;
	}
}
@media all and (max-width: 991px) {
	.config-desktop .tab-pane#material {
		overflow: inherit;
	}
}
.config-desktop .thickness-block {
	padding: 0 15px;
}
.config-desktop .thickness-block label {
	font-size: 14px;
	line-height: 1.4;
	color: #303030;
	font-weight: bold;
	margin-bottom: 0;
	margin-right: 30px;
}
.config-desktop .config-desktop-header {
	background-color: #F2F2F2;
	height: 47px;
	display: flex;
	align-items: center;
	padding-left: 15px;
	cursor: pointer;
}
@media all and (max-width: 992px) {
	.config-desktop .config-desktop-header {
		display: none;
	}
}
.config-desktop .config-desktop-header .btn {
	color: #409ED6;
	font-size: 14px;
	margin-bottom: 0;
	padding: 0;
}
.config-desktop .config-desktop-header .btn:hover {
	text-decoration: underline;
}
.config-desktop .config-desktop-header img {
	margin-right: 10px;
}
@media all and (max-width: 992px) {
	.config-desktop .tabs-desktop {
		display: none;
	}
}
.config-desktop .tabs-desktop .hyphens {
	-webkit-hyphens: manual;
	-ms-hyphens: manual;
	hyphens: manual;
}
.config-desktop .nav-tabs .nav-item {
	width: calc(100% / 4);
}
.config-desktop .nav-tabs .nav-link {
	background-color: #F2F2F2;
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 75px;
	font-size: 12px;
	font-weight: bold;
	color: #303030;
	justify-content: center;
	text-align: center;
	border-radius: 0;
	border: 1px solid #DCDCDC;
	border-bottom: 0;
	width: 100%;
	border-left: 0;
}
.config-desktop .nav-tabs .nav-link.active {
	background-color: #FFF;
}
.config-desktop .body-dimensions {
	padding: 0 15px;
}
.config-desktop .body-dimensions .body-dimensions-header {
	color: #676767;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.config-desktop .body-dimensions textarea {
	padding: 10px 10px 0;
	font-size: 14px;
	line-height: 19.6px;
	border: 1px solid #303030;
}
.config-desktop .body-dimensions::-webkit-input-placeholder {
	/* Edge */
	color: rgba(103, 103, 103, 0.6) !important;
	opacity: 1 !important;
}
.config-desktop .body-dimensions:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: rgba(103, 103, 103, 0.6) !important;
	opacity: 1 !important;
}
.config-desktop .body-dimensions::placeholder {
	color: rgba(103, 103, 103, 0.6) !important;
	opacity: 1 !important;
}
.config-desktop .sliders {
	margin-top: 20px;
	padding: 0 15px;
}
.config-desktop .sliders h3 {
	margin-bottom: 0;
	font-size: 14px;
	color: #303030;
	font-weight: bold;
}
.config-desktop .config-bills-slider .nav-link,
.config-desktop .config-bills-slider__mobile .nav-link {
	font-size: 12px;
	font-weight: bold;
	padding-right: 12px;
	padding-left: 13px;
	border: 1px solid #D8D8D8;
	padding-top: 5px;
	box-shadow: 0 3px 6px #00000029;
}
.config-desktop .config-bills-slider__mobile {
	padding-left: 0;
	border: none;
	box-shadow: none;
	margin-left: -15px;
	margin-right: -15px;
	background: #F2F2F2;
}
@media all and (min-width: 991px) {
	.config-desktop .config-bills-slider__mobile {
		display: none;
	}
}
.config-desktop .config-bills-slider__mobile .config-category-slider {
	background: #F2F2F2;
}
@media all and (min-width: 991px) {
	.config-desktop .only-mobile {
		display: none;
	}
}
@media all and (max-width: 991px) {
	.config-desktop .only-desktop {
		display: none;
	}
}
.config-desktop .decor-item {
	cursor: pointer;
}
.config-desktop .decor-item img {
	width: 100% !important;
	height: auto;
}
.config-desktop .decor-item:hover:after {
	display: block;
}
.config-desktop .d-grid-3-items .is--feature:before {
	width: 40px;
	height: 40px;
	background-size: 40px;
}
.config-desktop .filter-btn {
	font-size: 12px;
	text-decoration: underline;
	float: right;
	height: auto;
	line-height: unset;
	margin-top: 4px;
	color: #303030;
}
.config-desktop .filter-btn img {
	width: 21px;
	margin-right: 7px;
}
.config-desktop .config-bills-slider {
	display: none;
	padding-left: 0;
}
.config-desktop .color-filter-overlay.is--open {
	-webkit-transform: translate(0) !important;
	-moz-transform: translate(0) !important;
	-o-transform: translate(0) !important;
	transform: translate(0) !important;
}
.config-desktop .config-category-slider {
	background-color: #FFF;
	padding-left: 15px;
}
.config-desktop .white-border {
	position: relative;
}
.config-desktop .white-border:after {
	content: "";
	position: absolute;
	bottom: -1px;
	height: 4px;
	background-color: #FFF;
	left: 0;
	right: 0;
}
.config-desktop .custom-range-mb {
	margin: 26px 0;
	position: relative;
}
@media all and (max-width: 991px) {
	.config-desktop .custom-range-mb {
		margin: 70px 0;
	}
}
.config-desktop .custom-range-mb .range-input-val {
	position: absolute;
	top: -13px;
	z-index: 9;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.config-desktop .custom-range-mb .range-input-val input {
	margin-bottom: 0;
	text-align: center;
	padding-right: 26px;
}
.config-desktop .custom-range-mb .range-input-val .cm-mb {
	background-color: transparent;
}
.config-desktop .custom-range-mb .range-slider-container-mb {
	padding: 0 30px;
	margin: 0;
}
.config-desktop .custom-range-mb .range-slider-container-mb:before {
	left: 30px;
}
.config-desktop .custom-range-mb .range-slider-container-mb:after {
	right: 30px;
}

.config-desktop__part .nav-tabs .nav-item {
	width: calc(100% / 3);
}

/*noUiSlider*/
.custom-slider.noUi-horizontal {
	height: 6px;
}
.custom-slider.noUi-horizontal .noUi-handle {
	width: 100px;
	right: -50px;
	height: 35px;
	top: -17px;
	box-shadow: none;
}
@media all and (max-width: 991px) {
	.custom-slider.noUi-horizontal .noUi-handle {
		width: 30px;
		height: 30px;
		right: -15px;
		box-shadow: 0px 2px 6px #000000;
		border: 1px solid #DCDCDC;
		border-radius: 50%;
	}
}
.custom-slider.noUi-horizontal .noUi-handle:focus {
	outline: none;
}
.custom-slider.noUi-horizontal .noUi-handle:before, .custom-slider.noUi-horizontal .noUi-handle:after {
	display: none;
}
.custom-slider.noUi-horizontal .noUi-pips.noUi-pips-horizontal {
	display: none;
}
.custom-slider.noUi-horizontal .noUi-tooltip {
	border: none;
	top: -31px;
	height: 29px;
	position: relative;
	font-size: 14px;
	color: #303030;
}
@media all and (max-width: 991px) {
	.custom-slider.noUi-horizontal .noUi-tooltip {
		top: -82px;
		width: 126px;
		height: 35px;
		border: 1px solid #DCDCDC;
		border-radius: 5px;
		background: #FFF;
		cursor: default;
		font-size: 16px;
		line-height: 25px;
		box-shadow: none;
	}
}
.custom-slider.noUi-horizontal .noUi-tooltip:focus {
	outline: none;
}
.custom-slider.noUi-horizontal .noUi-tooltip .input-tooltip {
	position: absolute;
	left: -1px;
	right: -3px;
	top: -3px;
	bottom: -3px;
	max-width: 102%;
	border: none;
	padding: 0 5px;
	border-radius: 3px;
	text-align: center;
	background: #FFF;
	white-space: nowrap;
	font-size: 14px;
	color: #303030;
	height: 35px;
}
@media all and (max-width: 991px) {
	.custom-slider.noUi-horizontal .noUi-tooltip .input-tooltip {
		font-size: 16px;
		line-height: 17px;
		height: 37px;
	}
}
.custom-slider.noUi-horizontal .noUi-tooltip .input-tooltip:focus {
	outline: none;
}
.custom-slider.noUi-horizontal .noUi-tooltip .input-tooltip__mobile {
	border: 1px solid #409ED6;
}
.custom-slider.noUi-horizontal .noUi-tooltip:after {
	content: "cm";
	display: inline-block;
	padding-left: 5px;
}
.custom-slider .limiter {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 20px;
	border-left: 1px solid #DCDCDC;
	border-right: 1px solid #DCDCDC;
	background-color: transparent;
}
.custom-slider .limiter:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	height: 6px;
	border-radius: 5px;
	background: #409ED6;
}
.custom-slider .limiter-min,
.custom-slider .limiter-max {
	position: absolute;
	top: 10px;
	color: #BDBCBC;
	font-size: 12px;
	text-align: left;
}
.custom-slider .limiter-min {
	left: 0;
}
.custom-slider .limiter-max {
	right: 0;
}
.custom-slider .value-error {
	position: absolute;
	left: 0;
	right: 0;
	top: -3px;
	bottom: -3px;
	background: #FFF3C6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.draggable:hover {
	cursor: grab;
}

.overlay-hide {
	display: none;
}

.overlay-show {
	display: block;
}

.tooltip {
	top: -3px !important;
}
.tooltip.show {
	opacity: 1;
}
.tooltip .arrow {
	width: 70px;
	height: 16px;
	overflow: hidden;
	position: absolute;
	left: 50%;
	margin-left: -18px;
	bottom: -9px;
}
.tooltip .arrow:after {
	background: #DDDDDD !important;
	border: 15px solid #FFF !important;
	content: "";
	position: absolute;
	left: 20px;
	top: -20px;
	width: 25px;
	height: 25px;
	box-shadow: 6px 5px 9px -9px black;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.tooltip .arrow:before {
	display: none;
}

.tooltip-inner {
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15) !important;
	-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15) !important;
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15) !important;
	background-color: white !important;
	border-color: #E2E2E2 !important;
	width: auto !important;
	min-width: auto !important;
	max-width: 500px !important;
	padding: 20px;
	color: #0E0E0E;
}

#config-desktop-footer-overlay {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1050;
	background-color: #FFF;
}
#config-desktop-footer-overlay .overlay-btn-close {
	background-image: url(../images/x-circle.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	top: 30px;
	right: 20px;
}
#config-desktop-footer-overlay .overlay-flex {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px;
	margin-top: 11px;
}
#config-desktop-footer-overlay .country_select_overlay .custom_country_select {
	font-size: 16px;
	width: 200px;
	height: 49px;
	padding: 0 !important;
	margin: 0;
	border: 0;
	border-radius: 0;
	top: -4px;
	background-color: transparent;
}
#config-desktop-footer-overlay .country_select_overlay .custom_country_select:focus {
	outline: 0;
}
#config-desktop-footer-overlay .country_select_overlay .country-select {
	height: 35px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select .country-list {
	z-index: 99;
	font-size: 16px;
	overflow: hidden;
	width: 100%;
	border-top: 0;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown {
	border: 1px solid #DADADA;
	border-radius: 5px;
	background-color: transparent;
	width: 200px;
	height: 35px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown:hover .selected-flag {
	background-color: transparent;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag {
	margin: 8px 0 0;
	background-image: url(../images/ds_sprites.png);
	height: 15px;
	width: 23px;
	background-size: unset;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag.de {
	background-position: -6px -75px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag.ch {
	background-position: -73px -76px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag.at {
	background-position: -35px -75px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag.fr {
	background-position: -105px -75px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select.inside .flag-dropdown .flag.be {
	background-position: -143px -75px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select .selected-flag {
	width: 100%;
	padding: 0 0 0 7px;
}
#config-desktop-footer-overlay .country_select_overlay .country-select .selected-flag .arrow {
	border: solid #BDBCBC;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-top: -5px;
	right: 9px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
#config-desktop-footer-overlay .country_select_overlay .country-select .selected-flag .arrow.up {
	margin-top: -2px;
	border: solid #BDBCBC;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
#config-desktop-footer-overlay .country_select_overlay .country-select .selected-flag:focus {
	outline: 0;
}
#config-desktop-footer-overlay .link {
	text-decoration: underline;
	color: #676767;
}
#config-desktop-footer-overlay .link:hover {
	color: #409ED6;
}
#config-desktop-footer-overlay .line {
	border-top: 1px solid #DADADA;
	margin: 20px 0 10px 0;
	width: 100%;
	height: auto;
}
#config-desktop-footer-overlay .overlay-picture {
	background-color: #9D9D9D;
	width: 595px;
	height: 330px;
	position: relative;
	background-image: url(../images/versand-teaser.png);
	background-repeat: no-repeat;
}
#config-desktop-footer-overlay .overlay-picture .picture-overlay {
	background-color: rgba(255, 255, 255, 0.8);
	margin: 10px 0 0 10px;
	padding: 10px;
	max-width: 60%;
}
#config-desktop-footer-overlay .overlay-picture .picture-overlay .overlay-picture-list {
	list-style-type: none;
	list-style-image: url(../images/checkbox.svg);
}

.config-desktop-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin-top: 20px;
	border-top: 1px solid #E9ECEF;
	padding: 10px 15px;
	background-color: #FFF;
	align-items: flex-end;
}
@media all and (max-width: 992px) {
	.config-desktop-footer {
		padding: 10px 15px;
		position: static;
		display: none !important;
	}
}
.config-desktop-footer__mobile {
	display: none !important;
}
@media all and (max-width: 992px) {
	.config-desktop-footer__mobile {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 11;
		display: flex !important;
	}
}
.config-desktop-footer .part-count_select {
	flex: 0 0 20%;
	align-self: flex-start;
	margin-top: 5px;
	margin-right: 10px;
}
.config-desktop-footer .price-info {
	margin-bottom: 10px;
	flex: 0 0 100%;
	align-items: center !important;
}
.config-desktop-footer .price-info__inline {
	flex: 0 0 75%;
}
.config-desktop-footer .price-info .price-actual {
	font-size: 22px;
	line-height: 22px;
	color: #303030;
}
@media all and (min-width: 992px) {
	.config-desktop-footer .price-info .price-actual {
		margin-right: 0.5rem;
	}
}
.config-desktop-footer .price-info .muted {
	line-height: 17px;
}
@media all and (max-width: 992px) {
	.config-desktop-footer .price-info .muted {
		font-size: 10px !important;
		line-height: 10px;
		color: #BDBCBC;
	}
}
.config-desktop-footer .align-items-end {
	align-items: flex-end !important;
}
.config-desktop-footer .btn-save {
	flex: 0 0 60px;
	margin-right: 10px;
	margin-bottom: 5px;
	width: 100%;
}
.config-desktop-footer .btn-save .mobile {
	display: none;
}
.config-desktop-footer .btn-save span {
	display: none;
}
.config-desktop-footer .btn-cart {
	flex: 1 1 auto;
	margin-bottom: 5px;
}
.config-desktop-footer .btn-cart img {
	display: none;
}
.config-desktop-footer .bottom-text-footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 100%;
}

.custom-accordion_product {
	margin-bottom: 60px;
}
@media all and (max-width: 992px) {
	.custom-accordion_product {
		margin-bottom: 0;
	}
}

.abs-material-list .nav-item {
	flex: 0 0 100%;
}
.abs-material-list .nav-item .custom-checkbox {
	font-size: 16px;
}

.shelf-counter {
	margin-bottom: 10px;
}
.shelf-counter_title {
	font-size: 14px;
	font-weight: bold;
	color: rgba(48, 48, 48, 0.8);
	margin: 0 15px 0 0;
}
.shelf-counter_select {
	max-width: 100px;
}

.builder-carousel-for {
	margin-bottom: 15px;
}
.builder-carousel-for .slick-slide > img {
	width: 100%;
	object-fit: cover;
}

.builder-carousel-nav .slick-list {
	margin-left: -5px;
	margin-right: -5px;
}
.builder-carousel-nav .slick-slide {
	margin: 0 5px;
}
.builder-carousel-nav .slick-slide > img {
	width: 100%;
}
.builder-carousel-nav .slick-slide.slick-current {
	border-bottom: 3px solid #409ED6;
}
.builder-carousel-nav .slick-arrow {
	width: 50px;
	height: 50px;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.9);
}
.builder-carousel-nav .slick-arrow:before {
	content: "";
	border: solid #BDBCBC;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 6px;
	opacity: 1;
}
.builder-carousel-nav .slick-arrow.slick-prev {
	left: 0;
}
.builder-carousel-nav .slick-arrow.slick-prev:before {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.builder-carousel-nav .slick-arrow.slick-next {
	right: 0;
}
.builder-carousel-nav .slick-arrow.slick-next:before {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.product-bed-planning .slick-arrow {
	height: 100%;
}
.product-bed-planning__steps {
	background-color: #E7E7E7;
	height: 93px;
	margin-bottom: 85px;
}
.product-bed-planning__steps-center {
	margin-top: 25px;
	width: 50%;
}
.product-bed-planning__steps-center ul {
	counter-reset: bed-steps;
}
.product-bed-planning__steps-center li {
	min-width: 90px;
}
.product-bed-planning__steps-center li:after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #DCDCDC;
	position: absolute;
	left: 75%;
	top: 17px;
	transform: translateX(-25%);
}
.product-bed-planning__steps-center li:last-child:after {
	display: none;
}
.product-bed-planning__steps-center li.active {
	font-weight: bold;
}
.product-bed-planning__steps-center li.active a {
	font-weight: bold;
}
.product-bed-planning__steps-center li.active a:before {
	background: #409ED6;
	color: #FFFFFF;
}
.product-bed-planning__steps-center a {
	z-index: 1;
}
.product-bed-planning__steps-center a:hover {
	text-decoration: none;
	color: #676767;
}
.product-bed-planning__steps-center a:before {
	counter-increment: bed-steps;
	content: counter(bed-steps);
	width: 34px;
	height: 34px;
	margin: 0 auto 5px;
	border-radius: 100%;
	line-height: 34px;
	font-size: 15px;
	font-weight: bold;
	box-shadow: 0 0 1px 0 #BDBCBC;
	color: #676767;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F7F7F7;
}
.product-bed-planning__steps-center .accepted:after {
	background-color: #409ED6;
}
.product-bed-planning__steps-center .accepted a:before {
	content: " ";
	background-image: url("../images/check_white.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-color: #409ED6;
	color: #FFFFFF;
	font-size: 10px;
	padding-top: 1px;
}
.product-bed-planning__sidebar .select-tab__select-list-item {
	width: 100%;
	padding: 0;
}
.product-bed-planning__sidebar .select-tab__select-list-item a {
	padding: 12px;
}
.product-bed-planning__sidebar .select-tab__select-list-item a:hover {
	background: #F2F2F2;
}
.product-bed-planning__sidebar .select-tab__select-list-item a:hover .select-list__title {
	color: #0056B3;
	font-weight: bold;
}
.product-bed-planning__sidebar .select-tab__select-list-item a .select-list-blk .nice-select {
	background: #FFF;
	border: 1px solid #DCDCDC;
	border-radius: 5px 0 0 5px;
	padding-right: 40px;
	padding-left: 15px;
}
.product-bed-planning__sidebar .select-tab__select-list-item a .select-list-blk .select-list__select {
	cursor: pointer;
	margin-left: 20px;
	min-width: 180px;
}
.product-bed-planning__sidebar .select-tab__select-list-item a .select-list-blk .select-list__select-i {
	background: #FFF;
	border: 1px solid #DCDCDC;
	border-radius: 0 5px 5px 0;
	margin-left: -1px;
	padding: 0 5px;
}
.product-bed-planning__sidebar .colorings__item {
	margin-right: 10px;
}
.product-bed-planning__sidebar .colorings__item.active .preview__image {
	border: 3px solid #F5BD2C;
}
.product-bed-planning__sidebar .colorings__item.active .preview__image .bestprice {
	bottom: -3px;
	right: -3px;
}
.product-bed-planning__sidebar .colorings__item .preview {
	cursor: pointer;
}
.product-bed-planning__sidebar .colorings__item .preview__image {
	border: 3px solid transparent;
	display: inline-block;
	border-radius: 100%;
	position: relative;
	margin-bottom: 5px;
}
.product-bed-planning__sidebar .colorings__item .preview__image:before {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: inset -3px 2px 6px rgba(0, 0, 0, 0.2);
	border-radius: 100%;
}
.product-bed-planning__sidebar .colorings__item .preview__image img {
	border-radius: 100%;
}
.product-bed-planning__sidebar .colorings__item .preview__image .bestprice {
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	border-style: solid;
	border-width: 0 0 28px 28px;
	border-color: transparent transparent #F5BD2C transparent;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	font-size: 10px;
}
.product-bed-planning__sidebar .colorings__item .preview__image .bestprice i {
	transform: translate(-25%, 150%);
}
@media (max-width: 768px) {
	.product-bed-planning__sidebar .colorings {
		margin-top: 20px;
	}
}
@media screen and (max-width: 767.98px) {
	.product-bed-planning__steps {
		height: 70px;
	}
	
	.product-bed-planning__steps-center {
		margin-top: 0;
	}
	
	.product-bed-planning__steps-center a span {
		font-size: 10px;
	}
	
	.product-bed-planning__steps-left-btn, .product-bed-planning__steps-right-btn {
		margin-top: -25px;
	}
}
@media screen and (max-width: 424px) {
	.product-bed-planning__steps-center li {
		min-width: 73px;
	}
}
.product-bed-planning__subimgs img {
	border: 1px solid #FFF;
	cursor: pointer;
}
@media screen and (max-width: 767.98px) {
	.product-bed-planning__subimgs img {
		border: 1px solid #FFF;
		cursor: pointer;
	}
}
.product-bed-planning__final-plan .final-plan-item__link:after {
	content: "";
	width: 19px;
	height: 19px;
	display: inline-block;
	background-image: url("../images/icon_edit.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 10px;
}
.product-bed-planning__final-plan .final-plan-item__content {
	border-top: 1px solid #BDBCBC;
}
.product-bed-planning__final-plan .final-plan-item__content div:nth-child(odd) {
	background-color: #FAFAFA;
}
.product-bed-planning__final-plan .final-plan-item__img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.product-bed-planning-footer {
	background: #F7F7F7;
}
.product-bed-planning-footer__top {
	background: #EDEDED;
}
.product-bed-planning-footer__price {
	font-size: 28px;
	padding-left: 40px;
}
.product-bed-planning-footer__price-info {
	color: #676767;
}
@media screen and (max-width: 767.98px) {
	.product-bed-planning-footer__btn {
		position: static;
		transform: translateY(0);
		width: 100%;
		text-align: right;
	}
	
	.product-bed-planning-footer__price {
		padding-left: 0;
	}
}

.tooltip-big-content-bg {
	position: relative;
	/* background-image: url("../images/versand-teaser.png");*/
	background-image: url("/deinschrank-grafiken/responsiv/service/lieferservice.jpg");
	/*background-size: cover;*/
	background-repeat: no-repeat;
	background-position: center;
	padding: 20px;
	padding-right: 75px;
	min-height: 410px;
	width: 700px;
}
.tooltip-big-content-bg .tooltip-title-blk {
	background-color: rgba(255, 255, 255, 0.9);
}
.tooltip-big-content-bg .tooltip-title .price {
	font-size: 26px;
}
.tooltip-big-content-bg .tooltip-list {
	width: 60%;
	background-color: rgba(84, 84, 84, 0.9);
	color: #FFFFFF;
}
.tooltip-big-content-bg .tooltip-list li:before {
	content: "";
	background-image: url("../images/checkbox.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 14px;
	height: 10px;
	margin-right: 10px;
	display: inline-block;
}
.tooltip-big-content-bg .tooltip-footer {
	background-color: #FFFFFF;
	padding: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
@media screen and (max-width: 767.98px) {
	.tooltip-big-content-bg {
		padding-top: 20px;
		padding-right: 20px;
	}
	
	.tooltip-big-content-bg .tooltip-list {
		width: 100%;
	}
}
@media screen and (max-width: 424px) {
	.tooltip-big-content-bg {
		padding-left: 5px;
		padding-right: 5px;
	}
}

.bed-popover {
	max-width: 350px;
}

#config-footer.config-desktop-footer__mobile {
	z-index: 20;
}
#config-footer.config-desktop-footer__mobile .price-info {
	flex: auto;
}
#config-footer.config-desktop-footer__mobile .country-select {
	margin: 0 5px;
}

.mobileTab-modal .modal-dialog .modal-content {
	width: auto;
	margin: auto;
	padding: 30px 40px 40px;
}
.mobileTab-modal .modal-dialog .modal-content .modal-header {
	align-items: center;
	position: relative;
	padding: 0 0 20px;
}
.mobileTab-modal .modal-dialog .modal-content .modal-header .modal-title {
	font-size: 30px;
	font-weight: normal;
	line-height: 1.2;
}
.mobileTab-modal .modal-dialog .modal-content .modal-header .close {
	position: relative;
	top: unset;
	right: unset;
	font-size: 0;
	width: 32px;
	height: 32px;
}
.mobileTab-modal .modal-dialog .modal-content .modal-header .close:before, .mobileTab-modal .modal-dialog .modal-content .modal-header .close:after {
	position: absolute;
	left: 15px;
	top: 5px;
	content: " ";
	height: 20px;
	width: 1px;
	background-color: #676767;
}
.mobileTab-modal .modal-dialog .modal-content .modal-header .close:before {
	transform: rotate(45deg);
}
.mobileTab-modal .modal-dialog .modal-content .modal-header .close:after {
	transform: rotate(-45deg);
}
.mobileTab-modal .modal-dialog .modal-content .modal-body {
	padding: 20px 0;
}
.mobileTab-modal .modal-dialog .modal-content .modal-body img {
	display: block;
	margin: auto;
}
.mobileTab-modal .modal-dialog .modal-content .modal-body p {
	font-size: 15px;
	margin: 30px 0 0;
	color: #676767;
}

.colorings__tooltip {
	border-radius: 5px;
	padding: 20px;
}
.colorings__tooltip .tooltip-image {
	position: relative;
}
.colorings__tooltip .tooltip-image .bestprice {
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	border-style: solid;
	border-width: 0 0 38px 38px;
	border-color: transparent transparent #F5BD2C transparent;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	font-size: 12px;
}
.colorings__tooltip .tooltip-image .bestprice i {
	transform: translate(-40%, 175%);
}
.colorings__tooltip .tooltip-header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.colorings__tooltip .tooltip-header h4 {
	font-size: 16px;
	margin-bottom: 0;
}
.colorings__tooltip .tooltip-header h4.text-blue {
	color: #409ED6;
}

.streichpreis {
	position: relative;
	display: inline-block;
}

.streichpreis::before {
	position: absolute;
	content: " ";
	left: -5px;
	right: -5px;
	top: 50%;
	margin-top: -1px;
	border-top: 1px solid;
	border-color: red;
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

/*# sourceMappingURL=styles-product-bed-planning.css.map */
