@import url("../base.fc9a55ba6c19.css");

.phone-number-entry {
    display: flex;
}

.cuban-phone-entry .fixed-prefix {
    flex: 0 0 65px;
    width: 65px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 5px 0 0 5px;
    color: #fff;
    background: var(--primary-color);
    font-size: 19px;
    box-sizing: border-box;
}
.cuban-phone-entry .dial-prefix {
    height: 50px;
    opacity: 1;
    background: #fff;
}
.cuban-phone-entry .phone-number {
    height: 50px;
}

.prefix {
    flex: 1;
    padding-inline: 20px;
    max-width: 110px;
    border-radius: 5px 0px 0px 5px;
    /* background-color: #f8f8f8; */
    color: black;
    font-size: 14px;
    box-sizing: border-box;
}

.phone-number {
    flex: 1;
    height: 50px;
    padding-inline: 20px;
    width: 100%;
    border-radius: 0px 5px 5px 0px;
    /* background-color: #f8f8f8; */
    font-size: 14px;
    box-sizing: border-box;
    /* border-top: 1px solid #c0c0c0;
    border-right: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0; */
}

.prefix:focus, .phone-number:focus {
    outline: none;
    border: 1px solid #6d6d6d;
}

.delivery_instructions {
    height: 110px;
    min-height: 110px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
    line-height: 1.45;
}

.toggle-pwd--minimal {
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #667085;
    background: transparent;
    transition: color .18s ease, background-color .18s ease;
}
.toggle-pwd--minimal:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}
.toggle-pwd--minimal:focus-visible {
    outline: 3px solid rgba(45, 87, 165, .2);
    outline-offset: 1px;
}
.toggle-pwd.toggle-pwd--minimal .eye-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.toggle-pwd.toggle-pwd--minimal .eye-icon--on { display: none; }
.toggle-pwd.toggle-pwd--minimal .eye-icon--off { display: block; }
.toggle-pwd.toggle-pwd--minimal.shown .eye-icon--off { display: none; }
.toggle-pwd.toggle-pwd--minimal.shown .eye-icon--on { display: block; }

@media screen and (min-width: 1000px) {
    .other-options {
        font-size: 12px;
        padding: 10px;
    }
}
.registration-step-summary { margin-top: 4px; }
.registration-stepper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 24px 0 4px;
    padding: 0;
    list-style: none;
}
.registration-stepper::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 25%;
    right: 25%;
    height: 3px;
    border-radius: 999px;
    background: #dfe5f1;
}
.registration-stepper::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 21px;
    left: 25%;
    width: 50%;
    height: 3px;
    border-radius: 999px;
    background: #31d483;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .25s ease;
}
.registration-stepper.is-on-step-two::after { transform: scaleX(1); }
.registration-stepper__item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #8b93a5;
    text-align: center;
}
.registration-stepper__circle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid #d6ddeb;
    border-radius: 50%;
    color: #727b8f;
    background: #fff;
    font-family: var(--font-base-medium);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 0 0 6px #fff;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.registration-stepper__circle svg {
    display: none;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.registration-stepper__text strong,
.registration-stepper__text small { display: block; }
.registration-stepper__text strong { font-size: 13px; line-height: 1.3; }
.registration-stepper__text small { margin-top: 2px; font-size: 11px; line-height: 1.3; }
.registration-stepper__item.is-active { color: var(--primary-color); }
.registration-stepper__item.is-active .registration-stepper__circle {
    color: #fff;
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 6px var(--secondary-color);
}
.registration-stepper__item.is-complete { color: #16845a; }
.registration-stepper__item.is-complete .registration-stepper__circle {
    color: #0d4b33;
    border-color: #31d483;
    background: #31d483;
}
.registration-stepper__item.is-complete .registration-stepper__number { display: none; }
.registration-stepper__item.is-complete .registration-stepper__circle svg { display: block; }
.registration-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.registration-step[hidden],
.registration-step.is-hidden {
    display: none !important;
}
.registration-step .form__alert.client {
    margin-top: 4px;
    padding: 9px 12px;
    color: #9f1c1c;
    background: #fff1f1;
    border: 1px solid #f1b8b8;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.4;
}
.registration-step [aria-invalid="true"] {
    border-color: #c93636;
    box-shadow: 0 0 0 3px rgba(201, 54, 54, .10);
}
.registration-step h4 { margin: 20px 0 4px 0; color: var(--emphasis-color); }
.registration-actions { display: flex; gap: 12px; }
.registration-back { background: #fff !important; color: var(--primary-color) !important; border: 1px solid var(--primary-color) !important; }
.form-action__button[aria-busy="true"] {
    cursor: wait;
    opacity: .72;
}
@media (max-width: 480px) {
    .registration-stepper__text small { display: none; }
    .registration-stepper__text strong { max-width: 130px; }
}
