/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 16, 2019, 1:12:23 PM
    Author     : gasper
*/


/*html {
  position: fixed;
  height: 100%;
  overflow: hidden;
}*/

body {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.form-steps {
    display: block;
    width: 100%;
    position: relative;
    margin: 40px 0;
    margin-top: -20px;
    zoom: 0.7;
}
.form-steps:after {
    content: "";
    display: table;
    clear: both;
}
.form-steps__item {
    padding: 0;
    position: relative;
    display: block;
    float: left;
    width: 33%;
    text-align: center;
}
.form-steps__item-content {
    display: inline-block;
}
.form-steps__item-icon {
    background: #eceff1;
    color: #8191ab;
    display: block;
    border-radius: 100%;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 auto 10px auto;
    position: relative;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    border: 1px solid #cfd8dc;
}
.form-steps__item-text {
    font-size: 13px;
    color: #8191ab;
    font-weight: 500;
}
.form-steps__item-line {
    display: inline-block;
    height: 3px;
    width: 100%;
    background: #cfd8dc;
    float: left;
    position: absolute;
    left: -50%;
    top: 12px;
    z-index: 1;
}
.form-steps__item--active .form-steps__item-icon {
    background: #3d465a;
    color: #ffffff;
    border: none;
}
.form-steps__item--active .form-steps__item-text {
    color: #4f5e77;
}
.form-steps__item--active .form-steps__item-line {
    background: #3d465a;
}

.form-steps__item--completed .form-steps__item-text {
    color: #4f5e77;
}

.form-steps__item--completed .form-steps__item-icon {
    background: #3d465a;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9IkxheWVyIDEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDkuMTIgNyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTkuMTIgMS4wNkw4LjA2IDAgMy4xOCA0Ljg4IDEuMDYgMi43NiAwIDMuODIgMy4xOCA3bDUuOTQtNS45NHoiLz48L3N2Zz4=);
    color: transparent;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border: none;
}
.form-steps__item--completed .form-steps__item-line {
    background: #3d465a;
}
