:root {
    --redPrimary: rgb(239, 51, 64);
    --redSecondary: rgb(195, 17, 30);
    --redThird: rgba(166, 62, 57, 1);
    --bluePrimary: rgba(0, 80, 221, 1);
    --blueSecondary: rgba(4, 43, 111, 1);
    --blueThird: rgba(78, 134, 232, 1);
    --blueFouth: rgb(25, 55, 90);
    --blueFive: rgba(62, 77, 157, 1);
    --blueSix: rgba(25, 55, 90, 1);
    --blueGray: rgba(62, 91, 144, 0.44);
    --bluePrimaryDegraded: rgba(0, 80, 221, 0.2);
    --grayPrimary: rgb(124, 123, 123);
    --graySecond: rgba(112, 112, 112, 0.25);
    --grayThrid: rgb(225, 230, 235);
    --blackPrimary: rgba(0, 0, 0, 1);
    --grayFour: rgba(134, 150, 168, 1);
    --orangePrimary: rgb(232, 132, 31);
    --orangeSecondary: rgba(238, 125, 61, 1);
    --primaryGreen: rgb(77, 172, 162);
    --secondGreen: rgba(73, 165, 78, 1);
}

/* font Family --> Monserrat */
@font-face {
    font-family: "Monserrat-thin";
    src: url("../fonts/Montserrat-Thin.ttf");
}

@font-face {
    font-family: "Monserrat-bold";
    src: url("../fonts/Montserrat-Bold.ttf");
}

@font-face {
    font-family: "Monserrat-semiBold";
    src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: "Monserrat-medium";
    src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
    font-family: "IvyMode-SemiBold";
    src: url("../fonts/IvyMode-SemiBold.ttf");
}

html,
body {
    font-family: "Monserrat-medium", sans-serif !important;
}

section.title-name.text-center {
    color: #1959c7;
    margin-top: 40px;
    margin-bottom: 25px;
}

    section.title-name.text-center > div > h1 {
        font-size: 50px;
    }

.footer-body > ul > li > a {
    text-decoration: none;
    color: white;
}

.footer-body > ul {
    list-style-type: none;
    font-size: 13px;
}

#sticky-footer {
    padding: 0px 30px 0px 30px;
    background-color: #0050dd;
}

.footer-body > ul > li > strong {
    font-size: 20px;
}

.footer-body {
    font-size: 12px;
}

.degraded-blue-primary h1 {
    color: #1959c7;
    font-size: 40px;
    font-family: "IvyMode-SemiBold", sans-serif;
    text-shadow: 0px 3px 6px #00000029;
}

.waves {
    position: relative;
    width: 100%;
    height: 1vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 20px;
    max-height: 10px;
}

.bottom-foot {
    font-size: 13px;
}

.wsServicios {
    font-family: "Monserrat-medium";
    background-color: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    border: 1px solid #c4c4c4;
    /*opacity: 0.93;*/
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 58%;
    padding-bottom: 5px;
    padding-top: 5px;
}

.wsServicios p {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
}

/*Header*/
header {
    padding: 20px 30px 20px 5px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.header-container div a img{
    width: 100%;
}

form .input-group-append button {
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 0px !important;
}

.btn-outline-secondary {
    background-color: var(--bluePrimary) !important;
    border-color: var(--graySecond) !important;
}

/* Custom button input */
.custom-button-input .input-group {
    width: auto !important;
}

.custom-button-input input,
.custom-button-input button,
.custom-button-input a {
    height: 28px !important;
}

.custom-button-input .input-group-append {
    height: 28px !important;
}

.custom-button-input input {
    max-width: 162px;
    width: auto !important;
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px !important;
}

.custom-button-input span {
    text-align: center !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    width: 28px !important;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

/* Table */
.dataTables_scrollHeadInner {
    margin: auto;
}

.dataTables_scrollBody table {
    margin: auto;
}

.dataTables_wrapper {
    width: 100%;
    margin: auto;
}

table {
    width: 100% !important;
    height: 100%;
    min-width: auto !important;
    border-spacing: 0 !important;
    border: none !important;
    margin-top: 0 !important;
    box-shadow: 0px 1px 3px rgba(69, 69, 69, 0.11) !important;
}

    table thead tr th,
    table tbody tr td {
        text-align: center;
    }

    table td {
        text-wrap: nowrap;
    }

tr:first-child th:first-child {
    border-top-left-radius: 6px;
}

tr:first-child th:last-child {
    border-top-right-radius: 6px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}

table thead {
    border-radius: 6px;
    background-color: var(--bluePrimary);
}

    table thead tr th {
        font-family: "Monserrat-semiBold";
        font-size: 12px;
        color: white !important;
        padding-top: 12px;
        padding-bottom: 12px;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background-color: white !important;
}

table.table-striped {
    border-spacing: inherit !important;
}

/* DataTable JQuery  */
table.dataTable {
    overflow-wrap: break-word !important;
    border-collapse: collapse !important;
    margin: auto;
}

table th {
    text-wrap: nowrap;
}

.dt-buttons.btn-group {
    display: none;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    content: "\21C5";
    color: white;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    content: " ";
}

table tbody tr td {
    width: auto !important;
    padding: 10px 12px !important;
    font-family: "Monserrat-medium";
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    color: var(--blueFouth);
    border-style: none solid solid none !important;
    border: 0.5px solid var(--graySecond) !important;
}

    table tbody tr td:last-child {
        width: 1% !important;
    }

.table-bordered th {
    border: 0px solid #dee2e6;
}

.custom-btn-actions-table {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    color: var(--bluePrimary);
    text-wrap: nowrap;
    margin-right: 22px;
    cursor: pointer;
}

    .custom-btn-actions-table span {
        color: var(--bluePrimary);
    }

    .custom-btn-actions-table svg {
        width: 20px;
        height: 19px;
        color: var(--bluePrimary) !important;
    }

/* custom-tab-pane */
.custom-tab-pane {
    padding: 20px 26px;
}

    .custom-tab-pane .nav-tabs {
        border: none;
        border-bottom: 1px solid var(--grayThrid);
    }

        .custom-tab-pane .nav-tabs .nav-item {
            margin: 0;
        }

    .custom-tab-pane .tab-content {
        margin-top: 8px;
    }

    .custom-tab-pane .nav-link {
        background-color: white !important;
        color: var(--blueSix) !important;
        padding: 0 !important;
        border: none !important;
        padding-bottom: 8px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
    }

        .custom-tab-pane .nav-link:first-child {
            margin-right: 44px !important;
        }

        .custom-tab-pane .nav-link.active {
            border-bottom: 4px solid var(--bluePrimary) !important;
        }

    .custom-tab-pane .tab-content {
        border: none;
        padding: 0;
        margin-top: 28px;
    }

        .custom-tab-pane .tab-content .dataTables_length {
            display: none;
        }

    .custom-tab-pane table {
        border: none !important;
    }

        .custom-tab-pane table tfoot {
            display: none;
        }

.table-responsive {
    overflow: hidden !important;
}

    .table-responsive .dataTables_wrapper {
        display: flex;
        flex-flow: column;
    }

        .table-responsive .dataTables_wrapper div {
            justify-content: end;
        }

            .table-responsive .dataTables_wrapper div:first-child div:last-child {
                min-width: max-content;
            }

            .table-responsive .dataTables_wrapper div:nth-child(2) {
                max-width: inherit;
                width: 100%;
                overflow: hidden;
                overflow-x: auto;
            }

.custom-tab-pane > .dataTables_wrapper :nth-child(3) {
    margin-top: 12px;
}

.btn-alertas-registrales {
    width: 100%;
}
/* DataTable Input */
.dataTables_wrapper label {
    position: relative;
    display: flex;
    justify-content: end;
    flex-wrap: wrap-reverse;
    width: inherit;
    display: flex;
    align-content: center;
    align-items: center;
}

/* .dataTables_wrapper label::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='white' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607z' /%3E%3C/svg%3E");
  width: 32px;
  height: 31.5px;
  background-size: 65%;
  background-position-y: 6px;
  background-position-x: 5px;
  background-repeat: no-repeat;
  font-size: 12px;
  background-color: var(--bluePrimary);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
} */

.dataTables_wrapper table {
    overflow: hidden;
    overflow-x: auto;
    max-width: inherit;
}

.btn-primary {
    background-color: var(--bluePrimary) !important;
    border-color: var(--graySecond) !important;
}

.input-group .btn {
    font-size: 14px;
    border: none;
    width: 40px;
}

/* Form Stepper */
.custom-form-step {
    max-width: inherit;
    width: 100%;
    padding: 0px 26px;
    margin: auto;
}

    .custom-form-step .steps {
        height: 70px !important;
    }

    .custom-form-step .well {
        background: #ffffff 0% 0% no-repeat padding-box;
        box-shadow: 0px 1px 3px #4545451d;
        border: 0.5px solid #17212b26;
        border-radius: 6px;
        color: #707070;
        overflow: hidden;
        max-height: 297px;
        height: 100% !important;
        padding-top: 28px !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
        font-family: "Montserrat-Medium" !important;
        font-weight: normal !important;
        overflow-y: auto !important;
        margin-top: 28px !important;
    }

    .custom-form-step .steps.clearfix,
    .custom-form-step .content.clearfix {
        background-color: #ffffff;
        box-shadow: 0px 1px 3px #4545451d;
        border: 0.5px solid #17212b26;
        border-radius: 6px;
        padding-left: 26px;
        padding-right: 33px;
    }

    .custom-form-step .steps.clearfix {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-bottom: 0;
    }

    .custom-form-step .content.clearfix {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        border-top: 0;
    }

    .custom-form-step .actions.clearfix {
        padding-top: 11px;
    }

    .custom-form-step .steps.clearfix ul {
        display: flex;
        align-items: center;
        align-content: center;
        height: 60px;
        margin-top: 5px;
    }

        .custom-form-step .steps.clearfix ul li {
            position: relative;
            display: flex;
            opacity: 0.5;
        }

    .custom-form-step.subsanar .steps.clearfix ul li {
        position: relative;
        display: flex;
        opacity: 0.5;
        width: 100% !important;
    }

        .custom-form-step.subsanar .steps.clearfix ul li:last-child {
            position: relative;
            display: flex;
            opacity: 1;
            width: 0 !important;
        }

    .custom-form-step .steps.clearfix ul li::after {
        content: " ";
        position: relative;
        width: 100%;
        height: 1px;
        border-bottom: 2px solid var(--bluePrimary);
        z-index: 0;
    }

    .custom-form-step.subsanar .steps.clearfix ul li:last-child:after {
        content: " ";
        position: relative;
        width: 0;
        height: 1px;
        border-bottom: 2px solid var(--bluePrimary);
        z-index: 0;
    }

    .custom-form-step .steps.clearfix ul li a {
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: start;
        white-space: nowrap;
        font-family: "Monserrat-semiBold";
        font-size: 12px;
        color: var(--bluePrimary);
        margin: 0;
        margin-top: 18px;
        padding: 0;
    }

    .custom-form-step.subsanar .steps.clearfix ul li:last-child > a {
        position: absolute;
        left: -79px;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: start;
        white-space: nowrap;
        font-family: "Monserrat-semiBold";
        font-size: 12px;
        color: var(--bluePrimary);
        margin: 0;
        margin-top: 18px;
        padding: 0;
    }

    .custom-form-step .steps.clearfix ul li a .current-info.audible {
        display: none;
    }

    .custom-form-step .steps.clearfix ul li.current {
        opacity: 1;
    }

        .custom-form-step .steps.clearfix ul li.current::after {
            opacity: 0.5;
        }

    .custom-form-step.subsanar .steps.clearfix ul li.disabled:last-child a {
        opacity: 0.5 !important;
    }

    .custom-form-step .steps.clearfix ul li.done {
        opacity: 1;
    }

    .custom-form-step.subsanar .steps.clearfix ul li.done:last-child a {
        opacity: 1 !important;
    }

    .custom-form-step .steps.clearfix ul li.done::after {
        opacity: 1;
    }

    .custom-form-step.subsanar .steps.clearfix ul li.done:last-child > a {
        opacity: 0.5 !important;
    }

    .custom-form-step .steps.clearfix ul li.done::after {
        opacity: 1;
    }

    .custom-form-step .steps.clearfix ul li.current a {
        border-bottom: none !important;
    }

    .custom-form-step .steps.clearfix ul li a .number {
        position: absolute;
        top: -28.5px;
        left: 0;
        width: 22px;
        height: 22px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-family: "Monserrat-semiBold" !important;
        font-size: 10px;
        color: white;
        border-radius: 100%;
        background-color: var(--bluePrimary);
        z-index: 1;
        margin-right: 4px;
    }

    .custom-form-step.subsanar .steps.clearfix ul li:last-child > a .number {
        position: absolute;
        top: -28.5px;
        left: 57px;
        width: 22px;
        height: 22px;
        display: flex !important;
        justify-content: center;
        align-items: center;
        font-family: "Monserrat-semiBold" !important;
        font-size: 10px;
        color: white;
        border-radius: 100%;
        background-color: var(--bluePrimary);
        z-index: 1;
        margin-right: 4px;
    }

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
    background: var(--redPrimary);
    color: #fff;
    color: white !important;
    border-radius: 4px;
    padding-left: 6px !important;
    padding-right: 6px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    font-weight: lighter;
}

.custom-form-step .wizard > .content {
    min-height: fit-content;
    margin: 0;
}

.custom-form-step .form-group {
    justify-content: start;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
}

span.k-dropdown {
    width: 100%;
    max-width: 368px;
    max-height: 32px;
    height: 100%;
}

.k-dropdown .k-state-default {
    background-color: white;
    border: 1px solid var(--graySecond);
    border-radius: 4px;
}

.k-i-arrow-60-down:before {
    content: " ";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor' class='w-6 h-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A") no-repeat 100%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-size: 12px;
}

.custom-form-step .wizard > .actions li.disabled a[href="#previous"] {
    background-color: var(--bluePrimary) !important;
    border-color: var(--bluePrimary) !important;
    color: white !important;
    opacity: 0.5;
}

.custom-form-step .wizard > .actions li a[href="#previous"] {
    background-color: var(--bluePrimary) !important;
    border-color: var(--bluePrimary) !important;
    color: white !important;
}

.custom-form-step .wizard > .actions li a[href="#next"] {
    background-color: var(--bluePrimary) !important;
    border-color: var(--bluePrimary) !important;
}

.custom-form-step legend {
    font-size: 12px;
    font-weight: 600;
    color: var(--blueSix);
    font-family: "Monserrat-medium";
}

/*Dropdownlist*/
.custom-dropd {
    cursor: pointer;
}

    .custom-dropd:hover {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.05) !important;
    }

/* custom-add-btn */

a.custom-add-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--bluePrimary) !important;
    border-color: var(--bluePrimary) !important;
    border-radius: 4px !important;
    height: 40px !important;
    width: 43px !important;
    padding: 10px 8px !important;
    margin-right: 8px;
}

    a.custom-add-btn svg {
        margin: 0px;
        color: white !important;
        width: 24px;
        height: 32px;
        stroke-width: 1.5px;
        opacity: 1;
    }

    a.custom-add-btn label {
        cursor: pointer;
        color: white;
        margin-bottom: 0 !important;
    }

.row.td-row {
    float: left;
    width: 70%;
}

.btn-prod {
    width: 70px;
    height: 65px;
    font-size: 30px;
}


/*Menu*/
.nav-menu {
    background-color: #0050dd;
    display: flex;
    justify-content: center;
    width: 100vw;
    margin: 0;
}

.menu-container {
    /* padding-left: 10%;
        padding-right: 10%; */
}

.menu-bar {
    margin: 0px 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 0px;
}

    .menu-bar .menu-item {
        /*padding:1px;*/
        padding: 12px 13px;
    }

.menu-bar .menu-item a {
    text-decoration: none;
    color: white;
    font-family: "Monserrat-semiBold" !important;

}

.menu-bar .menu-item:hover {
    background-color: #072340;
    padding: 12px 13px;
    border-radius: 12px;
}


/*Imag*/
.app__imag-content {
    display: flex;
    justify-content: center;
}

.card-Apliccion-movil{
    width: 85% !important;
}

.card-section {
    display: flex;
    justify-content: center;
}

.app-ri-movil-img {
    width: 85%;
    height: 105vh !important;
    margin-bottom: 2%;
    -webkit-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 12px -2px rgba(0,0,0,0.75);
}

.header__image-catalog {
    
    width: 100%;
    height: 25vh !important;
}

.main__header-img {
    top: 2px;
    position: relative;
}

.sobreposition {
    position: relative;
    top: 80%; 
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}

.main__catalog-container{
    padding-top: 0px !important;
}