/*@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css');*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300i,400&display=swap');


.form-step-wrap{
	/*position: relative;
	overflow-x: hidden;*/
	width: 100%;
	margin: 0 auto;
	/*max-width: 800px;*/
}
#step1box
{
	position: relative !important;
}
/* Each Step */
.slider-step{
	
	padding: 0 15px 20px 15px;
	position: absolute;
	width: 100%;
	float: left;
	/*right: -100%;*/
	/*top: 30px;*/
	opacity: 0;
	display: none;
	-webkit-transition:all, 0.3s linear;
	-moz-transition: all, 0.3s linear;
	-ms-transition: all, 0.3s linear;
	-o-transition: all, 0.3s linear;
	transition: all, 0.3s linear;
	background-color: #fff;

	/*background-image: url('https://www.toptal.com/designers/subtlepatterns/patterns/ignasi_pattern_s.png');*/
}

/* Show the 1st step */
.first-step{
	right: 0;
	opacity: 1;
	display: block;
}

/* Button */
.btn-next,
.btn-back{
	margin-top: 20px;
	display: block;
}

/* Animations Settings */
[data-anim="show-from--right"]{
	right: 0;
	opacity: 1;
	display: block;
}
[data-anim="show-from--left"]{
	right: 0;
	opacity: 1;
	display: block;
}
[data-anim="hide-to--right"]{
	right: -100%;
	opacity: 0;
	display: none;
}
[data-anim="hide-to--left"]{
	right: 100%;
	opacity: 0;
	display: none;
}


#branching-form{
	max-width: 100%;
}
#branching-form div.field p.info {
	font-size: 11px;
	background: rgba(0, 0, 0, 0.3);
	padding: 2px 10px;
	color: #333;
	text-align: right;
	margin: 0 0 5px 0;
}
#branching-form div.field > div.field > p.info {
	background: rgba(0, 0, 0, 0.2);
}
#branching-form div.field > div.field > div.field > p.info {
	background: rgba(0, 0, 0, 0.1);
}
#branching-form div.field p.info span.level {
	float: left;
}
#test {
	display: inline;
}
#branching-form div.field {
	/*padding: 15px 0px 15px 15px;*/
	height: auto;
	transition: padding 0.2s ease 0.0s;
}
/*#branching-form div.field label {
	display: block;
	padding: 5px 0px;
}
#branching-form div.field input {
	height: 16px;
}*/
/*#branching-form div.field input[type="radio"] {
	display: inline-block;
	margin: 10px auto;
	width: auto;
	vertical-align: middle;
}*/
#branching-form div.field.hidden {
	overflow: hidden;
	height: 0px;
	padding: 0px 0px 0px 15px;
	transition: padding 0.2s ease 0.0s;
}
#branching-form div.field span.custom-radio {
	border: 1px solid #bfbfbf;
	border-radius: 5px;
	display: inline-block;
	margin: 5px 0 10px 0px;
	font: bold 10px sans-serif;
	color: #717171;
	background-color: #ffffff;
	padding: 4px 9px;
	cursor: pointer;
}
#branching-form div.field span.custom-radio.radio-selected {
	background-color: #cbcbcb;
}
#fake-submit-button {
	background-color: #6288a5;
	border: 1px solid rgb(83, 118, 145);
	border-radius: 3px;
	font: 600 13px/20px'helvetica', arial, sans-serif;
	text-transform: uppercase;
	padding: 5px 15px;
	max-width: 100px;
	text-align: center;
	margin: 0 auto;
	color: #fff;
}
#fake-submit-button:hover {
	background-color: #326891;
	border-color: #325c8a;
	cursor: pointer;
}
#fake-post-data {
	margin: 40px auto;
	max-width: 600px;
	font: 400 12px/16px'courier', serif;
	word-wrap: break-word;
}
#fake-post-data h2 {
	font: 600 10px/16px'helvetica', arial, sans-serif;
	color: #666;
	text-transform: uppercase;
	background-color: #eee;
	padding: 5px 10px 3px 10px;
}


#branching-form div.field .radio-center{
	text-align: center;
}
#branching-form div.field .radio-center img{
	display: block;
	margin:auto;
}
#branching-form div.field .radio-center input{
	display: block;
}

.wgl-btn-group {
	/*text-align: center;*/
}

.wgl-btn-group .wgl-def-btn:first-child,
.wgl-btn-group .group-w-image:first-child > label{
	margin-left: 0;
}

.wgl-btn-group select{
	padding: 10px;
    font-size: 14px;
    max-width: 100%;
    width: 100%;
    display: block;
}

.wgl-def-btn{
	position: relative;
	cursor: pointer;
	line-height: 20px;
	font-size: 14px;
	margin: 0;
	padding: 10px 15px 10px 0;
	font-family: 'Roboto';
    font-weight: 300;
    display: inline-block;
}
.wgl-def-btn .label {
	position: relative;
	display: block !important;
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border: 2px solid #c8ccd4;
	border-radius: 100%;
	-webkit-tap-highlight-color: transparent;
	font-size: 10px;
}
.wgl-def-btn .label:after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background: #000;
	transform: scale(0);
	transition: all 0.2s ease;
	opacity: 0.08;
	pointer-events: none;
}
.wgl-def-btn:hover .label:after {
	transform: scale(3.6);
}

.wgl-def-btn input[type="radio"]{
	display: none;
}

.wgl-def-btn input[type="radio"]:checked + .label {
	border-color: #000;
}
.wgl-def-btn input[type="radio"]:checked + .label:after {
	transform: scale(1);
	transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
	opacity: 1;
}


label.wgl-branch,
.total-estimated label{
	font-size: 16px;
	display: block;
	/*text-align: center;*/
	font-weight: 400;
	font-family: 'Roboto';
	text-transform: capitalize;
}
label.wgl-branch{
	margin-bottom:5px;
}
.total-estimated label{
	font-size: 16px;
}
label.parent-branch{
	font-size: 16px;
	font-weight: 400;
	display: block;
	font-family: 'Roboto';
	/*text-transform: uppercase;*/
}

.group-w-image{
	display: inline-block;
	/*margin: 0 25px;*/
}
.group-w-image > img{
	display: block;
	/*margin: auto;*/
}

.wgl-col-6{
	width: 50%;
	margin: auto;
}

.list-price{
	/*text-align: center;*/
	font-size: 12px;
}
.list-price ul{
	list-style: none;
}


.wgl-row{
	margin-right: -15px;
	margin-left: -15px;
}
.wgl-row:after {
    clear: both;
}
.wgl-row:before{
	display: table;
	content: " ";
}


.wgl-col-4{
	width: 33.33333%;
	float: left;
	padding: 0 15px;
}
.wgl-col-6{
	width: 50%;
	float: left;
	padding: 0 15px;
}

.wgl-col-12{
	width: 100%;
	float: left;
	padding: 0 15px;
}

.wgl-row .inputs{
	margin-bottom: 15px;
}
.wgl-row .inputs > label{
	display: block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 300;
	font-size: 15px;
	line-height: 20px;
	font-family: 'Roboto';
}
.wgl-row .inputs input{
	height: 38px;
	padding: 5px 10px;
	font-size: 12px;
	color: #000;
	box-shadow: none;
	width: 100%;
	-webkit-appearance: textfield;
}
.wgl-row .inputs input:active,
.wgl-row .inputs input:focus{
	outline: none;
	border-color: #000;
}

.wgl-row .inputs textarea{
	width: 100%;
}


.tall input[type='number']{
	font-size: 14px;
	padding: 0 20px;
	width: 100%;
	height: 38px;
	line-height: 38px;
	/*-moz-appearance: textfield;
	appearance: textfield;*/
	margin: 0; 
	padding-right: 0;
}
.tall input[type=number]::-webkit-inner-spin-button, 
.tall input[type=number]::-webkit-outer-spin-button { 
	/*-webkit-appearance: none; */
	margin: 0; 
}

.wgl-next,
.wgl-btn-submit,
.wgl-back{
	background-color: #000 !important;
	box-shadow: none;
	color: #fff;
	border-color: #000;
	font-size: 14px !important;
	text-transform: uppercase;
	padding: 0px 20px !important;
	border-width: 1px;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	height: 38px;
	line-height: 38px;
	display: inline-block;
}

.wgl-back{
	background: #000;
}

.wgl-next:hover,
.wgl-btn-submit:hover{
	opacity: .7;
	filter: alpha(opacity=70);
	-moz-opacity: .7;
	-webkit-transition: all .3s ease 0s;
	   -moz-transition: all .3s ease 0s;
	    -ms-transition: all .3s ease 0s;
	     -o-transition: all .3s ease 0s;
	        transition: all .3s ease 0s;
}


.tall .error{
	color: red;
	font-size: 14px;
	font-style: italic;
}

.sendmail-status .success{
	color: #0a580a;
    font-weight: 700;
    font-size: 18px;
}
.sendmail-status .error{
	color: #9a0f0f;
    font-weight: 700;
    font-size: 18px;
}


.total-estimated{
	margin-bottom:20px;
}

.select-sim {
	width:100%;
	height:41px;
	line-height:41px;
	vertical-align:middle;
	position:relative;
	background:white;
	border:1px solid #a9a9a9;
	overflow:hidden;
	/*padding: 0 14px;*/
}

/*.select-sim::after {
	content:"â–¼";
	font-size:0.5em;
	font-family:arial;
	position:absolute;
	top:50%;
	right:5px;
	transform:translate(0, -50%);
}*/

.select-sim:hover::after {
	content:"";
}

.select-sim.active {
	overflow:visible;
}

.select-sim.active .options .option label {
	display:inline-block;
}

.select-sim.active .options {
	background:white;
	border:1px solid #ccc;
	position:absolute;
	top:-1px;
	left:-1px;
	/*width:100%;*/
	right:-1px;
	height:130px;
	overflow:hidden;
	z-index: 9999;
}

.select-sim .options .option {
	overflow:hidden;
}

.select-sim .options:after{
	/*display: inline-block;
    content: "‣";
    position: absolute;
    height: 10px;
    width: 10px;
    right: 10px;
    background: #fff;
    top: 12px;
    border-style: solid;
    border-color: #000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;*/
        display: inline-block;
    content: "‣";
    position: absolute;
    /* height: 10px; */
    width: 5px;
    right: 6px;
    /* background: #fff; */
    top: 0px;
    font-size: 26px;
    transform: rotate(90deg);
}

/*.select-sim:hover .options:after{
	background: #ef3d26;
	border-color: #fff;
}*/

.select-sim.active .options .option {
	height: 41px;
	overflow:hidden;
}

.select-sim .options .option img {
	vertical-align:middle;
	max-width: 30px;
}

.select-sim .options .option label {
	display:none;
}

.select-sim .options .option input {
	width:0;
	height:0;
	overflow:hidden;
	margin:0;
	padding:0;
	float:left;
	display:inline-block;
	/* fix specific for Firefox */
	position: absolute;
	left: -10000px;
}

.select-sim .options .option input:checked + label {
	display:block;
	width:100%;
	color: #0a0a0a;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	padding: 0 14px;
}

.select-sim.active .options .option input + label {
	display:block;
	line-height:41px;
	font-weight: 400;
	font-size: 14px;
	color: #0a0a0a;
	padding: 0 10px;
	cursor: pointer;
}

.select-sim.active .options .option input:checked + label,
.select-sim .options .option:hover input + label {
	background:#ef3d26;
	color: #fff;
}
.wgl-tooltip {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #666;
    border-radius: 50%;
    text-align: center;
    font-size: 12px !important;
    line-height: 20px;
    float: none;
    margin-left: 5px;
    font-size: 11px !important;
    font-weight: 700;
    line-height: 16px;
    cursor: help;
    color: #FFF;
    text-align: center;
    top: -5px;
    cursor: pointer;
}

/* Tooltip text */
.wgl-tooltip .wgl-tooltiptext {
  visibility: hidden;
  width: 220px;
  background-color: black;
  color: #fff;
  text-align: left;
  padding: 5px;
  border-radius: 6px;
  display: none;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  font-size: 12px;
  left: 25px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.wgl-tooltip:hover .wgl-tooltiptext {
  visibility: visible;
}


/*.wgl-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	background: #FFFFFF;
	box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.17), 0 20px 30px 0 rgba(0, 0, 0, 0.30);
	border-radius: 4px;
	width: 390px;
	min-height: 200px;
	overflow: hidden;
	display: none;
	background: #ccc;
}

.wgl-modal.visible {
	display: block;
}

.wgl-modal .closex {
	position:absolute;
	right: 18px;
	top:8px;
	color: #000;
	font-size:18px;
	cursor:pointer;
	font-style: normal;
}

.wgl-modal.closepop {
	display: none;
}

.wgl-modal .title-bar {
	width: 100%;
	height: 52px;
	padding: 10px 20px;
}

.wgl-modal .content-area{
	padding: 0px 30px 30px 30px;
    text-align: center;
}

@keyframes appearIn {
	from {
		height:0;
	}

	to {
		height:48px;
	}
}

.new-input {
	animation-name: appearIn;
	animation-duration: 100ms;
	animation-iteration-count: 1;
	transform-origin: top;
	animation-timing-function: ease;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-70%) scaleX(0.8);
	}

	to {
		opacity: 1;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}


.wgl-modal {
	animation-name: zoomIn;
	animation-duration: 400ms;
	animation-iteration-count: 1;
	animation-timing-function: ease;
}*/



/*==================================================
>>>      
==================================================*/

.trigger {
	/*margin: 0 0.75rem;
	padding: 0.625rem 1.25rem;
	border: none;
	border-radius: 0.25rem;
	box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.12), 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.24);
	transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
	font-size: 0.875rem;
	font-weight: 300;*/
}
.trigger i {
	margin-right: 0.3125rem;
}
.trigger:hover {
	box-shadow: 0 0.875rem 1.75rem rgba(0, 0, 0, 0.25), 0 0.625rem 0.625rem rgba(0, 0, 0, 0.22);
}

.wgl-modal {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 0vh;
	background-color: transparent;
	overflow: hidden;
	transition: background-color 0.25s ease;
	z-index: 9999;
}
.wgl-modal.open {
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.25s;
}
.wgl-modal.open > .content-wrapper {
	transform: scale(1);
}
.wgl-modal .content-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	max-width: 50%;
	margin: 0;
	padding: 2.5rem;
	background-color: white;
	border-radius: 0.3125rem;
	box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.5);
	transform: scale(0);
	transition: transform 0.25s;
	transition-delay: 0.15s;
}
.wgl-modal .content-wrapper .close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	background-color: transparent;
	font-size: 1.5rem;
	transition: 0.25s linear;
}
.wgl-modal .content-wrapper .close:before, .wgl-modal .content-wrapper .close:after {
	position: absolute;
	content: '';
	width: 1.25rem;
	height: 0.125rem;
	background-color: black;
}
.wgl-modal .content-wrapper .close:before {
	transform: rotate(-45deg);
}
.wgl-modal .content-wrapper .close:after {
	transform: rotate(45deg);
}
.wgl-modal .content-wrapper .close:hover {
	transform: rotate(360deg);
}
.wgl-modal .content-wrapper .close:hover:before, .wgl-modal .content-wrapper .close:hover:after {
	background-color: tomato;
}
.wgl-modal .content-wrapper .wgl-modal-header {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0 0 1.25rem;
}
.wgl-modal .content-wrapper .wgl-modal-header h2 {
	font-size: 1.5rem;
	font-weight: bold;
}
.wgl-modal .content-wrapper .content {
	position: relative;
	/*display: flex;*/
	width: 100%;
}
.wgl-modal .content-wrapper .content img{
	width: 100%;
	max-height: 90vh;
}