/**************
/**************
**** Global
**************/
@font-face {
    font-family: 'Daniel';
    src: url('../../Resources/fonts/DanielBlack.eot');
    src: url('../../Resources/fonts/DanielBlack.eot?#iefix') format('embedded-opentype'),
    url('../../Resources/fonts/DanielBlack.woff2') format('woff2'),
    url('../../Resources/fonts/DanielBlack.woff') format('woff'),
    url('../../Resources/fonts/DanielBlack.ttf') format('truetype'),
    url('../../Resources/fonts/DanielBlack.svg#DanielBlack') format('svg');
    font-weight: 900;
    font-style: normal;
}

.iti-flag {background-image: url("../images/flags.png");}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
    .iti-flag {background-image: url("../images/flags@2x.png");}
}

.vo-checkout--tooltip {
    position: relative;
}

.vo-checkout--tooltip:hover .vo-checkout--tooltip__text {
    visibility: visible;
    opacity: 1;
}

.vo-checkout--tooltip__text {
    position: absolute;
    bottom: 125%;
    left: 50%;
    margin-left: -120px;
    visibility: hidden;
    width: 240px;
    background-color: #e05163;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 3px;
    z-index: 1;
    opacity: 0;
    transition: opacity .3s;
}

.vo-checkout--tooltip__text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #e05163 transparent transparent transparent;
}

.vo-checkout--meta-data {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
}

.vo-checkout--meta-data__label {
    font-weight: bold;
}

.vo-checkout--shipping-options {
    padding: 15px 0 !important;
}

.vo-checkout-loading {
    position: relative;
}
.vo-checkout-loading::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
}

/**************
**** Hover block
**************/
.vo-checkout--hover-block {
    width: 320px;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: -320px;
    background: white;
    z-index: 100;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0);
    -moz-box-shadow: -5px 0 5px rgba(0, 0, 0, 0);
    -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0);
    -webkit-transition: right 500ms ease-in-out, -webkit-box-shadow 500ms ease-in-out;
    -moz-transition: right 500ms ease-in-out, -moz-box-shadow 500ms ease-in-out;
    -ms-transition: right 500ms ease-in-out, box-shadow 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out, box-shadow 500ms ease-in-out;
    transition: right 500ms ease-in-out, box-shadow 500ms ease-in-out;
}

.vo-checkout--cart.vo-checkout--cart--show {
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
    right: 0;
    z-index: 101;
}

.vo-checkout--hover-block--content {
    padding-top: 65px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Hover block header */
.vo-checkout--hover-block--header {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*position: absolute; */
    top: 0;
    left: 0;
    /*height: 65px;*/
    padding: 20px;
    background: white;
    border-bottom: #ccc solid 1px;
}

.vo-checkout--hover-block--header h2 {
    padding: 0;
    margin: 0;
    border: 0;
    text-decoration: none;
}

.vo-checkout--hover-block--close {
    float: right;
    cursor: pointer;
}

/* Hover block inner content */
.vo-checkout--hover-block--inner-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    overflow-y: scroll;
}

/* Hover block footer */
.vo-checkout--hover-block--footer {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    padding: 20px;
    background: white;
    border-top: #ccc solid 1px;
}

.vo-checkout--hover-block--button, a.vo-checkout--hover-block--button {
    width: 100%;
    float: left;
    background: #7DB461;
    color: white;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
}

.vo-checkout--hover-block--button:hover {
    background: #659B4F;
}

.vo-checkout--hover-block--button.disabled {
    background: #ccc;
    cursor: default;
}

/**************
**** Mini Cart
**************/
.vo-checkout--mini-cart {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9;
    color: white;
    background: #cc081c;
    padding: 10px;
    cursor: pointer;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: right 500ms ease-in-out;
    -moz-transition: right 500ms ease-in-out;
    -ms-transition: right 500ms ease-in-out;
    -o-transition: right 500ms ease-in-out;
    transition: right 500ms ease-in-out;
}

.vo-checkout--mini-cart:after {
    clear: both;
    font-family: 'FontAwesome', sans-serif;
    content: "\f07a";
    font-size: 20px;
}

.vo-checkout--mini-cart.vo-checkout--cart--show {
    right: 320px;
}

.vo-checkout--mini-cart.vo-checkout--cart--hide {
    right: -100px !important;
}

/**************
**** Cart
**************/
.vo-checkout--cart {
    z-index: 100;
}

.admin-bar .vo-checkout--cart {
    padding-top: 32px;
}

.vo-checkout--cart.vo-checkout--cart--show {
    right: 0;
}

.vo-checkout--cart.vo-checkout--cart--disable:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
    opacity: .75;
    z-index: 1;
    content: '';
}

.vo-checkout--button {
    display: block;
    width: 100%;
    background: #7db461;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin: 15px 0;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 0;
    font-size: 16px;
    -webkit-appearance: inherit;
}
.vo-checkout-success--button {
    display: inline-block;
    padding: 10px 15px;
    width: auto;
    background: #7db461;
    border-radius: 3px;
    color: #FFFFFF !important;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.vo-checkout--button:hover {
    background: #666;
}

.vo-checkout--button.disabled {
    background: #ccc;
    cursor: default;
}

/* Cart items */
.vo-checkout--cart--cart-items {
    width: 100%;
}

.vo-checkout--cart--cart-item {
    float: left;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: #ccc dotted 1px;
}

.vo-checkout--cart--cart-item-name,
.vo-checkout--cart--cart-item-meta-data {
    width: 100%;
    float: left;
}

.vo-checkout--cart--cart-item-name {
    width: 60%;
}

.vo-checkout--cart--cart-item-unit-price{
    width: 40%;
    float: left;
    text-align: right;
    font-weight: normal;
    font-size: 12px;
}

.vo-checkout--cart--cart-item-meta-data {
    margin-bottom: 10px;
    font-size: 0.75rem;
    line-height: normal;
}

.vo-checkout--cart--cart-item-quantity {
    width: 60%;
    float: left;
}

.vo-checkout--cart--cart-item-quantity-input {
    float: left;
    border: #ccc solid 1px;
    padding: 0 5px;
    width: 30px;
    text-align: center;
}

.vo-checkout--cart--cart-item-quantity-less {
    float: left;
    border: #ccc solid 1px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 0 10px;
    cursor: pointer;
}

.vo-checkout--cart--cart-item-quantity-more {
    float: left;
    border: #ccc solid 1px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 0 10px;
    cursor: pointer;
}

.vo-checkout--cart--cart-item-quantity-less:hover, .vo-checkout--cart--cart-item-quantity-more:hover {
    background: #ccc;
    color: white;
}

.vo-checkout--cart--cart-item-quantity--locked .vo-checkout--cart--cart-item-quantity-less,
.vo-checkout--cart--cart-item-quantity--locked .vo-checkout--cart--cart-item-quantity-more {
    display: none;
}

.vo-checkout--cart--cart-item-remove {
    float: left;
    border: #ccc solid 1px;
    border-radius: 3px;
    padding: 0 10px;
    cursor: pointer;
    margin-left: 5px;
}
.vo-checkout--cart--cart-item-remove:before {
    font-family: 'FontAwesome';
    content: '\f1f8';
    font-size: 15px;
}

.vo-checkout--cart--cart-item-price {
    width: 40%;
    float: left;
    font-weight: bold;
    text-align: right;
}

.vo-checkout--cart--cart-items .vo-bi--availability--description .fa-question-circle {
    display:none;
}

/* Cart footer */
.vo-checkout--cart--total, .vo-checkout--cart--discount, .vo-checkout--cart--total-amount {
    width: 50%;
    float: left;
    margin-bottom: 20px;
    font-weight: bold;
}

.vo-checkout--cart--total-amount, .vo-checkout--cart--discount {
    text-align: right;
}

/**************
**** Shipping
**************/
label.vo-checkout--shipping-method {
    padding-right: 10px;
}

/**************
**** Checkout
**************/
.vo-checkout--checkout-page .vo-checkout--mini-cart {
    display: none !important;
}

.vo-checkout--checkout-page .vo-checkout--cart {
    display: none !important;
}

.vo-checkout--checkout-container {
    position: relative;
}

.vo-checkout--checkout-wrapper,
.vo-checkout--checkout-sidebar {
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.vo-checkout--checkout-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 885px;
}

.vo-checkout--checkout-steps {
    float: left;
    width: 100%;
    min-width: 320px;
    max-width: 600px;
}

.vo-checkout--checkout-steps.vo-no-sidebar {
    float: none;
    margin: 0 auto;
}

.vo-checkout--checkout-countdown {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden
}

.vo-checkout--checkout-countdown__text {
    padding: 20px;
    float: left;
    width: calc(100% - 130px);
}

.vo-checkout--checkout-countdown__counter {
    padding: 20px;
    float: right;
    font-weight: bold;
    font-size: 20px;
}

.vo-checkout--checkout-sidebar {
    float: right;
    padding: 12px;
    background: #c94858;
    border-radius: 5px;
    overflow: hidden;
    color: #f2bac1;
}

.vo-checkout--checkout-sidebar__image {
    display: block;
    margin: 10px auto 0;
}

.vo-checkout--checkout-sidebar a {
    color: #f2bac1;
}
.vo-checkout--checkout-wrapper a {
    text-decoration:underline;
}
.vo-checkout--checkout-sidebar__eric-text {
    font-family: 'Daniel', serif;
    font-size: 24px;
    line-height: 1.4;
    margin-top: 30px;
    text-align: center;
    transform: rotate(-9deg);
    -ms-transform: rotate(-9deg);
    -webkit-transform: rotate(-9deg);
}

.vo-checkout--checkout-sidebar__eric-text span {
    display: inline-block;
    text-align: left;
}

.vo-checkout--checkout-sidebar__title {
    position: relative;
    margin: -12px -12px 12px;
    padding: 12px;
    background: #e05163;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #f9e3e5;
}

.vo-checkout--checkout-sidebar__email {
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
}

.vo-checkout--checkout-list {
    margin: -10px 0;
    padding: 0;
    list-style: none;
}

.vo-checkout--checkout-list li {
    position: relative;
    padding: 10px 0 10px 46px;
}

.vo-checkout--checkout-list li:before {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: #7fb65c url('../../Resources/images/icon_checked.png') no-repeat center center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    line-height: 46px;
    text-align: center;
    content: '';
}

.vo-checkout--checkout--header {
    padding: 20px;
    background: white;
    border-bottom: #ccc solid 1px;
}

.vo-checkout--checkout--header h2 {
    padding: 0;
    margin: 0;
    border: 0;
    text-decoration: none;
}
.vo-checkout--checkout--header .vo-checkout--back-button {
    float: right;
    color: #666;
    font-size: 16px;
}

.vo-checkout--checkout--header .secure-icon,
.vo-checkout__secure-details .secure-icon {
    color: darkgoldenrod;
}
.vo-checkout__secure-details .secure-icon {
    font-size: 15px;
}

.vo-checkout--checkout--form {
    background: white;
    padding: 20px;
}

.vo-checkout--checkout--form form {
    padding-bottom: 30px;
}

.vo-checkout--payment-method {
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 3px;
    overflow: hidden;
}
.vo-checkout--payment-method label {
    cursor: inherit;
}
.vo-checkout--payment-method a {
    color: #a0a0a0;
    cursor: pointer;
    display: block;
    padding: 5px;
    text-decoration: none;
}
.vo-checkout--payment-method__icon {
    display: inline-block;
    vertical-align: middle;
    width: 80px;
}
.vo-checkout--payment-method a img {
    height: 3rem;
    margin-right: 1rem;
    vertical-align: middle;
    width: auto;
}
.vo-checkout--payment-method a img.vo-checkout--payment-method--secondary-image {
    padding-left: 20px;
    padding-right: 0;
    max-width: 200px;
}
.vo-checkout--payment-method--secondary-image {
    float: right;
    margin: 3px;
}

.vo-checkout--payment-costs {
    float: right;
    font-weight: bold;
    padding: 10px;
}
.vo-checkout--payment-costs.no-costs {
    color: #7db461;
}

.vo-checkout--order-cancelled {
    margin-bottom: 20px;
    padding: 10px;
    background: #fcedec;
    font-weight: bold;
    color: #eb5648;
}

.vo-checkout--order-cancelled p {
    margin: 0;
}

.vo-checkout--order-cancelled a {
    color: inherit;
}

.vo-checkout--order-overview {
    width: 100%;
    border-spacing: 0;
}
.vo-checkout--order-overview tr td {
    padding: 5px 0;
}
.vo-checkout--order-overview tr.vo-checkout--order-overview--shipping td:first-child,
.vo-checkout--order-overview tr.vo-checkout--order-overview--service-fee td:first-child,
.vo-checkout--order-overview tr.vo-checkout--order-overview--total td:first-child,
.vo-checkout--order-overview tr.vo-checkout--order-overview--extra-cost td:first-child {
    color: #a0a0a0;
    font-weight: normal;
}
.vo-checkout--order-overview tr.vo-checkout--order-overview--shipping td,
.vo-checkout--order-overview tr.vo-checkout--order-overview--service-fee td,
.vo-checkout--order-overview tr.vo-checkout--order-overview--total td,
.vo-checkout--order-overview tr.vo-checkout--order-overview--extra-cost td {
    padding-bottom: 0;
}
.vo-checkout--order-overview tr.vo-checkout--order-overview--service-fee td:last-child {
    color: #f28d4f;
}
.vo-checkout--order-overview tr td:last-child {
    text-align: right;
}
.vo-checkout--order-overview td.vo-checkout--order-overview--product {
    padding-right: 5px;
}
.vo-checkout--order-overview tr.vo-checkout--order-overview--product-child td.vo-checkout--order-overview--product:before {
    font-family: 'FontAwesome', sans-serif;
    content: "\f067";
    padding-right: 5px;
    color: #7db461;
}
.vo-checkout--order-overview tr.vo-checkout--order-overview--product-child td {
    padding-top: 0;
}
.vo-checkout--order-overview td.vo-checkout--order-overview--quantity {
    min-width: 30px;
}
.vo-checkout--order-overview td.vo-checkout--order-overview--price {
    min-width: 50px;
    white-space: nowrap;
}
.vo-checkout--order-overview--shipping td {
    border-top: #ccc solid 1px;
}
.vo-checkout--order-overview--title {
    margin-top: 0px;
}

/**************
**** Forms
**************/
.vo-checkout--billing-form-intro {
    padding: 10px;
    background: #ebe7e7;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: 300;
}
.vo-checkout--form-message {
    padding: 10px;
    background: #e05163;
    color: white;
    font-weight: 600;
}

.vo-checkout--form-message.success {
    background-color: #7db461;
    border-color: #7db461;
}

.vo-checkout--form-input, #vo-checkout--shipping-methods {
    padding-bottom: 10px;
    position: relative;
}
.vo-checkout--form-input.input-left,
.vo-checkout--form-input.input-right {
    box-sizing: border-box;
    display: inline-block;
    width: 50%;
}
.vo-checkout--form-input.input-left {
    padding-right: 10px;
}
.vo-checkout--form-input.input-right {
    padding-left: 10px;
}
.vo-checkout--form-input--has-information {
    padding-right: 30px;
}

.vo-checkout--form-input:last-child {
    padding-bottom: 0;
}

.vo-checkout--form-input > label {
    color: #a0a0a0;
    padding-bottom: 3px;
}

.vo-checkout--form-input p:last-child {
    margin: 0.5em 0 0;
}

.vo-checkout--form-hidden {
    padding-bottom: 0;
}

.vo-checkout--form-input input:not([type=radio]):not([type=checkbox]), .vo-checkout--form-input select {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    display: block;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: #ccc solid 1px;
}

.vo-checkout--form-input.error input, .vo-checkout--form-input.error select {
    background-image: url('../../Resources/images/icon_form-error.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    border-color: #e05163 !important;
}

.vo-checkout--form-input.vo-checkout--form-checkbox.error label {
    color: #e05163 !important;
}

.vo-checkout--form-input.vo-checkout--form-checkbox.error label a {
    color: inherit;
}

.vo-checkout--form-input .intl-tel-input {
    display: block;
}

a.question-mark {
    border: 1px solid #000;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    text-align: center;
    height: 20px;
    width: 20px;
    color: inherit;
    text-decoration: none;
}
.vo-checkout--form-input--has-information:not(.vo-checkout--form-checkbox) a.question-mark {
    position: absolute;
    top: 28px;
    right: 0;
}

.vo-checkout--form-checkbox.vo-checkout--form-is_gift a {
    border-color: #f28949;
    color: #f28949;
}

.vo-checkout--form-checkbox input[type="checkbox"] + label {
    padding-left: 5px;
}

.vo-checkout--upselling-quantity {
    display: none;
    float: right;
}

.vo-checkout--upselling-quantity .quantity {
    display: inline-block;
    vertical-align: top;
    width: auto;
}

.vo-checkout--upselling-quantity .add {
    margin-left: 5px;
    padding: 1px 5px;
    font-size: 12px;
}

.vo-checkout--upselling-quantity .add.vo-checkout--loading i {
    font-size: 15px;
}

.vo-checkout--form-gift-data {
    display: none;
}

.vo-checkout--form-input label[for="vo-checkout--is_gift"] {
    color: #f28d4f;
}

.vo-checkout-required {
    color: #f28d4f;
}

#vo-checkout--phone_input {
    padding-left: 50px;
}

/**************
**** Data table
**************/

.vo-checkout--data-table-ordered {
    width: 100%;
}

.vo-checkout--data-table tr td, .vo-checkout--data-table tr th {
    padding-right: 10px;
    text-align: left;
}

.vo-checkout--data-table--order th {
    text-align: left;
}

/**************
**** Success
**************/
.vo-checkout--success--order-item:not(:last-child) {
    padding-bottom: 10px;
}

.vo-checkout--success--order-item .vo-checkout--meta-data {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: inherit;
    line-height: normal;
}

.vo-checkout--success--order-item .vo-checkout--meta-data__label {
    font-weight: normal;
}

.vo-checkout--success--data-block span {
    float: right;
    width: 100px;
    font-weight: bold;
}

.vo-checkout--success--light-label {
    color: #a0a0a0;
    font-weight: normal;
}

.vo-checkout--success--highlighted-label {
    color: #f28b4c;
}

.vo-checkout--success--order-item-child > strong:before {
    font-family: 'FontAwesome', sans-serif;
    content: "\f067";
    padding-right: 5px;
    color: #7db461;
}

/**************
**** Messages
**************/
.vo-checkout--message {
    font-weight: bold;
}

/**************
**** Icons
**************/
.vo-checkout--icon {
    background-repeat: no-repeat;
}
.vo-checkout--icon__calendar {
    background-image: url(../../Resources/images/icon_calendar.png);
}
.vo-checkout--icon__credit-card {
    background-image: url(../../Resources/images/icon_credit_card.png);
}
.vo-checkout--icon__email {
    background-image: url(../../Resources/images/icon_email.png);
}
.vo-checkout--icon__voucher {
    background-image: url(../../Resources/images/icon_voucher.png);
}
.vo-checkout--icon__product {
    background-image: url(../../Resources/images/icon_product.png);
}
.vo-checkout--icon__house {
    background-image: url(../../Resources/images/icon_house.png);
}

/**************
**** Success page
**************/
.success-order-overview {
    background: #ebe7e7;
    margin-bottom: 40px;
    padding: 10px;
}
.success-order-overview h2 {
    border-bottom: 0;
    color: #a0a0a0;
    font-size: 18px;
}
.success-order-overview > h2:first-child {
    margin-top: 0;
}
.vo-checkout--checkout-success .loader {
    text-align: center;
}

/**************
**** Progress bar
**************/
.vo-checkout--progress-bar {
    padding: 50px 0 25px;
    width: 100%;
    max-width: 885px;
    margin: 0 auto;
}
.vo-checkout--progress {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    height: 162px;
    background-color: white;
    background-position: center 35px;
    float: left;
    position: relative;
}
.vo-checkout--progress:after {
    position: absolute;
    right: 0;
    top: 36px;
    height: 90px;
    width: 2px;
    background-color: #ebe7e7;
    content: "";
}
.vo-checkout--progress:last-child:after {
    display: none;
}
.vo-checkout--progress a {
    text-decoration: inherit;
    color: inherit;
}
.vo-checkout--progress .vo-checkout--progress__bar {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #58595b;
}
.vo-checkout--progress:first-child .vo-checkout--progress__bar {
    left: 50%;
    width: 50%;
}
.vo-checkout--progress:last-child .vo-checkout--progress__bar {
    width: 50%;
}
.vo-checkout--progress.checked .vo-checkout--progress__bar {
    background-color: #7fb65c;
}
.vo-checkout--progress.error .vo-checkout--progress__bar {
    background-color: #cc081c;
}
.vo-checkout--progress .vo-checkout--progress__dot {
    background-color: #58595b;
    width: 46px;
    height: 46px;
    border-radius: 23px;
    position: absolute;
    top: -23px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    color: #fff;
    font-size: 22px;
    overflow: hidden;
}
.vo-checkout--progress.checked .vo-checkout--progress__dot {
    background: #7fb65c url(../../Resources/images/icon_checked.png) no-repeat center center;
    text-indent: -60px;
}
.vo-checkout--progress.error .vo-checkout--progress__dot {
    background: #cc081c url(../../Resources/images/icon_error.png) no-repeat center center;
    text-indent: -60px;
}
.vo-checkout--progress.current .vo-checkout--progress__dot {
    color: #969798;
}
.vo-checkout--progress .vo-checkout--progress__text {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
    top: 100px;
    right: 0;
    left: 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.vo-checkout--progress--current-step, .vo-checkout--progress--current-step-shipping {
    display: none;
}
.vo-checkout--progress--arrow-parent {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}
.vo-checkout--progress--arrow-child {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

.vo-checkout--checkout-success-wrapper {
    font-size: 16px;
}

.vo-checkout--checkout-success-wrapper .vo-checkout--progress-bar {
    padding-top: 20px;
}
.vo-checkout--checkout-success-wrapper .vo-checkout--progress .vo-checkout--progress__text {
    bottom: -20px;
}

.vo-checkout--paypal-details {
    margin-top: 10px;
    margin-left: 60px;
}

#vo-checkout--additional-information,
#vo-checkout--newsletter--additional-information {
    padding: 10px;
    width: 100%;
    max-width: 600px;
}

#vo-checkout--additional-information ol {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-position: inside;
}

#vo-checkout--additional-information li {
    margin-top: 30px;
}
#vo-checkout--additional-information li:first-child {
    margin-top: 0;
}

.vo-checkout--progress-bar--shipping {
    max-width: 885px;
}
.vo-checkout--progress-bar--shipping .vo-checkout--progress {
    width: 33.33333%;
}

.vo-checkout--progress-bar--mobile {
    display: none;
}

@media only screen and (max-width: 959px) {
    .vo-checkout--checkout-steps {
        margin-bottom: 15px;
        max-width: 100%;
    }
    .vo-checkout--checkout-sidebar {
        display: none;
    }
    .vo-checkout__newsletter, .vo-checkout__terms, .vo-checkout__secure-details {
        font-size: 16px;
        margin: 15px 0;
        text-align: center;
    }
    .vo-checkout__newsletter a, .vo-checkout__terms a, .vo-checkout__secure-details a {
        color: #f28b4c;
        text-decoration: none;
    }
    .vo-checkout--progress-bar--mobile {
        display: block;
    }
    .vo-checkout--progress-bar--desktop {
        display: none;
    }
    .vo-checkout--progress-bar {
        box-sizing: border-box;
        padding: 0 20px;
        background: #ebe7e7;
        min-height:90px;
    }
    .vo-checkout--progress {
        height: 70px;
        background-color: transparent;
        background-image: none;
    }
    .vo-checkout--progress:after {
        display: none;
    }
    .vo-checkout--progress .vo-checkout--progress__bar {
        display: none;
    }
    .vo-checkout--progress .vo-checkout--progress__dot {
        display: none;
    }
    .vo-checkout--progress .vo-checkout--progress__text {
        display: none;
    }
    .vo-checkout--progress--current-step, .vo-checkout--progress--current-step-shipping {
        display: block;
        background: white;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 20px;
    }
    .vo-checkout--progress--current-step__text {
        position: relative;
    }
    .vo-checkout--progress--current-step__text p {
        margin: 0;
        padding: 5px 10px;
        border-top: #ccc solid 1px;
        border-bottom: #ccc solid 1px;
        font-size: 16px;
        font-weight: bold;
    }
    .vo-checkout--progress--current-step__text a {
        text-decoration: inherit;
        color: inherit;
    }
    .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        position: absolute;
        left: 11%;
        top: -6px;
    }
    .vo-checkout--progress--current-step.current-step-1 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 14.5%;
    }
    .vo-checkout--progress--current-step.current-step-2 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 48.5%;
    }
    .vo-checkout--progress--current-step.current-step-3 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 81.5%;
    }
    .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow-parent {
        position: relative;
    }
    .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow-child {
        position: absolute;
        bottom: -7px;
        left: -5px;
    }
    .vo-checkout--checkout-success-wrapper .vo-checkout--progress-bar {
        margin-bottom: 25px;
        padding-top: 0;
    }
    .vo-checkout--checkout-success-wrapper .vo-checkout--progress--current-step {
        padding-bottom: 20px;
    }

    /* Checkout - Progress bar */
    .vo-checkout--icon {
        color: #a0a0a0;
        line-height: 70px;
        text-align: center;
    }
    .vo-checkout--icon {
        font-weight: 100;
    }
    .vo-checkout--progress__text-mobile {
        position: relative;
    }
    .vo-checkout--icon.current .vo-checkout--progress__text-mobile:after {
        background: #7bb55c;
        border-radius: 50%;
        content: '';
        display: block;
        position: absolute;
        bottom: -5px;
        left: 48%;
        height: 10px;
        width: 10px;
    }
    .vo-checkout--progress__text-mobile--warning {
        color: #f28b4c;
    }
    .vo-checkout--icon.current .vo-checkout--progress__text-mobile--warning:after {
        background: #f28b4c;
    }
    .vo-checkout--progress__text-mobile--error {
        color: #e05163;
    }
    .vo-checkout--icon.current .vo-checkout--progress__text-mobile--error:after {
        background: #e05163;
    }
    .vo-checkout--icon.checked {
        font-weight: 400;
    }
    .vo-checkout--icon.current {
        color: #7bb55c;
        font-weight: 400;
    }

    /* Checkout - Header */
    .vo-checkout--checkout-wrapper .vo-checkout--checkout--header {
        border-bottom: 0;
        padding: 17px 20px 0 20px;
    }
    .vo-checkout--checkout--header h2 {
        font-size: 17px;
    }

    /* Checkout - Overview */
    .vo-checkout--order-overview-wrap {
        background: #ebe7e7;
        padding: 10px;
    }
    .vo-checkout--order-overview--title {
        border-bottom: 0;
        color: #a0a0a0;
        font-size: 18px;
        margin: 0;
    }
    .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        position: absolute;
        left: 14.5%;
        top: -6px;
    }
    .vo-checkout--progress--current-step-shipping.current-step-1 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 14.5%;
    }
    .vo-checkout--progress--current-step-shipping.current-step-2 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 48.5%;
    }
    .vo-checkout--progress--current-step-shipping.current-step-3 .vo-checkout--progress--current-step__text .vo-checkout--progress--arrow {
        left: 81.5%;
    }
    .vo-checkout--payment-method a img.vo-checkout--payment-method--secondary-image {
        max-width: 100px;
    }
    label.vo-checkout--shipping-method {
        display: block;
        position: relative;
        padding: 2px 0 2px 25px;
    }
    label.vo-checkout--shipping-method input {
        position: absolute;
        top: 4px;
        left: 0;
    }
}

@media only screen and (min-width: 960px) {
    .vo-checkout--progress__text-mobile {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .admin-bar .vo-checkout--cart {
        padding-top: 46px;
    }

    .vo-checkout--message {
        display: none;
    }

    /* Checkout - Success */
    .vo-sticky-download-button {
        display: block;
        background: #fff;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        position: fixed;
        text-align: center;
        z-index: 99;
    }

    .vo-sticky-download-button a.vo-bi--button,
    .vo-sticky-download-button a.vo-checkout-products--button,
    .vo-sticky-download-button a.vo-checkout-success--button {
        width: 100%;
    }

    .vo-sticky-message {
        display: inline-block;
        width: 100%;
        background: #f28b4c;
        border-radius: 3px;
        color: white;
        padding: 10px 15px;
        text-decoration: none;
        text-align: center;
        box-sizing: border-box;
    }

    .vo-sticky-message--warning {
        background: #f28b4c;
    }

    .vo-sticky-message--error {
        background: #e05163;
    }

    .page-template-vo-checkout-success-template footer,
    .page-template-vo-checkout-success-template #backbtn,
    .page-template-vo-checkout-success-template #dynamic-to-top {
        display: none !important;
    }
}

@media only screen and (max-width: 640px) {
    /* Remove page wrapper */
    .page-template-vo-checkout-success-template #content_bg {
        border: 0;
        padding: 0;
    }
    .page-template-vo-checkout-success-template #wrapper {
        padding: 66px 0 15px 0;
    }
    .page-template-vo-checkout-success-template #widget_area_main_wrap {
        width: 100%;
    }
    .page-template-vo-checkout-success-template .success-order-wrap {
        margin: 0 10px;
    }
    .page-template-vo-checkout-success-template #header {
        display: none;
    }
    .page-template-vo-checkout-success-template .widget-area.right_column {
        display: none;
    }
    .page-template-vo-checkout-success-template .back-button {
        margin-right: 10px;
    }
    .vo-checkout--total-table {
        width: 100%;
    }
    .vo-checkout--total-table th {
        text-align: start;
        color: #a0a0a0;
    }
    .vo-checkout--total-table td {
        text-align: right;
    }
    .vo-checkout--data-table th {
        display: none;
    }
    .vo-checkout--data-table--order th {
        font-weight: initial;
        text-align: left;
    }
    .vo-checkout--data-table tr.address {
        display: none;
    }
    .vo-checkout--data-table tr.email td {
        padding-top: 10px;
    }
}

@media only screen and (min-width: 768px) {
    .vo-sticky-message {
        font-weight: bold;
    }
    .vo-sticky-download-button + .vo-sticky-download-button {
        margin-top: 10px;
    }
}

@media only screen and (min-width: 961px) {
    .vo-checkout--checkout-container {
        margin: 0 auto 100px;
        width: 100%;
        max-width: 885px;
    }
    .vo-checkout--checkout-wrapper,
    .vo-checkout--checkout-sidebar {
        float: left;
    }
    .vo-checkout--checkout-sidebar {
        margin-left: 10px;
        width: 100%;
        max-width: 275px;
    }
}
