.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-check-input:checked {
    background-color: #E4A983;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top: 6px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.info-message {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

/*----*/
body {
    background-color: #ffffff;
    font-family: 'Neue Montreal';
    color: #2B2B2B;
    margin: 0;
}

.container {
    padding: 1rem;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 32px;
}

    .card .form-label {
        font-weight: 600;
        color: #1a1a1a;
    }

    .card .form-control {
        border-radius: 4px;
        padding: 10px;
        font-size: 15px;
        border: 1px solid #ccc;
    }

    .card .btn-primary {
        background-color: #E4A983;
        border: none;
        border-radius: 4px;
        padding: 12px;
        font-weight: 600;
        font-size: 15px;
        transition: background-color 0.3s ease;
    }

        .card .btn-primary:hover {
            color: black;
            background-color: #F3D7C6;
            border-color: #F3D7C6;
        }

.form-check-label {
    font-size: 14px;
    color: #333;
}

.error-message {
    color: red;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

.success-message {
    color: green;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

.info-message {
    color: #0c5460;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 576px) {
    .card {
        padding: 24px;
    }
}

.login {
    padding: 2.5rem;
}

.login-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
}

.login-card {
    display: flex;
    width: 25rem;
    max-width: 25rem;
    flex-direction: column;
    align-items: center;
    gap: 3.375rem;
}

.login-logo {
    width: 22.88794rem;
    height: 6.25rem;
    aspect-ratio: 260/71;
}

.login-email,
.login-senha {
    gap: .75rem;
    color: #666666;
}

    .login-email .login-actions {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }

    .login-senha .login-actions {
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .login-email .login-actions img,
    .login-senha .login-actions img {
        filter: brightness(0) saturate(100%) invert(38%) sepia(39%) saturate(13%) hue-rotate(52deg) brightness(95%) contrast(88%);
    }

.login-forgot-password {
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-footer {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 18px;
    font-weight: normal;
}

/* ================== Form Control ================== */

.form-control {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #2B2B2B !important;
    padding: 8px !important;
    height: 36px !important;
    outline: 1px solid #E0E0E0;
    border-radius: 4px;
    border: none !important;
}

    .form-control::placeholder {
        color: #B8B8B8;
    }

    .form-control:hover {
        background-color: #F4F4F4 !important;
        outline: 2px solid #E0E0E0;
    }

    .form-control:active,
    .form-control.active {
        box-shadow: none;
    }

    .form-control.disabled,
    .form-control:disabled {
        pointer-events: none;
        background-color: #F1F1F1 !important;
        color: #666666 !important;
        outline: none;
    }

    .form-control:focus,
    .form-control.focus {
        outline: 2px solid #E4A983 !important;
        box-shadow: none !important;
    }

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(img/icons/inputs/keyboard_arrow_down_sharp.svg);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 36px !important;
}

    select.form-control.disabled {
        background-image: url(img/icons/inputs/keyboard_arrow_down_sharp_disabled.svg) !important;
        opacity: 1;
    }

    select.form-control:focus {
        outline: 2px solid #525252 !important;
        box-shadow: none !important;
    }

    select.form-control.open {
        background-image: url(img/icons/inputs/keyboard_arrow_up_sharp.svg);
    }


textarea.form-control {
    height: auto !important;
}

/* ================== Inputs ================== */

input.form-control.input-search,
input.form-control.input-scan,
input.form-control.input-email,
input.form-control.input-phone {
    background-repeat: no-repeat;
    background-position: left 8px center;
    background-size: 20px;
    padding-left: 36px !important;
}

input.form-control.input-search {
    background-image: url(img/icons/inputs/search_sharp.svg);
}

    input.form-control.input-search.has-value {
        background-image: url(img/icons/inputs/search_sharp_active.svg);
    }


    input.form-control.input-search:disabled,
    input.form-control.input-search.disabled {
        background-image: url(img/icons/inputs/search_sharp_disabled.svg);
    }

input.form-control.input-scan {
    background-image: url(img/icons/inputs/barcode_scanner.svg);
}

    input.form-control.input-scan.has-value {
        background-image: url(img/icons/inputs/barcode_scanner_active.svg);
    }

    input.form-control.input-scan:disabled,
    input.form-control.input-scan.disabled {
        background-image: url(img/icons/inputs/barcode_scanner.svg);
    }

input.form-control.input-email {
    background-image: url(img/icons/inputs/mail_outline_sharp.svg);
}

    input.form-control.input-email.has-value {
        background-image: url(img/icons/inputs/mail_outline_sharp_active.svg);
    }

    input.form-control.input-email:disabled,
    input.form-control.input-email.disabled {
        background-image: url(img/icons/inputs/mail_outline_sharp_disabled.svg);
    }

input.form-control.input-phone {
    background-image: url(img/icons/inputs/phone_sharp.svg);
}

    input.form-control.input-phone.has-value {
        background-image: url(img/icons/inputs/phone_sharp_active.svg);
    }

    input.form-control.input-phone:disabled,
    input.form-control.input-phone.disabled {
        background-image: url(img/icons/inputs/phone_sharp_disabled.svg);
    }

.input-password-wrapper,
.input-search-wrapper,
.input-currency-wrapper,
.input-percent-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
}

    .input-password-wrapper .input-search,
    .input-search-wrapper .input-search {
        width: 100% !important;
        padding-right: 36px !important;
    }

.input-password-toggle,
.input-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    translate: 0 -50%;
    background: none;
    background-repeat: no-repeat;
    background-size: 20px;
    border: none;
    outline: none !important;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    display: none;
}

.input-search-clear {
    background-image: url(img/icons/inputs/close_sharp.svg);
}

.input-password-toggle {
    background-image: url(img/icons/inputs/remove_red_eye_sharp.svg);
}

.input-password-wrapper:has(input.has-value) .input-password-toggle,
.input-search-wrapper:has(input.has-value) .input-search-clear {
    display: flex;
}

.input-password-wrapper:has(input.disabled) .input-password-toggle,
.input-password-wrapper:has(input:disabled) .input-password-toggle,
.input-search-wrapper:has(input.disabled) .input-search-clear,
.input-search-wrapper:has(input:disabled) .input-search-clear {
    display: none;
}

.input-prefix,
.input-suffix {
    position: absolute;
    color: #B8B8B8;
    font-size: 14px;
    pointer-events: none;
    user-select: none;
}

.input-prefix {
    left: 8px;
}

.input-currency-wrapper input {
    width: 100% !important;
    padding-left: 36px !important;
}

.input-suffix {
    right: 8px;
}

.input-percent-wrapper input {
    width: 100% !important;
    padding-right: 28px !important;
}

input.input-percent,
input.input-currency {
    text-align: right !important;
}

.input-currency-wrapper:has(input.has-value) .input-prefix,
.input-percent-wrapper:has(input.has-value) .input-suffix {
    color: #2B2B2B;
}

.input-currency-wrapper:has(input:disabled) .input-prefix,
.input-currency-wrapper:has(input.disabled) .input-prefix,
.input-percent-wrapper:has(input:disabled) .input-suffix,
.input-percent-wrapper:has(input.disabled) .input-suffix {
    color: #666666;
}

textarea.form-control:not(:disabled):not(.disabled).set-warning,
input.form-control:not(:disabled):not(.disabled).set-warning {
    outline: 2px solid #C8811A;
}

textarea.form-control:not(:disabled):not(.disabled).set-error,
input.form-control:not(:disabled):not(.disabled).set-error {
    outline: 2px solid #E30202;
}

.form-group-input {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    gap: 2px;
}

    .form-group-input label {
        font-size: 14px;
        color: #2B2B2B;
        margin: 0;
    }

.input-group-append {
    margin-left: 0px;
}

.input-group > [class^='input']:first-child,
.input-group > [class*='input']:first-child,
.input-group > :first-child [class^='input'],
.input-group > :first-child [class*='input'],
.input-group > input:first-child {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group > :last-child [class^='btn-icon'],
.input-group > :last-child [class*='btn-icon'],
.input-group > [class^='btn-icon']:last-child {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* ================== Button ================== */
.btn {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-align: center;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 8px 12px;
    height: 36px !important;
    min-width: min-content;
    gap: 8px !important;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.btn-primary {
    color: #2B2B2B !important;
    background-color: #E4A983 !important;
    outline: 1px solid #E4A983 !important;
    font-size: 16px !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 500 !important;
}

    .btn-primary:hover {
        color: #2B2B2B !important;
        background-color: #F3D7C6 !important;
        outline: 1px solid #F3D7C6 !important;
        text-decoration: none !important;
        cursor: pointer;
    }

    .btn-primary:active,
    .btn-primary.active {
        background-color: #E4A983 !important;
        outline: transparent !important;
    }

    .btn-primary.btn-selected,
    .btn-primary:focus,
    .btn-primary:focus-visible,
    .btn-primary:focus-within {
        outline: 2px solid #111111 !important;
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #666666 !important;
        background-color: #CCCCCC !important;
        cursor: auto !important;
        outline: transparent !important;
        border: transparent !important;
    }

.btn-secondary {
    color: #2B2B2B !important;
    background-color: #FFFFFF !important;
    outline: 1px solid #2b2b2b !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: none !important;
    border: none !important;
}

    .btn-secondary:hover {
        background-color: #F3D7C6 !important;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-secondary.btn-selected,
    .btn-secondary:active,
    .btn-secondary.active,
    .btn-secondary:focus-visible,
    .btn-secondary:focus-within,
    .btn-secondary:focus, .btn-secondary.focus {
        background-color: #FFFFFF;
        color: #2B2B2B !important;
        outline: 2px solid #E4A983 !important;
    }

    .btn-secondary:active, .btn-secondary.active {
        background-color: rgba(233,186,156,0.8);
        color: #2B2B2B;
    }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #666666 !important;
        background-color: #F1F1F1 !important;
        outline: 1px solid #A3A3A3 !important;
        cursor: auto !important;
    }

/* ================== Checkbox ================== */
.custom-control.custom-checkbox {
    position: relative;
    padding-left: 28px !important;
    min-height: 20px;
    display: flex;
    align-items: center;
}

    .custom-control.custom-checkbox .custom-control-label {
        font-size: 14px;
        color: #2B2B2B;
        padding-left: 0;
        line-height: 1;
        cursor: pointer;
    }

    .custom-control.custom-checkbox .custom-control-input {
        position: absolute;
        left: 0;
        margin: 0;
        height: 20px;
        width: 20px;
        border-radius: 2px;
        background-color: #FFFFFF;
        border: none !important;
        outline: 1px solid #E0E0E0 !important;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
        transition: none !important;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 16px 16px;
        opacity: 1;
        z-index: 1;
    }

        .custom-control.custom-checkbox .custom-control-input:checked {
            background-color: #E4A983;
            outline: none !important;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 6.5 11.5 2.5 7.5'/%3e%3c/svg%3e");
        }

        .custom-control.custom-checkbox .custom-control-input:hover {
            background-color: #F3D7C6;
            outline: 1px solid #E0E0E0 !important;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 6.5 11.5 2.5 7.5'/%3e%3c/svg%3e");
        }

        .custom-control.custom-checkbox .custom-control-input:checked:hover {
            background-color: #F3D7C6;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 6.5 11.5 2.5 7.5'/%3e%3c/svg%3e");
        }

        .custom-control.custom-checkbox .custom-control-input:focus {
            box-shadow: none !important;
            outline: 1px solid #2B2B2B !important;
        }

        .custom-control.custom-checkbox .custom-control-input:checked:focus {
            outline: 2px solid #2B2B2B !important;
        }

        .custom-control.custom-checkbox .custom-control-input:disabled {
            background-image: none;
            background-color: #B8B8B8 !important;
            outline: none !important;
        }

            .custom-control.custom-checkbox .custom-control-input:disabled:checked {
                background-color: #A3A3A3 !important;
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5 6.5 11.5 2.5 7.5'/%3e%3c/svg%3e");
            }

            .custom-control.custom-checkbox .custom-control-input:disabled ~ .custom-control-label {
                color: #666666;
            }

    .custom-control.custom-checkbox .custom-control-label::before,
    .custom-control.custom-checkbox .custom-control-label::after {
        display: none !important;
    }

    .custom-control.custom-checkbox.check-sm {
        min-height: 16px;
    }

        .custom-control.custom-checkbox.check-sm .custom-control-input {
            height: 16px;
            width: 16px;
            background-size: 12px 12px;
        }

    .custom-control.custom-checkbox.check-lg {
        padding-left: 32px !important;
        min-height: 24px;
    }

        .custom-control.custom-checkbox.check-lg .custom-control-input {
            height: 24px;
            width: 24px;
            background-size: 20px 20px;
        }

/* ================== modal ================== */

.modal-header {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background-color: #F7DFD2;
}

.modal-header .btn-close {
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.modal-title {
    font-size: 14px;
    font-weight: bold;
}

.modal-body {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
}

.modal-footer {
    padding: 0 24px 24px 24px;
    border-top: none;
}

.modal-body:has(+ .modal-footer) {
    padding-bottom: 16px;
}

.twofa-input-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    .twofa-input-group input {
        width: 48px;
        height: 56px;
        text-align: center;
        font-size: 24px;
        border: 1px solid #ced4da;
        border-radius: 6px;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .twofa-input-group input:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
            outline: none;
        }

.p-credencial {
    display: flex;
    align-items: center;
    width: 100%;
    gap: .5rem;
    margin-bottom: -0.75rem;
    font-size: 14px;
    font-weight: normal;
}

.auth-container {
    padding: 1rem;
}

.auth-content {
    gap: 2rem;
}

.timeline {
    list-style: none;
    padding-left: 0;
    position: relative;
    margin-left: 1rem;
}

.timeline-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #007bff;
    color: white;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    border-radius: 50%;
    font-weight: bold;
}

.auth-links {
    list-style: none;
    padding-left: 1rem;
}

    .auth-links li {
        margin-bottom: 0.5rem;
    }

.auth-card {
    padding: 1.5rem;
}

.auth-key {
    cursor: pointer;
    font-weight: bold;
    word-break: break-all;
}

.copy-key:hover {
    text-decoration: underline;
}

.step-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.25rem 0.75rem;
    background-color: #007bff;
    color: white;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Elementor Wordpress*/
.elementor-section-height-full {
    height: 100vh !important;
}

/*------------------------------------
  Divider
------------------------------------*/
.divider {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

    .divider::before, .divider::after {
        -ms-flex: 1 1 0%;
        flex: 1 1 0%;
        border-top: 0.0625rem solid #e7eaf3;
        content: "";
        margin-top: 0.0625rem;
    }

    .divider::before {
        margin-right: 1.5rem;
    }

    .divider::after {
        margin-left: 1.5rem;
    }
