.giftcard .steps-points {
    display: flex;
    justify-content: space-between;
    margin: 24px auto 0;
    max-width: 400px;
}

.giftcard .steps-points .step {
    background-color: #ccc;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin: 0 2px;
    text-align: center;
    opacity: .5
}

.giftcard .step.prev {
    cursor: pointer;
}

.giftcard .step.active,
.giftcard .step.prev {
    opacity: 1;
}

.giftcard .step-tab .variant__group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.giftcard .product-sizes .size.price {
    min-width: 70px;
}

.giftcard .step-tab .input-wrap {
    margin-bottom: 20px;
}

/* Normalize select styling across desktop and iOS within the giftcard component */
.giftcard select.form-control {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .667rem center;
    background-size: 10px 6px;
}

.giftcard .step-tab .step__name {
    text-align: center;
}

@media (min-width: 992px) {
    .giftcard .step-tab .step__name {
        text-align: left;
    }
}