/*Multistep Form*/

html {
    height: 100%;
    background: #ffeadb;
    z-index: -1;
}

#multistepsform {
    width: auto;
    margin: 20px auto;
    text-align: center;
    position: relative;
}

#multistepsform fieldset {
    background: white;
    border: 0 none;
    border-radius: 10px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0%;
    position: relative;
    text-align: left;
}

#multistepsform fieldset:not(:first-of-type) {
    display: none;
}

#multistepsform input,
#multistepsform textarea, #multistepsform select{
    padding: 5px 10px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2c3e50;
    font-size: 13px;
}

select {
    padding: 11px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;
    font-size: 13px;
}

#multistepsform input:focus,
#multistepsform textarea:focus {
    border-color: #ED1B24;
    outline: none;
    color: #637373;
}

#multistepsform .action-button {
    background: var(--primary-color);
    font-weight: bold;
    color: #fff;
    transition: 150ms;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 10px 12px;
    margin: 20px 0 10px 0;
    font-weight: 400;
}
#multistepsform .action-button .left{
    margin-right: 6px;
}
#multistepsform .action-button .right{
    margin-left: 6px;
}

#multistepsform .action-button:hover,
#multistepsform .action-button:focus {
    box-shadow: 0 0 0 2px #f08a5d, 0 0 0 3px #fff976;
    color: #fff;
}

#multistepsform .fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    font-family: var(--body-font);
}

#multistepsform .fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

#multistepsform #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
}

#multistepsform #progressbar li {
    list-style-type: none;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    width: 25%;
    float: left;
    position: relative;
}

#multistepsform #progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 5px auto;
    position: relative;
    z-index: 2;
}

#multistepsform #progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #ED1B24;
    position: absolute;
    left: -50%;
    top: 14px;
    z-index: 1;
}

#multistepsform #progressbar li:first-child:after {
    content: none;
}

#multistepsform #progressbar li.active {
    color: #078305;
}

#multistepsform #progressbar li.active:before,
#multistepsform #progressbar li.active:after {
    background: #078305;
    color: white;
}
.timeUl {
    display: flex;
    width: 100%;
}
.timeUl .timeLi {
    width: 33%;
}