

/* Start:/local/components/calculator/core.logic/assets/css/main.css?16551130329797*/
/*
 * 2020.
 * This module was developed by Aleksandr Dremov
 * Support: dremov.me@gmail.com
 */

body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

#calc_popup {
    max-width: 700px;
    padding-bottom: 0;
    background-color: white;
}

#calc_popup h2.popup_title {
    margin-bottom: 10px;
}

/* Style the form */
#calcform {
    margin: 0 !important;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
}

#calcform h3 {
    color: #47a230;
}

.greenColor {
    color: #47a230 !important;
}

.calc-wrap {
    margin: 0;
    margin-top: 5px;
    padding-bottom: 150px;
    min-height: 200px;
    position: relative;
}

#calc_lower {
    /*position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;*/
	padding:0;
}

/* Mark input boxes that gets an error on validation: */
#calcform input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
#calcform .tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
#calcform .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
#calcform .step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
#calcform .step.finish {
    background-color: #4CAF50;
}

.inpcalc {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin-top: 15px;
    display: block;
}

.inpcalc .label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 16px;
    color: #9098a9;
    font-weight: 500;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    overflow: hidden;
    max-width: 100%;
}

.inpcalc input:focus + span{
    overflow: visible;
    white-space: normal;
    text-align: left;
}

.inpcalc .border {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
width: 100%;
background: rgba(84, 190, 58, .8);
transform: scaleX(0);
transform-origin: 0 0;
transition: all 0.15s ease;
}

.inpcalc input {
-webkit-appearance: none;
width: 100%;
border: 0;
font-family: inherit;
padding: 12px 0;
height: 48px;
font-size: 16px;
font-weight: 500;
border: none;
border-bottom: 2px solid #c8ccd4;
background: none;
border-radius: 0;
color: #223254;
transition: all 0.15s ease;
}

.inpcalc input:hover {
background: rgba(34, 50, 84, 0.03);
}

.inpcalc input:not(:placeholder-shown) + span {
color: #5a667f;
transform: translateY(-26px) scale(0.75);
}

.inpcalc input:focus {
background: none;
outline: none;
}

.inpcalc input:focus + span {
color: rgba(84, 190, 58, .8);
transform: translateY(-26px) scale(0.75);
}

.inpcalc input:focus + span + .border {
transform: scaleX(1);
}

.custom-select {
display: block;
color: gray;
padding: 20px;
font-size: 18px;
font-weight: 300;
font-family: sans-serif;
min-width: 50%;
}
section.asyncTabs{
	padding:0;
}
#fieldExplanation {
color: #4c4c4c;
}

.calc_native .tab, #resultTab {
padding-bottom:0px;
}

#calc_popup #resultTab {
padding-bottom: 0;
}

.calc-title {
margin-bottom: 60px;
}

#waitScreen {
position: absolute;
top: 33%;
bottom: 0;
left: 0;
right: 0;
margin: auto;
text-align: center;
vertical-align: middle;
}

.calc_native #waitScreen {
top: 20% !important;
}

.calc-result-right-wrap tr td:last-child {
color: #0000007a;
}

.calc-result-right-wrap tr:first-child {
color: rgba(84, 190, 58, .8);
}

.calc-result-right-wrap td {
padding: 5px;
line-height: normal;
}

.calc-result-img {
float: none;
margin: auto;
}
section.selectgroup{
	padding:0;
}
section.selectgroup.selgr_flex{
    display: flex;
    width: 100%;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-between;
}
/* Customize the label (the container) */
.radiocontainer {
	float:left;
    position: relative;
    padding: 5px;
	text-align:center;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 6px;
    font-weight: 400;
	flex:1;
}
.radiocontainer .lnam{
	font-family: FuturaDemiC;
	font-weight: 500;
	font-size: 16px;
	color: #000000;
	opacity: 0.6;
}
.radiocontainer.act .lnam{
	opacity:1;
}

.unoquestion {
	padding:0;
    background-color: white;
	margin-bottom:30px;
}
.unoquestion p{
	font-family: FuturaDemiC;
	font-weight: 500;
	font-size: 20px;
	color: #000000;
	opacity: 0.8;
}

/* Hide the browser's default radio button */
.radiocontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
}

/* Create a custom radio button */
.radiocheckmark {
    position: absolute;
    top:100%;
    left:0;
    height:3px;
    width:100%;
    background-color:#999;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input ~ .radiocheckmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiocontainer input:checked ~ .radiocheckmark {
    background:linear-gradient(270deg, #1C549A -12.84%, #167BF9 96.79%);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiocheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .radiocheckmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .radiocheckmark:after {
    /*top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;*/
}

.unohelp {
    /*background-color: #ffffff;
    padding: 10px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    color: black;
    vertical-align: top;
    font-weight: 300;
    line-height: normal;
    font-family: sans-serif;
    box-shadow: black 1px 1px 6px -4px;*/
	font-family: FuturaDemiC;
	font-weight: 600;
	font-size: 14px;	
	color: #000000;
}

.helps {
	overflow-y: hidden;
    background-color: #f7f7f7;
    overflow-x: hidden;
    margin: 30px -30px -30px;
    padding: 30px;
}
.helps .col-sm-8{
	padding-left:100px;
	background:url(/images/calci21.svg) left center no-repeat;
	min-height:88px;
}
.helps .unohelp:last-child {
    margin-right: 0;
}

.smallradio {
    width: auto;
}

#prevBtn {
	font-family: FuturaDemiC;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	color: #1C549A;
	text-transform:none;
	background-color:transparent;
	border-radius:8px;
	display:block;
	width:100%;
	border:1px solid;
}
button#nextBtn {
	font-family: FuturaDemiC;
	font-weight: 500;
	font-size: 16px;
	text-align: center;
	text-transform:none;
	box-shadow: 1px 1px 3px rgb(0,0,0,.01) !important;
    background: #80BD00 !important;
    font-weight: 700;
    text-shadow: none !important;
    /*background: linear-gradient(132.17deg, #A7F405 15.22%, #70A601 80.1%);
    box-shadow: 0px 1px 0px #567d02, 0px 3px 4px rgb(0 0 0 / 18%), 0px -1px 24px rgb(119 175 2 / 18%), 0px 11px 29px rgb(113 166 1 / 40%);
	*/
	border-radius: 8px;
	border-radius:8px;
	display:block;
	width:100%;
}
#basicinfo {
    width: 59%;
    display: inline-block;
}

#sideCalcBar {
    transition: transform 2s;
    float: right;
    width: 40%;
	padding:0;
}

#sideCalcBar #res_img img {
    width: 40%;
}

#submitEmail, #submitTel, .finBut {
    background: transparent;
    width: 100%;
    color: #47a230;
    height: auto;
    padding: 5px 0;
    border: solid 1px;
    margin-top: 8px;
}

#submitEmail:hover, #submitTel:hover {
    box-shadow: black 1px 1px 7px -2px;
}

#sideCalcBar input {
    width: 100%;
}

#sideCalcBar p {
    line-height: normal;
}

#sideCalcBar input[type="tel"], #sideCalcBar input[type="email"] {
    padding: 8px 4px;
    font-family: sans-serif;
    font-weight: 400;
    font-size: 16px;
}

#basicinfo tr td:last-child {
    color: rgba(71, 71, 71, 0.98);
}

#basicinfo table {
    width: 100%;
}

.redColor {
    color: rgba(218, 28, 46, 0.98) !important;
}

#remarkCost {
	font-family: FuturaDemiC;
	font-weight: 500;
	font-size: 16px;
	color: rgba(0, 0, 0, 0.6);
}

.btnCalc {
    transition: transform 2s;
    margin: 12px 0;
    background-color: #47a230;
    border: none;
    color: white;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 18px;
}

.btnCalc:hover {
    background-color: #377426;
}

.finBut:hover {
    box-shadow: black 1px 1px 7px -2px;
}

.calcNextButton {
}

.calcBackButton, .calcNextButton {
}

.priceCellRelative {
    position: relative;
}

.priceCellRelative img {
    animation: discountImageIcon 0.5s cubic-bezier(0.76, -0.04, 0.06, 1.16) 1s infinite alternate;
    position: absolute;
    top: -5px;
    right: 15px;
}

.priceCellRelative .tooltip{
    width: 330px;
    font-size: 14px;
}

.explanation{
    font-family: sans-serif;
}

@keyframes discountImageIcon {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(15deg);
    }
}

@media (max-device-width: 715px) {
    .calcBackButton, .calcNextButton {
        float: none;
        text-align: center;
        display: block;
    }

    .calcNextButton button, .calcBackButton button {
        width: 100%;
    }

    .calcBackButton button {
        margin-top: 15px;
    }

    #calcmoduleselect {
        margin: 20px auto auto;
    }

    #calc_lower {
        position: static;
        padding-top: 25px;
    }

    .calc-wrap {
        padding-bottom: 20px;
        min-height: 250px;
    }


    .unohelp {
        width: 100%;
        display: block;
        margin-top: 10px;
    }

    .helps {
        margin-top: 0;
    }

    #sideCalcBar {
        width: 100%;
        padding-top: 10px;
    }

    #basicinfo {
        width: auto;
    }
}

/* End */


/* Start:/local/templates/topol/components/bitrix/news.list/products_carousel/style.css?1748920970271*/
.news_slider_item .news_image {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 20px;
}
.news_slider_item .news_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
/* End */


/* Start:/local/templates/topol/components/bitrix/news.list/articles_carousel/style.css?17488656401525*/
.articles-carousel-wrapper {
  height: auto;
}
.articles-carousel-wrapper .articles {
	border: 1px solid #eaeaea;
	background-color: #fff;
	height: 100%;
}

.articles-carousel-wrapper .articles__images{
	height: 200px;
}

.articles-carousel-wrapper .articles__images img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.articles-carousel-wrapper .articles__inner{
	padding: 10px;
}

.articles-carousel-wrapper .articles__info{
	color: #000;
	font-size: 14px;
	margin: 5px 0px 10px 0px;

	display: flex;
	align-items: center;

	opacity: .5;
}

.articles-carousel-wrapper .articles__info-item{
	display: flex;
	align-items: center;
}

.articles-carousel-wrapper .articles__info-item:not(:last-child){
	margin-right: 10px;
}

.articles-carousel-wrapper .articles__info-item img{
	margin-right: 3px;
}

.articles-carousel-wrapper .articles__title{
	font-size: 20px;
	line-height: 1.2;
}

.articles-carousel-wrapper .articles__title a{
	font-family: 'FuturaDemiC';
	font-weight: 500;
	color: #000;
	margin: 0 0 20px 0;
}

.articles-carousel-wrapper .articles__title a:hover{
	text-decoration: none;
}

.articles-carousel-wrapper .article__info-category a{
	font-family: 'FuturaDemiC';
	font-weight: 500;
	color: #80BD00;
	margin: 0 0 20px 0;
}

.articles-carousel-wrapper .article__info-category a:hover{
	text-decoration: none;
}



@media(max-width: 991px){
	.articles-carousel-wrapper .articles__images{
		height: 160px;
	}
}

@media(max-width: 576px){
	.articles-carousel-wrapper .articles__images{
		height: 140px;
	}

}
/* End */
/* /local/components/calculator/core.logic/assets/css/main.css?16551130329797 */
/* /local/templates/topol/components/bitrix/news.list/products_carousel/style.css?1748920970271 */
/* /local/templates/topol/components/bitrix/news.list/articles_carousel/style.css?17488656401525 */
