 body.modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
}

.modal {
  text-align: center;
  padding-right: 0 !important;
  z-index: 10150 !important;
}

@media screen and (min-width: 320px) { 
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: auto;
  }

 body.modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
}

}



.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    font-size: 1.429em;
	display: none;
}

.wizard > .steps > ul > li
{
    width: 25%;
	height: 50px;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 3px 2px 3px 2px;
    padding: 7px;
    text-decoration: none;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	/* -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;*/
    border: 1px solid #aaa;
	height: 50px;
    vertical-align: middle!important;
}
@-moz-document url-prefix() {
 .wizard > .steps a:active
{
    display: block;
    width: auto;
    margin: 3px 2px 3px 2px;
    padding: 7px;
    text-decoration: none;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	/* -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;*/
    border: 1px solid #aaa;
	height: 50px;
    vertical-align: middle!important;
}
}
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    background: #eee;
    color: #aaa;
    cursor: default;
	border: 1px solid #aaa;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    background: #fcfcfc;
    color: #F69C00;
	font-weight: 500;
    cursor: default;
	border: 1px solid #F69C00;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #F69C00;
    color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #FBE3E4;
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content
{
    background: #fff;
    display: block;
    margin: 0.5em;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;
	height: auto;
    min-height: 250px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    position: absolute;
    width: 100%;
    /*height: 95%;*/
    padding: 2.5%;
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

/*.wizard > .content > .body ul > li
{
    display: list-item;
} */

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #999;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid #fbc2c4;
    color: #8a1f11;
}

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 3px;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
}

.wizard > .actions
{
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;
}

.wizard > .actions > ul
{
    display: inline-block;
    text-align: right;
	/*margin-right: 15px;*/
    margin-bottom: 15px;
}

.wizard > .actions > ul > li
{
    margin: 0 2px;
}

.wizard.vertical > .actions > ul > li
{
    margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    display: block;
    text-decoration: none;
	font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: #F69C00;
    color: #fff;
    padding: 1.285em 2.642em;
    -webkit-appearance: none;
    -webkit-transition: all ease .238s;
    -moz-transition: all ease .238s;
    transition: all ease .238s;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}



/*
    Tabcontrol
*/

.tabcontrol > .steps
{
    position: relative;
    display: block;
    width: 100%;
}

.tabcontrol > .steps > ul
{
    position: relative;
    margin: 6px 0 0 0;
    top: 1px;
    z-index: 1;
}

.tabcontrol > .steps > ul > li
{
    float: left;
    margin: 5px 2px 0 0;
    padding: 1px;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover
{
    background: #edecec;
    border: 1px solid #bbb;
    padding: 0;
}

.tabcontrol > .steps > ul > li.current
{
    background: #fff;
    border: 1px solid #bbb;
    border-bottom: 0 none;
    padding: 0 0 1px 0;
    margin-top: 0;
}

.tabcontrol > .steps > ul > li > a
{
    color: #5f5f5f;
    display: inline-block;
    border: 0 none;
    margin: 0;
    padding: 10px 30px;
    text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover
{
    text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a
{
    padding: 15px 30px 10px 30px;
}

.tabcontrol > .content
{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 35em;
    overflow: hidden;
    border-top: 1px solid #bbb;
    padding-top: 20px;
}

.tabcontrol > .content > .body
{
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.tabcontrol > .content > .body ul
{
    list-style: disc !important;
}

.tabcontrol > .content > .body ul > li
{
    display: list-item;
}


::-webkit-input-placeholder {
  color: #888;
}

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

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

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

.steps > ul > li > a,
.actions li a { 
    padding: 10px;
    text-decoration: none;
    margin: 1px;
    display: block;
    color: #777;
}
.steps > ul > li,
.actions li {
    list-style:none;
} 
.form-row {
    display: flex;
    margin-bottom: 10px;
}
.form-row .select {
    width: 100%;
	margin-top: 0px;
}
.select {
    position: relative;
}
.form-row .select .form-holder {
    width: 100%;
    margin-right: 0;
}
.form-row .form-holder {
    width: 50%;
    margin-right: 30px;
}
.form-holder {
    position: relative;
}
.select .select-control {
    height: 35px;
    border: 1px solid #999;
    width: 100%;
    color: #333;
	font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
	padding-top:3px;
	padding-left: 10px;
}
.select .dropdown li {
	font-weight: 500;
}
.form-holder i {
    position: absolute;
    bottom: 7px;
    right: 10px;
    font-size: 20px;
}
.zmdi {
    display: inline-block;
    font: normal normal normal 14px/1 'FontAwesome';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.select .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 9;
    border: 1px solid #F69C00;
	overflow-y: auto;
	max-height: 120px;
    min-height: 80px;
    height: auto;
}
.select .dropdown li {
    padding: 5px 10px;
}
.select .dropdown li:hover {
    background: #F69C00;
    color: #fff;
}
.checkbox-circle {
    position: relative;
    margin-top: 20px;
    width: 100%;
}
.checkbox-circle label {
    cursor: pointer;
    color: #333;
    font-size: 13px;
    line-height: 1.9;
    transform: translateY(-5px);
}
.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkbox-circle .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    border: 1px solid #999;
}
.checkbox-circle .checkmark:after {
    content: "";
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F69C00;
    position: absolute;
    display: none;
}
.checkbox-circle input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-circle label {
	padding-left: 25px!important;
}
.raz { 
  -moz-appearance: textfield;
}
.raz::-webkit-inner-spin-button { 
  display: none;
}
.calc-rezelt-p {
	margin: 0 0 5px 0;
	text-align: center;
	color: red;
	font-weight: 600;
	line-height: 1.2;
}
.private-text {
	font-size:11px!important;
	line-height:1.1!important;
}
.private-text a {
	color:#F69C00;
	text-decoration:underline;
	font-size:12px;
}
.private-text a:hover {
	color:#F69C00;
	text-decoration:underline;
}
.close {
	color: red;
}
.close:focus, .close:hover {
	background-color: #fff;
	background: none;
}
.close span {
	background-color: #fff;
	background: none;
}
/*  --- MEDIA --- */
@media (min-width: 280px) and (max-width: 767px) {
	label {
		font-size: 12px;
	}
	.calc-rezelt-p {
		font-size: 12px;
		margin-top: 10px;
	}
	.wizard > .steps a,
	.wizard > .steps a:hover,
	.wizard > .steps a:active {
		font-size: 12px;
		height: 65px;
	}
	.wizard > .content {
		top: 20px;
	}
	.modal-title {
		font-size: 15px;
		font-weight: bold;
	}
	.private-text {
		font-size: 9px!important;
	}
	.private-text a {
		font-size: 9px!important;
	}
	.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
		padding: 3px;
	}
	.form-row {
		margin-bottom: 10px;
	}
}