* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
}

body {
    font-family: 'Alegreya Sans', sans-serif;
    margin: 0;
    color: #202020;
    font-weight: 500;
}

h1 {
    font-size: 32px;
}
h2 {
    font-size: 24px;
}
h3 {
    font-size: 20px;
}
.checkout-wrap {
    width: 1000px;
    margin: 0 auto;
    display: block;
    overflow: hidden;
}
.checkout-wrap form input[placeholder] {
    text-transform: capitalize;
}
.checkout-wrap form input[type=text] {
    padding: 15px;
    margin-bottom: 10px;
    color: #303030;
    font-size: 18px;
    font-family: 'Alegreya Sans', sans-serif;
    width: 420px;
    max-width: 100%;
    font-weight: 500;
}
.checkout-wrap form input[type=submit] {
    margin: 10px 0 60px;
    background: #46ad43;
    color: #fff;
    border: 0;
    padding: 10px 50px;
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 14px;
}
.checkout-wrap h3 {
    text-transform: uppercase;
}
.checkout-header {
    color: #ff7100;
    background-color: #000;
}

.checkout-header.turbo{
    color: #74ff00;
}

.checkout-header h1 {
    background: url('../img/varaosia.png') no-repeat 0% 50%;
    text-indent: 200%;
    line-height: 100px;
    margin: 0;
}
.checkout-header.turbo h1 {
    background: url('../img/turbo.png') no-repeat 0% 50%;
}

.checkout-footer {
    color: #ff7100;
    background-color: #202020;
    padding: 30px 0;
}
.checkout-footer.turbo {
    color: #74ff00;
}
.checkout-footer a {
    color: #ff7100;
    text-decoration: none;
}
.checkout-footer.turbo a {
    color: #74ff00;
}
    
.checkout-footer a:hover {
    text-decoration: underline;
}
.checkout-footer h2 {
    background: url('../img/varaosia.png') no-repeat 0% 50%;
    background-size: 170px;
    text-indent: 200%;
    margin: 0;
}
.checkout-footer.turbo h2{
    background: url('../img/turbo.png') no-repeat 0% 50%;
    background-size: 170px;
}

ol.phases {
    list-style-type: decimal;
    list-style-position: inside;
    overflow: hidden;
    margin: 60px 0 20px;
    line-height: 56px;
    width: 100%;
    padding: 0;
}
ol.phases li {
    float: left;
    margin: 0;
    font-size: 48px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    width: 25%;
    list-style-type: none;
    background: #a1a9ae url('../img/gray_arrow.png') 100% 50% no-repeat;
}
ol.phases li {
    color: #000;
}

ol.phases li:first-child {
    padding-left: 25px;
}

ol.phases li > span {
    font-size: 14px;
    position: absolute;
    top: 3px;
    left: 35px;
    font-weight: 500;
}
ol.phases li:last-child {
    background: #a1a9ae;
}
ol.phases li:first-child > span {
    left: 50px;
}
ol.phases li.done {
    color: #fff;
    background: #ff7100 url('../img/orange_all_arrow.png') 100% 50% no-repeat;
}
ol.phases.turbo li.done {
    color: #000;
    background: #74ff00 url('../img/green_all_arrow.png') 100% 50% no-repeat;
}

ol.phases li.last {
    color: #fff;
    background: #ff7100;
}

ol.phases.turbo li.last {
    color: #000;
    background: #74ff00;
}

ol.phases li.current {
    background: #ff7100 url('../img/orange_arrow.png') 100% 50% no-repeat;
    color: #fff;
}
ol.phases.turbo li.current{
    background: #74ff00 url('../img/green_arrow.png') 100% 50% no-repeat;
    color: #000;
}

table.checkout-payment {
    width: 100%;
    text-align: left;
}
.checkout-payment {
    margin: 20px 0 50px;
}
.checkout-summary {
    border-spacing: 0;
}
.checkout-cart {
    border-spacing: 0px;
    width: 100%;
}
.checkout-cart-title {
    width: 50%;
}
.checkout-cart-header th {
    text-transform: capitalize;
    padding: 15px 25px;
}
.checkout-cart-unit_price, .checkout-cart-count {
    text-align: center;
}
.checkout-cart-sum-title {
    text-align: right;
    padding: 8px;
}
.checkout-cart-row td {
    padding: 15px 25px;

}
.checkout-cart-row-odd {
    background-color: #EEEEEE;
}
.checkout-cart-row-even {
    background-color: #FAFAFA;
}
.checkout-cart .checkout-cart-sum-value, .checkout-cart .checkout-cart-price {
    text-align: right;
    padding-right: 25px;
}
.payment-header-title {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.checkout-payment-container {
    background-color: #f1f1f1;
    width: 500px;
    max-width: 100%;
    margin: 70px auto;
    text-align: center;
    padding: 45px 0;
}
.checkout-paid-header {
    text-transform: uppercase;
    font-style: italic;
    position: relative;
    line-height: 40px;
}
.checkout-paid {
    background: url('../img/green-ok.png') no-repeat 50% 50%;
    position: absolute;
    width: 40px;
    height: 33px;
    top: 2px;
}
.back-to-shop {
    background-color: #ff7100;
    padding: 12px 50px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}
.back-to-shop.turbo {
    background-color: #74ff00;
    color: #000;
}

@media screen and (max-width: 1000px) {
    .checkout-wrap {
        width: 100%;
        padding: 0 10px;
    }
}
@media screen and (max-width: 1000px) {
    ol.phases li > span {
        display: none;
    }
}