/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body {
    --spa-primary-color: #ef7622;
    --spa-primary-text-color: #fff;
    --spa-secondary-color: #a41f35;
    --spa-secondary-text-color: #fff;
}

.spa-cart {
    background-color: #e3e4e8;
    color: #5e5e5e;
    font-size: 14px;
    padding: 20px 0 50px;
}

::-webkit-input-placeholder {
    color: #5e5e5e;
}

::-moz-placeholder {
    color: #5e5e5e;
}

:-ms-input-placeholder {
    color: #5e5e5e;
}

:-moz-placeholder {
    color: #5e5e5e;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #5e5e5e !important;
}

.spa-cart textarea,
.spa-cart select,
.spa-cart input[type=text],
.spa-cart input[type=password],
.spa-cart input[type=date],
.spa-cart input[type=number],
.spa-cart input[type=email],
.spa-cart input[type=tel] {
    width: 100%;
    height: 43px;
    background: #fff;
    display: block;
    border: #ccc 1px solid;
    border-radius: 5px;
    box-shadow: none;
    padding: 0 10px;
    font-size: 14px;
    color: #5e5e5e;
    margin: 0;
}

.spa-cart textarea {
    height: 120px;
    padding: 10px;
}

.spa-cart-container {
    max-width: 930px;
    margin: 0 auto;
}

.spa-logo {
    max-width: 140px;
    margin: 0 auto 20px;
}

.spa-cart-steps {
    background-color: white;
    border-radius: 0.75em;
    display: flex;
    padding: 1.5em;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 1.5em 2.25em 3em 2.25em;
    margin-bottom: 25px;
}

.spa-cart-steps__step {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.spa-cart-steps__connector,
.spa-cart-steps__step {
    position: relative;
}

.spa-cart-steps__step-number {
    background-color: #c7cad1;
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    margin-inline-end: 0.5em;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: 0.3s;
    margin-inline-end: 0;
}

.spa-cart-steps__step-name {
    color: #c7cad1;
    font-size: 18px;
    line-height: 2;
    transition: 0.3s;
    position: absolute;
    top: 100%;
    left: 50%;
    text-align: center;
    width: 7em;
    transform: translateX(-50%);
}

.spa-cart-steps__connector {
    background-color: #c7cad1;
    margin-inline-start: 0.75em;
    transform: translateX(-50%);
    transition: 0.3s;
    margin-inline-start: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.spa-cart-steps__connector:before {
    background-color: var(--spa-secondary-color);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1, 0);
    transform-origin: 50% 0;
}

.spa-cart-steps__step--done+.spa-cart-steps__connector:before {
    transform: scale(1, 1);
}

.spa-cart-steps__step--current .spa-cart-steps__step-number,
.spa-cart-steps__step--done .spa-cart-steps__step-number {
    background-color: var(--spa-secondary-color);
}

.spa-cart-steps__step--current .spa-cart-steps__step-name,
.spa-cart-steps__step--done .spa-cart-steps__step-name {
    color: var(--spa-secondary-color);
}

.spa-products {
    margin-bottom: 15px;
}

.spa-product-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    margin: 0 -11px;
}

.spa-product-col {
    width: 33.3333%;
    padding: 0 11px;
    margin-bottom: 22px;
}

.spa-product-box {
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.spa-product-img {
    display: none;
    transition: 0.3s;
}

.spa-product-img.active {
    display: block;
}

.spa-product-image-dots {
    background-color: #fff;
    padding: 1px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.spa-product-img-dot {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #999;
    margin: 0 2px;
    cursor: pointer;
}

.spa-product-img-dot.active {
    background-color: var(--spa-primary-color);
}

.spa-product-box:hover .spa-product-image-dots {
    opacity: 1;
    visibility: visible;
}

.spa-product-info {
    padding: 20px 15px;
    border-top: #e3e4e8 1px solid;
}

.spa-product-name {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #212121;
    text-transform: none;
    margin: 0 0 15px;
}

.spa-product-meta-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -5px 0;
}

.spa-product-meta-col {
    width: 50%;
    padding: 0 5px 10px;
}

.spa-product-meta-row.no-size-attr .spa-product-meta-col {
    width: 100%;
}

.spa-product-meta-col select,
.spa-product-meta-col input[type=number],
.spa-cart-my-cart table select,
.spa-cart-my-cart table input[type=number] {
    height: 36px;
}

.product-price {
    font-size: 18px;
    line-height: 18px;
    color: var(--spa-primary-color);
    margin-top: 5px;
}

.add-to-cart-btn {
    margin-top: 15px;
}

.add-to-cart-btn button {
    display: inline-block;
    background: var(--spa-primary-color);
    color: var(--spa-primary-text-color);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    padding: 12px 25px;
}

.spa-product-box:hover .add-to-cart-btn {
    opacity: 1;
    visibility: visible;
}

.spa-cart-my-cart {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
}

.spa-cart-my-cart h5 {
    font-size: 24px;
    line-height: 24px;
    color: #212121;
    font-weight: 700;
    text-transform: none;
    margin: 0 0 20px;
}

.spa-cart-my-cart table {
    margin: 0;
}

.spa-cart-my-cart table thead {
    background-color: #f5f5f5;
    border: #ddd 1px solid;
}

.spa-cart-my-cart table thead th {
    font-weight: normal;
    font-size: 16px;
    color: #212121;
}

.spa-cart-my-cart table tbody {
    border: #ddd 1px solid;
}

.spa-cart-my-cart table td {
    border-top: none;
}

.spa-cart-my-cart table tfoot tr:last-child {
    border-top: #ddd 1px solid;
}

span.spa-product-thumb {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 56px;
    height: 56px;
    border: #ddd 1px solid;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.spa-remove-product {
    font-size: 20px;
    color: #fe5959;
    display: block;
    cursor: pointer;
}

tr.spa-cart-total {
    font-size: 24px;
    color: var(--spa-primary-color);
}

.spa-next-btn {
    text-align: right;
    margin-top: 35px;
}

.spa-next-btn button {
    display: inline-block;
    background: var(--spa-primary-color);
    color: var(--spa-primary-text-color);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    padding: 15px 25px;
    min-width: 166px;
}

.spa-personal-info-form {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.spa-form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 -7px;
}

.spa-form-col {
    width: 100%;
    padding: 0 7px;
    margin-bottom: 14px;
}

.spa-form-col.spa-f-col2 {
    width: 50%;
}

.spa-personal-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.spa-personal-info h5 {
    font-size: 24px;
    line-height: 24px;
    color: #212121;
    font-weight: 700;
    text-transform: none;
    margin: 0 0 20px;
}

.spa-personal-info-box {
    border: #ddd 1px solid;
    border-radius: 8px;
}

.spa-personal-info-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.spa-personal-info-col {
    width: 100%;
    padding: 8px 15px;
    border-bottom: #ddd 1px solid;
}

.spa-personal-info-row:last-child .spa-personal-info-col {
    border-bottom: none;
}

.spa-personal-info-col.spa-pi-col2 {
    width: 50%;
    border-right: #ddd 1px solid;
}

.spa-personal-info-col.spa-pi-col2:nth-child(even) {
    border-right: none;
}

.spa-personal-info-inner:after {
    display: block;
    content: '';
    width: 100%;
    clear: both;
}

.span-personal-info-label {
    float: left;
    display: block;
    font-weight: bold;
}

.span-personal-info-name {
    display: block;
    padding-left: 155px;
}

.spa-payment-box {
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25px;
}

.spa-payment-icons span:before {
    content: attr(data-icon);
    font-family: "Font Awesome 6 Brands";
    font-size: 30px;
    margin-right: 3px;
}

.spa-payment-box .spa-next-btn {
    margin-left: auto;
    margin-top: 0;
}

.spa-payment-error,
.spa-payment-success,
.spa-payment-processing {
    background-color: #fff;
    padding: 100px 20px;
    border-radius: 15px;
    text-align: center;
    color: red;
}

.spa-payment-error h2,
.spa-payment-processing h2,
.spa-payment-success h2 {
    font-size: 24px;
    line-height: 48px;
    color: red;
    font-weight: normal;
    margin: 0;
}

.spa-payment-error i,
.spa-payment-processing i,
.spa-payment-success i {
    font-size: 72px;
    margin-bottom: 10px;
}

.spa-payment-success,
.spa-payment-success h2 {
    color: green;
}

.spa-payment-processing,
.spa-payment-processing h2 {
    color: #FFA500;
}

.spa-payment-processing p {
    color: #212121;
}

@media only screen and (max-width:767px) {
    .spa-product-col {
        width: 50%;
    }

    .spa-personal-info-col.spa-pi-col2 {
        width: 100%;
    }

    .spa-table-wrap {
        overflow-x: auto;
    }

    .spa-product-image-dots {
        visibility: visible;
        opacity: 1;
    }

    .spa-table-wrap table {
        width: 700px;
    }

    .spa-payment-error i,
    .spa-payment-success i {
        font-size: 48px;
    }

    .spa-payment-error h2,
    .spa-payment-success h2 {
        font-size: 36px;
        line-height: 36px;
    }
}

@media only screen and (max-width:575px) {
    .spa-form-col.spa-f-col2 {
        width: 100%;
    }

    .spa-payment-box {
        display: block;
        text-align: center;
    }

    .spa-payment-box .spa-next-btn {
        margin-left: inherit;
        text-align: center;
    }

    .spa-payment-error h2,
    .spa-payment-success h2 {
        font-size: 24px;
        line-height: 24px;
    }
}

@media only screen and (max-width:480px) {
    .spa-cart-steps__step-number {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .spa-cart-steps__step-name {
        font-size: 14px;
    }

    .spa-product-col {
        width: 100%;
    }

    .span-personal-info-label {
        float: none;
        display: inline-block;
        margin-right: 5px;
    }

    .span-personal-info-name {
        padding-left: 0;
        display: inline-block;
    }
}

@media only screen and (max-width:360px) {
    .spa-cart-steps {
        padding: 1.5em 2.25em;
    }

    .spa-cart-steps__step-name {
        display: none;
    }
}

.spa-data-loading {
    position: relative;
    min-height: 200px;
}

.spa-data-loading::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--spa-primary-color);
    mask: url("data:image/svg+xml,%3Csvg version='1.1' id='L4' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Ccircle fill='%23000' stroke='none' cx='6' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.1'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='26' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.2'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='46' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.3'/%3E%3C/circle%3E%3C/svg%3E");
    z-index: 9;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100px;
}

.spa-data-loading::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #fff;
    z-index: 7;
}

.spa-cart input::placeholder,
.spa-cart textarea::placeholder {
    color: #5e5e5e;
}

.spa-payment-form-wrap {
    width: 100%;
}

.spa-payment-buttons {
    margin-top: 25px;
    text-align: right;
}

.spa-form-hint {
    font-size: 14px;
    line-height: 24px;
    color: #ff0000;
    text-align: center;
    font-style: italic;
}