/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.iconn {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	fill: none;
}
.hidden {
	display: none;
}
.progresss {
	display: flex;
	width: 100%;
	/* top: 20px; */
	/* left: 50%; */
	/* transform: translate(-50%, -50%); */
	margin-left: 13%;
    /* margin-top: 30px; */
}
.step {
	flex-grow: 1;
	position: relative;
}
.step-progress {
	width: 100%;
	height: 0.25em;
	background: #e4edf2;
}
.icon-wrapper {
	text-align: center;
	display: inline-block;
}
.step.done .step-progress:after {
	position: absolute;
	content: '';
	height: 0.25em;
	width: 0;
	background-color: #e4edf2;
	animation: growLine 1s linear forwards;
}
.icon-checkmark {
	position: absolute;
	top: -0.4em;
	left: -0.125em;
	border: 0.125em solid #e4edf2;
	background: #fff;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	padding: 0.125em;
	border-radius: 50%;
	transition: all 0.25s linear;
}
.step.done .icon-checkmark {
	background: #ffffff;
	border-color: #409fff;
}
.icon-checkmark .path1 {
	stroke: #aaa;
	stroke-width: 4;
	stroke-linecap: square;
	stroke-dasharray: 1000;
	stroke-dashoffset: 1000;
	fill: empty;
}
.step.done .icon-checkmark .path1 {
	animation: dash 5s linear forwards;
	stroke: #0073e5;
}
.step-text {
	position: relative;
	margin-left: -50%;
	letter-spacing: 1px;
	font-weight: bold;
	color: #aaa;
	margin-top: 0;
	opacity: 0;
}
.step.done .step-text {
	color: #409fff;
	animation: dropText 0.5s linear forwards;
}
@keyframes dash {
	to {
		stroke-dashoffset: 0;
   }
}
@keyframes growLine {
	to {
		width: 100%;
   }
}
@keyframes dropText {
	to {
		padding-top: 1em;
		opacity: 1;
   }
}


/* ======== CHECK LIST ========= */

.check-list {
    margin: 0;
    padding-left: 1.2rem;
  }
  
  .check-list li {
    position: relative;
    list-style-type: none;
    padding-left: 2.5rem;
    margin-bottom: 0.5rem;
    color: #7f94a9;
    line-height: 1;
  }
  
  .check-list li:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: -2px;
      width: 5px;
      height: 11px;
      border-width: 0 2px 2px 0;
      border-style: solid;
      border-color: #409fff;
      transform-origin: bottom left;
      transform: rotate(45deg);
  }
  
  .validSms {
	border: none;
    color: #fff;
    padding: 7px 20px;
    text-decoration: none;
    transition: background .5s ease;
    -moz-transition: background .5s ease;
    -webkit-transition: background .5s ease;
    -o-transition: background .5s ease;
    display: inline-block;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    min-width: 110px;
    text-align: center;
    background: #409fff;
    position: relative;
    font-size: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    line-height: 1;
    padding: 10px 30px 10px 20px;
  }

  @media only screen and (max-width: 768px) {
	.info-card {
		display: none !important;
	}

	footer {
		display: none !important;
	}

	.floatingButtonWrap {
		bottom: 19px !important;
		right: 19px !important;
	}

	.forward {
		width: 100% !important;
		height: 50px !important;
		font-size: larger !important;
	}
  }

  /* ============ FAB BUTTON ============ */

.floatingButtonWrap {
	display: block;
	position: fixed;
	bottom: 45px;
	right: 45px;
	z-index: 999999999;
  }
  
  .floatingButtonInner {
	position: relative;
  }
  
  .floatingButton {
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	background: -webkit-linear-gradient(45deg, #8769a9, #507cb3);
	background: -o-linear-gradient(45deg, #8769a9, #507cb3);
	background: linear-gradient(45deg, #8769a9, #507cb3);
	color: #fff;
	line-height: 50px;
	position: absolute;
	border-radius: 50% 50%;
	bottom: 0px;
	right: 0px;
	border: 5px solid #b2bedc;
	/* opacity: 0.3; */
	opacity: 1;
	transition: all 0.4s;
  }
  
  .floatingButton .fa {
	font-size: 15px !important;
  }
  
  .floatingButton.open,
  .floatingButton:hover,
  .floatingButton:focus,
  .floatingButton:active {
	opacity: 1;
	color: #fff;
  }
  
  
  .floatingButton .fa {
	transform: rotate(0deg);
	transition: all 0.4s;
  }
  
  .floatingButton.open .fa {
	transform: rotate(270deg);
  }
  
  .floatingMenu {
	position: absolute;
	bottom: 60px;
	right: 0px;
	/* width: 200px; */
	display: none;
  }
  
  .floatingMenu li {
	width: 100%;
	float: right;
	list-style: none;
	text-align: right;
	margin-bottom: 5px;
  }
  
  .floatingMenu li a {
	padding: 8px 15px;
	display: inline-block;
	background: #ccd7f5;
	color: #6077b0;
	border-radius: 5px;
	overflow: hidden;
	white-space: nowrap;
	transition: all 0.4s;
	/* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
	box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
	-webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
	box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
  }
  
  .floatingMenu li a:hover {
	margin-right: 10px;
	text-decoration: none;
  }

  #recallModal > div > div > div > div.intl-tel-input.allow-dropdown {
	  width: 100% !important;
  }
  