/************ TABLE OF CONTENTS ***************
  * General
  * Typography
  * Elements
    * Popups
    * Buttons
  * Layout
**********************************************/

/***********************************************
* General
***********************************************/

html{
	font-size: 19px;
}

body{
	font-family: 'Montserrat', Helvetica, Arial, serif;
}

select {
	width: 100%;
	border-radius: 4px;
	height: 54px;
}

.clearfix{
	display: inline-block;
	display: block;
	zoom: 1;
}

.clearfix:after{
	display: block;
	visibility: hidden;
	clear: both;

	height: 0;

	content: '.';
}

svg:not(:root),
symbol,
image,
marker,
pattern,
foreignobject{
	overflow: visible !important;
}

/***********************************************
* Typography
***********************************************/

p,
a,
span,
input,
textarea,
label,
h1,
h2,
h3,
h4,
h5,
li,
td,
div{
	word-wrap: break-word;
}

p span,
p a,
a span,
a a,
span span,
span a,
label span,
label a,
h1 span,
h1 a,
h2 span,
h2 a,
h3 span,
h3 a,
h4 span,
h4 a,
h5 span,
h5 a,
li span,
li a,
td span,
td a,
div span,
div a{
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

a:not(.ng-scope){
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
}

a:hover{
	color: #547dab;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5{
	font-family: 'Montserrat';
}

h1,
.h1{
	font-size: 2.55rem;
}

h2,
.h2{
	font-size: 2.2rem;
}

h3,
.h3{
	font-size: 1.7rem;
}

h4,
.h4{
	font-size: 1.25rem;
}

h5,
.h5{
	font-size: 1rem;
}

@font-face{
	font-family: 'Panton-Bold';
	font-weight: normal;
	font-style: normal;

	src: url('../fonts/Panton-Bold.eot');
	src: url('../fonts/Panton-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Panton-Bold.woff') format('woff'), url('../fonts/Panton-Bold.ttf') format('truetype');
}

/*
Icon classes can be used entirely standalone. They are named after their original file names.

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

.sprite-next{
	width: 32px;
	height: 45px;

	background-image: url('../images/sprite.png');
	background-position: 0 0;
}

.sprite-prev{
	width: 32px;
	height: 45px;

	background-image: url('../images/sprite.png');
	background-position: -32px 0;
}

.animated{
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;

	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.animated.infinite{
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
}

.animated.hinge{
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}

.animated.fast{
	-webkit-animation-duration: .3s;
	        animation-duration: .3s;
}

.anim,
.multiple-anim{
	opacity: 0;
}

.anim.animated,
.multiple-anim.animated{
	opacity: 1;
}

.mobile .anim,
.mobile .multiple-anim,
.mobile .obj{
	opacity: 1 !important;
}

.fadeInDown{
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
}

.fadeIn{
	-webkit-animation-name: fadeIn;
	        animation-name: fadeIn;
}

.fadeInDownSmall{
	-webkit-animation-name: fadeInDownSmall;
	        animation-name: fadeInDownSmall;
}

.fadeInUp{
	-webkit-animation-name: fadeInUp;
	        animation-name: fadeInUp;
}

.fadeInUpSmall{
	-webkit-animation-name: fadeInUpSmall;
	        animation-name: fadeInUpSmall;
}

.moveInUp{
	-webkit-animation-name: moveInUp;
	        animation-name: moveInUp;
}

.fadeInLeftSmall{
	-webkit-animation-name: fadeInLeftSmall;
	        animation-name: fadeInLeftSmall;
}

/***********************************************
* Elements
***********************************************/

/***********************************************
* Popups
***********************************************/

.popup{
	position: relative;

	display: none;
	overflow: hidden;

	width: 90%;
	max-width: 408px;
	margin: auto;
	padding: 45px 70px;
	padding-bottom: 10px;

	text-align: center;

	background-color: #fff;
}

.popup:before{
	position: absolute;
	top: -45px;
	left: -10px;

	display: block;

	width: 65px;
	height: 113px;

	content: '';

	background: url('../images/bg-popup.png') no-repeat;
}

.popup .mfp-close{
	font-size: 0;
	line-height: 0;

	top: 17px;
	right: 17px;

	width: 20px;
	height: 20px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	fill: #858585;
}

.popup__title{
	font-size: 25px;

	margin-bottom: 35px;

	color: #444;
}

.popup .form-group{
	position: relative;

	margin-bottom: 20px;
}

.popup .form-control{
	font-size: 18px;

	height: 59px;
	padding: 0 16px;

	border: 1px solid #f0f0f0;
	border-radius: 5px;
	background-color: #f0f0f0;
}

.popup .form-control:-moz-placeholder{
	color: #444;
}

.popup .form-control::-moz-placeholder{
	color: #444;
}

.popup .form-control:-ms-input-placeholder{
	color: #444;
}

.popup .form-control::-webkit-input-placeholder{
	color: #444;
}

.popup .form-control.error{
	border-color: red;
}

.popup .btn{
	width: 100%;
}

.popup .btn	+ p{
	margin-top: 50px;
	margin-bottom: 0;
}

.popup p{
	font-size: 15px;

	color: black;
}

.popup p a{
	text-decoration: underline;

	color: inherit;
}

.popup p a:hover{
	text-decoration: none;
}

.popup p.small{
	font-size: 13px;
}

.popup__links{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-top: 50px;
	margin-bottom: 20px;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.popup__links a{
	font-size: 15px;

	text-decoration: underline;

	color: black;
}

.popup__links a:hover{
	text-decoration: none;
}

.tooltip{
	top: 100% !important;

	-webkit-transform: none !important;
	    -ms-transform: none !important;
	        transform: none !important;
}
.tooltip.bs-tooltip-top {
	top: 0% !important;

	-webkit-transform: translateY(-100%) !important;
	-ms-transform: translateY(-100%) !important;
	transform: translateY(-100%) !important;
}

.tooltip:before{
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 27px !important;

	width: .4rem;
	height: .4rem;

	content: '';

	border-width: 0 .3rem .3rem;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: black;

	-webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, .46));
	        filter: drop-shadow(0 0 3px rgba(0, 0, 0, .46));
}

.tooltip.bs-tooltip-top:before{
	position: absolute;
	z-index: 0;
	top: 100%;
	bottom: 0;
	left: 27px !important;

	width: .4rem;
	height: .4rem;
    margin-top: -.4rem;

	content: '';

	border-width: .3rem .3rem 0;
	border-style: solid;
	border-color: transparent;
	border-top-color: black;
}

.tooltip .arrow{
	z-index: 2;
	left: 27px !important;
}

.tooltip .arrow:before{
	border-width: 0 .3rem .3rem;
	border-bottom-color: #fff;
}

.tooltip.bs-tooltip-top .arrow:before{
	border-width: .3rem .3rem 0;
	border-top-color: #fff;
}

.tooltip-inner{
	font-family: 'Montserrat';
	font-size: 11px;
	position: relative;
	z-index: 1;
	max-width: 288px;
	text-align: left;
	color: #010101;
	border-radius: 0;
	background-color: white;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .46);
	        box-shadow: 0 0 3px rgba(0, 0, 0, .46);
}

.mfp-content .popup{
	display: block;
}

/* magnific popups settings for fade effect */

.mfp-fade.mfp-bg{
	-webkit-transition: all .3s ease-out;
	     -o-transition: all .3s ease-out;
	        transition: all .3s ease-out;

	opacity: 0;
}

.mfp-fade.mfp-bg.mfp-ready{
	opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing{
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content{
	-webkit-transition: all .3s ease-out;
	     -o-transition: all .3s ease-out;
	        transition: all .3s ease-out;
	opacity: 0;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content{
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content{
	opacity: 0;
}

/***********************************************
* Buttons
***********************************************/

.btn{
	-webkit-box-shadow: none;
	        box-shadow: none;
	text-shadow: none;
}

.btn-default{
	max-width: 100%;

	white-space: normal;
}

.btn-default.btn-large{
	padding: 25.5px 43px;
	font-size: 22px;
	font-weight: 400;
	border-radius: 5px;
}

.btn-default.yellow{
	font-size: 22px;
	font-weight: 400;

	padding: 25.5px 43px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	color: var(--theme-text-color);
	border-radius: 5px;
	background-color: var(--theme-secondary-color);
	-webkit-box-shadow: 0 16px 27px rgba(0, 0, 0, .38);
	        box-shadow: 0 16px 27px rgba(0, 0, 0, .38);
}

.btn-default.yellow:hover{
	-webkit-transform: translateY(-5px);
	    -ms-transform: translateY(-5px);
	        transform: translateY(-5px);

	color: #fff;
	background-color: var(--theme-primary-color);
	-webkit-box-shadow: 0 16px 37px rgba(0, 0, 0, .38);
	        box-shadow: 0 16px 37px rgba(0, 0, 0, .38);
}

.btn-default.blue{
	color: white;
	border-radius: 5px;
	background-color: var(--theme-primary-color);
	-webkit-box-shadow: 0 7px 9px rgba(0, 0, 0, .18);
	        box-shadow: 0 7px 9px rgba(0, 0, 0, .18);
}

.btn-default.blue:hover{
	background-color: var(--theme-secondary-color);
}

.btn-default.white{
	color: #777;
	border-radius: 5px;
	background-color: white;
	-webkit-box-shadow: 0 7px 9px rgba(0, 0, 0, .18);
	        box-shadow: 0 7px 9px rgba(0, 0, 0, .18);
}

.btn-default.white:hover{
	background-color: #ddd;
}

.btn-default.gray{
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	color: #777;
	border-radius: 5px;
	background-color: #e1e1e1;
}

.btn-default.gray:hover{
	background-color: var(--theme-primary-color);

	fill: #fff;
}

.btn-default.small{
	font-size: 15px;

	padding: 8px 36px;
}

.btn-default.medium{
	font-size: 14px;

	padding: 15px 38px;
}

.btn-default.medium2{
	font-size: 20px;

	padding: 11px 38px;
}

.btn-default.no-shadow{
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.btn-default.arrow-btn{
	margin-right: 30px;
	padding: 19px 25px;
}

.btn-default.arrow-btn .svg-icon{
	width: 19px;
	height: 13px;
}

/***********************************************
* Svg icons
***********************************************/

.svg-icon{
	font-size: 0;

	width: 100%;
	height: 100%;
}

.svg-icon svg{
	width: 100%;
	height: 100%;
}

#icon-arrow-bullets1 .cls-1,
#icon-arrow-bullets1 .st0,
#icon-arrow-bullets2 .cls-1,
#icon-arrow-bullets2 .st0,
#icon-arrow-bullets3 .cls-1,
#icon-arrow-bullets3 .st0,
#icon-arrow-bullets4 .cls-1,
#icon-arrow-bullets4 .st0,
#icon-arrow-bullets5 .cls-1,
#icon-arrow-bullets5 .st0,
#icon-arrow-bullets6 .cls-1,
#icon-arrow-bullets6 .st0{
    fill: var(--theme-secondary-color);
}

#icon-arrow-bullets1 .cls-2,
#icon-arrow-bullets2 .cls-2,
#icon-arrow-bullets3 .cls-2,
#icon-arrow-bullets4 .cls-2,
#icon-arrow-bullets5 .cls-2,
#icon-arrow-bullets6 .cls-2{
    fill: #fff;
}

#icon-bullets2 .st2{
    font-size: 18.8685px;
}

/***********************************************
* Layout
***********************************************/

.calc{
	margin-bottom: 115px;
	padding: 52px 100px;

	background-color: #f0f0f0;
}

.calc	+ .calc__btn-wrap{
	margin-top: -85px;
}

.calc__btn{
	font-size: 20px;

	width: 100%;
	max-width: 568px;
	padding: 10px 15px;
}

.calc__btn-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-bottom: 115px;
	padding-right: 100px;
	padding-left: 100px;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-start;
	align-items: center;
}

.calc-title{
	margin-top: 140px;
	margin-bottom: 20px;
}

.calc-title__logo{
	position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.calc-title__logo svg,
.calc-title__logo img{
    margin-right: 30px;
    margin-left: 23px;
	height: 90px;
}

.calc-title__logo h2{
	font-size: 35px;
	font-weight: 400;

	margin-bottom: 10px;
}

.calc-title__logo h3{
	font-size: 20px;
	font-weight: 400;
}

.calc__header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-bottom: 42px;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.calc__step{
	position: relative;

	white-space: nowrap;
}

.calc__step h3{
	font-size: 20px;

	margin-bottom: 0;
}

.calc__step p{
	font-size: 14px;

	margin-bottom: 5px;

	color: #6d6d6d;
}

.calc__step:before{
	position: absolute;
	z-index: 1;
	bottom: 0;

	width: 100%;
	height: 7px;

	content: '';

	opacity: 0;
	background-color: var(--theme-secondary-color);
}

.calc__step:after{
	z-index: 0;

	display: block;

	width: 170px;
	height: 7px;

	content: '';

	background-color: #dfdfdf;
}

.calc__step.active:before{
	opacity: 1;
}

.calc__step.half:before{
	width: 50px;

	opacity: 1;
}

.calc__select{
	position: relative;

	height: 54px;

	cursor: pointer;

	border-radius: 5px;
	background-color: white;
}

.calc__select:before{
	position: absolute;
	position: absolute;
	top: 27px;
	right: 21px;

	display: block;

	width: 0;
	height: 0;

	content: '';
	content: '';

	border-top: 4px solid #000;
	border-right: 2px solid transparent;
	border-right-width: 4px;
	border-left: 2px solid transparent;
	border-left-width: 4px;
}

.calc__select-name{
	font-size: 12px;

	position: absolute;
	top: 10px;
	left: 0;

	overflow: hidden;

	width: 100%;
	padding-right: 40px;
	padding-left: 16px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
	white-space: nowrap;
	   text-overflow: ellipsis;

	color: #717171;

	-o-text-overflow: ellipsis;
}

.calc__select-value{
	font-size: 14px;

	position: absolute;
	bottom: 0;
	left: 0;

	width: 100%;
	height: 32px;
	padding: 0;
	padding-right: 40px;
	padding-left: 16px;

	cursor: text;

	color: black;
	border: none;
	outline: none;
	background: none;
}

.calc__select-value[readonly]{
	cursor: pointer;
	pointer-events: none;
}

.calc__select-dropdown{
	position: absolute;
	top: 100%;
	left: 0;

	display: none;
	overflow: auto;

	width: 100%;
	max-height: 252px;
	margin: 0;
	padding: 0;
	padding: 11px 0;
    z-index: 10;

	list-style: none;

	background-color: white;
}

.calc__select-dropdown li{
	font-size: 14px;
	padding: 1px 15px;
    cursor: pointer;
}

.calc__select-dropdown li:hover, .calc__select-dropdown li.active {
	color: #fff;
	background-color: var(--theme-primary-color);
}

.calc__select select{
	display: none;
}

.calc__select.drop{
	z-index: 10;
}

.calc__select.drop:before{
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.calc__select.drop .calc__select-dropdown{
	display: block;
}

.calc__select.drop.calc__select_style2 .calc__select-name{
	font-size: 12px;

	top: 10px;
}

.calc__select.selected .calc__select-name{
	font-size: 12px;

	top: 10px;
}

.calc__select.disabled{
	background-color: #dfdfdf;
	cursor: default;
}

.calc__select_style2 .calc__select-name{
	font-size: 14px;

	top: 18px;
}

.calc__input{
	position: relative;

	display: block;

	height: 54px;

	cursor: pointer;

	border-radius: 5px;
	background-color: white;
}

.calc__input-name{
	font-size: 14px;

	position: absolute;
	top: 18px;
	left: 0;

	overflow: hidden;

	width: 100%;
	padding-right: 16px;
	padding-left: 16px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
	white-space: nowrap;
	   text-overflow: ellipsis;

	color: #717171;

	-o-text-overflow: ellipsis;
}

.calc__input-name.small{
	font-size: 12px;

	top: 19px;
}

.calc__input-value,
.calc__input .ng-flat-datepicker-wrapper{
	font-size: 14px;

	position: absolute;
	bottom: 0;
	left: 0;

	width: 100%;
	height: 32px;
	padding: 0;
	padding-right: 40px;
	padding-left: 16px;

	cursor: pointer;

	color: black;
	border: none;
	outline: none;
	background: none;
}

.calc__input-value[readonly],
.calc__input .ng-flat-datepicker-wrapper[readonly]{
	cursor: pointer;
	pointer-events: none;
}

.calc__input-value:focus,
.calc__input .ng-flat-datepicker-wrapper:focus{
	cursor: text;
}

.calc__input-value:focus	+ .calc__input-name,
.calc__input .ng-flat-datepicker-wrapper:focus	+ .calc__input-name{
	font-size: 12px;

	top: 10px;
}

.calc__input.focused .calc__input-value,
.calc__input.filled .calc__input-value{
	cursor: text;
}

.calc__input.focused .calc__input-name,
.calc__input.filled .calc__input-name{
	font-size: 12px;

	top: 10px;
}

.calc__input.disabled{
	background-color: #dfdfdf;
	cursor: default;
}

.calc__input_date .calc__input-name{
	z-index: 0;
}

.calc__input_date .calc__input-value{
	z-index: 1;
}

.calc .ng-flat-datepicker-wrapper{
	height: 100%;
}

.calc .ng-flat-datepicker-wrapper input{
	height: 100%;
	padding-top: 19px;
	padding-bottom: 0;
}

.calc .form-group{
	margin-bottom: 30px;
    position: relative;
}

.calc__arrow{
	margin-top: -5px;
	padding-left: 17px;
}

.calc__arrow .svg-icon{
	position: relative;
	top: -10px;

	display: inline-block;

	width: 55px;
	height: 56px;
	margin-right: 5px;

	vertical-align: bottom;

	fill: var(--theme-secondary-color);
}

.calc__arrow p{
	font-size: 18px;

	display: inline-block;

	max-width: calc(100% - 70px);
	margin-bottom: 0;

	vertical-align: bottom;
}

.calc__title{
	font-size: 20px;

	margin-top: 7px;
	margin-bottom: 15px;


	color: var(--theme-primary-color);
}

.calc .toggle-label{
	display: none;
}

.calc .toggle-label.active{
	display: block;
}

.calc__toggle-btn{
	font-size: 12px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	height: 54px;

	cursor: pointer;
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
	text-align: center;

	color: #717171;
	border: 1px solid #acacac;
	border-radius: 5px;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.calc__toggle-btn input{
	display: none;
}

.calc__toggle-btn:hover{
	color: #fff;
	border-color: #22b9f1;
	background-color: #22b9f1;
}

.calc__toggle-btn.active{
	color: #fff;
	border-color: #0d9dd3;
	background-color: #0d9dd3;
}

.calc__check-btn{
	width: 100%;
	margin-bottom: 0;
}

.calc__check-btn span{
	font-size: 12px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	width: 100%;
	height: 54px;

	cursor: pointer;
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
	text-align: center;

	color: #717171;
	border: 1px solid #acacac;
	border-radius: 5px;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.calc__check-btn span:hover{
	color: #fff;
	border-color: var(--theme-primary-color);
	background-color: var(--theme-primary-color);
}

.calc__check-btn input{
	display: none;
}

.calc__check-btn input:checked	+ span{
	color: #fff;
	border-color: var(--theme-primary-color);
	background-color: var(--theme-primary-color);
}

.calc__gray{
	position: relative;

	margin-bottom: 30px;
	padding: 0 30px;
	padding-top: 27px;

	background-color: #e1e1e1;
	padding-bottom: 30px;
}

.calc__gray-title{
	font-size: 16px;
	font-weight: 700;

	display: inline-block;

	margin-right: 27px;

	color: black;
}

.calc__gray-title-wrap{
	margin-bottom: 10px;
}

.calc__gray-title-wrap p{
	font-size: 12px;

	display: inline-block;
}

.calc__gray-title-wrap p a{
	text-decoration: underline;
    cursor: pointer;

	color: black;
	color: inherit;
}

.calc__gray-title-wrap p a:hover{
	text-decoration: none;
}

.calc__gray-close{
	position: absolute;
	top: 15px;
	right: 15px;

	width: 17px;
	height: 17px;

	border: 1px solid #959595;
	border-radius: 50%;
    cursor: pointer;
}

.calc__gray-close .svg-icon{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	width: 8px;
	height: 8px;
	margin: auto;
}

.calc__add-btn{
	margin-bottom: 35px;
}

.calc__order-btn{
	width: 100%;
	max-width: 568px;
	margin-top: 10px;
	margin-bottom: 35px;
}

.calc__results{
	padding-bottom: 55px;
}

.result-warning {
	background: rgba(250, 200, 11, .1) !important;
}

.result__info {

	align-self: center;
}
.result__info__icon--warning {
	display: block;
	cursor: pointer;
	width: 25px;
	height: 25px;
	color: white;
	font-size: 20px;
	padding: 10px;
	margin: 10px;
	border-radius: 50%;
	background: var(--red);
	line-height: 0.2;
}

.result__info

.calc__chars{
	width: 100%;
	margin-top: -8px;
	margin-bottom: 30px;
}

.calc__chars {
	width: 100%;
}

.calc__chars tr{
	border-bottom: 1px solid #c2c2c2;
}
.calc__chars tr:last-child {
    border-bottom: none;
}

.calc__chars td{
	padding: 0 10px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.calc__chars td:nth-child(1){
	font-size: 14px;
	font-weight: 600;

	width: 33.5%;
}

.calc__chars td:nth-child(2){
	width: 66.5%;
}

.calc__line-desc{
	margin-bottom: 32px;
	padding-bottom: 12px;
	padding-left: 10px;

	border-bottom: 1px solid #c2c2c2;
}

.calc__check-label{
	line-height: 1.3;

	position: relative;

	padding-left: 33px;
}

.calc__check-label input{
	display: none;
}

.calc__check-label input:checked	+ .checkbox .svg-icon{
	opacity: 1;
}

.calc__check-label .checkbox{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;

	width: 20px;
	height: 20px;
	margin: auto;

	cursor: pointer;
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	border: 1px solid #acacac;
	border-radius: 5px;
}

.calc__check-label .checkbox .svg-icon{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	max-width: 80%;
	max-height: 80%;
	margin: auto;

	opacity: 0;

	fill: #acacac;
}

.calc__check-label span{
	font-size: 12px;

	color: #717171;
}

.calc__radio-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding: 5px 0;

	text-align: right;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.calc__radio-wrap p{
	font-size: 12px;

	margin-right: 13px;
	margin-bottom: 0;

	color: #444;

	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.calc__radio-wrap_left{
	text-align: left;
}

.calc__radio-group{
	white-space: nowrap;
}

.calc__radio-label{
	margin-right: 5px;
	margin-bottom: 0;

	cursor: pointer;
}

.calc__radio-label:last-child{
	margin-right: 0;
}

.calc__radio-label input{
	display: none;
}

.calc__radio-label input:checked	+ span{
	color: white;
	border-color: var(--theme-primary-color);
	background-color: var(--theme-primary-color);
}

.calc__radio-label span{
	font-size: 13px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	min-width: 46px;
    padding: 0 10px;
	height: 42px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	color: #717171;
	border: 1px solid #acacac;
	border-radius: 5px;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section__title{
	font-size: 35px;

	margin-bottom: 30px;
	padding-left: 100px;
}

.section_bg{
	padding-top: 116px;
	padding-bottom: 116px;
}

.result{
	margin-bottom: 6px;

	border-radius: 5px;
	background-color: white;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .07);
	        box-shadow: 0 4px 8px rgba(0, 0, 0, .07);
}

.result__header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	padding: 45px 30px;
	padding-bottom: 30px;
}

.result__header .btn-default.yellow{
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
	        box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.result__image{
	width: calc(21.8% - 30px);
	height: 70px;
	margin-right: 30px;

	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.result__image img{
	max-width: 100%;
	max-height: 100%;
}

.result__desc{
	width: calc(35.2% - 65px);
	margin-right: 30px;
	padding-top: 6px;
	align-self: center;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.result__desc p{
	font-size: 13px;

	color: #717171;
}

.result__title{
	font-size: 20px;

	margin-bottom: 5px;
}

.result__toggle{
	font-size: 13px;

	cursor: pointer;
	text-decoration: underline;
}

.result__toggle:hover{
	text-decoration: none;
}

.result__price{
	font-size: 26px;
	font-weight: 700;

	width: calc(22.5% - 30px);
	align-self: center;

	color: var(--theme-primary-color);

	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.result__price span{
	font-size: 20px;
	font-weight: 400;

	margin-left: 5px;
}

.result__btn{
	margin-top: -15px;

	text-align: right;

	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.result__content{
	display: none;

	padding: 7px 96px;
}

.result__content	> p{
	font-size: 14px;
}

.result__table{
	width: 598px;
	margin-bottom: 32px;
	margin-left: -10px;
}

.result__table thead{
	color: #fff;
	background-color: #00aced;
}

.result__table thead td{
	font-size: 17px;

	padding: 7px 10px;
}

.result__table td{
	font-size: 14px;

	padding: 5px 10px;
}

.result__table td:nth-child(2){
	text-align: right;
}

.result__table tbody tr:nth-child(odd){
	background-color: #f0f0f0;
}

.result.active .result__content{
	display: block;
}

.content{
	padding-bottom: 40px;
}

.content__title{
	font-size: 35px;
	font-weight: 700;

	margin-bottom: 35px;

	color: black;
}

.breadcrumb{
	margin: 0;
	margin-bottom: 14px;
	padding: 0;

	background: none;
}

.breadcrumb-item{
	font-size: 13px;

	color: #777;
}

.breadcrumb-item	+ .breadcrumb-item{
	padding-left: 3px;
}

.breadcrumb-item	+ .breadcrumb-item::before{
	padding-right: 4px;

	content: '>';
}

.breadcrumb-item a{
	text-decoration: underline;

	color: #007acf;
}

.breadcrumb-item a:hover{
	text-decoration: none;
}

.article h1{
	font-size: 35px;
	font-weight: 700;

	margin-bottom: 37px;
}

.article p{
	font-size: 14px;
	line-height: 1.45;

	margin-bottom: 20px;
}

.article p	+ ul{
	margin-top: -12px;
}

.article h2{
	font-size: 30px;

	margin-top: 32px;
	margin-bottom: 12px;
}

.article h3{
	font-size: 25px;

	margin-top: 33px;
	margin-bottom: 15px;
}

.article ul{
	margin: 0;
	margin-bottom: 18px;
	padding: 0;

	list-style: none;
}

.article ul li{
	position: relative;

	margin-bottom: 3px;
	padding-left: 25px;
}

.article ul li:before{
	position: absolute;
	top: 10px;
	left: 0;

	display: block;

	width: 14px;
	height: 1px;

	content: '';

	background-color: #ffc80b;
}

.order__header{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-bottom: 28px;

	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
}

.order__msg, .alert {
	padding: 12px 24px;
	margin-bottom: 20px;

	border-radius: 5px;
	background-color: #53c21d;
}
.alert {
	color: white;
	font-size: 15px;
}

.order__msg p, .alert p{
	font-size: 15px;

	margin-bottom: 0;

	color: white;
}

.calc-title__logo.error, .alert.error{
	background-color: #f14854;
}

.order__btns{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-top: 5px;
}

.order__btn{
	position: relative;

	display: block;

	width: 60px;
	height: 60px;
	margin-right: 15px;

	cursor: pointer;
	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;

	border-radius: 50%;
	background-color: var(--theme-primary-color);

	fill: #fff;
}

.order__btn:hover{
	background-color: var(--theme-secondary-color);
}

.order__btn:hover .order__btn-dropdown{
	display: block;
}

.order__btn:last-child{
	margin-right: 0;
}

.order__btn .svg-icon{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;

	max-width: 60%;
	max-height: 60%;
	margin: auto;
}

.order__btn-dropdown{
	position: absolute;
	top: 100%;
	left: 30px;

	display: none;

	width: 167px;
	margin-top: 10px;

	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);

	border-radius: 5px;
	background-color: white;
	-webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
	        box-shadow: 0 5px 16px rgba(0, 0, 0, .2);
}

.order__btn-dropdown:after{
	position: absolute;
	top: -30px;
	left: 0;

	display: block;

	width: 100%;
	height: 30px;

	content: '';
}

.order__btn-dropdown:before{
	position: absolute;
	position: absolute;
	top: -10px;
	right: 0;
	left: 0;

	display: block;

	width: 0;
	height: 0;
	margin: auto;

	content: '';
	content: '';

	border-right: 5px solid transparent;
	border-right-width: 10px;
	border-bottom: 10px solid #fff;
	border-left: 5px solid transparent;
	border-left-width: 10px;
}

.order__btn-dropdown ul{
	margin: 0;
	padding: 0;

	list-style: none;
}

.order__btn-dropdown li{
	border-bottom: 1px solid #eaeaea;
}

.order__btn-dropdown a{
	font-size: 14px;

	display: block;

	padding: 8.5px 20px;

	color: #007acf;
}

.order__btn-dropdown a:hover{
	text-decoration: none;

	color: #fff;
	background-color: var(--theme-secondary-color);
}

.order__wrap{
	margin-bottom: 10px;
	padding: 34px 50px;

	border: 1px solid #e1e1e1;
	background-color: white;
}

.order__wrap	> p{
	font-size: 13px;

	margin-bottom: 30px;

	color: #444;
}

.order__table, .order__info .calc__chars {
	width: 100%;
	margin-bottom: 40px;
}
.order__info .calc__chars {
    margin-bottom: 30px;
}

.order__table:last-child {
	margin-bottom: 0;
}

.order__table tr, .order__info .calc__chars tr {
	border-bottom: 1px solid #c2c2c2;
}

.order__table tr:last-child, .order__info .calc__chars tr:last-child {
	border-bottom: none;
}

.order__table td, .order__info .calc__chars td{
	padding: 0 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.order__table td:nth-child(1), .order__info .calc__chars td:nth-child(1){
	font-size: 14px;
	font-weight: 600;

	width: 30%;
}

.order__table td:nth-child(2), .order__info .calc__chars td:nth-child(2){
	width: 70%;
}

.order__table.last-border tr:last-child{
	border-bottom: 1px solid #c2c2c2;
}

.order__title{
	font-size: 20px;
	font-weight: 400;

	margin-top: 8px;

	color: var(--theme-primary-color);
}

.order__title	+ .order__subtitle {
	margin-top: 40px;
}

.order__info .row:first-child .calc__title {
    margin-top: 30px;
    margin-bottom: 1rem;
}

.order__subtitle, .order__info .calc__title {
	font-size: 18px;
	font-weight: 400;

	color: #777;
}

.order__info .row {
	margin-left: 0;
	margin-right: 0;
}

.order .calc__title{
	color: #777;
}

.order__file{
	position: relative;

	margin-right: 113px;
	margin-bottom: 0;

	cursor: pointer;

	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.order__file input{
	display: none;
}

.order__file.success .success, .order__file.success .remove{
	display: block;
}

.order__file.success .order__file-name{
	color: #53c21d;
	border-color: #53c21d;
	background-color: white;
}

.order__file.success .svg-icon_icon-attach{
	fill: #53c21d;
}

.order__file-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	margin-bottom: 16px;
	padding: 0 8px;
	padding-bottom: 16px;

	border-bottom: 1px solid #e0e0e0;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.order__file-wrap:last-child{
	border-bottom: none;
}

.order__file-name{
	font-size: 13px;

	display: block;
	overflow: hidden;

	width: 210px;
	padding: 7.5px;
	padding-right: 15px;
	padding-left: 35px;

	-webkit-transition: all .2s ease;
	     -o-transition: all .2s ease;
	        transition: all .2s ease;
	white-space: nowrap;
	   text-overflow: ellipsis;

	color: #444;
	border: 2px solid #e8e8e8;
	border-radius: 5px;
	background-color: #e8e8e8;

	-o-text-overflow: ellipsis;
}

.order__file .svg-icon_icon-attach{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 12px;

	width: 12px;
	height: 13px;
	margin: auto;

	fill: #444;
}

.order__file .success, .order__file .remove{
	position: absolute;
	top: 0;
	right: -40px;
	bottom: 0;

	display: none;

	width: 26px;
	height: 26px;
	margin: auto;

	fill: #53c21d;
}

.order__file .remove {
    fill: red;
}

.order__file-desc p{
	font-size: 14px;

	margin-bottom: 0;

	color: black;
}

.order__files{
	margin-bottom: 31px;
}

.order .btn.medium2{
	width: 100%;
	max-width: 568px;
}

@-webkit-keyframes fadeInDown{
	from{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeInDown{
	from{
		-webkit-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes fadeIn{
	from{
		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeIn{
	from{
		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes fadeInDownSmall{
	from{
		-webkit-transform: translate3d(0, -40px, 0);
		        transform: translate3d(0, -40px, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeInDownSmall{
	from{
		-webkit-transform: translate3d(0, -40px, 0);
		        transform: translate3d(0, -40px, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes fadeInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes fadeInUpSmall{
	from{
		-webkit-transform: translate3d(0, 40px, 0);
		        transform: translate3d(0, 40px, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeInUpSmall{
	from{
		-webkit-transform: translate3d(0, 40px, 0);
		        transform: translate3d(0, 40px, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes moveInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}

	to{
		-webkit-transform: none;
		        transform: none;
	}
}

@keyframes moveInUp{
	from{
		-webkit-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}

	to{
		-webkit-transform: none;
		        transform: none;
	}
}

@-webkit-keyframes fadeInLeftSmall{
	from{
		-webkit-transform: translate3d(100px, 0, 0);
		        transform: translate3d(100px, 0, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@keyframes fadeInLeftSmall{
	from{
		-webkit-transform: translate3d(100px, 0, 0);
		        transform: translate3d(100px, 0, 0);

		opacity: 0;
	}

	to{
		-webkit-transform: none;
		        transform: none;

		opacity: 1;
	}
}

@-webkit-keyframes selectNameAnim{
	0%{
		right: 15px;
	}

	50%{
		right: 15px;
	}

	50.0001%{
		right: auto;
	}

	100%{
		right: auto;
	}
}

@keyframes selectNameAnim{
	0%{
		right: 15px;
	}

	50%{
		right: 15px;
	}

	50.0001%{
		right: auto;
	}

	100%{
		right: auto;
	}
}
.logo-st0{fill:#0076BF;}
.logo-st1{font-family:'Montserrat';}
.logo-st2{font-size:13.876px;}
.logo-st3{fill:#3B3A3C;}
.logo-st4{font-family:'Panton-Bold';}
.logo-st5{font-size:55.5024px;}
.logo-st6{letter-spacing:1;}
.logo-st7{font-size:54.3178px;}
.logo-st8{fill:var(--theme-primary-color);}
.logo-st9{fill:var(--theme-secondary-color);}
.logo-st10{fill:#FFFFFF;}
.logo-calc-st0{fill:var(--theme-primary-color);}
.logo-calc-st1{fill:var(--theme-secondary-color);}
.logo-calc-st2{clip-path:url(#SVGID_2_);}
.logo-calc-st3{fill:#FFFFFF;}
a.popup-btn
{
	cursor: pointer;
}

.popup .g-recaptcha {
    transform:scale(0.88);
    transform-origin:0 0;
}

.ng-flat-datepicker-custom-select {
    max-height: 300px;
    overflow-y: scroll;
}

.select2-search--dropdown {
	position: relative;
	margin-top: -40px;
	font-size: 14px;
	padding-left: 10px;
}

.select2-search__field {
	margin-top: 7px;
}

.required.selected {
	outline: none;
}

.other-company-btn {
	padding: 5px 10px;
	font-size: 17px;
	margin-left: 20px;
}

.arrow-bullets__image use svg {
	background-color: var(--theme-primary-color);
}

.tooltip-caption {
	color: #2a4456;
	font-size: 11pt;
	font-weight: 300;
}

.custom-popup-wrapper {
	position: absolute;
	/*min-width: 320px;*/
	max-width: 970px;
}

.calc .calc__btn-wrap {
	margin-bottom: 20px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 10px;
}

.btn-add {
	margin: 5px 0;
	font-size: 13px;
	height: 42px;
}

.loader {
	min-height: 400px;
	position: relative;
}

.loader:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url('../images/loader.svg');
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 1000;
}

.loader.loader-calculations {
	min-height: 180px;
}

.loader.loader-calculations::before {
	background-color: transparent !important;
	background-position: center 30px !important;
}

.loader.loader-top:before {
	background-position: center 100px;
}

.loader-message {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	top: calc(50% + 80px);
	max-width: 80%;
	color: var(--theme-secondary-color);
	font-size: 26px;
	line-height: 1.3;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1001;
	text-shadow: 1px 1px 1px rgba(62, 62, 62, 0.5);
}

.loader.loader-top .loader-message {
	position: relative;
	top: 180px;
}

.loader.loader-calculations .loader-message {
	width: 100%;
	top: 150px !important;
}

.result__desc p.error {
	color: red;
}

.result__desc p.error a {
	cursor: pointer;
	text-decoration: underline;
}

.result__desc.with-error {
	width: calc(70% - 30px);
}

.drivers__table {
	margin-top: -10px;
}

.drivers__table tr:first-child td:first-child {
	font-size: 16px;
	font-weight: normal;
}

.order .content__title {
	margin-bottom: 10px;
}

.order__btn.loading {
	background-color: var(--theme-secondary-color);
	cursor: not-allowed;

	-webkit-animation: spin 1.5s linear infinite;
	-moz-animation: spin 1.5s linear infinite;
	-ms-animation: spin 1.5s linear infinite;
	-o-animation: spin 1.5s linear infinite;
	animation: spin 1.5s linear infinite;
}

@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(359deg);
	}
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}

.order__table .btn {
	margin-right: 15px;
}

.order__title + .order__msg {
	margin-top: 20px;
}

.order__title + .calc__title {
	margin-top: 30px;
}

.order__table.payment__table tr {
	border-bottom: 0;
}

.order__wrap .order__msg:last-child {
	margin-bottom: 10px;
}

.order__wrap .calc__title:first-child {
	margin-top: 30px;
}

.svg-icon_icon-error {
	width: 60%;
	height: 60%;
	margin-left: 5px;
	margin-top: 5px;
}

.btn__wrap {
	display: flex;
}

.order .btn__wrap .svg-icon {
	width: 30px;
	height: 30px;
	fill: white;
}

.order .btn__wrap .btn.medium2.btn__icon {
	width: auto;
	margin-right: 15px;
}

.order__file-desc {
	width: 100%;
}

.simple__input {
	height: 38px;
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	border: 2px solid #e8e8e8;
	background-color: #e8e8e8;
}

.simple__input::placeholder {
	position: relative !important;
	background: none !important;
	padding: 0 !important;
	color: #444 !important;
}

.upload-form + .order__files {
	margin-top: 30px;
}

.order__files__fieldset .order__subtitle {
	font-size: 16px;
}

.order__files__fieldset .order__file {
	margin-top: 10px;
}

.order__files__fieldset .order__file:last-child {
	margin-right: 0;
}

.order__files__fieldset .order__file-wrap {
	flex-wrap: wrap;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
}

.ng-flat-datepicker {
	top: 45px;
	left: 0;
}

.required {
	outline: 2px solid var(--theme-secondary-color);
}

.widget-root .required {
	outline: none;
}

.custom-popup-wrapper {
	position: absolute;
	/*min-width: 320px;*/
	max-width: 970px;
}

body > .custom-popup-wrapper > .calc__select-dropdown, .calc__input-typeahead.ng-focused + .custom-popup-wrapper > .calc__select-dropdown {
	display: block;
}

.ng-isolate-scope .me-class {
	display: block !important;
}

.ng-isolate-scope.ng-hide .me-class {
	background: #8c8c8c;
}

.alert + .ajax__form {
	margin-top: 30px;
}

.underline {
	cursor: pointer;
	border-bottom: 1px var(--theme-primary-color) dashed;
}

.calc__select-dropdown li.hover {
	color: #fff;
	background-color: var(--theme-primary-color);
}

.custom-popup-wrapper-fixed {
	/*max-width: 220px;*/
	min-width: 0;
}

.w-100 {
	width: 100% !important;
	margin: 0 !important;
	height: 54px !important;
}

.warning-text {
	color: #dc3545;
}

.our-flex {
	width: 100%;
	display: flex;
	margin-right: -15px;
	margin-left: -15px;
}

.select2-container {
	padding-right: 1px;
}

.select2-container--default .select2-selection--single {
	border: none;
	height: 54px;
	outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 14px;
	right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	font-size: 14px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 32px;
	padding: 0;
	padding-right: 40px;
	padding-left: 16px;
	color: black;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #000 transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #000 transparent;
}

.select2-dropdown {
	border: none;
}

.calc-select2-wrapper {
	position: relative;
}

.calc__select2-name {
	font-size: 14px;
	top: 18px;
	position: absolute;
	left: 15px;
	z-index: 1;
	color: #717171;
	transition: .3s;
}

.select2-selection__placeholder {
	display: none;
}

.ng-not-empty ~ .calc__select2-name, .select2-container--open ~ .calc__select2-name, .select2-top-label .calc__select2-name {
	top: 6px;
	font-size: 12px;
}


.ng-not-empty ~ .calc__select2-name .select2-selection__placeholder {
	display: block;
}

.select2-results__option {
	font-size: 14px;
	padding: 1px 15px;
}

.select2-container--default .select2-results > .select2-results__options {
	padding: 5px 0;
}


.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted {
	background-color: var(--theme-primary-color);
}

.select2-container--default {

}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: none;
	outline: none;
	padding-top: 0;
}

.select2-search-wrapper {
	position: relative;
	margin-top: -40px;
}

.select2-search-wrapper .select2-search__field {
	font-size: 14px;
	padding-left: 10px;
	background-color: white;
}

.calc__select2-name, .select2-selection__arrow {
	z-index: 2;
}

.select2-dropdown {
	background-color: transparent;
}

.select2-results {
	background-color: white;
	z-index: 3;
}

.select2-search--dropdown {
	padding-right: 40px;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #dfdfdf;
}

.ng-flat-datepicker .ng-flat-datepicker-table-header-bckgrnd, .ng-flat-datepicker table tbody tr.days .day-item:hover, .ng-flat-datepicker table tbody tr td.day-item.isSelected, .ng-flat-datepicker table tbody tr td.disabled.isSelected{
	background-color: var(--theme-primary-color);
}

.ng-flat-datepicker-custom-select-title {
	border-color: var(--theme-primary-color);
}

.send_sms-input {
	background-color: #e2e2e2;
	border-radius: 5px;
	font-size: 15px;
	padding: 20px 14px;
	position: static;
}


.clearField {
	display: block;
	position: absolute;
	cursor: pointer;
	top: 50%;
	margin-top: -5px;
	right: 33px;
	width: 13px;
	height: 13px;
	background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAABFAAAARQB+zng/wAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAEJSURBVFiFvdXBCoJAEIDhn96ro2+RtyKlToGXXrSDB6ECoUNBncsO7ULIrrq7Mw54kfD7E3UAlsAJOAMr9CcHLsZcAtRAZ44PUCripTGsVwPc/k5oRvTxzthseyc1Ilx4Z2wADp6IvQC+Ad6O6x/7P9SImIxrRATjkhHRuEREMp4SIYbHRIjjIRFq+JQIddxO5YlwfeEqadyO606o//OQiGB8ERHw4nfb+9MBz4jrBY3vgZNeYM4pcD9wrohCGh961TRX+ShuRy0i5CMjHrEOwMcidnPgYhEpeHKEBB4dIYkHR2jgkyNy9Feqb5XnAK0yPhTRAjQz4L6IBiADrsAdhSXimAJ4GDP7Ao3GS7lBEjtAAAAAAElFTkSuQmCC');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 99;
	opacity: .3;
}

.clearField:hover {
	opacity: 1;
}

.select2-dropdown.select2-dropdown--above .select2-search--dropdown {
	padding-right: 15px;
	background: white;
	border-radius: 5px 5px 0 0;
}

.select2-search--dropdown {
	padding-right: 0;
	width: calc(100% - 45px);
}

.noselect {
	cursor: default;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.modal-open .fade.ng-scope.ng-isolate-scope {
	opacity: 1;
}

.modal-open .fade.ng-scope.ng-isolate-scope > .modal {
	display: block;
	opacity: 1;
}

.modal-open .modal .modal-dialog {
	top: 10% !important;
	max-width: 1000px !important;
}
