.imhere-wizard-container {
  width: 100%;
  position: relative;
}

/*--main-color from imher-wizard component*/
.imhere-wizard-container a {
  cursor: pointer;
}
.imhere-dotted-container {
  width: 100%;
  text-align: center;
  position: relative;
}
a.imhere-dotted {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 100%;
  margin-left: 3px;
}
a.imhere-dotted.selected{
  background: var(--main-hover-color);
  width: 6px;
  height: 6px;

}
.imhere-step-nav-container{
  width: 100%;
  position: relative;
}
.imhere-step-nav-container:before{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 15px;
  background: var(--main-color);
  z-index: -1;
}
.imhere-step-nav-container.-vertical{
  text-align: left;
  padding:30px 0;
}
.imhere-step-nav-container.-vertical:before{
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 15px;
  top: 0;
  background: var(--main-color);
  z-index: -1;
}
.imhere-step-nav-container .imhere-step-btn{
  display: inline-block;
}
.imhere-step-nav-container.-vertical .imhere-step-btn{
  display: block;
  margin:0 0 10px 0;
}
.imhere-step-nav-container.-vertical .imhere-step-btn__index, .imhere-step-nav-container.-vertical .imhere-step-btn__title{
  display: inline-block;
}
.imhere-step-btn {
  cursor: pointer;
  color: var(--main-color);
  text-decoration: none;
  margin: 0 10px;
}
.imhere-step-btn:hover{
  text-decoration: none;
  color: var(--main-hover-color);
}
.imhere-step-btn.selected .imhere-step-btn__index{
  background: var(--main-hover-color);
  color:#fff;
}
.imhere-step-btn.selected .imhere-step-btn__title{
  color: var(--main-hover-color);
}
.imhere-step-btn__index{
  width:30px;
  height:30px;
  line-height: 25px;
  color: var(--main-color);
  border-radius: 100%;
  border: 2px var(--main-color) solid;
  text-align: center;
  background: #fff;
  text-decoration: none;
}
.imhere-step-btn__title {
  display: none;
}


.imhere-next, .imhere-pre, .imhere-total-step, .imhere-current-step, .imhere-complete, .imhere-reset {
  cursor: pointer;
  color: var(--main-color);
}
a.imhere-next, a.imhere-pre, a.imhere-complete, a.imhere-reset {
  padding: 10px 50px;
  display: inline-block;
  background: var(--main-color);
  border-radius: 5px;
  margin: 20px 10px;
  color: #fff;
  text-decoration: none;
}

.imhere-steps-container {
  position: relative;
}
/* Bounce To Right */
.imhere-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.imhere-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-hover-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.imhere-bounce-to-right:hover, .imhere-bounce-to-right:focus, .imhere-bounce-to-right:active {
  color: white;
}
.imhere-bounce-to-right:hover:before, .imhere-bounce-to-right:focus:before, .imhere-bounce-to-right:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

/* Bounce To Left */
.imhere-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.imhere-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--main-hover-color);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.imhere-bounce-to-left:hover, .imhere-bounce-to-left:focus, .imhere-bounce-to-left:active {
  color: white;
}
.imhere-bounce-to-left:hover:before, .imhere-bounce-to-left:focus:before, .imhere-bounce-to-left:active:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* Shutter In Horizontal */
.imhere-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #2098D1;
  transition-property: color;
  transition-duration: 0.3s;
}
.imhere-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-hover-color);
  transform: scaleX(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.imhere-shutter-in-horizontal:hover, .imhere-shutter-in-horizontal:focus, .imhere-shutter-in-horizontal:active {
  color: white;
}
.imhere-shutter-in-horizontal:hover:before, .imhere-shutter-in-horizontal:focus:before, .imhere-shutter-in-horizontal:active:before {
  transform: scaleX(0);
}

/* Shutter Out Horizontal */
.imhere-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #e1e1e1;
  transition-property: color;
  transition-duration: 0.3s;
}
.imhere-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-hover-color);
  transform: scaleX(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.imhere-shutter-out-horizontal:hover, .imhere-shutter-out-horizontal:focus, .imhere-shutter-out-horizontal:active {
  color: white;
}
.imhere-shutter-out-horizontal:hover:before, .imhere-shutter-out-horizontal:focus:before, .imhere-shutter-out-horizontal:active:before {
  transform: scaleX(1);
}
/* styles in src/style directory are applied to the whole page */
body {
  background: #ffffff;
  color: #7e7e7e;
}

a {
  color: #03A9F4;
}

main {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-top: 50px;
  display: block;
}

footer {
  text-align: center;
  font-size: 0.8em;
}
.title{
  position: relative;
}
.title:after{
  content:'';
  display:block;
  width: 100%;
  height: 1 px;
  position: absolute;
  bottom:4px;
  border-bottom: 1px rgb(207, 199, 199) dashed;
}
.main-content:before{
  content:'<ImHere>';
  display:block;
  padding:30px 10px;
  font-family: 'Squada One', cursive;
  font-weight: bold;
  position: absolute;
  top: 23px;
  background: rgb(214, 201, 177);
  color:#636161;
  font-size: 30px;
}

.pannel-box{
  width:100%;
  margin: 20px auto;
  border: 1px rgb(168, 168, 168) dashed;
  padding:40px 0;
}
.main-description{
  padding:10px 0 50px 0;
}
a.download-btn{
  font-family: 'Handlee', cursive;
  display: inline-block;
  margin: 40px auto 20px auto;
  background: rgb(68, 210, 206);
  color:#fff;
  padding:10px 40px;
  font-size: 2em;
  text-decoration: none;
  cursor: pointer;
}
a.reset-btn{
  margin-top: 30px;
  text-decoration: none;
  cursor: pointer;
}
.footer{
  margin-top: 200px;
  background: #636161;
  width:100%;
  height: 30vh;
}
a.custom{
  color:rgb(46, 165, 232);
  padding: 10px 50px;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  border:1px rgb(46, 165, 232) solid;
}

/*# sourceMappingURL=app.css.map*/