/* Claculator*/


.calc-s-container {
    max-width: 1170px !important;
    margin: 0 auto;
    margin-bottom: 40px;
    font-size: 14px;
    min-height: 500px;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
    position: relative;
    color: #313131;
    line-height: 1.3;
    background-size: cover;
    box-sizing: border-box;
    -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;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.calc-fl p,
.wn-calc p {
    padding: 0 !important;
    margin: 0 !important;
}

.calc-s-container a.wn-link {
    text-decoration: none;
}

.calc-s-container p {
    margin: 3px 0;
}

.calc-s-container br,
.calc-fl br,
.wn-calc br {
    /*display:none;*/
}

.calc-s-container a:focus {
    outline: none;
}

.calc-s-container label {
    font-weight: normal;
    max-width: initial;
}

.calc-s-container *,
.wn-calc * {
    box-sizing: border-box;
}

.calc-s-container ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.calc-s-container ul > li {
    margin: 0;
    padding: 0;
}


.header-title {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 55px;
    line-height: 40px;
}

.calc-content {
    position: relative;
    padding: 0;
    z-index: 2;
}

.calc-title {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
}

.calc-block {
    text-align: left;
    padding: 10px 0;
    margin: 0 auto;
}

.cl-block-title {
    font-size: 18px;
    padding: 10px 0;
    display: block;
    font-weight: 600;
    text-align: center;
}

.input-block {
    padding: 5px 0;
}

.input-block-title {
    padding: 8px 0;
    color: #999;
}

.title-div {
    font-size: 22px;
    color: #424242;
    text-align: left;
    margin-bottom: 20px;
}

/*-----Step interface-------*/
.calc-steps-wrap {
    position: relative;
    padding-left: 30px !important;
    padding-right: 30px;
    min-height: 500px;
    /*display: flex;*/
    /*align-items: center;*/
}

.dev .calc-steps-wrap {
    display: block;
}

.calc-nav-wrap {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calc_nav_item {
    height: 2px;
    position: relative;
    display: flex;
    align-items: center;
    width: calc(100% / 10);
}

.calc_nav_item.hidden {
    display: none;
}

.calc_nav_item-num {
    width: 22px;
    height: 22px;
    margin: 0 auto;
    position: relative;
}

.calc_nav_item-num span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #dde2e8;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    color: #fff;
    position: relative;
    z-index: 10;
    transition: all .1s ease;
    transition-delay: 0.3s;

}

.calc_nav_item.active .calc_nav_item-num span {
    background: #0169B3;
    cursor: pointer;
    transition: none;
}

.calc_nav_item.active .calc_nav_item-num span:hover {
    background: #0069B4;
}

.calc_nav_item.active:not(.current) .calc_nav_item-num span {
    color: transparent;
    background-image: url(../images/calc/check-white.svg);
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
}

.calc_nav_item .calc_nav_item-num:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 1px;
    top: 1px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #0169B3;
    z-index: 1;
    transition: all .01s ease;
    transition-delay: 0.3s;
    box-sizing: content-box;
}

.calc_nav_item.current .calc_nav_item-num:before,
.calc_nav_item.active .calc_nav_item-num:before {
    width: 30px;
    height: 30px;
    left: -5px;
    top: -5px;
    box-sizing: content-box;
}

.calc_nav_item-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.calc_nav_item-line:before,
.calc_nav_item-line:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 100%;
    height: 2px;
    margin-left: -1px;
    background: #dde2e8;
}


.calc_nav_item.step9 .calc_nav_item-line:before {
    content: none;
}

.calc_nav_item-line:after {
    height: 0;
    background: #0069B4;
    transition: all 1s ease;
}

.calc_nav_item.active .calc_nav_item-line:after {
    height: 100%;
}

.calc_nav_item:first-child .calc_nav_item-line:before {
    top: 50%;
    height: 2px;
}

.calc_nav_item:first-child .calc_nav_item-line:after {
    top: 50%;
    height: 0;
}

.calc_nav_item.active:first-child .calc_nav_item-line:after {
    height: 2px;
}

/*.calc_nav_item:last-child .calc_nav_item-line:before {*/
/*    top: 0;*/
/*    height: 2px;*/
/*}*/

.calc_nav_item:last-child .calc_nav_item-line:after {
    top: 0;
    height: 0;
}

.calc_nav_item.active:last-child .calc_nav_item-line:after {
    height: 50%;
}

.calc-s-step {
    margin: 25px 25px 0 0;
    display: none;
    width: 100%;
    position: relative;
}

.dev .calc-s-step {
    display: block;
}

.calc-s-step.active {
    display: block;
}

.calc_p_step_num {
    font-size: 22px;
    color: #bbb;
}

.calc_p_step_title {
    font-size: 30px;
    padding: 0 0 15px 0;
}

.calc_p_step_content .content-text {
    padding-bottom: 20px;
}

.calc_p_step_content ul {
    padding: 10px 15px 10px 15px;
    margin-top: 10px;
    margin-left: 20px;
    position: relative;
    transition: all .5s ease;
}

.calc_p_step_content ul.no-pd {
    padding-left: 0;
    margin-left: 0;
}

.calc_p_step_content ul:not(.no-pd) {
    background: #f8f9fa;
}

.calc_p_step_content ul.hidden {

}

.calc_p_step_content ul.open {
    webkit-animation-name: uOpen;
    animation-name: uOpen;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;

}

.calc_p_step_content p {
    font-weight: bold;
    padding: 10px 0 5px 0;
}

.calc_p_step_nav {
    padding-top: 25px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    min-height: 79px;
}

.dev .calc_p_step_nav {
    DISPLAY: none;
}

.calc_p_step_content .hint {
    display: block;
    font-size: 13px;
    color: #999;
    padding-bottom: 15px;
    padding-left: 28px;
}

.ae.do {
    webkit-animation-name: fromBottom;
    animation-name: fromBottom;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    visibility: visible;
}

.ae.do2 {
    webkit-animation-name: fromBottomH;
    animation-name: fromBottomH;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    visibility: visible;
    opacity: 0;
}


.product-selection-div {
    padding: 20px 0;
}

.product-selection-div .title-div {
    font-size: 34px;
    color: #424242;
    text-align: left;
    margin-bottom: 40px;
    text-align: center;
}

.sel-calc-s-type-product {
    width: 100%;
    margin-left: -20px;
    margin-right: -20px;
    padding: 25px 0;
    margin-bottom: 50px;
}

.calc-s-type-product-wrap {
    width: 33.33333333%;
    padding: 0 20px;
}

.calc-s-type-product-div {
    cursor: pointer;
    font-size: 22px;
    background: #f1f1f1;
    z-index: 1;
    position: relative;
    opacity: 0.6;
    border-radius: 12px;
    overflow: hidden;
}

.calc-s-type-product-div:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, transparent), to(rgba(0, 0, 0, .56)));
    background: -webkit-linear-gradient(top, transparent, transparent 25%, rgba(0, 0, 0, .56));
    background: -o-linear-gradient(top, transparent, transparent 25%, rgba(0, 0, 0, .56));
    background: linear-gradient(to bottom, transparent, transparent 25%, rgba(0, 0, 0, .56));
}


.calc-s-type-product-div:hover {
    background: #f5f5f5;
    opacity: 0.8;
}

.calc-s-type-product-div.selected {
    background: #fafafa;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 1;
}

.calc-s-type-product-img img {
    width: 100%;
}

.layout-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.layout-product-img.z1 {
    z-index: 1;
}

.layout-product-img.z2 {
    z-index: 2;
}

.layout-product-img.z3 {
    z-index: 3;
}

.size-mb {
    display: none;
}

.pr0 .calc-s-type-product-img {
    background: url(../images/calc/pr0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.pr1 .calc-s-type-product-img {
    background: url(../images/calc/pr1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.pr2 .calc-s-type-product-img {
    background: url(../images/calc/pr2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.calc-s-type-product-name-wrap {
    display: table;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.calc-s-type-product-div.selected .calc-s-type-product-name-wrap:before {
    content: "";
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    left: 50%;
    top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    background: #0169B3;
    background-image: url(../images/calc/check-white.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;

}

.calc-s-type-product-name {
    padding: 15px 18px 15px 18px;
    /*padding-left:100px;*/
    position: relative;
    height: 92px;
    box-sizing: border-box;
    opacity: 0.5;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.90);*/
    font-weight: 600;
    color: #fff;
}

.calc-s-type-product-name:before {
    content: "";
    display: block;
    width: 70px;
    height: 62px;
    position: absolute;
    top: 15px;
    left: 15px;
}


.calc-s-type-product-div:hover .calc-s-type-product-name {
    opacity: 1;
}

/*
#type_product0:before {
	background:url(/calc/css/images/icon-product0.png) no-repeat;
}

#type_product1:before {
	background:url(/calc/css/images/icon-product1.png) no-repeat;
}
*/

.calc-s-type-product-div:hover .calc-s-type-product-name {
    opacity: 0.7;
}

.calc-s-type-product-div.selected .calc-s-type-product-name {
    opacity: 1.0;
}

.calc-s-type-product-div,
.calc-s-type-product-name,
.form-item-container,
.calc-s-items-border {
    -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;
}

.type-form-div {
    width: 100%;
    padding: 20px 0;
}

.calc-s-step {
    clear: both;
    padding: 0 0 100px 0;
}

.calc-s-step-cont {
    position: relative;
}


.calc-s-form-type-item,
.type-washing-item {
    float: left;
    width: 33.333333%;
    padding: 0 15px 30px 15px;
}

.prd2 .calc-s-form-type-item {
    width: 25%;
}

.type-washing-item {
    width: 20%;
    box-sizing: border-box;
    padding: 0 5px;
}

.form-item-container,
.type-washing-item-container {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
    position: relative;
}

.form-item-container:hover,
.type-washing-item-container:hover {
    opacity: 1.0;
}


.form-item-container.selected,
.type-washing-item-container.selected {
    opacity: 1.0;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}


.calc-s-form-item-title,
.type-washing-item-title {
    font-size: 16px;
    padding: 0 0 20px 0;
    font-weight: 700;
    position: relative;
}

.form-item-container.selected .calc-s-form-item-title:before {
    content: "";
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    left: 50%;
    top: -50px;
    margin-left: -20px;
    border-radius: 50%;
    background: #0169B3;
    background-image: url(../images/calc/check-white.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
}

.type-washing-item-title {
    height: 40px;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

.calc-s-items-border {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #0169B3;
    box-sizing: border-box;
}

.form-item-container.selected .calc-s-items-border,
.type-washing-item-container.selected .calc-s-items-border {
    opacity: 1.0;
}

.calc-s-type-form-icon img,
.type-washing-icon img {
    width: 100%;
}

.type-stone-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 12px;
    font-size: 13px;
    background: #8098a5;
    color: #fff;
    font-weight: normal;
}


/* Start:/calc/css/lib/magnific-popup.css?155962920011380*/
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}


/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;


    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);

    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}


/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;

    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* End */


/* Start:/calc/css/lib/tooltipster.bundle.min.css?15792591248183*/
.tooltipster-fall, .tooltipster-grow.tooltipster-show {
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -moz-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -ms-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-base {
    display: flex;
    pointer-events: none;
    position: absolute
}

.tooltipster-box {
    flex: 1 1 auto
}

.tooltipster-content {
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto
}

.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden
}

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity
}

.tooltipster-fade.tooltipster-show {
    opacity: 1
}

.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden
}

.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform
}

.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    -moz-transform: rotateZ(0);
    -o-transform: rotateZ(0);
    -ms-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 1);
    -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    -moz-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    -ms-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    -o-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
    transition-timing-function: cubic-bezier(.23, .635, .495, 2.4)
}

.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-fall.tooltipster-initial {
    top: 0 !important
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0
}

.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
    -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -moz-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -ms-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
    transition-timing-function: cubic-bezier(.175, .885, .32, 1.15)
}

.tooltipster-slide.tooltipster-initial {
    left: -40px !important
}

.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0
}

@keyframes tooltipster-fading {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading .4s
}

@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg)
    }
    75% {
        transform: rotate(2deg)
    }
    100% {
        transform: rotate(0)
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating .6s
}

@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling .6s
}

.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px
}

.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px
}

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 0;
    width: 10px
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px
}

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0
}

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0;
    top: 3px
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0;
    top: -3px
}

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #000
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #000
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #000
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #000
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
    border: none;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, .1)
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box {
    margin-top: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box {
    margin-right: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box {
    margin-left: 6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box {
    margin-bottom: 6px
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
    color: #8d8d8d
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow {
    height: 6px;
    margin-left: -6px;
    width: 12px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow, .tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow {
    height: 12px;
    margin-left: 0;
    margin-top: -6px;
    width: 6px
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background {
    display: none
}

.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border {
    border: 6px solid transparent
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fff
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -6px
}

.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped {
    left: -6px
}

/* End */


/* Start:/calc/css/calc_style.css?158074028169025*/
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,700,800');*/

label {
    cursor: pointer;
}

.bx-container {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bx-container {
        width: 750px !important;
    }
}

@media (min-width: 992px) {
    .bx-container {
        width: 970px !important;
    }
}

@media (min-width: 1200px) {
    .bx-container {
        width: 1170px !important
    }
}

.col-xs-12 {
    width: 100%;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;

}

.calc-fl p,
.wn-calc p {
    padding: 0 !important;
    margin: 0 !important;
}

.calc-s-container a.wn-link {
    text-decoration: none;
}

.calc-s-container p {
    margin: 3px 0;
}

.calc-s-container br,
.calc-fl br,
.wn-calc br {
    /*display:none;*/
}

.calc-s-container a:focus {
    outline: none;
}

.calc-s-container label {
    font-weight: normal;
    max-width: initial;
}

.calc-s-container *,
.wn-calc * {
    box-sizing: border-box;
}

.calc-s-container ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.calc-s-container ul > li {
    margin: 0;
    padding: 0;
}

.cl-mob {
    display: none;
}

.inp-label {
    display: inline-block;
}

.calc-header {
    font-size: 30px;
    padding: 15px 0;
    position: relative;
    text-align: left;
    color: #423e3e;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
}

.header-title {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 55px;
    line-height: 40px;
}

.calc-content {
    position: relative;
    padding: 0;
    z-index: 2;
}

.calc-title {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
}

.calc-block {
    text-align: left;
    padding: 10px 0;
    margin: 0 auto;
}

.cl-block-title {
    font-size: 18px;
    padding: 10px 0;
    display: block;
    font-weight: 600;
    text-align: center;
}

.input-block {
    padding: 5px 0;
}

.input-block-title {
    padding: 8px 0;
    color: #999;
}

.title-div {
    font-size: 22px;
    color: #424242;
    text-align: left;
    margin-bottom: 20px;
}

/*-----Step interface-------*/


.dev .calc-steps-wrap {
    display: block;
}

.calc-s-step {
    margin: 25px 25px 0 0;
    display: none;
    width: 100%;
    position: relative;
}

.dev .calc-s-step {
    display: block;
}

.calc-s-step.active {
    display: block;
}

.calc_p_step_num {
    font-size: 22px;
    color: #bbb;
}

.calc_p_step_title {
    font-size: 30px;
    padding: 0 0 15px 0;
}

.calc_p_step_content .content-text {
    padding-bottom: 20px;
}

.calc_p_step_content ul {
    padding: 10px 15px 10px 15px;
    margin-top: 10px;
    margin-left: 20px;
    position: relative;
    transition: all .5s ease;
}

.calc_p_step_content ul.no-pd {
    padding-left: 0;
    margin-left: 0;
}

.calc_p_step_content ul:not(.no-pd) {
    background: #f8f9fa;
}

.calc_p_step_content ul.hidden {

}

.calc_p_step_content ul.open {
    webkit-animation-name: uOpen;
    animation-name: uOpen;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;

}

.calc_p_step_content p {
    font-weight: bold;
    padding: 10px 0 5px 0;
}

.calc_p_step_nav {
    padding-top: 25px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    min-height: 79px;
}

.dev .calc_p_step_nav {
    DISPLAY: none;
}

.calc_p_step_content .hint {
    display: block;
    font-size: 13px;
    color: #999;
    padding-bottom: 15px;
    padding-left: 28px;
}

.ae.do {
    webkit-animation-name: fromBottom;
    animation-name: fromBottom;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    visibility: visible;
}

.ae.do2 {
    webkit-animation-name: fromBottomH;
    animation-name: fromBottomH;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    visibility: visible;
    opacity: 0;
}


.product-selection-div {
    padding: 20px 0;
}

.product-selection-div .title-div {
    font-size: 34px;
    color: #424242;
    text-align: left;
    margin-bottom: 40px;
    text-align: center;
}

.sel-calc-s-type-product {
    width: 100%;
    margin-left: -20px;
    margin-right: -20px;
    padding: 25px 0;
    margin-bottom: 50px;
}

.calc-s-type-product-wrap {
    width: 33.33333333%;
    padding: 0 20px;
}

.calc-s-type-product-div {
    cursor: pointer;
    font-size: 22px;
    background: #f1f1f1;
    z-index: 1;
    position: relative;
    opacity: 0.6;
    border-radius: 12px;
    overflow: hidden;
}

.calc-s-type-product-div:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .25);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, transparent), to(rgba(0, 0, 0, .56)));
    background: -webkit-linear-gradient(top, transparent, transparent 25%, rgba(0, 0, 0, .56));
    background: -o-linear-gradient(top, transparent, transparent 25%, rgba(0, 0, 0, .56));
    background: linear-gradient(to bottom, transparent, transparent 25%, rgba(0, 0, 0, .56));
}


.calc-s-type-product-div:hover {
    background: #f5f5f5;
    opacity: 0.8;
}

.calc-s-type-product-div.selected {
    background: #fafafa;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 2;
    opacity: 1;
}

.calc-s-type-product-img img {
    width: 100%;
}

.layout-product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.layout-product-img.z1 {
    z-index: 1;
}

.layout-product-img.z2 {
    z-index: 2;
}

.layout-product-img.z3 {
    z-index: 3;
}

.size-mb {
    display: none;
}

.pr0 .calc-s-type-product-img {
    background: url(../images/calc/pr0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.pr1 .calc-s-type-product-img {
    background: url(../images/calc/pr1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.pr2 .calc-s-type-product-img {
    background: url(../images/calc/pr2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.calc-s-type-product-name-wrap {
    display: table;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 10;
}

.calc-s-type-product-div.selected .calc-s-type-product-name-wrap:before {
    content: "";
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    left: 50%;
    top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    background: #0169B3;
    background-image: url(../images/calc/check-white.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;

}

.calc-s-type-product-name {
    padding: 15px 18px 15px 18px;
    /*padding-left:100px;*/
    position: relative;
    height: 92px;
    box-sizing: border-box;
    opacity: 0.5;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.90);*/
    font-weight: 600;
    color: #fff;
}

.calc-s-type-product-name:before {
    content: "";
    display: block;
    width: 70px;
    height: 62px;
    position: absolute;
    top: 15px;
    left: 15px;
}


.calc-s-type-product-div:hover .calc-s-type-product-name {
    opacity: 1;
}

/*
#type_product0:before {
	background:url(/calc/css/images/icon-product0.png) no-repeat;
}

#type_product1:before {
	background:url(/calc/css/images/icon-product1.png) no-repeat;
}
*/

.calc-s-type-product-div:hover .calc-s-type-product-name {
    opacity: 0.7;
}

.calc-s-type-product-div.selected .calc-s-type-product-name {
    opacity: 1.0;
}

.calc-s-type-product-div,
.calc-s-type-product-name,
.form-item-container,
.calc-s-items-border {
    -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;
}

.type-form-div {
    width: 100%;
    padding: 20px 0;
}

.calc-s-step {
    clear: both;
    padding: 0 0 100px 0;
}

.calc-s-step-cont {
    position: relative;
}


.calc-s-form-type-item,
.type-washing-item {
    float: left;
    width: 33.333333%;
    padding: 0 15px 30px 15px;
}

.prd2 .calc-s-form-type-item {
    width: 25%;
}

.type-washing-item {
    width: 20%;
    box-sizing: border-box;
    padding: 0 5px;
}

.form-item-container,
.type-washing-item-container {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
    position: relative;
}

.form-item-container:hover,
.type-washing-item-container:hover {
    opacity: 1.0;
}


.form-item-container.selected,
.type-washing-item-container.selected {
    opacity: 1.0;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}


.calc-s-form-item-title,
.type-washing-item-title {
    font-size: 16px;
    padding: 0 0 20px 0;
    font-weight: 700;
    position: relative;
}

.form-item-container.selected .calc-s-form-item-title:before {
    content: "";
    display: block;
    position: absolute;
    margin: 0 auto;
    width: 40px;
    height: 40px;
    left: 50%;
    top: -50px;
    margin-left: -20px;
    border-radius: 50%;
    background: #0169B3;
    background-image: url(../images/calc/check-white.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
}

.type-washing-item-title {
    height: 40px;
    width: 100%;
    padding: 0;
    font-size: 14px;
}

.calc-s-items-border {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #0169B3;
    box-sizing: border-box;
}

.form-item-container.selected .calc-s-items-border,
.type-washing-item-container.selected .calc-s-items-border {
    opacity: 1.0;
}

.calc-s-type-form-icon img,
.type-washing-icon img {
    width: 100%;
}

.type-stone-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 3px 12px;
    font-size: 13px;
    background: #8098a5;
    color: #fff;
    font-weight: normal;
}

.item-image-wrap {
    width: 100%;
    height: 135px;
    overflow: hidden;
}

.item-image-wrap img {
    width: 100%
}

/*--------Каталог (всплывающее окно) --------*/

#calc_s_still_add,
#calc_s_still_add_element {
    display: flex;
    flex-wrap: wrap;
}

#calc_s_still_add > div {
    width: 120px !important;
}

#calc_s_still_add_element > div {
    width: 16.66666667% !important;
    margin: 10px 0;
}

#calc_s_still_add > div a,
#calc_s_still_add_element > div a {
    display: block;
    transition: all .25s ease;
}

#calc_s_still_add_element > div a:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    text-decoration: none;
}

#calc_s_still_add > div a .item-image-wrap,
#calc_s_still_add_element > div a .item-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 5px;
}

#calc_s_still_add > div a .item-image-wrap img,
#calc_s_still_add_element > div a .item-image-wrap img {
    max-height: 78px;
}

#calc_s_still_add_element > div a .item-image-wrap {
    height: initial;
    border: none;
}

.cl-loading-img {
    display: block;
    height: 130px;
    width: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiICB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMCAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4gICAgPHBhdGggZmlsbD0iI2U4NGMzZCIgZD0iTTczLDUwYzAtMTIuNy0xMC4zLTIzLTIzLTIzUzI3LDM3LjMsMjcsNTAgTTMwLjksNTBjMC0xMC41LDguNS0xOS4xLDE5LjEtMTkuMVM2OS4xLDM5LjUsNjkuMSw1MCI+ICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiAgICAgICAgICBhdHRyaWJ1dGVUeXBlPSJYTUwiICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICBkdXI9IjFzIiAgICAgICAgICBmcm9tPSIwIDUwIDUwIiAgICAgICAgIHRvPSIzNjAgNTAgNTAiICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgPC9wYXRoPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 100px 100px;
    background-position: center center;
}

.cl-loading {
    position: relative;
}

.cl-loading:after {
    content: "";
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiICB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMCAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4gICAgPHBhdGggZmlsbD0iI2U4NGMzZCIgZD0iTTczLDUwYzAtMTIuNy0xMC4zLTIzLTIzLTIzUzI3LDM3LjMsMjcsNTAgTTMwLjksNTBjMC0xMC41LDguNS0xOS4xLDE5LjEtMTkuMVM2OS4xLDM5LjUsNjkuMSw1MCI+ICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiAgICAgICAgICBhdHRyaWJ1dGVUeXBlPSJYTUwiICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICBkdXI9IjFzIiAgICAgICAgICBmcm9tPSIwIDUwIDUwIiAgICAgICAgIHRvPSIzNjAgNTAgNTAiICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgPC9wYXRoPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-size: 70px 70px;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
}

button.cl-loading:after {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-size: 70px 70px;
    top: 0;
    left: 0;
    margin-top: initial;
    margin-left: initial;
}

.item-link {
    position: relative;
    cursor: default;
}

.item-link .calc-s-btn-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 7px 6px rgba(0, 0, 0, .15);
    text-align: center;
    width: 100%;
    height: 52px;
    transition: all .25s ease;
    opacity: 0;
    padding: 8px 0;
}

.item-link:hover .calc-s-btn-wrap {
    opacity: 1;
}

#calc_s_still_add > div a p {
    text-overflow: ellipsis;
    text-align: center;
    overflow: hidden;
}

#calc_s_still_add_element > div a p {
    text-align: center;
}

#calc_s_still_add_element > div a .item-price {
    color: #565656;
}


.color-stone-img {
    padding: 0 10% 0 0;
}

.color-img-wrap {
    position: relative;
    display: block;
}

.color-stone-img img {
    max-width: 100%;
}

.calc-prod-item-prop-ln {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.calc-prod-item-prop-ln:last-child {
    border-bottom: none;
}

.calc-prod-item__title {
    color: #999;
    display: inline-block;
    width: 30%;
}

.calc-prod-item__value {
    color: #000;
    font-size: 16px;
    width: 70%;
}

.inp-btn:not(#stone) input[type="radio"] {
    display: none !important;
    visibility: hidden !important;
}

.inp-btn:not(#stone) p {
    padding: 0 !important;
}


.inp-btn:not(#stone) input[type="radio"] + label {
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #dadada;
    border-radius: 2px;
    cursor: pointer;
    margin: 0 10px 8px 0;
    transition: all .25s ease;
    position: relative;
    font-size: 14px;
}

.inp-btn:not(#stone) input[type="radio"] + label:hover {
    border: 1px solid #b1b1b1;
}

.inp-btn:not(#stone) input[type="radio"]:checked + label {
    background: #fff;
    box-shadow: 0 3px 9px rgba(0, 0, 0, .2);
}

.inp-btn:not(#stone) input[type="radio"]:checked + label:after {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    left: -1px;
    border: 2px solid #b30600;
    border-radius: 2px;
}

#stone p {
    display: none;
}

#stone label {
    display: inline-block;
    margin-right: 10px;
}

.item-name {
    height: 45px;
    overflow: hidden;
}

.calc-s-container .calc-s-type-product {
    margin: 0 auto;
    position: relative;
}

.calc-s-type-product-wrapper {
    overflow: visible;
}

.calc-s-container .calc-s-type-product.line {
    min-width: 960px;
    width: 960px;
    margin: 0 auto;
}

.calc-s-container .calc-s-type-product.angleLeft {
    min-width: 960px;
    width: 960px;
    margin: 0 auto;
}

.calc-s-container .calc-s-type-product.angleP {
    min-width: 960px;
    width: 960px;
    margin: 0 auto;
}

.calc-s-type-product-img {
    width: 100%;
    min-height: 280px;
}


.calc-s-container .calc-s-type-product-pd-0 {
    width: 800px;
    height: 597px;
    background: url('/calc/css/images/podokonnik0.png') left top no-repeat;
}

.calc-s-container .calc-s-type-product-pd-1 {
    width: 800px;
    height: 597px;
    background: url('/calc/css/images/podokonnik1.png') left top no-repeat;
}


.calc-s-container .calc-s-type-product-pd-2 {
    width: 800px;
    height: 597px;
    background: url('/calc/css/images/podokonnik2.png') left top no-repeat;
}


.manufacturer-item,
.mateirals-item,
.profiles-item,
.border-item {
    float: left;
    width: 25%;
    padding: 15px;
}

.manufacturer-item-container,
.mateirals-item-container,
.profiles-item-container,
.border-item-container {
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
    opacity: 0.7;
    position: relative;
}

.manufacturer-item-container:hover,
.mateirals-item-container:hover,
.profiles-item-container:hover,
.border-item-container:hover {
    opacity: 1.0;
}

.manufacturer-item-container.selected .calc-s-items-border,
.mateirals-item-container.selected .calc-s-items-border,
.profiles-item-container.selected .calc-s-items-border,
.border-item-container.selected .calc-s-items-border {
    opacity: 1.0;
}

.manufacturer-icon img,
.profiles-icon img,
.border-icon img {
    width: 100%;
}

.profiles-icon,
.border-icon {
    padding-top: 20px;
}

.manufacturer-item-container.selected,
.mateirals-item-container.selected,
.profiles-item-container.selected,
.border-item-container.selected {
    opacity: 1.0;
    background: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
}


.manufacturer-item-title,
.mateirals-item-title,
.profiles-item-title,
.border-item-title {
    font-size: 16px;
    padding: 0 0 20px 0;
    font-weight: 700;
}

.mateirals-name-wrap {
    display: table;
    width: 100%;
}

.mateirals-name {
    text-align: center;
    font-size: 18px;
    height: 60px;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.mateirals-item-title {
    padding: 0 0 15px 0;
}

.mateirals-item-title {
    color: #999;
    font-weight: normal;
    font-size: 16px;
}

.mateirals-item-title span {
    color: #B30600;
    font-weight: bold;
}

.sel-color-materials-div {
    display: none;
}

.type-stone {
    padding: 20px 0;
}

.stone-item-ln {
    display: inline-block;
    padding: 0 15px;
}

.type-stone span.icr-text {
    text-decoration: underline;
    cursor: pointer;
    font-size: 18px;

    margin-left: 5px;
}

.type-stone .checked span.icr-text {
    color: #b30600;
}

.type-collection-div {
    cursor: pointer;
    font-size: 22px;
    background: #f1f1f1;
    z-index: 1;
    position: relative;
    width: 33.3333%;
    display: table;
    border-left: 8px solid #fff;
}

.type-collection-div:hover {
    background: #f5f5f5;
}

.type-collection-name {
    padding: 15px 18px 15px 18px;
    /*padding-left:100px;*/
    position: relative;
    height: 75px;
    box-sizing: border-box;
    opacity: 1;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border: 1px solid #eb0341;
    color: #313131;
}

.type-collection-div.selected {

    z-index: 2;

    border: 0;
    border-left: 8px solid #fff;
}

.type-collection-div.selected .type-collection-name {
    border: 0;
    background: #eb0341;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.calc-result-img label {
    display: block;
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
}

.calc-result-table {
    width: 100%;
    border-collapse: collapse;
}

.calc-result-table td {
    padding: 10px;
    font-size: 16px;
    vertical-align: top;
}

.result-list-td1 {
    color: #212121;
    border: 0;
}

.result-list-td, .result-list-td2, .result-list-td3 {
    border: 0;
    border-bottom: 1px solid #ececec;
    width: 50%;
}

.result-list-td2, .result-list-td3 {
    color: #346680;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.calc-result-table tr:last-child td {
    font-size: 26px;
    font-weight: bold;
    border-bottom: none !important;
}

.calc-result-table tr:last-child td.result-list-td3 {
    color: #f00;
}

.sel-washing-div {

}


.type-washing-div:hover .type-collection-name {
    opacity: 0.7;
}

.type-washing-div.selected .type-collection-name {
    opacity: 1.0;
}

.type-washing-div {
    cursor: pointer;
    font-size: 22px;
    background: #f1f1f1;
    z-index: 1;
    position: relative;
    width: 33.3333%;
    display: table;
    border-left: 8px solid #fff;
}


.type-washing-div:hover {
    background: #f5f5f5;
}

.type-washing-div.selected {
    z-index: 2;
}

.type-washing-div.selected .type-collection-name {
    border: 0;
    background: #eb0341;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.type-collection-div:hover .type-collection-name {
    opacity: 0.7;
}

.type-collection-div.selected .type-collection-name {
    opacity: 1.0;
}

.stone-color__item {
    float: left;
    width: 25%;
    transition: all .25s ease;
    cursor: pointer;
}

.stone-color__item:hover {
    background: #f1f1f1;
    border-radius: 6px;

}

.stone-color__item .color {
    margin: 14px 26px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #000;
}

.stone-color__item img {
    width: 100%;
}

.stone-color__item .hint {
    font-weight: bold;
}

.tags-colors {
    padding: 0 0 10px 0;
}

.tags-colors .color-tag {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    margin: 5px 5px 5px 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
    transition: all .25s ease;
}

.tags-colors .group-tag {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    margin: 5px 5px 5px 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
    transition: all .25s ease;
}

.tags-colors .subgroup-tag {
    display: inline-block;
    padding: 8px 10px;
    border-radius: 2px;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    color: #333;
    border: 1px solid #333;
    margin: 5px 5px 5px 0;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.15);
    transition: all .25s ease;
}

.tags-colors .color-tag:hover {
    border: 1px solid #999;
}

.tags-colors .group-tag:hover {
    border: 1px solid #999;
}

.tags-colors .subgroup-tag:hover {
    border: 1px solid #999;
}


.color-tag.tag-selected,
.color-tag.tag-selected:hover {
    border: 2px solid #eb0341;
}

.group-tag.tag-selected,
.group-tag.tag-selected:hover {
    border: 2px solid #eb0341;
}

.subgroup-tag.tag-selected,
.subgroup-tag.tag-selected:hover {
    border: 2px solid #eb0341;
}

.stone-color-list__sel-collection {
    margin-bottom: 15px;
}


.profiles-item-wrap,
.border-item-wrap {
    display: inline-block;
    position: relative;
}

.edge-view-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 8px solid #fff;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

.edge-view-btn img {
    width: 100%;
    opacity: 0.6;
}

.edge-view-btn:hover img {
    opacity: 1;
}

.edge-view-btn:focus {
    outline: none;
}

.step-cont-title {
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
}

.calc-s-container input[type="text"].input-dimension {
    text-align: left;
    width: 70px;
    padding: 0px 15px 0 5px;
    vertical-align: top;
}

.label-r {
    cursor: pointer;
    color: #313131;
    display: inline-block;
}

#calc-s-add_bar, #calc-s-add_island {
    /*float:left;
    width:315px;*/
    margin: 15px 0;
}


.stone-img-div {
    width: 750px;
    height: 440px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.stone-img {
    position: absolute;
    top: -30px;
    left: 0;
    z-index: 2;
    max-width: initial;
}

.calc-s-type-product-form-img {
    position: absolute;
    z-index: 10;
}

.div-radius {
    position: absolute;
    z-index: 20;
    color: #fff;
    font-weight: 600;
}


.calc-s-container input[type="text"]:focus {
    background-color: #fbf9e8;
    outline: none;
}

.calc-s-container .calc-s-type-product {
    position: relative;
    /*overflow:hidden;*/
}

.calc-s-container .calc-s-type-product label.pr-check-label,
#bar_pic label.pr-check-label, #island_pic label.pr-check-label,
.pr-div-label,
.inp-product-el {
    position: absolute;
    z-index: 100;
}

.pr-div-label {

}

.calc-s-container .calc-s-type-product label.pr-check-label span,
.calc-s-container .type-addproduct label.pr-check-label span,
.calc-s-container .type-addproduct label.inp-product-el span {
    position: absolute;
    top: 6px;
    right: 5px;
    color: #b30600;
    font-weight: 600;
}

.calc-s-type-product-info {
    font-size: 16px;
    text-align: center;
    position: relative;
    top: -50px;
    color: #a5a5a5;
}

.type-addproduct-div {
    padding-top: 30px;
}

.checkbox-sw-title {
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
}

#bar_pic, #island_pic {
    margin-top: 20px;
}

#bar_pic {
    width: 360px;
}

#island_pic {
    width: 400px;
}

.list-wrap {
    margin: 0 -12px;
}

.washing-item-wrap {
    float: left;
    width: 100%;
}

.washing-item-col {
    float: left;
    width: 20%;
}

.washing-item {
    margin: 5px;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    display: block;
    cursor: pointer;
    transition: color .25s ease;
    border: 1px solid #fff;
}

.washing-item:hover {
    border: 1px solid #ccc;
}

.ws-col-0 {
    width: 10%;
    text-align: center;
    padding-top: 80px;
}

.ws-col-1 {
    width: 20%;
}

.ws-col-2 {
    width: 20%;
    padding: 60px 0 0 0;
    font-size: 20px;
    font-weight: 600;
}

.ws-col-2 span {
    padding-left: 20px;
}

.ws-col-3 {
    width: 25%;
    padding: 65px 0 0 0px;
    font-size: 20px;
}

.ws-col-4 {
    width: 15%;
    padding: 60px 0 0 0px;
    font-size: 20px;
    color: #eb0341;
    font-weight: 600;
}

.ws-col-5 {
    width: 20%;
    padding: 50px 0 0 0px;
    font-size: 20px;
    color: #eb0341;
    font-weight: 600;
}


img.washing_img {
    width: 100%;
}

.washing-data {
    padding: 30px 0;
}

.washing-title {
    font-size: 24px;
    font-weight: bold;
    padding: 15px 0;
    font-size: 16px;
}

.washing-size,
.washing-form,
.washing-price {
    padding: 5px 0;
}

.washing_size {
    font-size: 16px;
    color: #777;
}

.add-washing-info {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #999;
}

.washing-size, .washing-price {
    padding: 5px 0;
}

.washing-price span {
    color: #b30600;
}


.washing-sel-size-img-wrap {
    margin: 10px;
}

.washing-sel-size-img {
    width: 100%;
}

.list-washing-size {
    padding: 20px 0;
}

.sel-washing-btn-div {
    padding: 30px 0;
    text-align: left;
}


#washing1_div, #washing2_div {
    padding: 20px;
    border: 1px solid #eee;
    margin-top: 10px;
}

.washing-label {
    font-weight: bold;
    display: inline-block;
    margin-right: 8px;
}

.list-washing__img {
    text-align: right;
    padding-right: 30px;
}

.list-washing__img img {
    width: 200px;
}

.list-washing__info {
    padding-top: 30px;
}

.list-washing__ln {
    padding: 5px 0;
}

#washing1_price,
#washing2_price {
    color: #eb0341;
}


.toogle-div {
    display: none;
}


.add-washing-btn-div {
    text-align: center;
    padding: 15px 0;
}

.add-btn {
    display: inline-block;
    font-size: 16px;
    text-decoration: underline;
    cursor: pointer;
    color: #b30600;
}

.add-btn:hover {
    color: #333;
}

.btn-del-item {
    display: inline-block;
    font-style: normal;
    font-size: 18px;
    font-family: Verdana, Arial, sans-serif, monospace;
    color: #000;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-del-item:hover {
    opacity: 1;
}

.windowsill-content {
    padding-top: 30px;
}

.windowsill-item-wrap {
    transition: all .5s ease;
}

.windowsill-item-block {
    padding: 15px 0;
    /*transition: all .25s ease;*/
}

.windowsill-item {
    box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.15), 0px 0px 4px rgba(0, 0, 0, 0.15);
    padding: 15px;
    /*margin: 8px 0 0 0;*/
}

.windowsill-item__content {
    position: relative;
}

.windowsill-item__col {
    float: left;
    box-sizing: border-box;
}

.windowsill-item__col.ws-col-img {
    width: 35%;
}

.windowsill-item__col.ws-col-name {
    width: 30%;

}

.windowsill-item__col.ws-col-count {
    width: 25%;
    padding-top: 28px;
}

.windowsill-item__col.ws-col-del {
    width: 10%;
    padding-top: 46px;
}

.sill_name {
    font-weight: bold;
    padding-bottom: 8px;
}


.windowsill_amount:focus {
    outline: none;
}

.windowsill-item__col .btn-delete {
    text-decoration: underline;
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding-left: 22px;
}

.windowsill-item__col .btn-delete:hover {
    color: #eb0341;
}

.windowsill-item__col .btn-delete:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/calc/css/images/rubbish-bin.svg) no-repeat;
    background-size: cover;
}

.label-var-cutout {
    width: 140px;
    display: inline-block;
}


.cl-inp {
    padding: 5px 0;
}

.calc-inputs {
    margin-top: 10px;
    padding: 15px;
    background: #f8f8f8;
}

.calc-inputs-title {
    text-align: center;
    font-size: 18px;
    color: #0083c1;
    font-weight: bold;
}

.calc-inputs-title:after {
    content: "";
    display: block;
    position: relative;
    border-bottom: 1px solid #ccc;
    top: -16px;
    margin: 0 20px;
    z-index: 1;
}

.calc-inputs-title span {
    display: inline-block;
    padding: 5px 15px;
    background: #f8f8f8;
    position: relative;
    z-index: 10;
}

.toogle-div {
    display: none;
}

.cl-line {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #cad0d2;
}

.cl-line.last-ln {
    border-bottom: 0;
}

.cl-block {
    padding: 3px 0;
}

.ln-title {
    font-weight: bold;
    padding-bottom: 5px;
}

.cl-st {
    display: none;
}

.cl-name {
    float: left;
    width: 50%;
    padding-top: 7px;
}

.cl-name.n-pd {
    padding-top: 0;
}

.cl-name-wd {
    padding-bottom: 8px;
}

.cl-name-gates,
.cl-name-wicket {
    font-weight: bold;
}

.cl-name-title {
    line-height: 1.1;
    padding: 10px 0;
    word-wrap: break-word;
}

.cl-name-desc {
    line-height: 1.1;
    font-size: 13px;
    color: #9b9b9b;
}

.cl-value {
    float: left;
    width: 50%;
}

.cl-note {
    font-size: 12px;
    color: #157a2a;
    font-style: italic;
    padding-top: 3px;
}

.calc-left {
    float: left;
    box-sizing: border-box;
}

.cl-right {
    width: 47%;
    float: left;
    box-sizing: border-box;
}

.cl-f-left {
    width: 25%;
    float: left;
    margin-right: 5%;
}

.cl-f-right {
    width: 70%;
    float: left;
}

.cl10 {
    width: 10%;
}

.cl15 {
    width: 15%;
}

.cl17 {
    width: 17%;
}

.cl20 {
    width: 20%;
}

.cl25 {
    width: 25%;
}

.cl30 {
    width: 30%;
}

.cl35 {
    width: 35%;
}

.cl40 {
    width: 40%;
    margin-right: 10px
}

.cl45 {
    width: 45%;
}

.cl50 {
    width: 50%;
}

.cl55 {
    width: 55%;
}

.cl60 {
    width: 60%;
}

.cl63 {
    width: 63%;
}

.cl65 {
    width: 65%;
}

.cl70 {
    width: 70%;
}

.cl80 {
    width: 80%;
}

.cl90 {
    width: 90%;
}

.calc-s-container .clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}

.calc-sel-div-md {
    text-align: center;
}

.al-center {
    text-align: center;
}

.calc-s-container .hidden {
    opacity: 0;
}

.calc-questions .cl-name {
    font-weight: bold;
}

.btn-del-item {
    display: inline-block;
    font-style: normal;
    font-size: 18px;
    font-family: Verdana, Arial, sans-serif, monospace;
    color: #000;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-del-item:hover {
    opacity: 1;
}

.calc-s-container input[type=radio], .calc-s-container input[type=checkbox],
.wn-calc input[type=radio], .wn-calc input[type=checkbox] {
    display: inline-block;
    height: 14px;
    width: 14px;
    border: 1px solid #aaa;
    overflow: hidden;
    margin-top: -1px;
    margin-left: 0;
    margin-right: 5px;
    vertical-align: top;
    -webkit-appearance: none;
    outline: 0;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.calc-s-container input[type=radio], .calc-s-container input[type=checkbox],
.wn-calc input[type=radio], .wn-calc input[type=checkbox] {
    height: 20px;
    width: 20px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.12);
}

.calc-s-container input[type=radio],
.wn-calc input[type=radio] {
    border-radius: 50%;
}

.calc-s-container input[type=radio]:hover, .calc-s-container input[type=checkbox]:hover,
.wn-calc input[type=radio]:hover, .wn-calc input[type=checkbox]:hover {
    border: 1px solid #8a8a8a;
}

.calc-s-container input[type=checkbox]:before, .calc-s-container input[type=radio]:before,
.wn-calc input[type=checkbox]:before, .wn-calc input[type=radio]:before {
    display: block;
}

.calc-s-container input[type=checkbox]:checked:before, .calc-s-container input[type=checkbox]:indeterminate:before,
.wn-calc input[type=checkbox]:checked:before, .wn-calc input[type=checkbox]:indeterminate:before {
    content: "";
    -webkit-font-smoothing: antialiased;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    color: #ef800d;
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: url(../images/calc/check.svg) no-repeat;
    background-size: cover;
}

.calc-s-container input[type=radio]:checked:before,
.wn-calc input[type=radio]:checked:before {
    content: '';
    margin: 2px auto 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 4px auto 0;
    background: #0169B3;
}

.calc-s-container input[type="text"],
.calc-s-container input[type="number"],
.calc-s-container select {
    display: block;
    height: 32px;
    line-height: 30px;
    text-align: left;
    width: 500px;
    max-width: 100%;
    padding: 0 0 0 8px;
    border: 1px solid #becacf;
    background: #fff;
    font-size: 16px;
    color: #555;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    -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;
    box-sizing: border-box;
    margin-bottom: 0;
    box-shadow: 0 2px 12px -7px inset;
}

#calc_send_form input[type="text"] {
    margin-bottom: 15px;
}

.calc-s-container input[type="text"].doors-size__input,
.calc-s-container input[type="number"].doors-size__input {
    height: 52px;
    line-height: 50px;
    padding-left: 60px;
    font-size: 26px;
    color: #f00;
    font-weight: bold;
}

.calc-s-container input[type="text"].inp-sml,
.calc-s-container input[type="number"].inp-sml,
.calc-s-container select.inp-sml {
    width: 100px;
    display: inline-block;
}

.calc-s-container input[type="text"].size-input,
.calc-s-container input[type="number"].size-input {
    background: transparent;
    border: 1px solid #ffffff;
    text-align: center;
    color: #ffffff;
}

.calc-s-container input[type="text"].wide-input {
    width: 100%;
    display: block;
}

.calc-s-container input[type="text"].slider-input {
    max-width: 47%;
    font-size: 20px;
    height: 46px;
    line-height: 46px;
    text-align: right;
    padding: 0px 5%;

}

.calc-s-container select.radius-sel {
    display: inline-block;
    width: initial;
    height: 24px;
    font-size: 13px;
    margin-top: 5px;
    padding: 0;
}

.calc-s-container select.sel-island,
.calc-s-container select.sel-bar {
    max-width: 200px;
    margin: 5px 0 8px 0;
}

#inp__printing {
    max-width: 160px;
    padding: 0 0 0 16px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
    margin-top: 8px;
}

.calc-s-container input[type="text"].input-size {
    height: 20px;
    line-height: 18px;
    margin: 2px 0;
    position: absolute;
    width: 46px !important;
    text-align: center;
    font-size: 14px;
    padding: 0;
}

.curtain-inp-label {
    position: absolute;
}

.curtain-inp-label span {
    position: absolute;
    top: 5px;
    right: 3px;
    color: #0083c1;
    font-weight: bold;
}

.input-size-title {
    display: inline-block;
    width: 60px;
}

.calc-spinner {
    width: 50px;
    height: 31px;
    line-height: 31px;
    font-size: 18px !important;
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    height: 26px !important;
    line-height: 26px !important;
}

.calc-spinner:focus,
.calc-input:focus,
.slider-input:focus {
    outline: none;
}

.calc-s-container input[type="number"].calc-number {
    padding-right: 0;
}

.inputs-block {
    padding: 5px 0;
}

.inputs-div {
    padding-bottom: 15px;
}

.input-title {
    display: inline-block;
    min-width: 15px;
}

.title-span {
    display: block;
    padding: 5px 0;
}

.tpl {
    display: none;
}

.calc-disabled {
    opacity: 0.6;
}

.calc-s-btn {
    display: inline-block;
    padding: 12px 26px;
    margin: 5px 0;
    cursor: pointer;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    box-sizing: border-box;
    vertical-align: middle;
    border-radius: 4px;
    position: relative;
    -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;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
    background: #0169B3;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
}

.calc-s-btn:hover {
    background: #0069B4;
    outline: 0 none;
    text-decoration: none;
}

.calc-s-btn:active {
    background: #0069B4;
}

.calc-s-btn:focus {
    outline: none;
}

.calc-s-btn.btn-next {
    padding-right: 50px;
    border-radius: 22px;
}

.calc-s-btn.btn-next:after {
    content: "";
    position: absolute;
    top: 8px;
    right: 8px;
    display: block;
    width: 28px;
    height: 28px;
    background: #0069B4;
    background-image: url(../images/calc/right-arrow.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center center;
    border-radius: 50%;
}

.calc-s-btn.btn-next:hover:after {
    webkit-animation-name: btnNext;
    animation-name: btnNext;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 600ms;
    animation-duration: 600ms;
}

.calc-s-btn.btn-prev {
    background: #DBDBDB;
    color: #4A4A4A !important;
    box-shadow: none;
    position: absolute;
    right: 0;
    top: 25px;
    border-radius: 22px;
}

.calc-s-btn.btn-home,
.calc-s-btn.btn-back {
    position: relative;
    background: #F5F5F5;
    color: #4A4A4A !important;
    border-radius: 22px;
    border: 1px solid #b8c4d4;
    padding-left: 50px;
}

.calc-s-btn.btn-home:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 20px;
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/calc/home.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.calc-s-btn.btn-back:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 20px;
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/calc/back-arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.calc-s-btn.btn-prev:hover,
.calc-s-btn.btn-home:hover,
.calc-s-btn.btn-back:hover {
    background: #f1f2f3;
    color: #555 !important;
}

.calc-s-btn.btn-sel-stone {
    padding: 20px 26px 20px 60px;
}

.calc-s-btn.btn-sel-stone:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 20px;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url(../images/calc/pantone.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.calc-s-btn.calc-loading {
    padding-right: 46px;
}

.calc-s-btn.calc-loading:before {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiICB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMCAwIiB4bWw6c3BhY2U9InByZXNlcnZlIj4gICAgPHBhdGggZmlsbD0iIzMxMzEzMSIgZD0iTTczLDUwYzAtMTIuNy0xMC4zLTIzLTIzLTIzUzI3LDM3LjMsMjcsNTAgTTMwLjksNTBjMC0xMC41LDguNS0xOS4xLDE5LjEtMTkuMVM2OS4xLDM5LjUsNjkuMSw1MCI+ICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiAgICAgICAgICBhdHRyaWJ1dGVUeXBlPSJYTUwiICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICBkdXI9IjFzIiAgICAgICAgICBmcm9tPSIwIDUwIDUwIiAgICAgICAgIHRvPSIzNjAgNTAgNTAiICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPiAgPC9wYXRoPjwvc3ZnPg==);
    background-size: cover;
}

.order-btn-div {
    padding: 15px 0;
}

.calc-s-btn-div {
    text-align: center;
    padding: 15px 0;
}

.btn-calculate-div {
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

.btn-clear {
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    position: absolute;
    display: inline-block;
    padding-right: 24px;
    top: 13px;
    right: -100%;
    opacity: 0.5;
}

.btn-clear:hover {
    opacity: 0.7;
}

.btn-clear:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../images/calc/clear.svg) no-repeat;
    position: absolute;
    top: 0;
    right: 0;
}

.btn-nofilling {
    background: none;
    border: 1px solid #313131;
    color: #313131 !important;
}

.btn-nofilling:hover {
    background: #f0f0f0 !important;
    border: 1px solid #313131;
}

.fence-side-ln {
    padding: 5px 0;
}

.del-side-btn {
    display: inline-block;
    width: 12px;
    height: 12px;
    cursor: pointer;
    background: url(/calc/css/images/del-btn.svg) no-repeat;
    background-size: cover;
    opacity: 0.6;
    margin-left: 20px;
    margin-top: 9px;
}

.del-side-btn:hover {
    opacity: 1;
}

#add_side_btn,
.calc-s-btn-small {
    height: 32px;
    line-height: 30px;
    padding: 0 15px;
    margin: 0;
    font-size: 14px;

}

#add_side_btn {
    margin-left: 20px;
}

.add-smeta-btn {
    padding: 5px 10px;
}

#btn_order {
    padding: 12px 26px 12px 54px;
}

#btn_order:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 11px;
    left: 26px;
    background: url(/calc/css/images/envelope.svg) no-repeat;
}

#btn_save {
    padding: 12px 26px 12px 52px;
}

#btn_save:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 11px;
    left: 26px;
    background: url(/calc/css/images/download.svg) no-repeat;
}

#btn_measurement:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 11px;
    left: 26px;
    background: url(/calc/css/images/measurementl.svg) no-repeat;
}

#btn_print, #btn_measurement {
    padding: 12px 26px 12px 56px;
}

#btn_print:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 11px;
    left: 26px;
    background: url(/calc/css/images/printer.svg) no-repeat;
}

.tooltip__info {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1NTEuMTMgNTUxLjEzIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDU1MS4xMyA1NTEuMTMiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTI3NS41NjUgMGMtMTUxLjk0NCAwLTI3NS41NjUgMTIzLjYyMS0yNzUuNTY1IDI3NS41NjVzMTIzLjYyMSAyNzUuNTY1IDI3NS41NjUgMjc1LjU2NSAyNzUuNTY1LTEyMy42MjEgMjc1LjU2NS0yNzUuNTY1LTEyMy42MjEtMjc1LjU2NS0yNzUuNTY1LTI3NS41NjV6bTAgNTE2LjY4NWMtMTMyLjk1NSAwLTI0MS4xMTktMTA4LjE2NC0yNDEuMTE5LTI0MS4xMTlzMTA4LjE2NC0yNDEuMTIgMjQxLjExOS0yNDEuMTIgMjQxLjEyIDEwOC4xNjQgMjQxLjEyIDI0MS4xMTktMTA4LjE2NSAyNDEuMTItMjQxLjEyIDI0MS4xMnoiLz48cGF0aCBkPSJtMjU4LjM0MiA0MTMuMzQ4aDM0LjQ0NnYzNC40NDZoLTM0LjQ0NnoiLz48cGF0aCBkPSJtMjc1LjU2NSAxMDMuMzM3Yy01Ni45ODMgMC0xMDMuMzM3IDQ2LjM1My0xMDMuMzM3IDEwMy4zMzd2MzQuNDQ2aDM0LjQ0NnYtMzQuNDQ2YzAtMzcuOTk1IDMwLjg5Ny02OC44OTEgNjguODkxLTY4Ljg5MSAzNy45OTUgMCA2OC44OTEgMzAuODk3IDY4Ljg5MSA2OC44OTEgMCAyNS44NTEtMTMuNzc1IDUwLjE4OC0zNS45NDMgNjMuNDkybC00MS44MTMgMjUuMDc3Yy01LjE4IDMuMTEyLTguMzU5IDguNzEyLTguMzU5IDE0Ljc2N3Y2OC44OTFoMzQuNDQ2di01OS4xMzZsMzMuNDUzLTIwLjA2NWMzMi40NzgtMTkuNTEgNTIuNjYxLTU1LjE1IDUyLjY2MS05My4wMjcuMDAxLTU2Ljk4My00Ni4zNTMtMTAzLjMzNi0xMDMuMzM2LTEwMy4zMzZ6Ii8+PC9zdmc+);
    background-size: cover;
    cursor: pointer;
    opacity: 0.6;
    position: relative;
    top: 2px;
}

.tooltip__info:hover {
    opacity: 1.0
}

.cl-tooltip {
    display: inline-block;
}

.tooltip_content {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #313131;
    line-height: 1.5;
}

.tooltip_content img {
    width: 100%;
}

.tooltip_content__text {
    padding: 20px 0;
    font-size: 16px;
}

.tooltip_content_title {
    font-weight: bold;
    margin: 5px 0;
}

.tooltipster-content {
    padding: 20px !important;
    position: relative;
}

.alert {
    padding: 8px 35px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.alert,
.alert h4 {
    color: #c09853;
}

.alert h4 {
    margin: 0;
}

.alert .close {
    position: relative;
    top: -2px;
    right: -21px;
    line-height: 20px;
}

.alert-success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-success h4 {
    color: #468847;
}

.alert-danger,
.alert-error {
    color: #b94a48 !important;
    background-color: #f2dede !important;
    border: 1px solid #D5A0A8 !important;
}

.alert-danger h4,
.alert-error h4 {
    color: #b94a48;
}

.alert-info {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-info h4 {
    color: #3a87ad;
}

.alert-block {
    padding-top: 14px;
    padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
    margin-bottom: 0;
}

.alert-block p + p {
    margin-top: 5px;
}

#calc_messagebox {
    margin: 10px;
}

.calc-s-container input[type="text"].input-error,
.calc-s-container input[type="number"].input-error,
.wn-calc input[type="text"].input-error,
.input-error,
.calc-error {
    border: 1px solid #a00511 !important;
    background-color: #fcd9db !important;
    background: #fcd9db !important;
    color: #6a050d !important;
}

.calc-s-container input[type="text"].validate-error {
    border: 1px solid #a00511 !important;
}


.input-error.input-error.input-error.input-error::-webkit-input-placeholder {
    color: #6a050d;
}

.input-error.input-error.input-error::-moz-placeholder {
    color: #6a050d;
}

/* Firefox 19+ */
.input-error.input-error:-moz-placeholder {
    color: #6a050d;
}

/* Firefox 18- */
.input-error:-ms-input-placeholder {
    color: #c0392b;
}

.calc-s-container input[type="text"].size-input.input-error,
.calc-s-container input[type="number"].size-input.input-error {
    background-color: rgba(252, 217, 219, 0.4) !important;;
}

.input-error-div {
    color: #A00511;
    background: #F7E7E8;
    padding: 5px;
    margin-top: 10px;
}

.selectboxit-btn.input-error {
    background-color: #F1B3B3;
    background-image: none;
}

.calc-error-msg {
    padding: 10px;
    text-align: center;
    display: block;
    color: #fff;
    background: #da2e2b;
    font-family: sans-serif;
    transition: opacity 0.2s ease-out;
    font-size: 15px;
    border-radius: 6px;
    margin: 8px 0;
}

#calc_message {
    margin: 15px 15px 0 15px;
    border: 0 !important;
    border-radius: 0;
    background: none !important;
    background-color: transparent !important;
    text-align: center;
    text-shadow: none;
    max-width: 600px;
    margin: 10px auto;
    color: #b24b53 !important;
}

#form_message,
#form_message2,
#form_message3 {
    margin: 15px 15px 0 15px;
    border: 0 !important;
    border-radius: 0;
}

.total-result-div {
    padding: 30px 10px;
    font-size: 32px;
    color: #dfdee4;
    text-align: left;
    font-weight: 600;
}

.total-result-span {
    color: #b30600;
    font-size: 42px;
    font-weight: 500;
}

.total-one {
    font-size: 18px;
    color: #777;
}

.total-one-result-span {
    font-weight: bold;
    color: #313131;
    font-size: 22px;
}

.price-old-spn {
    color: #999;
    display: inline-block;
    position: relative;
}

.price-old-spn:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 8px;
    left: 0px;
    background: #999;
}

.total-result-old-span {
    color: #999;
    display: inline-block;
    position: relative;
    margin-right: 8px;
    font-weight: normal;
}

.total-result-old-span:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 21px;
    left: 0px;
    background: #999;
}


.res-ln {
    font-size: 16px;
}

.res-span {
    font-size: 18px;
    color: #0083c1;
}

.res-note {
    padding: 5px 0;
    color: #868686;
}

.calc-order-div {
    text-align: center;
    padding: 20px 0 10px 0;
}

.wn-calc {
    background: #FFF;
    max-width: 500px;
    margin: 0 auto;
    font-family: Arial, 'Arial Unicode MS', Helvetica, Sans-Serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    color: #505050;
}

#stone-color-wn {
    max-width: 1000px;
}

.wn-header {
    font-size: 18px;
    text-transform: uppercase;
    padding: 20px 10px 0px 30px;
    text-align: left;
}

.wn-content {
    padding: 15px 30px;
    overflow: auto;
    min-height: 200px;
}

.wn-footer {
    padding: 0 10px;
}

.cl-btn-form {
    padding: 0 30px 30px 30px;
    text-align: right;
}

.order-line {
    padding: 5px 0;
}

.order-line label {
    display: block;
    width: 100%;
}

.order-info {
    padding: 15px 0;
    line-height: 1.5;
}

.order-div {
    margin-top: 20px;
}

.form-loading {
    display: none;
    text-align: center;
}

.form-order-div {
    padding: 10px;
    margin: 0 10px;
}

.form-order-div input[type="text"],
.form-order-div textarea {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    border: 1px #d2d0d0 solid;
    font-size: 1em;
    color: #333;
    background-color: #fff;
    line-height: 20px;
    box-shadow: 0 1px 12px -7px inset;
    padding: 5px 6px;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 0;
}

.form-order-div input[type="text"]:focus,
.form-order-div textarea:focus {
    background-color: #F5FCF3 !important;
    outline: none;
}

.red-text {
    color: #F00;
}

.wn-btn-div {
    text-align: center;
}

.log-title {
    padding-top: 15px;
    color: #157a2a;
    font-weight: bold;
    font-size: 18px;
}

.selectboxit-container span, .selectboxit-container .selectboxit-options a {
    height: 30px;
    line-height: 30px;
    display: block;
    font-size: 14px;
}

.calc-s-container .selectboxit-btn {
    border: 1px solid #c4c4c4;
    border-radius: 1px;
    background-color: #fff;
    background-image: none;
    height: 32px;
    line-height: 32px;
    box-shadow: 0 2px 12px -7px inset;

}

.calc-s-container .selectboxit.selectboxit-hover,
.calc-s-container .selectboxit.selectboxit-focus {
    background: #f8f8f8;

}

.calc-s-container .selectboxit-btn.selectboxit-hover {
    background: #f8f8f8;
}

.calc-s-container .calc-disabled .selectboxit.selectboxit-hover,
.calc-s-container .calc-disabled .selectboxit.selectboxit-focus {
    background: #f8f8f8;
}

.calc-s-container .selectboxit-container .selectboxit {
    border-radius: 0px;
}

.calc-s-container .selectboxit-list {
    /*border: 1px solid #E2E2E2;*/
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.15);
    margin-top: 2px;
}

.calc-s-container .selectboxit-list > li {
    margin: 0;
    margin: 0;
}

.selectboxit-arrow-container {
    /*background: #889ea4;*/
}

.calc-s-container .selectboxit.selectboxit-hover .selectboxit-arrow-container,
.calc-s-container .selectboxit.selectboxit-focus .selectboxit-arrow-container {
    /* background: #7d9298;*/
}

.calc-s-container .calc-disabled .selectboxit.selectboxit-hover .selectboxit-arrow-container,
.calc-s-container .calc-disabled.selectboxit-focus .selectboxit-arrow-container {
    /*background: #889ea4;*/
}

.selectboxit-default-arrow {
    border-top: 4px solid #4F134A;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    color: #000000;
    background-color: #bcd2c1;
    background-image: none;
}

.selectboxit-container .selectboxit-options .sel-atention a {
    color: #f00 !important;
}

.calc-sel-div .selectboxit-container .selectboxit-options {
    max-height: 300px;
}

.sel-atention-wrap .selectboxit .selectboxit-text {
    color: #f00 !important;
}

.selectboxit-container .selectboxit-arrow-container {
    /* width: 21px;
     background: #e5ecef;
     border: 1px solid #fff;
     height: 30px;*/
    /*-webkit-transition: all 0.08s linear;
    -moz-transition: all 0.08s linear;
    -ms-transition: all 0.08s linear;
    -o-transition: all 0.08s linear;
    transition: all 0.08s linear;*/

}

.selectboxit-container .selectboxit-text {
    padding-right: 28px;
    max-width: 100% !important;
    position: absolute;
    padding-left: 3px;
}

.selectboxit-container#sel_color_curtainSelectBoxItContainer .selectboxit-text {
    left: 20px;
}

.icon-calc-sel {
    display: inline-block;
    width: 17px;
    height: 10px;
    background: url(/calc/css/images/icon-calc-sel.png) no-repeat;
    top: 12px !important;
}

.selectboxit-container .selectboxit-hover .selectboxit-arrow-container {
    /* background: #d1f738;*/

}

.selectboxit-container .icon-arrow-down-white {
    background: url(/calc/css/images/down-arrow.svg) no-repeat;
    top: 0px !important;
    height: 100%;
    width: 100%;
    left: 0px !important;
    background-position: center center;
    -webkit-transition: all 0.08s linear;
    -moz-transition: all 0.08s linear;
    -ms-transition: all 0.08s linear;
    -o-transition: all 0.08s linear;
    transition: all 0.08s linear;
}

.selectboxit-container .selectboxit-open .icon-arrow-down-white {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.selectboxit-container .icon-arrow-down-red {
    background: url(/calc/css/images/down-arrow-red.svg) no-repeat;
    top: 13px !important;
    height: 18px;
    left: 7px !important;
}

.calc-s-container .calc-sel-mn-div .selectboxit-btn {
    background: none;
    height: 48px;
    line-height: 48px;
}

.calc-sel-mn-div .selectboxit-container span, .calc-sel-mn-div .selectboxit-container .selectboxit-options a {
    height: 52px;
    line-height: 48px;
    display: block;
    font-size: 16px;
}

.calc-sel-mn-div .selectboxit .selectboxit-option-icon-container {
    margin-left: 0;
}

.calc-sel-mn-div .selectboxit-option-icon-url {
    width: 48px;
    background-size: 48px 48px;
}

.calc-sel-mn-div .selectboxit-arrow-container {
    background: none;
    position: relative;
    display: inline-block !important;
}

.calc-s-container .calc-sel-mn-div .selectboxit.selectboxit-hover .selectboxit-arrow-container,
.calc-s-container .calc-sel-mn-div .selectboxit.selectboxit-focus .selectboxit-arrow-container {
    background: none;
}

.calc-sel-mn-div .selectboxit-container span.selectboxit-text {
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 16px;
    margin-top: 13px;
    margin-left: 5px;
    text-indent: 0px;
    border-bottom: 1px dashed #333;
    padding-right: 0px;
}

#calc_sel_materialSelectBoxItOptions {
    min-width: 400px !important;
    background: #F0F4F5;
}

#calc_sel_materialSelectBoxIt {
    width: 100% !important;
}

.calc-sel-mn-div .selectboxit-hover #calc_sel_materialSelectBoxItText {
    color: #870D0D;
    border-color: #870D0D;
}

.sel-wd-div .selectboxit-container {
    width: 100% !important;
}

.selectboxit.sel-wd {
    width: 100% !important;
}

.sel-wd-div .selectboxit-list {
    width: 100%;
}

.selectboxit.sel-wd .selectboxit-text {
    position: absolute;
    max-width: 100% !important;
    padding-right: 24px;
}

.selectboxit.sel-wd.sel-icn .selectboxit-text {
    position: absolute;
    max-width: 100% !important;
    padding-right: 24px;
    padding-left: 24px;
}

.print-div {
    display: none;;
}

.switchery-small > small {
    height: 18px;
    width: 18px;
}

.cl-us-text__0 {
    font-size: 18px;
    color: #777;
    font-weight: bold;
    display: inline-block;
    margin-left: 20px;
}

.cl-us-text__1 {
    margin-top: 15px;
}

.cl-us-text__2 {
    font-weight: normal;
    font-size: 14px;
}

.cl-us-text__2 p {
    padding-top: 0;
    margin-top: 0;
}

.cl-us-text__3 {
    font-size: 14px;
    color: #777;
    font-weight: normal;
    margin-top: 15px;
}

.add-smeta__ln {
    padding: 8px 0;
}

.add-smeta__ln-title {
    padding-bottom: 4px;
    color: #999;
}

.del-add-ln-btn {
    position: absolute;
    top: 12px;
    right: -14px;
    cursor: pointer;
    opacity: 0.6;
    display: block;
    width: 10px;
    height: 10px;
    background: url(/calc/css/images/del-btn.svg) no-repeat;
    background-size: cover;
}

.del-add-ln-btn:hover {
    opacity: 1.0;
}

@-webkit-keyframes fromBottom {
    0% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        opacity: 0
    }
}

@keyframes fromBottom {
    0% {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
        opacity: 0
    }
}

@-webkit-keyframes fromTop {
    0% {
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
        opacity: 0
    }
}

@keyframes fromTop {
    0% {
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
        opacity: 0
    }
}

@-webkit-keyframes fromBottomH {
    0% {
        opacity: 1
    }
    100% {
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
        opacity: 0
    }
}

@keyframes fromBottomH {
    0% {
        opacity: 1
    }
    100% {
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
        opacity: 0
    }
}

.ae-1 {
    -webkit-animation-delay: 10ms;
    animation-delay: 10ms
}

.ae-2 {
    -webkit-animation-delay: 110ms;
    animation-delay: 110ms
}

.ae-3 {
    -webkit-animation-delay: 210ms;
    animation-delay: 210ms
}

.ae-4 {
    -webkit-animation-delay: 310ms;
    animation-delay: 310ms
}

.ae-5 {
    -webkit-animation-delay: 410ms;
    animation-delay: 410ms
}

.ae-6 {
    -webkit-animation-delay: 510ms;
    animation-delay: 510ms
}

.ae-7 {
    -webkit-animation-delay: 610ms;
    animation-delay: 610ms
}

.ae-8 {
    -webkit-animation-delay: 710ms;
    animation-delay: 710ms
}

.ae-9 {
    -webkit-animation-delay: 810ms;
    animation-delay: 810ms
}

.ae-10 {
    -webkit-animation-delay: 910ms;
    animation-delay: 910ms
}

.check-hide {
    opacity: 0;
}

#sill_message {
    padding: 15px;
    background: #d3f3ce;
    font-size: 16px;
    text-align: center;
    max-width: 380px;
    margin: 0 auto;
    display: none;
}

#sill_message.error {
    background: #ffcaca;
    margin-top: 20px;
}

#calc_still_add {
    padding: 18px 20px 18px 56px;
}

#calc_still_add:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 14px;
    left: 20px;
    background: url(../images/calc/add_btn.svg) no-repeat;
    background-size: cover;
    transition: all 0.25s ease;
}

#calc_still_add:hover:before {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.add-still-item {
    border: 1px solid #e8e8e8;
    border-bottom: none;
    display: flex;
    align-items: center;
}

.add-still-item:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.add-still-item > div {
    padding: 0 20px;
}

.add-still-item h3 {
    font-weight: bold;
    font-size: 18px;
}

.del-still-btn {
    padding: 8px 12px 8px 38px;
}

.del-still-btn:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 8px;
    left: 10px;
    background: url(../images/calc/bin.svg) no-repeat;
    background-size: cover;
}

.calc-color-stone-prop-ln {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.calc-color-stone-prop__title {
    color: var(--gray);
    display: inline-block;
}

.calc-btn.btn-nofilling {
    padding: 10px;
    margin-bottom: 5px;
    display: inline-block;
    background: var(--blue) !important;
    color: white !important;
    border: 1px solid var(--blue) !important;
}

.calc-btn.btn-nofilling:hover {
    background: white !important;
    color: var(--blue) !important;
}

table.calc-color-stone-prop-div {
    width: 100%;
}

.arc_oven{
    position: absolute;
    left: -128px;
    text-align: right;
    width: 120px;
}
.skos-custom{
    position: absolute;
    left: -128px;
    text-align: right;
    width: 120px;
}
@-webkit-keyframes btnNext {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes btnNext {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes uOpen {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes uOpen {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 990px) {
    .arc_oven{
        text-align: left;
    }
    .skos-custom{
        text-align: left;
        width: auto;
    }
    .calc-content {
        position: relative;
        padding: 0 15px;
        z-index: 2;
    }

    .prd2 .calc-s-form-type-item {
        width: 50%;
    }

    .sel-calc-s-type-product {
        display: block;
    }
    .calc-s-type-product-wrap {
        width: 50%;
        padding: 0 20px;
        margin-bottom: 20px;
    }

}

@media (max-width: 768px) {

    .cl-sm10 {
        width: 10%;
    }

    .cl-sm20 {
        width: 20%;
    }

    .cl-sm30 {
        width: 30%;
    }

    .cl-sm35 {
        width: 35%;
    }

    .cl-sm40 {
        width: 40%;
    }

    .cl-sm45 {
        width: 45%;
    }

    .cl-sm50 {
        width: 50%;
    }

    .cl-sm55 {
        width: 55%;
    }

    .cl-sm60 {
        width: 60%;
    }

    .cl-sm65 {
        width: 65%;
    }

    .cl-sm70 {
        width: 70%;
    }

    .cl-sm80 {
        width: 80%;
    }

    .cl-sm90 {
        width: 90%;
    }

    .cl-sm100 {
        width: 100%;
    }

    .cl-line {
        line-height: 1.3;
    }

    .cl-name, .cl-value {
        width: 100%;
    }

    .type-roof-item {
        width: 33.33333333%
    }

    .btn-clear {
        position: relative;
        margin-top: 15 xp;
        right: 0;
        display: block;
        margin-top: 15px;
    }


    #calc_s_still_add_element > div {
        width: 20% !important;
    }

    .calc-s-container .calc-s-type-product.line,
    .calc-s-container .calc-s-type-product.angleLeft,
    .calc-s-container .calc-s-type-product.angleP {
        width: 100%;
        min-width: initial;
    }

    .calc-s-container .calc-s-type-product label.pr-check-label,
    .calc-s-container .calc-s-type-product .pr-div-label,
    .calc-s-container .calc-s-type-product .div-radius,
    .calc-s-container .calc-s-type-product .div-checks {
        position: relative !important;
        top: initial !important;
        left: initial !important;
        right: initial !important;
        bottom: initial !important;
        display: block;
        padding: 5px 0;
    }

    .calc-s-container .calc-s-type-product .div-checks > div {
        padding: 4px 0;
    }

    .check-hide {
        display: none !important;
    }

    .calc-s-container .calc-s-type-product label.pr-check-label span,
    .calc-s-container .calc-s-type-product .pr-div-label span,
    .calc-s-container .calc-s-type-product .div-radius span {
        display: initial;
    }

    .label-var-cutout {
        width: initial;
    }

    .calc-s-container .calc-s-type-product .div-radius {
        padding-left: 27px;
    }

    .calc-s-container .calc-s-type-product .div-radius input[type="checkbox"] {
        position: absolute;
        left: 0;
        top: 5px;
    }

    .calc-s-container .calc-s-type-product .div-radius .inp-label {
        position: initial !important;
        top: initial !important;
        left: initial !important;
        right: initial !important;
        bottom: initial !important;
        text-align: left !important;
        width: initial !important;
    }

    .calc-s-container .calc-s-type-product label.pr-check-label input[type="text"],
    .calc-s-container .type-addproduct label.pr-check-label input[type="text"],
    .calc-s-container .type-addproduct label.inp-product-el input[type="text"] {
        display: inline-block;
    }

    .calc-s-container .calc-s-type-product label.pr-check-label span,
    .calc-s-container .type-addproduct label.pr-check-label span,
    .calc-s-container .type-addproduct label.inp-product-el span {
        position: relative;
        top: 5px;
        left: 5px;
    }

    .cl-mob {
        display: initial;
    }

    .cl-leg {
        position: relative;
        top: 6px !important;
        left: 0 !important;
    }

    .cl-pic-leg {
        font-weight: bold;
        color: #b30600;
    }

    .size-mb {
        display: block;
    }

    .size-pc {
        display: none;
        opacity: 0;
    }

    .label-r br {
        display: none;
    }

    .div-radius label {
        position: initial !important;
        text-align: left !important
        width: initial !important;
    }

    .sel-island-type-radius {
        position: initial !important;
    }

    .calc-s-type-product-wrap {
        width: 50%;
        margin-bottom: 25px;
    }

    .calc-s-form-type-item, .type-washing-item {
        width: 50%;
        margin-bottom: 20px;
        padding: 0 15px 30px 15px;
    }

    #calc_s_still_add > div {
        width: 110px !important;
    }

    .calc-prod-item__title {
        width: 40%;
    }

    .calc-prod-item__value {
        width: 60%;
    }

    .prd2 .calc-s-form-type-item {
        width: 100%;
    }

    .sel-calc-s-type-product.flex {
        display: block;
    }

    .color-stone-img {
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {

    .calc-s-type-product-wrap {
        width: 50%;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .bx-container {
        padding: 0 20px 5px !important;
    }

    .calc-color-stone-prop-ln {
        padding: 4px 0;
        font-size: 12px;
    }

    td#totalPrice {
        width: 70%
    }

    .calc-s-btn {
        font-size: 12px;
    }

    .calc-btn.btn-nofilling {
        padding: 10px 5px;
        font-size: 12px;
    }

    .calc-result-table tr:last-child td {
        font-size: 16px;
    }

    .calc_p_step_title {
        font-size: 18px;
    }

    .cl50 {
        width: 100%;
    }

    .cl-smx10 {
        width: 10%;
    }

    .cl-smx20 {
        width: 20%;
    }

    .cl-smx30 {
        width: 30%;
    }

    .cl-smx35 {
        width: 35%;
    }

    .cl-smx40 {
        width: 40%;
    }

    .cl-smx45 {
        width: 45%;
    }

    .cl-smx50 {
        width: 50%;
    }

    .cl-smx55 {
        width: 55%;
    }

    .cl-smx60 {
        width: 60%;
    }

    .cl-smx65 {
        width: 65%;
    }

    .cl-smx70 {
        width: 70%;
    }

    .cl-smx80 {
        width: 80%;
    }

    .cl-smx90 {
        width: 90%;
    }

    .cl-smx100 {
        width: 100%;
    }

    .order-img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }

    .cl-name {
        margin-bottom: 0;
    }

    .cl-value {
        margin-top: 3px;
    }

    .cl-line {
        border-bottom: 0;
        border-top: 0;
    }


    .result-div {
        padding-left: 0;
        padding-right: 0;
    }

    .wn-calc {
        width: 100%;
    }

    .form-input-label {
        display: block;
    }

    .cl-ln-item {
        display: block;
        width: 100%;
    }

    .result-btn-div {
        text-align: center;
    }

    .result-btn-div .calc-s-btn {
        margin-top: 15px;
    }

    .list-item-wrap {
        width: 50%;
    }

    .result-ln-value {
        width: 48%;
    }

    .calc-s-type-product-div {
        width: 100%;
        font-size: 14px;
    }

    #cl_inputs_col,
    #cl_smeta_col {
        width: 100%;
        padding: 0;
    }

    .calc-smeta {
        padding: 30px 5px 45px 5px;
    }

    #calc_s_still_add_element > div {
        width: 33.333333% !important;
        padding: 0 3px;
    }

    .calc-steps-wrap {
        padding-left: 0px !important;
        padding-right: 0;
    }

    .calc-s-type-product-wrap {
        width: 100%;
        margin-bottom: 25px;
    }

    .calc-s-step {
        margin: 25px 0px 0 0;
        padding-bottom: 30px;
    }

    .sel-calc-s-type-product {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        display: block;
    }

    .calc-s-type-product-img {
        min-height: 200px;
    }

    .calc_p_step_nav {
        text-align: center;
        position: initial;
        padding-top: 15px;
    }

    .calc-s-btn.btn-prev {
        position: initial;
    }

    .calc-s-form-type-item, .type-washing-item {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 15px 30px 15px;
    }

    #calc_s_still_add > div {
        width: 110px !important;
    }

    .color-stone-img {
        padding: 0 0 15px 0;
    }

    .calc-prod-item-ln {
        display: initial;
    }

    .calc-prod-item__title,
    .calc-prod-item__value {
        display: block;
        width: 100%;
    }

    .calc-prod-item__value {
        margin-bottom: 10px;
    }

}

.clearfix:before, .clearfix:after {
    display: table;
    content: " ";
}

@media only screen and (max-width: 320px) {
    #calc_s_still_add_element > div {
        width: 33.333333% !important;
        padding: 0 3px;
    }

    #calc_s_still_add > div {
        width: 105px !important;
    }
}

/* End */
/* /calc/css/lib/magnific-popup.css?155962920011380 */
/* /calc/css/lib/tooltipster.bundle.min.css?15792591248183 */
/* /calc/css/calc_style.css?158074028169025 */
