#progressbar {
    margin: 0 auto 30px;
    padding: 0;
    display: table;
    overflow: visible;
    counter-reset: step; /*CSS counters to number the steps*/
    width: 100%;
}
#progressbar li {
    list-style-type: none;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: bold;
    text-align: center;
}
.logged-user #progressbar li{
    width: 33%;
}
#progressbar li {
    cursor: pointer;
}
#progressbar li.current_step .edit_project_step_icon {
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 25px;
    height: 35px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
    background: #000;
    border-radius: 20px;
    margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #f0f0f0;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after{
    background: green;
    color: white;
}

.woocommerce-checkout input[readonly]{
    cursor: no-drop;
}

.woocommerce-checkout fieldset {
    background: white;
    border: 1px solid;
    padding: 30px;
    box-sizing: border-box;
    width: 100%;
}
.woocommerce-checkout fieldset:not(:first-of-type) {
    display: none;
}
.back-to-buttons,
.web-sign-form-login-toggle{
    text-align: center;
}
.web-sign-form-lost-toggle{
    display: block;
    text-align: center;
}
.woocommerce .web-sidebar-left-col .web-sidebar-overlay{
    display: none;
}
.web-info-box.web-n-error.locked-fields-notice {
    background: #ad0f0f;
    padding: 10px 20px;
}
.web-info-box.web-n-error.locked-fields-notice small {
    display: block;
}
.web-info-box.web-n-error.locked-fields-notice a {
    color: #c53030;
    text-decoration: underline;
}
.checkout-order-steps {
    padding-top: 40px;
    padding-bottom: 80px;
}
.web-btn.web-btn-16 {
    padding: 60px 20px;
    border-radius: 10px;
    color: #000 !important;
    background-color: #f0f0f0;
    border: 1px solid #bbb;
}
.web-btn.web-btn-16:hover {
    border-radius: 10px;
    border: 1px solid #bbb;
    box-shadow: 0px 0px 7px rgba(3,27,78,.26) inset;
    color: #000 !important;
    transform: scale(0.95);
}
#order_review tr > * {
    background: none;
    padding-right: 0px !important;
    border: none;
    border-bottom: 1px solid #000;
    padding-left: 0px !important;
    font-size: 13px !important;
}
.variation > dt,
.variation > dl{
    display: block;
    clear: both;
    width: 100%;
}