

Leasing_Main {
    font-size: 62.5%;
}


@media (max-width: 991px) {
    Leasing_Main {
        font-size: 55%;
		max-width: 55%;
    }
}

@media (max-width: 575px) {
    Leasing_Main {
        font-size: 40%;
		max-width: 40%;
    }
}


.chart__description {
   
   /* padding-left: 2.5rem;*/
    position: relative;
    justify-content: space-between;
    width: 50%;


    font-size: 1.2em;

}
.section-chart-controllers__footer {
  /*  display: flex;
    justify-content: space-between;*/
  	text-align:right;
}
/* CHART */
.chart-box {
   /* max-width: 66rem;*/
    margin: 0 auto;
    padding: 3rem 0;
    display: flex;
    position: relative;
}
.chart {
    width: 50%;
    height: 50%;
    position: relative;
    margin-right: 3.5rem;
    padding-left: 25px;
}

.tooltip {
    position: absolute;
    display: none;
    padding: .5rem;
    border-radius: .3rem;
    pointer-events: none;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    transition: .3s;
    z-index: 100;
    align-items: center;
}
.tooltip:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: .6rem;
    border-style: solid;
}

.tooltip.north {
    transform: translate(-50%, .6rem);
    left: 0px;
}
.tooltip.north:after {
    border-color: transparent transparent rgba(0, 0, 0, .7) transparent;
    top: -1.2rem;
    left: calc(50% - .6rem);
}

.tooltip.west {
    transform: translate(calc(-100% - .6rem), -50%);
}
.tooltip.west:after {
    border-color: transparent transparent transparent rgba(0, 0, 0, .7);
    top: calc(50% - .6rem);
    left: 100%;
}

.tooltip.east {
    transform: translate(.6rem, -50%);
}
.tooltip.east:after {
    border-color: transparent rgba(0, 0, 0, .7) transparent transparent;
    top: calc(50% - .6rem);
    left: -1.2rem
}


.tooltip.south {
    transform: translate(-50%, calc(-100% - .6rem));
}
.tooltip.south:after {
    border-color: rgba(0, 0, 0, .7) transparent transparent transparent;
    top: 100%;
    left: calc(50% - .6rem);
}

.tooltip .color-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .5rem;
    border: 2px solid #ccc;
    flex: 1 0 auto;
}
.tooltip .label {
    flex: 2 0 auto;
}
.chart path{
    opacity: .9;
    stroke-width: 2;
    stroke: #fff;
}

.chart path:hover{
    opacity: 1;
    stroke: #ccc;
    z-index: 50;
}

.estimate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.estimate__heading {
    text-transform: uppercase;
    font-size: 1.5rem;
    color: #333;
    width: 100%;
    margin-bottom: 2rem;
}


.heading-primary {
    color: #000000;
    font-weight: 400;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
	padding-top: 30px;
}
.heading-secondary {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.75rem;
    text-align: center;
}

main {
    max-width: 100%;
    margin: 0 auto;
}


.invest_button {
	width:100%;
	
	
}
.chart__legend {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.chart__description-label {
  font-size: 1em;
    font-weight: 400;
	margin: 0 0 5px;
  line-height: 25px;
}
.chart__description-labelMin {
    font-size: 1.6rem;
    font-weight: 400;

}
.chart__description-labelMinCenter {
    font-size: 1.6rem;
    font-weight: 400;
	text-align:center;

}
.chart__description-value {
    font-size: 1em;
    font-weight: 400;
}
.chart__description-info {
    font-size: 1em;
    font-weight: 400;
	 text-align: center;
}

.label__colored + .chart__description-value {
    margin-left: 2.6rem;
}

.value_icon:after {
    content: '₽';
}

.label__colored:before {
    content: '';
    display: inline-block;
    border-radius: 50%;
    width: 1.6rem;
    height: 1.6rem;
    margin-right: .7rem;
    transform: translateY(.2rem);
}
.label__colored-0:before {
  background: #7b838a;
}

.label__colored-1:before {
    background: #e2ac00;
}

.label__colored-2:before {
    background: #148cc4;
}

.label__colored-3:before {
    background: #ee5423;
}

.label__colored-4:before {
    background: #a37c70;
}

.label__colored-5:before {
    background: #88D2E0;
}

.label--sub {
    display: block;
    font-size: 1.4rem;
}

/* Controllers */
.controllers-box {
    margin-bottom: 5.5rem;
}

/* Range Slider */

.calc__slider {
    -webkit-appearance: none;
    width: 100%;
    height: 0.5rem;
    border-radius: 5px;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    display: block;
 /*   margin-top: 1.2rem;*/
    box-shadow: inset 0 .1rem .3rem #555;
    background-image: linear-gradient(90deg, #4098FF 0%, #4098FF 50%, white 50%);
}

.calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.calc__slider::-moz-range-thumb {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

/* input box */
.controller-row {
    flex-wrap: wrap;
    justify-content: space-between;
}

.controller-row:not(:last-child) {
    margin-bottom: 1rem;
}
/* input box */
.controller-row-invest {
    flex-wrap: wrap;
    justify-content: space-between;
}

.controller-row-invest:not(:last-child) {
    margin-bottom: 3.7rem;
}
/* Layout */

.section-chart-controllers__footer_leas {
	
    display: flex;
    justify-content: space-between;

}

.leasrow {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
.investrow {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
[class^="leas-"] {
    float: left;
}

[class^="leas-"]:not(:last-child) {
    margin-right: 1.5rem;
}
[class^="invest-"] {
    float: left;
}

[class^="invest-"]:not(:last-child) {
    margin-right: 1.5rem;
}
.leas-1-of-1 {
       width: calc((100% - 2 * 1.5rem) / 3);
	   	  padding-top:5px;
}

.leas-2-of-1 {
     width: calc((100% - 2 * 1.5rem) / 3);
}
.leas-3-of-1 {
    width: calc((100% - 2 * 1.5rem) / 3);
}


.leas-1-of-2 {
	
     width: 40%;
	 padding-top:5px;
}
.leas-2-of-2 {
     width: 23%;
}

.leas-3-of-2 {
     width: 30%;
}


.leas-1-of-3 {
      width: calc((100% - 2 * 1.5rem) / 3);
	  padding-top:5px;
}

.leas-2-of-3 {
     width: calc((100% - 2 * 1.5rem) / 3);
}

.leas-3-of-3 {
     width: calc((100% - 2 * 1.5rem) / 3);
}
@media (max-width: 400px) {

.section-chart-controllers__footer {
  /*  display: flex;
    justify-content: space-between;*/
  	text-align:center;
}

.button_set_padding {
	padding-top:20px;
	
}	
.section-chart-controllers__footer_leas {
    display: block;
    justify-content: space-between;
	text-align: center;
}
	
.chart__description-labelMin {
    font-size: 1.2rem;
    font-weight: 400;
	}
.chart-box {
    max-width: 66rem;
    margin: 0 auto;
    padding: 3rem 0;
    display: block;
    position: relative;
}


.leasrow {
    margin: auto auto;
    display: flex;
    flex-direction: row;
}
    .estimate__heading {
           margin-bottom: 1.5rem;
    }
[class^="leas-"] {
    float: left;
}

[class^="leas-"]:not(:last-child) {
    margin-right: 1.5rem;
}

.leas-1-of-2 {
    width: calc(50% - 0.5 * 1.5rem);
}

.leas-1-of-3 {
    width: calc((100% - 2 * 1.5rem) / 3);
}

.leas-2-of-3 {
    width: calc((200%  -  1.5rem) / 3);
}

.leas-1-of-4 {
    width: calc(25% - 0.75 * 1.5rem);
}

.leas-2-of-4 {
    width: calc(50% -  0.5 * 1.5rem);
}

.leas-3-of-4 {
    width: calc(75% - 0.25 * 1.5rem);
}

.chart__description {
    font-size: 1.6rem;
    padding-left: 2.5rem;
	padding-top:10px;
    position: relative;
    justify-content: space-between;
    width: 100%;
}
}


.chart__description-total {
    font-size: 3rem;
    font-weight: 400;
}

@media (max-width: 677px) {

.button_set_padding {
	padding-top:20px;
	
}	

.section-chart-controllers__footer {
  	text-align:center;
}

.section-chart-controllers__footer_leas {
    display: block;
    justify-content: space-between;
	text-align: center;
}
.chart-box {
    max-width: 66rem;
    margin: 0 auto;
    padding: 3rem 0;
    display: block;
    position: relative;
}


.chart__description {
    font-size: 1.6rem;
    padding-left: 2.5rem;
	padding-top:10px;
    position: relative;
    justify-content: space-between;
    width: 100%;
}
.estimate__heading {
        margin-bottom: 1.5rem;
    }
.estimate__value {
       font-size: 4rem;
    }
	
	
.leasrow {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}


.info-box {
    display: table-cell;
    width: 3.5rem;
    text-align: right;
    vertical-align: top;
	padding:10px;
}

.btn-secondary {
	visibility:hidden;
	
}
.chart {
    width: 100%;
    height: 100%;
    position: relative;
    margin-right: 0.0rem;
    padding:0%;
}


.chart-legend {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0rem;
}


.leas-1-of-1 {
       width: calc((300% - 2 * 1.5rem) / 3);
}

.leas-2-of-1 {
     width: calc((300% - 2 * 1.5rem) / 3);
}
.leas-3-of-1 {
    width: calc((350% - 2 * 1.5rem) / 3);
	padding-top:15px;
}


.leas-1-of-2 {
       width: calc((300% - 2 * 1.5rem) / 3);
}
.leas-2-of-2 {
     width: calc((300% - 2 * 1.5rem) / 3);
}

.leas-3-of-2 {
    width: calc((350% - 2 * 1.5rem) / 3);
	padding-top:15px;
}


.leas-1-of-3 {
          width: calc((300% - 2 * 1.5rem) / 3);
}

.leas-2-of-3 {
      width: calc((300% - 2 * 1.5rem) / 3);
}

.leas-3-of-3 {
    width: calc((350% - 2 * 1.5rem) / 3);
	padding-top:15px;
}

}





.estimate__value {
    font-size: 5.5rem;
    color: #4098FF;
    font-weight: bolder;
}


.estimate__value:before {
    content: '₽';
    font-size: 2.5rem;
    vertical-align: top;
}

.info {
    display: inline-block;
    vertical-align: top;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
}

.info__tooltip {
    position: absolute;
    min-width: fit-content;
    width: auto;
    transform: translate(calc( -100% - 1rem), 3rem);

    display: none;
    background: #fff;
    z-index: 100;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    padding: 1.5rem;
    font-size: 1.5rem;
    pointer-events: none;
    text-align: left;
}

.info__tooltip.north {
    transform: translate(calc( -100% - 1rem), calc(-100% - 1rem));
}

.info__header {
    text-align: center;
    font-weight: 400;
}
.info__header_tooltip {
    text-align: center;
    font-weight: 400;
	font-size: 1.6rem;
}
.info__icon {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyB3aWR0aD0iMTlweCIgaGVpZ2h0PSIxOXB4IiB2aWV3Qm94PSIwIDAgMTkgMTkiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+ICAgICAgICA8dGl0bGU+aW5mbyBidXR0b24gY29weSAxMDwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZGVmcz48L2RlZnM+ICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9IkFHLUNhbGN1bGF0b3ItdjItLS1Nb2JpbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00MzIuMDAwMDAwLCAtMjQyLjAwMDAwMCkiPiAgICAgICAgICAgIDxnIGlkPSJHcm91cC0xMC1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMi4wMDAwMDAsIDI0MS4wMDAwMDApIj4gICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIzOS4wMDAwMDAsIDAuMDAwMDAwKSI+ICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtNiI+ICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9ImluZm8tYnV0dG9uIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzEuMDAwMDAwLCAxLjAwMDAwMCkiPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNOS41LDAgQzQuMjQyOTM3NSwwIDAsNC4yNDI5Mzc1IDAsOS41IEMwLDE0Ljc0MjIxODggNC4yNDI5Mzc1LDE5IDkuNSwxOSBDMTQuNzQyODEyNSwxOSAxOSwxNC43NDM0MDYyIDE5LDkuNSBDMTksNC4yNDI5Mzc1IDE0Ljc0MjgxMjUsMCA5LjUsMCBMOS41LDAgWiIgaWQ9IkltcG9ydGVkLUxheWVycyIgZmlsbD0iIzRBOTBFMiI+PC9wYXRoPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2Utd2lkdGg9IjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDguMDAwMDAwLCA0LjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IkZpbGwtMSIgcG9pbnRzPSIwIDExIDMgMTEgMyA0IDAgNCI+PC9wb2x5Z29uPiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTMsMS41MDEwODcyNyBDMywzLjQ5ODE4Nzg4IDAsMy40OTgxODc4OCAwLDEuNTAxMDg3MjcgQzAsLTAuNTAwMzYyNDI0IDMsLTAuNTAwMzYyNDI0IDMsMS41MDEwODcyNyIgaWQ9IkZpbGwtMiI+PC9wYXRoPiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2c+ICAgICAgICAgICAgICAgICAgICAgICAgPC9nPiAgICAgICAgICAgICAgICAgICAgPC9nPiAgICAgICAgICAgICAgICA8L2c+ICAgICAgICAgICAgPC9nPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
    width: 2rem;
    height: 2rem;
    background-size: 2rem;
    display: inline-block;
    cursor: pointer;
}

.info__icon:hover + .info__tooltip {
    display: inline-block;
}


.InvestRow {
    width: 33%;
    display: inline-block;
	padding-left: 2%;
}
@media (max-width: 768px) {
	
   .InvestRow {
    width: 100%;
    display: block;
}
}

@media (max-width: 600px) {
	
		.InvestRow {
    width: 100%;
    display: block;
}

    .controller-row {
        height: 10rem;
    }
    .controller-row [class^="col-"]:nth-child(2) {
        order: 1;
        flex: 0 1 100%;
    }
    .controller-row [class^="col-"]:nth-child(1),
    .controller-row [class^="col-"]:nth-child(3){
        flex: 0 1 48%;
    }
	.controller-row-invest {
        height: 10rem;
    }
    .controller-row-invest [class^="col-"]:nth-child(2) {
        order: 1;
        flex: 0 1 100%;
    }
    .controller-row-invest [class^="col-"]:nth-child(1),
    .controller-row-invest [class^="col-"]:nth-child(3){
        flex: 0 1 48%;
    }
}
.calc__input_date {
    /* display: table-cell; */
    position: relative;
    z-index: 2;
    width: 100%;
    padding: .6rem 1.2rem;
    color: #5A6372;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: .4rem;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
   /* height: 4.5rem;*/
    font-size: 1.5rem;
    font-weight: 600;
}


.calc__input-group {
    width: 100%;
    min-width: 200px;
    position: relative;
    display: table;
    border-collapse: separate;
    color: #5A6372;
    font-size: 1.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
   /* padding-left: 1rem;*/
}
.invest__input-group {
    width: 100%;
    position: relative;
    display: table;
    border-collapse: separate;
    color: #5A6372;
    font-size: 1.8rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
   /* padding-left: 1rem;*/
}
.calc__input-group-addon {
    display: table-cell;
    width: 4.5rem;
    height: 3.5rem;
    background-color: #FAFAFA;
    padding: 0;
    color: #5A6372;
    text-align: center;
    border: 1px solid #ccc;
    vertical-align: middle;
    border-radius: 0;
    font-weight: 300;
}
.calc__input-group-addon:first-child {
    border-right: 0;
}
.calc__input-group-addon:nth-child(2) {
    border-left: 0;
}


.calc__input {
    display: table-cell;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: .6rem 1.2rem;
    color: #5A6372;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: .4rem;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    height: 3.5rem;
    font-size: 2rem;
    font-weight: 300;
}
.calc__input:focus {
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.calc__input-group .calc__input:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.calc__input-group .calc__input:nth-child(2) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.info-box {
    display: table-cell;
    width: 3.5rem;
    text-align: right;
    /*vertical-align: top;*/
}



.btn {
    display: inline-block;
    font-weight: 500;
    border-width: 2px;
    border-radius: 4rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0);
}

.btn-link {
    font-size: 1.7rem;
    padding: 0;
    text-decoration: none;
    color: #4098FF;
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    background: transparent;
}

.btn-secondary {
    background-color: transparent;
    border-color: #4098FF;
    color: #fc1e00;
    padding: 1rem 3.5rem;
    text-transform: uppercase;
}
.btn-secondary_close {
    background-color: transparent;
    border-color: #4098FF;
    color: #4098FF;
    padding: 1rem 3.5rem;
    text-transform: uppercase;
}
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #5A6372;
    color: #fff;
}

.btnls {
    display: inline-block;
    font-weight: 500;
    border-width: 2px;
    border-radius: 1rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
}

.btnls:hover {
    transform: translateY(-3px);
}

.btnls:active {
    transform: translateY(0);
}


.btn-leas {
    background-color: #498fe1;
    border-color: #88d2e0;
    color: #FFFFFF;
    /*padding: 2rem 3.5rem;*/
	font-size: 1.7rem;
	width:200px;
	
	height:60px;
}

.btn-leas:hover,
.btn-leas:focus {
    background-color: #498fa1;
    color: #fff;
}


/* DIALOG */
.dialog {
    display: none;
   /*  position: fixed;*/
	min-height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    overflow: auto;
}
.dialog.open {
    display: block;
}

.modal-backdrop {
    opacity: 0.75;
    background-color: #232933;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.modal {
   /* position: absolute;*/
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    border-radius: .5rem;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99000;
    background-color: #fff;
    color: #5A6372;
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
	justify-content: start;
    align-items: center;
    margin: 0 auto;
    padding: 1.5rem 0;
    width: 90%;
}
@media(min-width: 992px) {
    .modal {
        width: 900px;
    }
}
@media(min-width: 768px) {
    .modal {
        width: 600px;
    }
}

.modal__header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgb(229, 229, 229);
}

.modal__header__close {
    cursor: pointer;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    transform: translateY(-.5rem);
    opacity: 0.5;
    transition: opacity .15s;
}
.modal__header__close:hover {
    opacity: 0.7;
}

.modal__header__text {
    font-size: 1.4rem;
}

.modal__content {
    padding: 1rem 2rem;
    text-align: center;
    color: rgb(90, 99, 114);
    font-size: 1.4rem;
}

.modal__content p:not(:last-child) {
    margin-bottom: 2rem;
}

.modal__content-header {
    text-decoration: underline;
    font-size: 1.6rem;
    font-weight: 400;
}

.modal__footer {
    padding: 1rem 2rem;
}






.control-group {
    display: inline-block;
    vertical-align: top;
    background: #fff;
    text-align: left;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    padding: 30px;
  /*  width: 200px;
    height: 210px;*/
    margin: 10px;
  }
  .control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1.5rem;
  }
  .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .control__indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #e6e6e6;
  }
  .control--radio .control__indicator {
    border-radius: 50%;
  }
  .control:hover input ~ .control__indicator,
  .control input:focus ~ .control__indicator {
    background: #ccc;
  }
  .control input:checked ~ .control__indicator {
    background: #2aa1c0;
  }
  .control:hover input:not([disabled]):checked ~ .control__indicator,
  .control input:checked:focus ~ .control__indicator {
    background: #0e647d;
  }
  .control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
  }
  .control__indicator:after {
    content: '';
    position: absolute;
    display: none;
  }
  .control input:checked ~ .control__indicator:after {
    display: block;
  }
  .control--checkbox .control__indicator:after {
    left: 8px;
    top: 4px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
  }
  .control--radio .control__indicator:after {
    left: 7px;
    top: 7px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #fff;
  }
  .control--radio input:disabled ~ .control__indicator:after {
    background: #7b7b7b;
  }
  .select {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
  }
  .select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: #e6e6e6;
    color: #7b7b7b;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .select select::-ms-expand {
    display: none;
  }
  .select select:hover,
  .select select:focus {
    color: #000;
    background: #ccc;
  }
  .select select:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  .select__arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
  }
  .select select:hover ~ .select__arrow,
  .select select:focus ~ .select__arrow {
    border-top-color: #000;
  }
  .select select:disabled ~ .select__arrow {
    border-top-color: #ccc;
  }
  











  .plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* max-width: 970px; */
    /* padding: 85px 50px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* background: #fff; */
    /* border-radius: 20px; */
    /* -webkit-box-shadow: 0px 8px 10px 0px #d8dfeb; */
    /* box-shadow: 0px 8px 10px 0px #d8dfeb; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
  .plans .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  

.plans .plan {
  cursor: pointer;
  width: 48.5%;
}

.plans .plan .plan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #e1e2e7;
  border-radius: 10px;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  position: relative;
  justify-content: center;
}

.plans .plan .plan-content img {
  margin-right: 30px;
  height: 72px;
}

.plans .plan .plan-details span {
  margin-bottom: 10px;
  display: block;
  font-size: 2.5em;
  line-height: 24px;
  color: #252f42
}

.container .title {
  font-size: 16px;
  font-weight: 500;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  color: #252f42;
  margin-bottom: 20px;
}

.plans .plan .plan-details p {
  color: #646a79;
  font-size: 14px;
  line-height: 18px;
}

.plans .plan .plan-content:hover {
  -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
  box-shadow: 0px 3px 5px 0px #e8e8e8;
}

.plans .plan input[type="radio"]:checked + .plan-content:after {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  background: #216fe0;
  right: 20px;
  top: 20px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #0066ff;
}


.plans .plan input[type="radio"]:checked + .plan-content {
  border: 2px solid #216ee0;
  background: #eaf1fe;
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}


@media screen and (max-width: 991px) {
  .plans {
    margin: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 40px;
  }

  .plans .plan {
    width: 100%;
  }

  .plan.complete-plan {
    margin-top: 20px;
  }

  .plans .plan .plan-content .plan-details {
    width: 70%;
    display: inline-block;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 45%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@media screen and (max-width: 767px) {
  .plans .plan .plan-content .plan-details {
    width: 60%;
    display: inline-block;
  }
}

@media screen and (max-width: 540px) {
  .plans .plan .plan-content img {
    margin-bottom: 20px;
    height: 56px;
    -webkit-transition: height 0.4s;
    -o-transition: height 0.4s;
    transition: height 0.4s;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    top: 20px;
    right: 10px;
  }

  .plans .plan .plan-content .plan-details {
    width: 100%;
  }

  .plans .plan .plan-content {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

/* inspiration */
.inspiration {
  font-size: 12px;
  margin-top: 50px;
  position: absolute;
  bottom: 10px;
  font-weight: 300;
}

.inspiration a {
  color: #666;
}
@media screen and (max-width: 767px) {
  /* inspiration */
  .inspiration {
    display: none;
  }
}

.plan-details span{
text-align: center;
    /* line-height: 70px; */
    /* margin: 0 53px; */
    padding-left: 40px;
    margin-top: 30px;
}
.icons_calculator{
  font-size: 5rem;
  color: #4098ff;
}

.icons_calculator_2{
  font-size: 2rem;
  color: #4098ff;
}

.icons_calculator_3{
  font-size: 1.5rem;
  color: #4098ff;
}















* {
  box-sizing: border-box;
}

.calc-group-2 {
    /* height: 100vh; */
    margin: 0 auto;
    /* max-width: 50em; */
    padding: 2em 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
}


.inputGroup {
  display: block;
  margin: 0 0 1.5em;
}

.label {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  font-family: var(--font-barlowCondensed);
  line-height: 1.25em;
  margin: 0 0 0.6em;
  padding: 0;
  text-transform: uppercase;
}

.segmentedControl {
  --options: 3;
  --options-active: 1;
  --options-gap: .5em;
  background: var(--color-grey-10);
  border: solid 1px var(--color-grey-70);
  border-radius: 0.25em;
  position: relative;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
}
.segmentedControl .segmentedControl--group {
  flex: 0 0 auto;
  margin: var(--options-gap);
  width: calc((100% - ((var(--options)*var(--options-gap))*2)) / var(--options));
  display: flex;
  flex-flow: row;
  justify-content: stretch;
  align-items: stretch;
}
.segmentedControl .segmentedControl--group input {
  opacity: 0;
  position: absolute;
}
.segmentedControl .segmentedControl--group input + label {
  border-radius: 0.25em;
  flex: 1 1 100%;
  font-size: 1.25em;
  font-weight: normal;
  font-family: var(--font-barlow);
  line-height: 1;
  margin: 0;
  padding: 0.5em 0;
  position: relative;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.segmentedControl .segmentedControl--group input + label::before, .segmentedControl .segmentedControl--group input + label::after {
  border-radius: inherit;
  content: "";
  display: block;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.segmentedControl .segmentedControl--group input + label::before {
  background: var(--color-grey-20);
  transition: opacity 0.15s ease;
}
.segmentedControl .segmentedControl--group input + label::after {
  background: var(--color-fire);
  box-shadow: var(--shadow-fire);
  transition: opacity 0.15s ease;
}
.segmentedControl .segmentedControl--group input + label:hover::before {
  opacity: 1;
}
.segmentedControl .segmentedControl--group input:focus + label {
  outline: none;
}
.segmentedControl .segmentedControl--group input:focus-visible + label {
  outline: var(--focus-style);
  outline-offset: var(--focus-offset);
}
.segmentedControl .segmentedControl--group input:-moz-focusring + label {
  outline: var(--focus-style);
  outline-offset: var(--focus-offset);
}
.segmentedControl .segmentedControl--group input:checked + label {
  background: var(--color-grey-10);
  color: #fff;
  font-weight: 700;
}
.segmentedControl .segmentedControl--group input:checked + label::after {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .segmentedControl .segmentedControl--group input + label {
    transition: color 0.2s ease;
  }
  .segmentedControl .segmentedControl--group input + label::before {
    transition: opacity 0.3s ease;
  }
  .segmentedControl .segmentedControl--group input + label::after {
    transform: scale(0.85, 0.5);
    transition: opacity 0.15s ease, transform 0.3s cubic-bezier(0, 0.99, 0.52, 1.29);
  }
  .segmentedControl.useSlidingAnimation::before {
    background: var(--color-fire);
    border-radius: 0.375em;
    box-shadow: var(--shadow-fire);
    content: "";
    display: block;
    height: calc(100% - (var(--options-gap)*2));
    position: absolute;
    top: var(--options-gap);
    left: var(--options-gap);
    transform: translateX(calc( 						(100% + (var(--options-gap) * 2) ) * (var(--options-active) - 1) 					));
    transition: transform cubic-bezier(0.8, 0.34, 0.28, 1.15) 0.35s;
    width: calc((100% - ((var(--options)*var(--options-gap))*2)) / var(--options));
  }
  .segmentedControl.useSlidingAnimation .segmentedControl--group input + label {
    background: none;
    transition: color 0.3s ease;
  }
  .segmentedControl.useSlidingAnimation .segmentedControl--group input + label::after {
    content: none;
  }
  .segmentedControl.useSlidingAnimation .segmentedControl--group input:checked + label:hover::before {
    opacity: 0;
  }
}
/* utilities */
.visually-hidden:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hidden {
  display: none !important;
}

.offscreen {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}



h2.background {
  position: relative;
  z-index: 1;
}
h2.background:before {
  border-top: 2px solid #dfdfdf;
  content: "";
  margin: 0 auto;
  /* this centers the line to the full width specified */
  position: absolute;
  /* positioning must be absolute here, and relative positioning must be applied to the parent */
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  width: 95%;
  z-index: -1;
}
h2.background span {
  /* to hide the lines from behind the text, you have to set the background color the same as the container */
  background: #fff;
  padding: 0 15px;
}



.tabs {
 /* max-width: 60rem;*/
  display: flex;
  border: 2px solid #e1e2e7;
}
.tabs  > div > ul {
  list-style-type: none;
  padding: 0;
}
.tabs  > div > ul li {
  display: block;
  text-align: center;
}
.tabs  > div > ul li a {
  display: block;
  text-decoration: none;
  background: transparent;
  padding: 1rem 0rem;
  color: #252f42;
  transition: all 0.2s ease-in-out;
  border-right: 2px solid #e1e2e7;
  border-bottom: 2px solid #e1e2e7;

}
.tabs  > div > ul li a.active {
  background: transparent;
  color: #2c2c2c;
  border-right:0px;
}
.tabs > div > ul li a:hover:not(.active) {
  color: #4098ff;
}
.tabs > div section {
  background: #fff;
  /*padding: 1.5rem 2.5rem;*/
  display: none;
}
.tabs > div section.active {
  display: block;
}


.electro_color{
color:#e2ac00;
}
.water_color{
color: #148cc4;
}

.hot_color{
  color:#ee5423;
}

.pol_color{
  color:#a37c70;
}