@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&amp;display=swap");
html {
	min-height: 100%;
}

body {
	font-family: Montserrat, Arial, Tahoma, sans-serif;
	font-size: 16px;
	padding: 0;
	font-weight: 300;
	margin: 0 auto;
	min-width: 320px;
	position: relative;
}

.svg-sp {
	display: none;
	opacity: 0;
	visibility: hidden;
}

::-webkit-input-placeholder {
	/* Edge */
	color: #909090;
}

:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #909090;
}

::-moz-placeholder {
	color: #909090;
}

::-ms-input-placeholder {
	color: #909090;
}

::placeholder {
	color: #909090;
}


.orange-btn {
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF7B42), color-stop(95.44%, #FFA842));
	background: -o-linear-gradient(left, #FF7B42 2.56%, #FFA842 95.44%);
	background: linear-gradient(90deg, #FF7B42 2.56%, #FFA842 95.44%);
	-webkit-box-shadow: 0px 20px 50px rgba(255, 123, 66, 0.2);
	        box-shadow: 0px 20px 50px rgba(255, 123, 66, 0.2);
	border-radius: 50px;
	display: block;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	color: #FFFFFF;
}
.orange-btn:hover {
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF9264), color-stop(95.44%, #FFB763));
	background: -o-linear-gradient(left, #FF9264 2.56%, #FFB763 95.44%);
	background: linear-gradient(90deg, #FF9264 2.56%, #FFB763 95.44%);
	-webkit-box-shadow: none;
	        box-shadow: none;
	color: #FFFFFF;
}
.orange-btn:active {
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF9264), color-stop(95.44%, #FFB763));
	background: -o-linear-gradient(left, #FF9264 2.56%, #FFB763 95.44%);
	background: linear-gradient(90deg, #FF9264 2.56%, #FFB763 95.44%);
	-webkit-box-shadow: inset 0px 2px 0px #E37C2F;
	        box-shadow: inset 0px 2px 0px #E37C2F;
	color: #FFFFFF;
}

.orange-border-btn {
	font-weight: 600;
	font-size: 15px;
	line-height: 18px;
	display: block;
	color: #FFFFFF;
	border: 1px solid #FF7B42;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 50px;
	padding: 18px 0;
	width: 100%;
	cursor: pointer;
	text-align: center;
}
.orange-border-btn:hover {
	background: -webkit-gradient(linear, left top, right top, color-stop(2.05%, #FF9264), color-stop(98.77%, #FFB763));
	background: -o-linear-gradient(left, #FF9264 2.05%, #FFB763 98.77%);
	background: linear-gradient(90deg, #FF9264 2.05%, #FFB763 98.77%);
	border-color: transparent;
	color: #FFFFFF;
}
.orange-border-btn:active {
	color: #FFFFFF;
	background: -webkit-gradient(linear, left top, right top, color-stop(2.05%, #FF9264), color-stop(98.77%, #FFB763));
	background: -o-linear-gradient(left, #FF9264 2.05%, #FFB763 98.77%);
	background: linear-gradient(90deg, #FF9264 2.05%, #FFB763 98.77%);
	-webkit-box-shadow: inset 0px 2px 0px #E37C2F;
	        box-shadow: inset 0px 2px 0px #E37C2F;
	border-color: transparent;
}


.typ-input {
	position: relative;
}
.typ-input input {
	border: 1px solid #696D75;
	border-radius: 50px;
	font-size: 14px;
	line-height: 18px;
	color: #FFFFFF;
	background: transparent;
	display: block;
	width: 100%;
	padding: 18px 24px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.typ-input input:focus {
	border-color: #FFFFFF;
}
.typ-input input::-webkit-input-placeholder {
	/* Edge */
	color: #FFFFFF;
}
.typ-input input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #FFFFFF;
}
.typ-input input::-moz-placeholder {
	color: #FFFFFF;
}
.typ-input input::-ms-input-placeholder {
	color: #FFFFFF;
}
.typ-input input::placeholder {
	color: #FFFFFF;
}
.typ-input_error {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	left: 0;
	bottom: -2px;
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
}
.typ-input_error span {
	font-size: 14px;
	line-height: 17px;
	color: #FF1C1C;
	margin-left: 8px;
}
.typ-input_error.active {
	opacity: 1;
	visibility: visible;
}

h2 {
	font-weight: 800;
	font-size: 54px;
	line-height: 66px;
	color: #252525;
}
.calc:hover {
	background-color: #cd2811;
    border-color: #cd2811;
}
.calc {
    z-index: 3;
    cursor: pointer;
    position: fixed;
    bottom: 25px;
    right: 25px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 10px solid rgba(249, 190, 138, 0.6);
    background: #CD280F url(../img/icon-calc.png) no-repeat center center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.calculator {
	padding: 80px 0;
	background: url(../img/calculator-bg.png) no-repeat center center/cover;
}
.calculator h2 {
	margin-bottom: 65px;
	color: #FFFFFF;
	text-align: center;
	font-size: 42px;
	line-height: 51px;
}
.calculator h2 span {
	color: #FF7B42;
	text-decoration: underline;
}
.calculator_tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.calculator_tab {
	width: calc(100% / 3);
	background: #8C919A;
	cursor: pointer;
	font-weight: 600;
	font-size: 17px;
	line-height: 21px;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 18px 0px;
	border-radius: 6px 6px 0 0;
	position: relative;
}
.calculator_tab:nth-child(2) {
	background: #808389;
}
.calculator_tab.active {
	padding: 22px 0px 18px 0;
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF7B42), color-stop(95.44%, #FFA842));
	background: -o-linear-gradient(left, #FF7B42 2.56%, #FFA842 95.44%);
	background: linear-gradient(90deg, #FF7B42 2.56%, #FFA842 95.44%);
}
.calculator_tab.active:after {
	display: block;
	width: 22px;
	height: 8px;
	content: "";
	bottom: 0;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, 100%);
	    -ms-transform: translate(-50%, 100%);
	        transform: translate(-50%, 100%);
	background: url(../img/down.svg) no-repeat center top;
}
.calculator_bottom {
	background: #21262F;
	padding: 24px 40px;
	position: relative;
	border-radius: 0 0 6px 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.calculator_bottom:before {
	display: block;
	width: 22px;
	height: 8px;
	content: "";
	top: 0;
	left: 40px;
	position: absolute;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	background: url(../img/up.svg) no-repeat center top;
}
.calculator_bottom__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-width: 300px;
	margin-right: auto;
}
.calculator_bottom__info span:nth-child(1) {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	margin-bottom: 8px;
}
.calculator_bottom__info span:nth-child(2) {
	font-size: 14px;
	line-height: 17px;
	color: #B4B4B4;
}
.calculator_bottom .typ-input {
	width: 268px;
	margin-right: 20px;
}
.calculator_bottom .orange-btn {
	max-width: 225px;
	width: 100%;
	padding: 18px 0;
}
.calculator_body {
	background: #FFFFFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.calculator_main {
	padding: 24px 40px;
	width: calc((100% / 3) * 2);
	min-height: 365px;
}
.calculator_sidebar {
	padding: 24px 0 0px 32px;
	width: calc(100% / 3);
	background: #F3F3F3;
}
.calculator_sidebar .jobs-types {
	max-height: 310px;
	overflow-y: scroll;
	border-right: 14px solid #f3f3f3;
	position: relative;
	padding-bottom: 24px;
}
.calculator_sidebar .jobs-types_wrap {
	position: relative;
}
.calculator_sidebar .jobs-types .typ-chekbox {
	margin-bottom: 8px;
}
.calculator_sidebar .jobs-types .typ-chekbox:last-child {
	margin: 0;
}
.calculator_sidebar .jobs-types .typ-chekbox input {
	display: none;
}
.calculator_sidebar .jobs-types .typ-chekbox input:checked + label:before {
	border-color: #FF7B42;
	background: url(../img/check.svg) no-repeat center center;
}
.calculator_sidebar .jobs-types .typ-chekbox label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}
.calculator_sidebar .jobs-types .typ-chekbox label:before {
	display: block;
	content: "";
	margin-right: 8px;
	border: 1px solid #B9B9B9;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	min-width: 24px;
}
.calculator_sidebar .jobs-types .typ-chekbox label span {
	font-size: 14px;
	line-height: 17px;
	color: #5C5C5C;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.calculator_sidebar .jobs-types_select {
	border: 1px solid #B9B9B9;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 6px;
	padding: 11px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.calculator_sidebar .jobs-types_select span {
	font-weight: 500;
	font-size: 14px;
	line-height: 17px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: #5C5C5C;
}
.calculator_sidebar .jobs-types_select svg {
	stroke: #FF7B42;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.calculator_sidebar .jobs-types_select.active {
	background: #FF7B42;
	border-color: #FF7B42;
}
.calculator_sidebar .jobs-types_select.active span {
	color: #FFFFFF;
}
.calculator_sidebar .jobs-types_select.active svg {
	stroke: #fff;
	-webkit-transform: rotate(-180deg);
	    -ms-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}
.calculator_title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.calculator_title span {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #252525;
}
.calculator_title svg {
	display: none;
}
.calculator_item {
	margin-bottom: 24px;
	margin-top: 10px;
}
.calculator_item.range {
	margin-top: 0;
	margin-bottom: 35px;
}
.calculator_item:last-child {
	margin-bottom: 0;
}
.calculator_range {
	width: 100%;
	margin-right: 24px;
}
.calculator_range .irs-grid-text {
	font-size: 14px;
	line-height: 17px;
	color: #5C5C5C;
	bottom: -5px;
}
.calculator_range .irs--flat .irs-grid-pol {
	background: #B9B9B9;
	height: 6px;
}
.calculator_range .irs--flat .irs-line {
	top: 0px;
	height: 8px;
	background: #F5F5F5;
	border: 1px solid #E4E6EA;
	border-radius: 10px;
}
.calculator_range .irs--flat .irs-bar {
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF7B42), color-stop(95.44%, #FFA842));
	background: -o-linear-gradient(left, #FF7B42 2.56%, #FFA842 95.44%);
	background: linear-gradient(90deg, #FF7B42 2.56%, #FFA842 95.44%);
	border-radius: 10px;
	height: 8px;
	top: 0;
}
.calculator_range .irs--flat.irs-with-grid {
	height: 8px;
}
.calculator_range .irs-grid {
	bottom: -25px;
}
.calculator_range .irs--flat .irs-handle {
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FCF9F6));
	background: -o-linear-gradient(top, #FFFFFF 0%, #FCF9F6 100%);
	background: linear-gradient(180deg, #FFFFFF 0%, #FCF9F6 100%);
	-webkit-box-shadow: 0px 4px 10px rgba(95, 28, 0, 0.25);
	        box-shadow: 0px 4px 10px rgba(95, 28, 0, 0.25);
	border-radius: 4px;
	width: 26px;
	height: 30px;
	top: 50%;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.calculator_range .irs--flat .irs-handle > i {
	position: static;
}
.calculator_range .irs--flat .irs-handle > i:first-child {
	width: 1px;
	height: 14px;
	margin-right: 2px;
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF7B42), color-stop(95.44%, #FFA842));
	background: -o-linear-gradient(left, #FF7B42 2.56%, #FFA842 95.44%);
	background: linear-gradient(90deg, #FF7B42 2.56%, #FFA842 95.44%);
}
.calculator_range .irs--flat .irs-handle > i:nth-child(2) {
	width: 1px;
	height: 14px;
	background: -webkit-gradient(linear, left top, right top, color-stop(2.56%, #FF7B42), color-stop(95.44%, #FFA842));
	background: -o-linear-gradient(left, #FF7B42 2.56%, #FFA842 95.44%);
	background: linear-gradient(90deg, #FF7B42 2.56%, #FFA842 95.44%);
}
.calculator_range .irs--flat .irs-handle > i:nth-child(3) {
	display: none;
}
.calculator_range__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.calculator_range__output {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border: 1px solid #B9B9B9;
	max-width: 112px;
	width: 100%;
	padding: 4px 4px 4px 16px;
	border-radius: 20px;
}
.calculator_range__output input {
	max-width: 50px;
	font-size: 14px;
	line-height: 17px;
	color: #5C5C5C;
}
.calculator_range__output span {
	background: #F3F3F3;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-weight: bold;
	font-size: 12px;
	color: #5C5C5C;
	text-align: center;
	line-height: 32px;
}
.calculator_radios {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.calculator_radio {
	margin-right: 24px;
}
.calculator_radio:last-child {
	margin: 0;
}
.calculator_radio input {
	display: none;
}
.calculator_radio input:checked + label div {
	border-color: #FF7B42;
}
.calculator_radio input:checked + label div:after {
	display: block;
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FF7B42;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.calculator_radio label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}
.calculator_radio label div {
	border: 1px solid #B9B9B9;
	min-width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-right: 8px;
	border-radius: 14px;
	position: relative;
}
.calculator_radio label span {
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 14px;
	line-height: 17px;
	color: #5C5C5C;
}
.calculator_form.flat .calculator_radios.cottage {
	display: none;
}
.calculator_form.flat .office-hide {
	display: block;
}
.calculator_form.cottage .calculator_radios.flat {
	display: none;
}
.calculator_form.cottage .calculator_radios.cottage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.calculator_form.cottage .office-hide {
	display: block;
}
.calculator_form.office .office-hide {
	display: none;
}
.calculator_tab.flat.active .jobs-types_wrap.kvartira {display: block !important;}

.jobs-types_wrap {
    display: none;
}
.calculator_radios.flat .jobs-types_wrap.kvartira {display: block !important;}

.jobs-types_wrap {
    display: none;
}

.calculator_tab.flat.active {}

.calculator_form.flat .jobs-types_wrap.kvartira {
    display: block;
}

.calculator_form.office .jobs-types_wrap.office {
    display: block;
}
.popup-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 900;
	display: none;
	background-color: rgba(0, 0, 0, 0.65);
}

.popup {
	/* background: #FFFFFF; */
	border-radius: 0;
	position: fixed;
	top: 55%;
	left: 50%;
	max-width: 960px;
	width: 100%;
	z-index: 1000;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
	padding: 0;
}
.popup-ico {
	padding-top: 115px;
}
.popup-ico > .popup-ico_photo {
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	max-height: 148px;
}
.popup-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	cursor: pointer;
	top: -20px;
	z-index: 99;
	right: -20px;
}
.popup_title {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 32px;
	line-height: 39px;
	text-align: center;
	color: #252525;
}
.popup_info {
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	color: #252525;
	margin-bottom: 40px;
}

.popup-success {
	padding-top: 90px;
	background: #FFFFFF;
	padding-bottom: 135px;
}
.popup-success_ico {
	display: block;
	margin: 0 auto;
	margin-bottom: 40px;
}
.popup-success .popup_info {
	margin: 0;
}
.popup-designer-consultation {
	padding-right: 50px;
	padding-left: 50px;
}

.nicescroll-cursors {
	margin-right: -11px;
}
.nicescroll-cursors:after {
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 1px;
	background: #fff;
	-webkit-transform: translate(-50%, 1px);
	    -ms-transform: translate(-50%, 1px);
	        transform: translate(-50%, 1px);
}
.nicescroll-cursors:before {
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 1px;
	background: #fff;
	-webkit-transform: translate(-50%, -1px);
	    -ms-transform: translate(-50%, -1px);
	        transform: translate(-50%, -1px);
}.calculator_form.cottage .jobs-types_wrap.cottage {
    display: block;
}.calculator_form.cottage .jobs-types_wrap {
    /* display: none; */
}

/* полоса прокрутки (скроллбар) */
.jobs-types::-webkit-scrollbar {
    width: 8px; /* ширина для вертикального скролла */
    height: 8px; /* высота для горизонтального скролла */
    background: transpatent;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background-color: #808389;
    border-radius:8px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #808389;
}

/* Стрелки */

::-webkit-scrollbar-button:vertical:start:decrement {
    background: linear-gradient(0deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(0deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
    linear-gradient(0deg, #02141a00 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:vertical:end:increment {
    background:
        linear-gradient(0deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(0deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(0deg, #02141a00 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:horizontal:start:decrement {
    background:
        linear-gradient(30deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(150deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(270deg, #02141a00 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}

::-webkit-scrollbar-button:horizontal:end:increment {
    background:
        linear-gradient(210deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(330deg, #02141a00 40%, rgba(0, 0, 0, 0) 41%),
        linear-gradient(90deg, #02141a00 30%, rgba(0, 0, 0, 0) 31%);
    background-color: #f6f8f4;
}




.popup {
    display: none!Important;
}
.popup-backdrop {

    display: none!important;
}