/* --- Banners / bars --- */

.emp_soft_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    gap: 12px;
    box-sizing: border-box;
    padding: 0 12px;
}

.emp_soft_bar--verification {
    background-color: #ffb321;
    color: #121314;
}

.emp_soft_bar--price-change {
    background-color: #3b4edc;
    color: #ffffff;
}

.emp_soft_bar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.emp_soft_bar__link {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.emp_soft_bar__link:hover,
.emp_soft_bar__link:focus {
    color: inherit;
    opacity: 0.85;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .emp_soft_bar {
        font-size: 14px;
        height: auto;
        min-height: 40px;
        padding: 8px 12px;
    }
}

/* --- Modals --- */

.emp_soft_modal .modal-dialog {
    max-width: 480px;
    width: 100%;
}

.emp_soft_modal .modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 1px 1px 0 #e9e9e9, 0 4px 20px 0 rgba(69, 72, 75, 0.1), 0 1px 4px 0 rgba(206, 206, 206, 0.1);
}

.emp_soft_modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #121314;
    font-size: 20px;
    line-height: 1;
    opacity: 0.7;
    z-index: 1;
}

.emp_soft_modal__close:hover {
    opacity: 1;
}

.emp_soft_modal__body {
    padding: 40px 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.emp_soft_modal__icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 48px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    font-size: 40px;
}

.emp_soft_modal__icon-wrap--warning {
    color: #f2a654;
}

.emp_soft_modal__icon-wrap--error {
    color: #f96868;
}

.emp_soft_modal__icon-wrap--success {
    color: #46be8a;
}

.emp_soft_modal__title {
    font-size: 16px;
    font-weight: 600;
    color: #121314;
    margin: 0;
    line-height: 26px;
    text-align: center;
}

.emp_soft_modal__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #414243;
    margin: 0;
    line-height: 26px;
    text-align: center;
}

.emp_soft_modal__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.emp_soft_modal__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #121314;
}

.emp_soft_modal__contact-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.emp_soft_modal__contact-item a {
    color: #121314;
    text-decoration: underline;
}

.emp_soft_modal__contact-item a:hover {
    color: #3b4edc;
}

.emp_soft_modal__info-box {
    background-color: #f6f6f6;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: #505051;
    line-height: 22px;
}

.emp_soft_modal__actions {
    display: flex;
    gap: 12px;
    padding: 0 40px 32px;
}

.emp_soft_modal__btn--outline {
    flex: 1;
    height: 40px;
    border: 1px solid #505051;
    background-color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #121314;
    cursor: pointer;
    padding: 0 12px;
}

.emp_soft_modal__btn--outline:hover {
    background-color: #f6f6f6;
}

.emp_soft_modal__btn--ghost {
    flex: 1;
    height: 40px;
    border: none;
    background-color: transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: #121314;
    cursor: pointer;
    padding: 0 12px;
}

.emp_soft_modal__btn--ghost:hover {
    background-color: #f6f6f6;
}

/* --- Verification panel --- */

.emp_soft_panel-wrap {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.emp_soft_panel__label-bar {
    display: flex;
    align-items: center;
    height: 34px;
    padding: 0 16px;
    background-color: #556068;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.emp_soft_panel {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.emp_soft_panel__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #505051;
    border-radius: 8px;
    padding: 8px 12px;
    background-color: #f6f6f6;
    font-size: 14px;
    color: #121314;
    align-self: flex-start;
}

.emp_soft_panel__status--verified {
    border-color: #46be8a;
    background-color: rgba(231, 250, 242, 0.8);
    color: #369b6f;
}

.emp_soft_panel__status--in-progress {
    border-color: #57c7d4;
    background-color: rgba(236, 249, 250, 0.8);
    color: #33b6c5;
}

.emp_soft_panel__title {
    font-size: 16px;
    font-weight: 700;
    color: #121314;
    margin: 0;
    line-height: 26px;
}

.emp_soft_panel__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #414243;
    margin: 0;
    line-height: 22px;
}

.emp_soft_panel__steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.emp_soft_panel__step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 24px;
}

.emp_soft_panel__step-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.emp_soft_panel__step-text--done {
    text-decoration: line-through;
    color: #7a7b7b;
}

.emp_soft_panel__step-text--active {
    font-weight: 500;
    color: #121314;
}

.emp_soft_panel__step-text--pending {
    font-weight: 400;
    color: #414243;
}

.emp_soft_input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.emp_soft_input-group label {
    font-size: 14px;
    font-weight: 400;
    color: #505051;
    margin-bottom: 0;
}

.emp_soft_input {
    height: 40px;
    border: 1px solid #7a7b7b;
    border-radius: 8px;
    padding: 0 12px;
    width: 100%;
    font-size: 14px;
    color: #121314;
    box-sizing: border-box;
    background-color: #ffffff;
    outline: none;
}

.emp_soft_input:focus {
    border-color: #3b4edc;
    box-shadow: none;
}

.emp_soft_input-wrap {
    position: relative;
}

.emp_soft_input-wrap--error .emp_soft_input {
    padding-right: 36px;
}

.emp_soft_input__icon-error {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #cc4747;
    pointer-events: none;
    font-size: 16px;
}

.emp_soft_input--error {
    border-color: #cc4747;
}

.emp_soft_input__error-msg {
    font-size: 12px;
    color: #c73030;
    margin-top: 4px;
    text-align: right;
}

.emp_soft_btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    background-color: #3b4edc;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
}

.emp_soft_btn--primary:hover,
.emp_soft_btn--primary:focus {
    background-color: #2c3db0;
    color: #ffffff;
    text-decoration: none;
}

.emp_soft_btn--primary:disabled,
.emp_soft_btn--primary.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.emp_soft_btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    background-color: #ffffff;
    color: #121314;
    border: 1px solid #505051;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.emp_soft_btn--secondary:hover,
.emp_soft_btn--secondary:focus {
    background-color: #f6f6f6;
    color: #121314;
    text-decoration: none;
}

.emp_soft_btn--link {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #121314;
    text-decoration: underline;
    cursor: pointer;
}

.emp_soft_btn--link:hover {
    color: #3b4edc;
}

.emp_soft_panel__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.emp_soft_panel__resend-info {
    font-size: 14px;
    color: #505051;
}

.emp_soft_panel__email-sent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #121314;
    padding: 12px;
    background-color: #f6f6f6;
    border-radius: 8px;
}

/* --- Standalone confirmation pages --- */

.emp_soft_page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.emp_soft_page__header {
    width: 100%;
    padding: 32px 40px 24px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.emp_soft_page__header img {
    height: 32px;
    width: auto;
}

.emp_soft_page__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.emp_soft_page__icon {
    width: 96px;
    height: 96px;
    border-radius: 48px;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
}

.emp_soft_page__icon--success {
    color: #46be8a;
}

.emp_soft_page__icon--error {
    color: #f96868;
}

.emp_soft_page__text-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.emp_soft_page__title {
    font-size: 18px;
    font-weight: 600;
    color: #121314;
    margin: 0;
    line-height: 28px;
}

.emp_soft_page__desc {
    font-size: 14px;
    font-weight: 400;
    color: #414243;
    margin: 0;
    line-height: 22px;
    max-width: 400px;
}

.emp_soft_page__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #121314;
    text-decoration: none;
    background: transparent;
}

.emp_soft_page__cta:hover,
.emp_soft_page__cta:focus {
    color: #3b4edc;
    text-decoration: none;
}

.emp_soft_page__footer {
    width: 100%;
    padding: 24px 40px;
    text-align: center;
    font-size: 14px;
    color: #505051;
    border-top: 1px solid #f0f0f0;
}
