@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    /*font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    font-family: 'Work Sans';
    /*font-style: italic;*/
}

/* Chat n8n */
:root {
    /* Colors */
    --chat--color--primary: #701D83 !important;
    --chat--color--primary-shade-50: #20b69e !important;
    --chat--color--primary--shade-100: #cf3c5c;
    --chat--color--secondary: #20b69e !important;
    --chat--color-secondary-shade-50: #1ca08a;
    --chat--color-white: #fff;
    --chat--color-light: #f2f4f8;
    --chat--color-light-shade-50: #e6e9f1;
    --chat--color-light-shade-100: #c2c5cc;
    --chat--color-medium: #d2d4d9;
    --chat--color-dark: #101330;
    --chat--color-disabled: #d2d4d9;
    --chat--color-typing: #404040;
    /* Base Layout */
    --chat--spacing: 1rem;
    --chat--border-radius: 0.25rem;
    --chat--transition-duration: 0.15s;
    --chat--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    /* Window Dimensions */
    --chat--window--width: 400px;
    --chat--window--height: 600px;
    --chat--window--bottom: var(--chat--spacing);
    --chat--window--right: var(--chat--spacing);
    --chat--window--z-index: 9999;
    --chat--window--border: 1px solid var(--chat--color-light-shade-50);
    --chat--window--border-radius: var(--chat--border-radius);
    --chat--window--margin-bottom: var(--chat--spacing);
    /* Header Styles */
    --chat--header-height: auto;
    --chat--header--padding: var(--chat--spacing);
    --chat--header--background: var(--chat--color--primary) !important;
    --chat--header--color: var(--chat--color-light);
    --chat--header--border-top: none;
    --chat--header--border-bottom: none;
    --chat--header--border-left: none;
    --chat--header--border-right: none;
    --chat--heading--font-size: 12px;
    --chat--subtitle--font-size: 6px;
    --chat--subtitle--line-height: 1.8;
    /* Message Styles */
    --chat--message--font-size: 1rem;
    --chat--message--padding: var(--chat--spacing);
    --chat--message--border-radius: var(--chat--border-radius);
    --chat--message-line-height: 1.5;
    --chat--message--margin-bottom: calc(var(--chat--spacing) * 1);
    --chat--message--bot--background: var(--chat--color-white);
    --chat--message--bot--color: var(--chat--color-dark);
    --chat--message--bot--border: none;
    --chat--message--user--background: var(--chat--color--secondary);
    --chat--message--user--color: var(--chat--color-white);
    --chat--message--user--border: none;
    --chat--message--pre--background: rgba(0, 0, 0, 0.05);
    --chat--messages-list--padding: var(--chat--spacing);
    /* Toggle Button */
    --chat--toggle--size: 64px;
    --chat--toggle--width: var(--chat--toggle--size);
    --chat--toggle--height: var(--chat--toggle--size);
    --chat--toggle--border-radius: 50%;
    --chat--toggle--background: var(--chat--color--primary);
    --chat--toggle--hover--background: var(--chat--color--primary-shade-50);
    --chat--toggle--active--background: var(--chat--color--primary--shade-100);
    --chat--toggle--color: var(--chat--color-white);
    /* Input Area */
    --chat--textarea--height: 50px;
    --chat--textarea--max-height: 30rem;
    --chat--input--font-size: inherit;
    --chat--input--border: 0;
    --chat--input--border-radius: 0;
    --chat--input--padding: 0.8rem;
    --chat--input--background: var(--chat--color-white);
    --chat--input--text-color: initial;
    --chat--input--line-height: 1.5;
    --chat--input--placeholder--font-size: var(--chat--input--font-size);
    --chat--input--border-active: 0;
    --chat--input--left--panel--width: 2rem;
    /* Button Styles */
    --chat--button--padding: calc(var(--chat--spacing) * 5 / 8) var(--chat--spacing);
    --chat--button--border-radius: var(--chat--border-radius);
    --chat--button--font-size: 1rem;
    --chat--button--line-height: 1;
    --chat--button--color--primary: var(--chat--color-light);
    --chat--button--background--primary: var(--chat--color--secondary);
    --chat--button--border--primary: none;
    --chat--button--color--primary--hover: var(--chat--color-light);
    --chat--button--background--primary--hover: var(--chat--color-secondary-shade-50);
    --chat--button--border--primary--hover: none;
    --chat--button--color--primary--disabled: var(--chat--color-light);
    --chat--button--background--primary--disabled: #81bbb1;
    --chat--button--border--primary--disabled: none;
    --chat--button--color--secondary: var(--chat--color-light);
    --chat--button--background--secondary: hsl(0, 0%, 58%);
    --chat--button--border--secondary: none;
    --chat--button--color--secondary--hover: var(--chat--color-light);
    --chat--button--background--secondary--hover: hsl(0, 0%, 51%);
    --chat--button--border--secondary--hover: none;
    --chat--button--color--secondary--disabled: var(--chat--color-light);
    --chat--button--background--secondary--disabled: hsl(0, 0%, 78%);
    --chat--button--border--secondary--disabled: none;
    --chat--close--button--color-hover: var(--chat--color--primary);
    /* Send and File Buttons */
    --chat--input--send--button--background: var(--chat--color-white);
    --chat--input--send--button--color: var(--chat--color--secondary);
    --chat--input--send--button--background-hover: var(--chat--color--primary-shade-50);
    --chat--input--send--button--color-hover: var(--chat--color-secondary-shade-50);
    --chat--input--file--button--background: var(--chat--color-white);
    --chat--input--file--button--color: var(--chat--color--secondary);
    --chat--input--file--button--background-hover: var(--chat--input--file--button--background);
    --chat--input--file--button--color-hover: var(--chat--color-secondary-shade-50);
    --chat--files-spacing: 0.25rem;
    /* Body and Footer */
    --chat--body--background: var(--chat--color-light);
    --chat--footer--background: var(--chat--color-light);
    --chat--footer--color: var(--chat--color-dark);
}

.chat-message-markdown h2 {
    font-size: 16px !important;
    line-height: 1.15 !important;
}
.chat-inputs textarea{
    font-size:12px !important;
}

.chat-header p {
    margin-bottom: 0.2rem;
}
.chat-message-markdown{
    font-size: 14px !important;
}
h1:focus {
    outline: none;
}

a, .btn-link {
    color: #0071c1;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.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."
    }

.card-login {
    max-width: 400px;
    margin: auto;
    margin-top: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 3px solid #00FEB7;
}


.card-header-login {
    background-color: #701D83;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom: 3px;
    border-bottom-style: solid;
    border-bottom-color: #00FEB7;
}

.form-label {
    margin-top: 15px;
    margin-bottom: -10px
}

.card-body-login {
    padding: 20px;
    background-color: whitesmoke;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

card-body-login .g-3 {
    margin: 0px,5px;
}

/*.form-group-login {
    margin-bottom: 20px;
}*/

.form-group {
    margin: 0px;
    margin-bottom: 1px;
    box-sizing: border-box;
}

.form-group-login .text-left {
    text-align: left;
    margin-bottom: 0px;
}

.form-control-login {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 40px;
    margin-bottom: 10px;
}

.form-control-login-password {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 40px;
    width: 85%;
    margin-bottom: 10px;
}

.form-control-form {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 75%;
    height: 40px;
}

.form-control-memo {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 75%;
}

.form-control-check {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 20%;
    height: 40px;
}

.control-check {
    font-size: 12px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 20%;
    height: 25px;
}

input.form-control:not(textarea) {
    height: 40px;
}

.btn-primary-login {
    background-color: #701D83;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #701D83;
    transition: transform 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

    .btn-primary-login:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #701D83;
        transform: scale(1.05);
        transition: transform 0.8s ease;
    }

        .btn-primary-login:hover.text-white {
            color: #701D83
        }

.btn-secondary-login {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    margin: 2.5px 0;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
    transition: transform 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

    .btn-secondary-login:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
        transform: scale(1.05);
        transition: transform 0.8s ease;
    }

    .btn-secondary-login span {
        font-weight: bold;
    }

    .btn-secondary-login:hover.text-white {
        color: #701D83
    }

.btn-third-login {
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: transform 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

    .btn-third-login:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
        transition: transform 0.8s ease;
    }

        .btn-third-login:hover.text-white {
            color: #701D83;
        }

.modal-dialog .btn-send-fe {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
    text-align: center !important;
}

    .modal-dialog .btn-send-fe:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
    }

        .modal-dialog.btn-send-fe:hover.text-white {
            color: #701D83
        }

.modal-dialog .btn-check-fe {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
    text-align: center !important;
}

    .modal-dialog .btn-check-fe:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
    }

        .modal-dialog.btn-check-fe:hover.text-white {
            color: #701D83
        }

.modal-dialog .btn-cancel-fe {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
    text-align: center !important;
}

    .modal-dialog .btn-cancel-fe:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
    }

        .modal-dialog.btn-cancel-fe:hover.text-white {
            color: #701D83
        }

.page-background-login {
    background-size: cover;
    background-image: url("/images/vista-superior-empresarios-reunion.png");
    /*background-repeat: no-repeat;*/
    background-position: center;
}

.datagrid-style {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 2px;
    background-color: ghostwhite;
    margin-bottom: 20px;
    padding: 10px;
}

.text-corporative {
    font-family: 'Work Sans';
}

.info-box {
    border: 2px;
    border-radius: 5px;
    border-style: solid;
    background-color: ghostwhite;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.dashboard-title {
    font-weight: bold;
    /*font-stretch:condensed;*/
    font-size: 24px;
    /*font-style: italic;*/
}

.dashboard-text {
    font-size: 16px;
}

.text-color-corporative-purple {
    color: #701D83;
}

.text-color-corportive-green {
    font: #00FEB7;
}

.card-dashboard {
    border: 5px solid #701D83;
    margin: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

    .card-dashboard:hover {
        border: 5px solid #00FEB7;
        /*margin-top: 30px;
        margin-bottom: 30px;*/
    }

    .card-dashboard > img {
        width: 200px;
    }

.hr-title {
    border-top: 3px solid #701D83;
    border-bottom: 2px solid #701D83;
    padding-top: 0.25rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.title-background-modal {
    /*background-image: linear-gradient(270deg,rgb(112,29,131) 0%, #00FEB7 100%);*/
    background-image: linear-gradient(270deg, #00FEB7 0%,rgb(112,29,131) 100%);
}

.customer-solution {
    padding-bottom: 15px;
}

    .customer-solution button {
        height: 35px;
    }

.customer-solution-title {
    font-size: 32px;
    font-weight: bold;
    /*padding-top: 0.25rem;*/
    /*margin-top: 2rem;*/
    margin-bottom: 1rem;
}

.customer-solution-subtitle {
    font-size: 16px;
    font-weight: bold;
    /*padding-top: 0.25rem;*/
    /*margin-top: 2rem;*/
    margin-bottom: 1rem;
}

.customer-solution-label {
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #701D83;
    background-color: #701D83;
    color: white;
    border-radius: 5px;
    /*width: 165px;*/
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: left;
    padding-left: 10px;
}

.nav-link-2 {
    text-decoration: underline;
    color: white;
}

    .nav-link-2:hover {
        color: #00FEB7;
    }

.nav-link-3 {
    text-decoration: underline;
    color: #0071c1;
}

    .nav-link-3:hover {
        color: #00FEB7;
    }

.customer-solution-label-pack {
    font-size: 12px;
    /*font-weight: bold;*/
    border: 1px solid #701D83;
    background-color: white;
    color: #701D83;
    border-radius: 5px;
    /*width: 165px;*/
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: left;
    padding-left: 10px;
}

.customer-solution-combo {
    height: 35px;
    /*width: 225px;*/
    width: 100%;
}

.rigth-row {
    margin-bottom: 20px;
}

.margin-top {
    margin-top: 20px;
}

.margin-top-captcha {
    margin-top: 22px;
}

.list-data ul {
    margin: 0;
    padding: 0;
}

.list-data li {
    list-style: none;
}

.table-detail tr {
    vertical-align: top;
}

.table-detail th {
    font-style: italic;
    width: 150px;
    vertical-align: top;
}

.table-detail td a {
    padding: 0;
}

.spinner {
    margin: 10px 0;
}

.search-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.entity-detail {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /*border-radius: 10px;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    background-color: ghostwhite;
}

.app-file-picker {
    /*border: 1px solid red;*/
    /*border: 100px,solid,red !important;*/
    /*margin-left: 30px;*/
}

/*Toggle*/
*,
*:before,
*:after {
    box-sizing: border-box;
}

.divider {
    margin-bottom: 20px;
}

.toggle {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.toggle-switch {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 58px;
    height: 32px;
    position: relative;
    vertical-align: middle;
    transition: background 0.25s;
}

    .toggle-switch:before, .toggle-switch:after {
        content: "";
    }

    .toggle-switch:before {
        display: block;
        background: linear-gradient(to bottom, #fff 0%, #eee 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
        width: 24px;
        height: 24px;
        position: absolute;
        top: 4px;
        left: 4px;
        transition: left 0.25s;
    }

.toggle-switch-small {
    display: inline-block;
    background: #ccc;
    border-radius: 16px;
    width: 29px;
    height: 16px;
    position: relative;
    vertical-align: top;
    transition: background 0.25s;
}

    .toggle-switch-small:before, .toggle-switch-small:after {
        content: "";
    }

    .toggle-switch-small:before {
        display: block;
        background: linear-gradient(to bottom, #fff 0%, #eee 100%);
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
        width: 12px;
        height: 12px;
        position: absolute;
        top: 2px;
        left: 2px;
        transition: left 0.25s;
    }

.toggle:hover .toggle-switch:before .toggle-switch-small:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.toggle-checkbox:checked + .toggle-switch {
    background: #00FEB7;
}

    .toggle-checkbox:checked + .toggle-switch:before {
        left: 30px;
    }

.toggle-checkbox:checked + .toggle-switch-small {
    background: #00FEB7;
}

    .toggle-checkbox:checked + .toggle-switch-small:before {
        left: 15px;
    }

.toggle-checkbox {
    position: absolute;
    visibility: hidden;
}

.toggle-label {
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.entity-detail-header {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    /*border-radius: 10px;*/
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /*background-color: ghostwhite;*/
    margin-bottom: 20px;
}

.buttons {
    margin-bottom: 10px;
    margin-top: 10px;
}

    .buttons button {
        margin-right: 5px;
    }

.clear {
    clear: both;
}

.custom-file-label {
    /*opacity: 0;*/
    font-size: 0pt;
}

.modal-dialog button {
    background-color: #701D83;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #701D83;
    text-decoration: none;
}

    .modal-dialog button:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #701D83;
    }

        .modal-dialog button:hover.text-white {
            color: #701D83
        }

.solution-card {
    text-align: center;
    padding: 20px;
}

    .solution-card:hover {
        /*margin-top: 10px;
        margin-bottom: 10px;*/
    }

.solution-card-body {
    border: 5px solid #701D83;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

    .solution-card-body:hover {
        border: 5px solid #00FEB7;
        transform: scale(1.05);
        transition: transform 0.8s ease;
    }

    .solution-card-body img {
        width: 100px;
    }

    .solution-card-body:hover > .solution-card-body-title {
        background-color: #00FEB7;
    }

.solution-card-footer {
    padding-top: 10px;
}

.solution-card-footer-text {
    font-size: 12px;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

.solution-card-inline {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 10px;
}

.info-card {
    text-align: center;
    padding: 20px;
}

    .info-card:hover {
        /*margin-top: 10px;
        margin-bottom: 10px;*/
    }

.info-card-content {
    background-color: antiquewhite;
    border: 5px solid #701D83;
    border-radius: 20px;
    box-shadow: 0px 10px 10px -3px #5B6163;
}

    .info-card-content:hover {
        border: 5px solid #00FEB7;
    }

        .info-card-content:hover > .info-card-title {
            background-color: #00FEB7;
        }

.info-card-body {
    margin-top: 20px;
    font-size: 20px;
    text-align: left;
}

.info-card-footer {
    padding-top: 10px;
}

.info-card-inline {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 10px;
}

.info-card-title {
    display: flex;
    align-items: center;
    color: white;
    background-color: #701D83;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 50px;
}

.info-card-content-text {
    font-size: 20px;
}

.info-card-fixed-heigth {
    height: 250px;
}

.identifier {
    margin-bottom: 10px;
}

.identifier-title {
    font-style: italic;
    font-weight: bold;
    /*text-align: center;
    font-size: 24px;*/
}

.identifier-body {
    color: #999;
}

.social-media {
    margin-top: 10px;
}

.nav-text {
    font-size: 14px
}

.title-logo img {
    width: 150px;
}

  /*  .title-logo img:hover {
        border-radius: 50%;
        box-shadow: 0px 0px 15px 15px rgba(0,0,0,0.02);
        transform: rotate(360deg);
    }*/

.nav-login{
    font-size: 14px;
    display:block;
}

.title-text {
    padding: 1rem;
}

.cursor-hand:hover {
    cursor: pointer;
}

.text-edit-eye {
    display: inline;
    margin-right: 5px;
}

.login-logo {
    margin: 2em;
    text-align: center;
}

.index-link {
    /*border: 5px solid #701D83;*/
    padding: 1rem;
    margin: 1rem;
    border-radius: 15px;
    background-color: #701D83;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
}

    .index-link:hover {
        background-color: #00FEB7;
        transform: scale(1.05);
        transition: transform 0.8s ease;
    }

    .index-link span {
        font-weight: bold;
    }

    .index-link:active {
        transform: translateY(2px);
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    }

.sign-up-title {
    padding: 1rem;
    font-weight: bold;
    font-size: 14pt;
}

.activate-modal {
    /*text-align: center;*/
}

.title-activate-modal {
    background-color: #701D83;
}

.activate-modal .modal-header {
    text-align: center;
}

.activate-modal .modal-title {
    text-align: center;
    width: 100%;
}

.activate-modal .row {
    display: inline-flex;
}

.activate-title {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

.activate-title-2 {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
    color: grey;
}

.activate-data {
    color: black;
    font-weight: bold;
    text-align: left;
    padding-left: 5rem;
    width: 100%;
}

    .activate-data span {
        color: grey;
        font-weight: normal;
        margin-right: 1rem;
    }

.activate-modal .table-detail {
    margin-left: 7.5rem;
}

.gateway {
    width: 10rem;
    text-align: center !important;
}

.plan {
    border: 1px solid #00FEB7;
    border-radius: 15px;
    background-color: #00FEB7;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.plan-title {
    border-bottom: 1px solid white;
    padding: 0.5rem;
}

.plan-header {
    padding: 0.5rem;
    background-color: white;
    font-weight: bold;
}

.plan-body {
    padding: 0.5rem;
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-size: 10pt;
}

.renew {
    border: 1px solid #00FEB7;
    border-radius: 15px;
    background-color: #00FEB7;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.renew-title {
    border-bottom: 1px solid white;
    padding: 0.5rem;
}

.renew-body {
    padding: 0.5rem;
    background-color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-weight: bold;
}

.links {
    margin: 1rem;
}

.model-header-left {
    line-height: 33px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.model-header-rigth {
    height: 100px;
    line-height: 100px;
}

    .model-header-rigth img {
        border: 1px solid #ccc;
    }

.model-header-left-bank {
    font-size: 14pt;
    font-weight: normal;
    font-style: italic;
    color: #666;
}

.model-header-left-iban {
    font-size: 12pt;
    color: #999;
}

.model-header-center {
    line-height: 33px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.general-center-body {
    padding: 10px;
    font-size: 12pt;
    text-align: justify;
    color: #999999;
    margin-left: 50px;
    margin-right: 50px;
}

.vertical-align-center {
    vertical-align: central;
    text-align: center;
}

.modal-header-payment {
    display: inline-block;
    align-content: center;
    position: relative;
}

.modal-header-left-payment {
    line-height: 33px;
    font-size: 20px;
    text-align: center;
    float: left;
    font-weight: bold;
}

.modal-header-rigth-payment {
    line-height: 33px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    float: left;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    height: 50%;
    margin: auto;
}

.modal-text-conditions {
    margin-left: 50px;
    margin-right: 50px;
    text-align: justify;
}

.select-list-consent {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    height: 40px;
}

.header-bank-list {
    width: 100px;
}

.solution-container-apps {
    background-color: #701D83;
    border-radius: 5px;
    padding: 5px 25px 5px 25px;
    margin-bottom: 10px;
    margin-left: 20px;
    text-align: center;
}

    .solution-container-apps:hover {
        color: #701D83;
        background-color: #00FEB7;
        cursor: pointer
    }

.solution-anchor-apps {
    font-size: 14px;
    font-weight: bold;
    color: white;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
}

    .solution-anchor-apps:hover {
        color: white;
    }


.selected {
    color: #701D83;
    background-color: #00FEB7;
}

.left-separator {
    border-left: 2px solid #701D83;
}

.image-card {
    border-radius: 20px;
}

.text-justified {
    text-align: justify;
}

.datagrid-cell-right {
    text-align: right;
    margin-right: 5em;
}

.datagrid-cell-center {
    text-align: center;
}

.spinner-center {
    position: absolute;
    display: block;
    left: 50%;
}

.header-top {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #701D83;
    text-align: right;
}

.language-not-selected {
    background-color: #701D83;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #701D83;
}

    .language-not-selected:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #701D83;
    }

        .language-not-selected:hover.text-white {
            color: #701D83
        }

.language-selected {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
}

    .language-selected:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
    }

        .language-selected:hover.text-white {
            color: #701D83
        }

.format-amount {
    text-align: right;
}

.excel {
    text-align: right;
}

.btn-secondary-excel {
    background-color: #00FEB7;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    color: #343A40;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00FEB7;
}

    .btn-secondary-excel:hover {
        background-color: white;
        color: #701D83;
        border: 1px solid #00FEB7;
    }

        .btn-secondary-excel:hover.text-white {
            color: #701D83
        }

.button-addon-picker {
    margin-left: 10px;
}

.datepicker-payment {
    margin-bottom: 2em;
}

.grid-text-small {
    font-size: 12px;
    margin: 0px;
}

.environment {
    border-top: 1px solid #00FEB7;
    margin-top: 20px;
    padding-top: 20px;
}

.incorrect-label {
    margin-left: 1em;
    margin-bottom: 1em;
    color: red;
}

    .incorrect-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: red; /* Color del punto */
        border-radius: 50%; /* Hace que el punto sea redondo */
        margin-right: 8px; /* Espacio entre el punto y el texto */
    }

.accept-with-errors-label {
    margin-left: 1em;
    margin-bottom: 1em;
    color: orange;
}

    .accept-with-errors-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: orange;
        border-radius: 50%;
        margin-right: 8px;
    }

.cancel-blue-label {
    margin-left: 1em;
    margin-bottom: 1em;
    color: blue;
}

    .cancel-blue-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: blue;
        border-radius: 50%;
        margin-right: 8px;
    }

.pending-send-skyblue-label {
    margin-left: 1em;
    margin-bottom: 1em;
    color: skyblue;
}

    .pending-send-skyblue-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: skyblue;
        border-radius: 50%;
        margin-right: 8px;
    }

.succes-label {
    margin-left: 1em;
    margin-bottom: 1em;
}

    .succes-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: black;
        border-radius: 50%;
        margin-right: 8px;
    }

.succes-green-label {
    margin-left: 1em;
    margin-bottom: 1em;
    color: green
}

    .succes-green-label::before {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        background-color: green;
        border-radius: 50%;
        margin-right: 8px;
    }

.pass-eye {
    position: relative;
    left: 245px;
    bottom: 30px;
}

    .pass-eye:hover {
        cursor: pointer;
    }

.pass-eye-signup {
    position: relative;
    left: 80px;
    top: 30px;
}

    .pass-eye-signup:hover {
        cursor: pointer;
    }

.payment-validation {
    padding: 2em 8em 2em 8em;
}

.modal-dialog .reject-container {
    background-color: aliceblue;
    margin: 30px;
    border: 1px solid aliceblue;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.02);
}

.modal-dialog .reject-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.modal-dialog .reject-content {
    margin-top: 15px;
    text-align: center;
    padding: 15px;
}

.modal-dialog .info-container {
    background-color: #fcf2e8;
    margin: 30px;
    border: 1px solid #fcf2e8;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.02);
}

.modal-dialog .info-title {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.modal-dialog .info-content {
    margin-top: 15px;
    text-align: center;
}

.image-qr {
    width: 120px;
}

.cell-grid-center {
    display: flex;
    justify-content: center;
}

.bg-secondary {
    background-color: #00FEB7 !important;
}

.row .row-sign-up{
    margin: 0px;
}

.form-label.label-sign-up{
    margin-top: 0px;
}

.btn-rigth{
    margin-inline: 5px;
}

.indeterminate-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    overflow: hidden;
    z-index: 9999;
    display: none;
}

    .indeterminate-bar.active {
        display: block;
    }

    .indeterminate-bar::before {
        content: '';
        position: absolute;
        height: 100%;
        width: 30%;
        background: #0d6efd;
        animation: loading 1.2s infinite ease-in-out;
    }

@keyframes loading {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.page-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9998;
    display: none;
}

    .page-blocker.active {
        display: block;
    }

.chat-layout .chat-header{
    gap:0px !important;
}