html {
    font-size: 16px;
  
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif !important;
    /*  font-weight: 300;*/
}
.container{
    width:100%;
}

.logo{
    width:100%;
    text-align:center;
}
h4 {
   color: #495057;
   margin-bottom:10px;
}
a {
    color: #2c6f3c;
    font-size:14px;
    text-decoration:none;
}
    a:visited {
        color: #2c6f3c;
    }
.clear {
    clear: both;
}
.wrapper {
    width: 15%;
    margin: 0 auto;
    /* font-family: 'Helvetica';*/
    /* font-size: 14px;*/
}
.errorWrapper {
    padding-top:40px;
    width: 15%;
    margin: 0 auto;
    text-align:center;
}
footer {
    margin-top: 25%;
    text-align: center;
}
input[type=submit] {
  
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 15px;
    font-size:15px;
    /*font: 14px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;*/
    cursor: pointer;
}
.form-control {
    /*height: 20px;*/
      width: 250px;
    padding: 3px 3px;
    font-size: 14px;
    line-height: 1.42857143;
    /* color: #555;*/
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);*/
    /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);*/
    /*   -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
    outline: none !important;
}

    .form-control:focus {
        outline: none !important;

    }
    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        outline: none !important;

    }
/*input[type=submit]:hover {
    background-color: #205830;
    color: white;
}*/
.loginForm{
    text-align:center;
}
.italic {
    font-style: italic;
}

.StepProgress {
    position: relative;
    padding-left: 45px;
    list-style: none;
}

    .StepProgress::before {
        display: inline-block;
        content: '';
        position: absolute;
        top: 0;
        left: 15px;
        width: 10px;
        height: 100%;
    }

.StepProgress-item {
    position: relative;
  /*  counter-increment: list;*/
}

    .StepProgress-item:not(:last-child) {
        padding-bottom: 35px;
        padding-left: 20px;
        padding-top: 10px;
    }

    .StepProgress-item::before {
        display: inline-block;
        content: '';
        position: absolute;
        left: -23px;
        height: 90%;
        width: 10px;
    }

    .StepProgress-item::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        left: -37px;
        width: 24px;
        height: 24px;
        border: 2px solid #CCC;
        border-radius: 50%;
        background-color: #dee2e6;
        background-repeat: no-repeat;
    }

    .StepProgress-item.is-done::after {
        background: url('../images/check.svg');
        color: #FFF;
        text-align: center;
        border: 4px solid #2b8a3e;
        background-color: #37b24d;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .StepProgress-item.is-done::before {
        border-left: 5px solid #dee2e6;
    }

    .StepProgress-item.current {
        padding-left: 20px;
        padding-top: 5px;
      
       
    }

        .StepProgress-item.current::before {
            border-left: 5px dashed #dee2e6;
            z-index: 0;
        }

        .StepProgress-item.current::after {
            /*  content: counter(list);*/

            width: 24px;
            height: 24px;
            top: -4px;
            /* left: -40px;*/
            /*font-size: 15px;*/
            text-align: center;
            border: 4px solid #dee2e6;
            background-color: #dee2e6 !important;
            background: url('../images/clock.svg');
            background-repeat: no-repeat;
            z-index: 99;
        }

.StepProgress strong {
    display: block;
}
/* setup tooltips */
.tooltip {
    position: relative;
    margin-left:10px;
}

    .tooltip:before,
    .tooltip:after {
        display: block;
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }

    .tooltip:after {
        border-right: 6px solid transparent;
        border-bottom: 6px solid rgba(0,0,0,.75);
        border-left: 6px solid transparent;
        content: '';
        height: 0;
        top: 20px;
        left: 4px;
        width: 0;
    }
    .tooltip:before {
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 7px;
        color: #404040;
        content: attr(data-title);
        font-size: 14px;
        padding: 6px 10px;
        top: 26px;
        width: 180px;
        display: inline-block;
        box-shadow: 2px 2px 3px #dee2e6;
        z-index: 999;
    }

/* expand */
.tooltip.expand:before {
    transform: scale3d(.2,.2,1);
    transition: all .2s ease-in-out;
}

.tooltip.expand:after {
    transform: translate3d(0,6px,0);
    transition: all .1s ease-in-out;
}

.tooltip.expand:hover:before,
.tooltip.expand:hover:after {
    opacity: 1;
    transform: scale3d(1,1,1);
}

.tooltip.expand:hover:after {
    transition: all .2s .1s ease-in-out;
}