ul {
    padding: 0;
    margin: 0;
    list-style: none
}

.wizard > .steps .current-info, .wizard > .steps .number {
    display: none
}

.prod-wizard {
    /*min-height: 834px;*/
    background: #fff;
    padding: 107px 75px 65px
}

.steps {
    margin-bottom: 30px
}

.steps ul {
    display: flex;
    position: relative
}

.steps ul li {
    width: 8.16%;
    margin-right: 10px
}

.steps ul li a {
    display: inline-block;
    width: 100%;
    height: 7px;
    background: #e6e6e6;
    border-radius: 3.5px
}

.steps ul li.first a, .steps ul li.checked a {
    background: #f3d4b7;
    transition: all .5s ease
}

.steps ul:before {
    top: -38px;
    position: absolute;
    font-family: Asap, sans-serif;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
    color: #222;
    text-transform: none;
    font-weight: 700;
    font-style: normal;
}

.actions ul {
    display: flex;
    margin-top: 30px;
    justify-content: space-between
}

.actions ul.step-last {
    justify-content: flex-end
}

.actions ul.step-last li:first-child {
    display: none
}

.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 51px;
    width: 135px;
    align-items: center;
    background: #f3d4b7;
    cursor: pointer;
    position: relative;
    padding-left: 41px;
    color: #333;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    font-weight: 400
}

.actions li a:before {
    content: '\f2ee';
    position: absolute;
    top: calc(50% - 10px);
    right: 20%;
    font-family: Material-Design-Iconic-Font;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.actions li a:hover {
    background: #d9bda3
}

.actions li a:hover:before {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.actions li[aria-disabled=true] a {
    display: none
}

.actions li:first-child a {
    background: #e6e6e6;
    padding-left: 48px
}

.actions li:first-child a:before {
    content: '\f2ea';
    left: 20%;
}

.actions li:first-child a:hover {
    background: #ccc
}

.actions li:last-child a {
    padding-left: 29px;
    width: 167px;
    font-weight: 400
}

.actions li:last-child a:before {
    right: 30px
}

.choice-item {
    cursor: pointer;
}

.choice-item .card {
    border: 2px solid var(--theme_light);
    width: 18rem;
}

.choice-item.active .card {
    border: 2px solid var(--theme_primary_color);
}

.error_required {
    border-bottom: 1px solid red !important;
}