﻿
.grid-row-hover td {
    background-color: #d5e8fd;
}

    .grid-row-hover td:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .grid-row-hover td:last-child {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }



.icon-button {
    display: flex;
    align-items: center; /* centra verticalmente */
    justify-content: center; /* centra horizontalmente */
    padding: 0; /* elimina padding extra */
    text-decoration: none !important;
}


.panel-heading .dropdown-menu {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    border-radius: 6px !important;
    padding: 5px 0 !important;
    background-color: #fff !important;
    min-width: 160px;
}

    /* Estilos base */
    .panel-heading .dropdown-menu > li > a {
        padding: 10px 15px;
        font-size: 14px;
        color: #333;
        transition: background-color 0.2s, color 0.2s;
    }

        /* Nuevo estilo hover con fondo azul y texto blanco */
        .panel-heading .dropdown-menu > li > a:hover {
            background-color: #007CC3;
            color: #fff;
        }

            /* Asegura que el ícono también se vuelva blanco */
            .panel-heading .dropdown-menu > li > a:hover i {
                color: #fff;
            }

    /* Separador */
    .panel-heading .dropdown-menu .divider {
        margin: 6px 0;
        height: 1px;
        background-color: #e5e5e5;
    }



.container-fluid {
    max-width: 2000px !important;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


.btn.dropdown-toggle {
    background: none;
    border: none;
    font-size: 20px;
}

    .btn.dropdown-toggle:hover,
    .btn.dropdown-toggle:focus {
        background: none;
        box-shadow: none;
    }


.message {
    padding: 6px 8px;
    margin: 5px 0;
    border-radius: 10px;
    max-width: 80%;
    word-wrap: break-word;
}

    .message.sent {
        background-color: white;
        color: black;
        text-align: right;
        margin-left: auto;
    }

    .message.received {
        background-color: #007bff;
        color: white;
        text-align: left;
        margin-right: auto;
    }




.ps-container_2 {
    padding: 20px;
    max-width: 1200px;
}


.ps-container {
    padding:20px;
}

.admin-min-width {
    min-width: 850px;
}

.admin-min-width .modal-2,
.admin-min-width .modal-2-center {
    min-width: 850px;
}


.mi-link {
    color: #333; /* Color por defecto */
    text-decoration: none; /* Sin subrayado */
}

    .mi-link:hover,
    .mi-link:focus {
        color: #007bff; /* Cambia el color en hover y foco */
        text-decoration: none; /* Opcional: añadir subrayado */
    }


#chat {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
    background-color: #f9f9f9;
}

#messages {
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
}

#input {
    display: flex;
}

    #input textarea {
        flex: 1;
        resize: none;
    }

    #input button {
        margin-left: 5px;
    }



.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px; /* Ajusta el ancho según lo desees */
    height: 40px; /* Aumenté la altura */
    margin: 20px;
}

.line {
    flex: 1;
    height: 2px; /* Líneas más gruesas */
    background-color: lightgray;
}

    .line.active {
        background-color: #0092cb;
    }

.circle {
    width: 20px; /* Círculos más grandes */
    height: 20px; /* Círculos más grandes */
    border-radius: 50%;
    background-color: lightgray;
    position: relative;
}

    .circle.active {
        background-color: #0092cb;
    }

    .circle span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 12px; /* Texto más grande */
        color: white;
    }

.label {
    text-align: center;
    font-size: 14px; /* Etiquetas más grandes */
    margin-top: 5px;
}




.ps-accordion {
    display: block;
    transition: max-height 0.5s ease-out;
    overflow: hidden;
    max-height: 100%;
}

.parpadea {
    font-weight: bold;
    animation: parpadeo 0.5s steps(1) infinite;
}

@keyframes parpadeo {
    0% {
        visibility: visible;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

.ps-validator {
    color: red;
    font-weight: normal;
    font-size: 14px;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-webkit-textfield-decoration-container {
    display: none;
}


.iconsportal {
    color: black;
    font-size: 13px;
    font-family: Arial;
}


a.iconsportal {
    outline: none;
    text-decoration: none;
    color: black;
}

    a.iconsportal:link {
        color: black;
    }

    a.iconsportal:visited {
        color: black;
    }

    a.iconsportal:hover {
        color: #337ab7;
        text-decoration: underline;
    }

    a.iconsportal:active {
        color: black;
    }


.iconsportalwhite {
    color: white;
    font-size: 13px;
    font-family: Arial;
    text-decoration: none;
}


a.iconsportalwhite {
    outline: none;
    color: white;
}

    a.iconsportalwhite:link {
        color: white;
    }

    a.iconsportalwhite:visited {
        color: white;
    }

    a.iconsportalwhite:hover {
        color: white;
        text-decoration:underline;
    }

    a.iconsportalwhite:active {
        color: white;
    }



.ps-update-content {
    background-color: rgba(51, 51, 51, 0.5);
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 99998;
}

.ps-update {
    margin: auto;
    font-size: medium;
    vertical-align: middle;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -100px;
    text-align: center;
    background-color: #ffffff;
    height: 228px;
    width: 248px;
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    z-index: 99999;
}

    .ps-update img {
        width: 32px;
        height: 32px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 32px;
    }




.ps-items-content {
    background-color: transparent;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}


.ps-item {
    position: relative;
    border: 1px solid #CCC;
    border-radius: 15px;
    background-color: white;
    -webkit-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    float: left;
    overflow: hidden;
    margin: 5px;
}


.ps-text-left {
    text-align: left;
    padding: 4px;
}

.ps-text-right {
    text-align: right;
    padding: 4px;
}

.ps-text-center {
    text-align: center;
    padding:4px;
}




.password-icon {
    float: left;
    position: relative;
    left: 260px;
    margin: -27px 0 0 -18px;
    padding-right: 4px;
    cursor: pointer;
    color:#464646;
}

.password-icon-left {
    float: left;
    position: relative;
    margin: -38px 0 0 -15px;
    cursor: pointer;
    color: #464646;
    left: 100%;
}

.ps-password-field {
    position: relative;
}

.ps-password-field .form-control {
    padding-right: 24px;
}

.ps-password-field .password-icon-left {
    float: none;
    position: absolute;
    top: 50%;
    right: 4px;
    left: auto;
    margin: 0;
    transform: translateY(-50%);
    cursor: pointer;
    color: #464646;
}



.ps-node{
    color: black;
    background-color: white;
    text-decoration: none;
}

.ps-node:hover {
    color: #155f8e;
    background-color: white;
    font-weight: bold;
    text-decoration: none;
}

.ps-node:focus {
    color: black;
    background-color: white;
    text-decoration: none;
}

.ps-node:active {
    color: #155f8e;
    background-color: white;
    text-decoration: none;
}

.ps-node:visited {

    background-color: white;
    text-decoration: none;
}

.ps-node:disabled,
.ps-node[disabled] {
    color: gray;
    background-color: white;
    text-decoration: none;
}







.ps-button-repeat:hover {
    color: white;
    background-color: #168de8;
    transition: 0.7s;
    background-position: 0 -15px;
}

.ps-button-repeat:focus {
    color: white;
    background-color: #168de8;
    background-position: 0 -15px;
}

    .ps-button-repeat:active {
        background-color: #168de8;
    }

    .ps-button-repeat:disabled,
    .ps-button-repeat[disabled] {
        border: none;
        background-color: #d4e5ef;
        color: white;
    }



.ps-button-admin-menu {
    height: 33px;
    color: black;
    background-color: white;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    min-width: 30px;
}

    .ps-button-admin-menu:hover {
        color: white;
        background-color: #CCC;
        transition: 0.7s;
        border: none;
    }







.ps-button-admin-white {
    height: 33px;
    color: black;
    background-color: white;
    border: 1px solid gray;
    border-radius: 0px;
    font-size: 14px;
    min-width: 30px;
}

    .ps-button-admin-white:hover {
        color: white;
        background-color: #155f8e;
        transition: 0.7s;
        background-position: 0 -15px;
    }


    .ps-button-admin-white:active {
        background-color: white;
    }

   



.ps-button-admin {
    height: 33px;
    color: white;
    background-color: #1da7ff;
    border: none;
    border-radius: 0px;
    font-size: 14px;
    min-width: 30px;
}

    .ps-button-admin:hover {
        color: white;
        background-color: #155f8e;
        transition: 0.7s;
        background-position: 0 -15px;
    }
/*
    .ps-button-admin:focus {
        color: white;
        background-color: #1da7ff;
        background-position: 0 -15px;
    }*/

   /* .ps-button-admin:active {
        background-color: #1da7ff;
    }*/

    .ps-button-admin.active {
        background-color: #083856; /* o el color que quieras */
        color: white;
    }


    .ps-button-admin:disabled,
    .ps-button-admin[disabled] {
        border: none;
        background-color: #d4e5ef;
        color: white;
    }


.ps-button-msg {
    height: 40px;
    width: 120px;
    color: black;
    background-color: white;
    border: 1px solid #dddddd;
    border-radius: 0px;
    font-size: 14px;
}

    .ps-button-msg:hover {
        border: none;
        color: white;
        background-color: #1da7ff;
        transition: 0.7s;
        background-position: 0 -15px;
    }

    .ps-button-msg:focus {
        border: none;
        color: white;
        background-color: #1da7ff;
        background-position: 0 -15px;
    }

    .ps-button-msg:active {
        border: none;
        background-color: #1da7ff;
    }




.ps-button-msg-yes {
    height: 40px;
    width: 120px;
    color: white;
    background-color: #1da7ff;
    border: 1px solid #dddddd;
    border-radius: 0px;
    font-size: 14px;
}

    .ps-button-msg-yes:hover {
        border: none;
        color: white;
        background-color: #155f8e;
        transition: 0.7s;
        background-position: 0 -15px;
    }

    .ps-button-msg-yes:focus {
        border: none;
        color: white;
        background-color: #155f8e;
        background-position: 0 -15px;
    }

    .ps-button-msg-yes:active {
        border: none;
        background-color: #155f8e;
    }



.icon-style1 {
    color: white !important;
    filter: invert(100%) sepia(4%) saturate(7494%) hue-rotate(266deg) brightness(104%) contrast(105%);
    width: 24px;
    height: 24px;
}

    .icon-style1:hover {
        filter: invert(100%) sepia(61%) saturate(5914%) hue-rotate(173deg) brightness(98%) contrast(81%);
        -webkit-transform: scale(1.25);
        -moz-transform: scale(1.25);
        -ms-transform: scale(1.25);
        -o-transform: scale(1.25);
        transform: scale(1.25);
    }



/* navbar */
.navbar-ps {
    position: relative;
    z-index: 50;
    overflow: visible;
    border: 0;
    border-radius: 0px;
    background-color: var(--nav-background-color) !important;
}

.navbar-collapse {
    background-color: var(--nav-background-color) !important;
}


.navbar-ps .navbar-toggle .icon-bar {
    background-color: var(--nav-color) !important;
}


.navbar-toggle {
    border: 0;
    border-radius: 0px;
}


.navbar-ps a {
    font-family: "Segoe UI", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4;
    color: var(--nav-color) !important;
    background-color: transparent !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.navbar-ps .navbar-nav > li > a:hover,
.navbar-ps .navbar-nav > li > a:focus,
.navbar-ps .navbar-nav > li.open > a,
.navbar-ps .navbar-nav > li.open > a:hover,
.navbar-ps .navbar-nav > li.open > a:focus {
    color: #168de9 !important;
    background-color: transparent !important;
    text-shadow: none !important;
}


.navbar-image {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-right {
    padding-top: 30px !important;
}


@media (max-width: 1400px) {
    .navbar-brand {
        zoom: 70%;
    }

    .navbar-right {
        padding-top: 0px !important;
    }
}

@media (max-width: 1400px) {
    .navbar-ps {
        min-height: 112px !important;
        margin-bottom: 8px !important;
    }

    .navbar-ps .navbar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        float: none;
        min-height: 112px;
    }

    .navbar-ps .navbar-collapse.collapse {
        display: none !important;
        height: auto !important;
        overflow: visible !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-ps .navbar-collapse.collapse.in {
        display: block !important;
    }

    .navbar-ps .navbar-nav {
        float: none !important;
        margin: 0 0 16px;
    }

    .navbar-ps .navbar-nav > li {
        float: none;
    }

    .navbar-ps .navbar-right {
        float: none !important;
        padding-top: 0 !important;
    }

    .navbar-ps .navbar-brand {
        display: flex;
        align-items: center;
        height: 112px;
        padding: 8px 15px !important;
        zoom: 100%;
    }

    .navbar-ps .navbar-brand img {
        height: 70px !important;
        width: auto;
    }

    .navbar-ps .navbar-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        margin-top: 0 !important;
        margin-right: 15px;
        margin-bottom: 0 !important;
        margin-left: auto;
        padding: 0;
        border-radius: 4px;
    }

    .navbar-ps .navbar-toggle .icon-bar {
        width: 28px;
        height: 3px;
        margin: 0 auto;
        border-radius: 999px;
    }

    .navbar-ps .navbar-nav > li > a.dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
    }

    .navbar-ps .navbar-nav > li > a.dropdown-toggle .caret {
        margin-left: 0;
    }

    .navbar-ps .navbar-nav .open .dropdown-menu {
        padding-top: 0;
        padding-bottom: 0;
    }

    .navbar-ps .navbar-nav .open .dropdown-menu > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 29px;
        line-height: 1.35;
    }

    .navbar-ps .navbar-collapse .navbar-nav {
        margin-bottom: 16px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .footer .about-company {
        margin-bottom: 46px;
    }

    .footer .col-md-3 {
        margin-bottom: 38px;
    }

    .footer .col-md-3 h4 {
        margin-bottom: 18px;
    }

    .footer .col-md-3 h4 + p,
    .footer .col-md-3 h4 + p ~ p {
        padding-left: 18px;
        margin-bottom: 14px;
    }

    .footer [id$="UpdatePanelCookies"] {
        padding-left: 18px;
    }
}




.ps_default_titulo {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 66pt;
    font-weight: 600;
    color: black;
    letter-spacing: 1px;
    line-height: 76pt;
}


.ps_default_titulo_section {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 46pt;
    font-weight: 600;
    color: black;
    letter-spacing: 1px;
    line-height: 56pt;
}



.ps-new {
    border: 1px solid #CCC;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    float: left;
    width: 100%;
    max-width: 370px;
    min-height: 150px;
    margin: 5px;
}



.ps-new-t {
    color: black;
    font-size: 14px;
    margin: 0 0 0 0;
    font-weight: 300;
    text-align: left;
    padding: 10px;
}

    .ps-new-t h2 {
        color: #4f4d4d;
        font-size: 18px;
        margin: 0 0 0 0;
        font-weight: 600;
        text-align: left;
    }

    .ps-new-t p {
        color: #4f4d4d;
        font-size: 14px;
        margin: 0 0 0 0;
        font-weight: 300;
        text-align: left;
    }





.rootNodea {
    color: black;
    font-weight: bold;
}


.treeNodea {
    text-decoration: none !important;
    color: black;
    font-weight: bold;
}


.leafNodea {
    color: black;
    text-decoration: none !important;
    font-weight: normal;
}




.rootNode {
    width: 100%;
    color: black;
    font-weight: bold;
}


.treeNode {
    transition: all 1s;
    padding: 2px;
    text-align: left;
    width: 100%;
    text-decoration: none !important;
    color: black;
    font-weight: bold;
}


.leafNode {
    /*    border-bottom: Dotted 1px #cfcdcd;*/
    color: black;
    font-weight: normal;
}


/*
.selectNode {
    background-color: Black;
    border: Dotted 1px black;
    font-weight: bold;
    color: red;
}

*/


.pagination-ys {
    /*display: inline-block;*/
    padding-left: 0;
    border-radius: 4px;
}

    .pagination-ys table {
        margin-top: 15px;
    }


        .pagination-ys table > tbody > tr > td {
            padding-top: 10px;
            display: inline;
        }

            .pagination-ys table > tbody > tr > td > a,
            .pagination-ys table > tbody > tr > td > span {
                position: relative;
                float: left;
                padding: 8px 12px;
                line-height: 1.42857143;
                text-decoration: none;
                color: #696969;
                background-color: #ffffff;
                border: 1px solid #dddddd;
                margin-left: -1px;
            }

            .pagination-ys table > tbody > tr > td > span {
                position: relative;
                float: left;
                padding: 8px 12px;
                line-height: 1.42857143;
                text-decoration: none;
                margin-left: -1px;
                z-index: 2;
                color: white;
                background-color: #1da7ff;
                border-color: #1da7ff;
                cursor: default;
            }

            .pagination-ys table > tbody > tr > td:first-child > a,
            .pagination-ys table > tbody > tr > td:first-child > span {
                margin-left: 0;
                border-bottom-left-radius: 4px;
                border-top-left-radius: 4px;
            }

            .pagination-ys table > tbody > tr > td:last-child > a,
            .pagination-ys table > tbody > tr > td:last-child > span {
                border-bottom-right-radius: 4px;
                border-top-right-radius: 4px;
            }

            .pagination-ys table > tbody > tr > td > a:hover,
            .pagination-ys table > tbody > tr > td > span:hover,
            .pagination-ys table > tbody > tr > td > a:focus,
            .pagination-ys table > tbody > tr > td > span:focus {
                color: white;
                background-color: #155f8e;
                border-color: #155f8e;
                transition: 0.7s;
            }






.boton-transparent {
    border-radius: 25px;
    display: inline-block;
    height: 80px;
    padding-right: 40px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 16pt;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    background-color: transparent;
}

    .boton-transparent:hover,
    .boton-transparent:active {
        background-color: white;
        color: #000;
        transition: background-color 0.6s ease-in, color 0.6s ease-in;
    }



.boton-transparent-black {
    border-radius: 15px;
    display: inline-block;
    height: 60px;
    min-width: 200px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: black;
    border: 1px solid black;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 14pt;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    background-color: transparent;
}

    .boton-transparent-black:hover,
    .boton-transparent-black:active {
        background-color: black;
        color: white;
        transition: background-color 0.6s ease-in, color 0.6s ease-in;
    }




.ps-div-zoom {
    zoom: 100%;
}

@media screen and (max-width: 790px) {
    .ps-div-zoom {
        zoom: 90%;
    }
}

@media screen and (max-width: 690px) {
    .ps-div-zoom {
        zoom: 80%;
    }
}

@media screen and (max-width: 590px) {
    .ps-div-zoom {
        zoom: 70%;
    }
}

@media screen and (max-width: 490px) {
    .ps-div-zoom {
        zoom: 60%;
    }
}

@media screen and (max-width: 390px) {
    .ps-div-zoom {
        zoom: 50%;
    }
}

@media screen and (max-width: 330px) {
    .ps-div-zoom {
        zoom: 30%;
    }
}




.ps-div-zoom-1 {
    zoom: 100%;
}


@media screen and (max-width: 650px) {


    .ps-div-zoom-1 {
        zoom: 90%;
    }

    .ps_bann_col {
        height: 600px;
    }
}


@media screen and (max-width: 435px) {

    .ps-div-zoom-1 {
        zoom: 80%;
    }

    .ps_bann_col {
        height: 420px;
    }
}

@media screen and (max-width: 350px) {


    .ps-div-zoom-1 {
        zoom: 70%;
    }

    .ps_bann_col {
        height: 320px;
    }
}




.boton-transparent-white {
    border-radius: 15px;
    display: inline-block;
    height: 60px;
    min-width: 200px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    border: 1px solid white;
    text-align: center;
    outline: none;
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 14pt;
    font-weight: 400;
    letter-spacing: 1px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
    background-color: transparent;
}

    .boton-transparent-white:hover,
    .boton-transparent-white:active {
        background-color: white;
        color: black;
        transition: background-color 0.6s ease-in, color 0.6s ease-in;
    }



.ps-form {
    max-width: 100%;
    margin-bottom: 15px;
    font-weight: 300;
    height: 30px;
    font-size: 16px;
    color: black;
    padding: 5px;
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0px;
    box-shadow: none;
}

.ps-form-lab {
    font-size: 16px;
}

.ps-zoom {
    transition: transform .2s;

}

.ps-zoom:hover {
    transform: scale(1.1);
    transition: all 0.2s ease-out;
}


.ps-carrusel {
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}

.ps-carrusel:hover {
    border: 1px solid red;
    border-radius: 4px;
    padding:2px;
}




.ps-opacity {
    position: absolute;
    object-fit: cover;
    z-index: 3;
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}


.ps-search {
    max-width: 100%;
    margin-bottom: 15px;
    font-weight: 300;
    height: 30px;
    font-size: 16px;
    color: gray;
    padding: 5px;
    border: none;
    border-bottom: 1px solid gray;
    border-radius: 0px;
    box-shadow: none;
}

.ps-styleOnlyline {
    max-width: 100%;
    font-weight: normal;
    font-size: 12px;
    color: gray;
    border: none;
    border-bottom: 1px solid gray;
    border-radius: 0px;
    box-shadow: none;
}


.glob {
    color: red;
    font-size: 13px;
    font-family: Arial;
}


a.glob {
    outline: none;
    text-decoration: none;
    color: black;
}

    a.glob:link {
        color: black;
    }

    a.glob:visited {
        color: black;
    }

    a.glob:hover {
        color: #337ab7;
    }

    a.glob:active {
        color: black;
    }






/* dropdown-menu */

.dropdown-menu {
    background-color: var(--nav-menu-background-color) !important;
}




/* dropdown-menu-ps */

.dropdown-menu-ps.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu-ps .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu-ps > li > a {
    display: block;
    padding: 3px 30px;
    clear: both;
    font-weight: 400;
    line-height: 30px;
    color: #333333;
    white-space: nowrap;
}

    .dropdown-menu-ps > li > a:hover,
    .dropdown-menu-ps > li > a:focus {
        color: white;
        text-decoration: none;
        background-color: #1f948b;
    }

.dropdown-menu-ps > .active > a,
.dropdown-menu-ps > .active > a:hover,
.dropdown-menu-ps > .active > a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0;
}

.dropdown-menu-ps > .disabled > a,
.dropdown-menu-ps > .disabled > a:hover,
.dropdown-menu-ps > .disabled > a:focus {
    color: #777777;
}

    .dropdown-menu-ps > .disabled > a:hover,
    .dropdown-menu-ps > .disabled > a:focus {
        text-decoration: none;
        cursor: not-allowed;
        background-color: transparent;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }



.open > .dropdown-menu-ps {
    display: block;
}



/* footer */
.footer {
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding-top: 64px !important;
    padding-bottom: 64px !important;
}

.footer h4,
.footer h4 strong {
    color: #fff !important;
}

.footer p,
.footer .ps_link,
.footer .links li a,
.footer-location-link,
.footer-location-link span {
    color: #c7d3dd !important;
}

.footer .ps_link:hover,
.footer .ps_link:focus,
.footer .links li a:hover,
.footer .links li a:focus,
.footer-location-link:hover,
.footer-location-link:focus {
    color: #fff !important;
    text-decoration: none;
}

.footer .links ul {
    list-style-type: none;
}

.footer .links li a {
    color: white;
    transition: color 0.2s;
}

    .footer .links li a:hover {
        text-decoration: none;
        color: white;
    }

.footer .about-company i {
    font-size: 25px;
}

.footer .about-company a {
    color: white;
    transition: color 0.2s;
}

    .footer .about-company a:hover {
        color: white;
    }

.footer .location i {
    font-size: 18px;
}

.footer-location-link {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-location-link i {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 2px;
    text-align: center;
}

.footer-location-link span {
    display: block;
}

.footer .copyright p {
    /*    border-top: 1px solid rgba(255, 255, 255, 0.1);*/
}






a.ps_link {
    outline: none;
    text-decoration: none;
    color: white;
}

    a.ps_link:link {
        color: white;
    }

    a.ps_link:visited {
        color: white;
    }

    a.ps_link:hover {
        color: #aecae2;
    }

    a.ps_link:active {
        color: white;
    }



a.ps_link_d {
    outline: none;
    text-decoration: none;
    color: white;
    font-size: small;
}

    a.ps_link_d:link {
        color: white;
    }

    a.ps_link_d:visited {
        color: white;
    }

    a.ps_link_d:hover {
        color: #aecae2;
    }

    a.ps_link_d:active {
        color: white;
    }





a.ps_link_black {
    outline: none;
    text-decoration: none;
    color: black;
}

    a.ps_link_black:link {
        color: black;
    }

    a.ps_link_black:visited {
        color: black;
    }

    a.ps_link_black:hover {
        color: #337ab7;
    }

    a.ps_link_black:active {
        color: black;
    }





.list-group-item ul {
    margin-top: 10px;
    margin-right: -15px;
    margin-bottom: -10px;
}

.list-group-item li {
    padding: 10px 15px 10px 3em;
    border-top: 1px solid #ddd;
}

    .list-group-item li:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        margin-top: -11px;
        background: #ddd;
    }




.ps-menu1 a {
    color: gray;
    font-size: 14px;
    margin: 0 0 0 0;
    padding-left: 20px;
    font-weight: 400;
    text-decoration: none;
}



/* nav-tabs */

.nav-tabs > li > a {
    background-color: #cfcdcd !important;
    color: white;
    padding-top: 7px;
    padding-bottom: 7px;
    border: 1px solid #ddd;
    border-bottom-color: #cfcdcd !important;
    font-weight: 400 !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: black !important;
    cursor: default;
    background-color: white !important;
    border: 1px solid #ddd;
    border-bottom-color: white !important;
    font-weight: 400 !important;
}


.nav-tabs {
    background-color: transparent;
    border-bottom: 1px solid #ddd !important;
}

.tab-content {
    background-color: white;
    border-top: 1px solid white !important;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0px 0px;
    padding: 5px;
}

.nav-tabs > li > a {
    border: none;
    border-radius: 2px 2px 0px 0px;
    color: white;
    background-color: #1da7ff !important;
    padding: 7px;
    font-size: 14px !important;
}

.nav-tabs > li > a:hover {
    background-color: #155f8e !important;
    border: none;
    border-radius: 2px 2px 0px 0px;
    color: white !important;
    transition: 0.7s;
}

.nav-tabs > .active > a {
    background-color: white !important;
    border: none;
    border-radius: 2px 2px 0px 0px;
    color: #155f8e !important;
}




/* NAV -TAB DIFF */

.nav-tabs-1 {
    border-bottom: 1px solid #ddd;
}

.nav-tabs-1 > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs-1 > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.nav-tabs-1 > li > a {
    background-color: #cfcdcd !important;
    color: white;
    padding-top: 7px;
    padding-bottom: 7px;
    border: 1px solid #ddd;
    border-bottom-color: #cfcdcd !important;
    font-weight: 400 !important;
}

.nav-tabs-1 > li.active > a,
.nav-tabs-1 > li.active > a:hover,
.nav-tabs-1 > li.active > a:focus {
    color: white !important;
    cursor: default;
    background-color: #1da7ff !important;
    border-bottom: 1px solid #ddd;
    font-weight: 400 !important;
}

.nav-tabs-1 {
    background-color: transparent;
    border-bottom: 1px solid #ddd !important;
}


.nav-tabs-1 > li > a {
    border: none;
    border-radius: 2px 2px 0px 0px;
    color: black;
    background-color: #e8eff3 !important;
    padding: 7px;
    font-size: 14px !important;
}

.nav-tabs-1 > li > a:hover {
    background-color: #155f8e !important;
    border: none;
    border-radius: 2px 2px 0px 0px;
    color: white !important;
    transition: 0.7s;
}





.btn-default1 {
    background-color: #037189;
    border: #037189;
    border-radius: 4px;
    color: white;
    font-size: 12px !important;
}

    .btn-default1:disabled {
        background-color: #beccd5;
        color: #FFF;
        border-color: none;
    }


    .btn-default1:hover,
    .btn-default1:focus {
        color: white;
        background-color: #015364;
        transition: 0.7s;
        background-position: 0 -15px;
    }

    .btn-default1:active,
    .btn-default1.active {
        background-color: #015364;
    }









.split {
    display: flex;
    flex-direction: row;
}

.gutter {
    background-color: #eee;
    background-repeat: no-repeat;
    background-position: 50%;
}

    .gutter.gutter-horizontal {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
        cursor: col-resize;
    }





.ps-circulo {
    width: 100px;
    height: 100px;
    display: flex;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #5cb85c;
    box-shadow: 5px 5px 10px gray;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px auto;
    padding: 3%;
}

    .ps-circulo > h2 {
        font-family: sans-serif;
        color: white;
        font-size: 18px;
        font-weight: bold;
    }

    .ps-circulo > p {
        font-family: sans-serif;
        color: white;
        font-size: 18px;
        font-weight: normal;
    }

.ir-arriba {
    display: none;
    padding: 20px;
    background: #024959;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
}


.tab-content {
    background-color: white;
    border-top: 1px solid white !important;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0px 0px 4px 4px;
    padding: 10px;
}

.ps-form {
    font-weight: 400;
    font-size: 16px;
    color: gray;
}

.ps-control {
    max-width: 100%;
    margin-bottom: 15px;
    font-weight: 300;
    height: 30px;
    font-size: 16px;
    color: gray;
    padding: 5px;
    border: none;
    border-bottom: 1px solid gray;
    border-radius: 0px;
    box-shadow: none;
}





.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 21px;
    width: 21px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

.slider.round {
    border-radius: 14px;
}

.slider.round:before {
    border-radius: 50%;
}







/* button */

.ps-button-sm {
    height: 50px;
    color: white;
    background-color: var(--button-background-color);
    border: none;
    border-radius: 0px;
    font-size: 14px;
}

.ps-button-sm-white {
    height: 50px;
    background-color: white;
    border-radius: 0px;
    font-size: 14px;
}

.nav-tabs > li > a:focus,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a {
    outline: none !important;
    box-shadow: none !important;
}

.ps-button {
    height: 60px;
    width: 100%;
    background-color: var(--button-background-color);
    border: none;
    /*border-bottom: 1px solid gray;*/
    border-radius: 0px;
    color: white;
    font-size: 16px;
}


    .ps-button:hover {
        color: white;
        background-color: var(--button-background-color-hover);
        transition: 0.7s;
        background-position: 0 -15px;
    }

    .ps-button:focus {
        color: white;
        background-color: var(--button-background-color-hover);
        /*    transition: 0.7s;*/
        background-position: 0 -15px;
    }

    .ps-button:active {
        background-color: var(--button-background-color);
    }

    .ps-button:disabled {
        background-color: #bfd3de;
    }

.auth-page .ps-button {
    background-color: #203b66 !important;
    border-color: #203b66 !important;
    border-radius: 999px !important;
    color: #fff !important;
}

.auth-page .ps-search,
.auth-page .ps-search[readonly],
.auth-page .ps-search[disabled] {
    background-color: transparent !important;
}

.auth-page .form-control.ps-search,
.auth-page .ps-password-field {
    width: 300px !important;
    max-width: 100% !important;
}

.auth-page .ps-password-field .form-control.ps-search {
    width: 100% !important;
}

.auth-page .ps-search:focus {
    border-color: gray !important;
    box-shadow: none !important;
    outline: none !important;
}

    .auth-page .ps-button:hover,
    .auth-page .ps-button:focus {
        background-color: #142744 !important;
        border-color: #142744 !important;
        color: #fff !important;
        outline: none !important;
    }

.auth-page {
    margin-bottom: 40px;
}

.portal2-shell {
    max-width: calc(100% - 8px);
    margin-right: auto;
    margin-left: auto;
}

.portal2-profile-header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #263c64;
    border-radius: 50px 50px 0 0;
    position: relative;
    z-index: 1;
}

.portal2-profile-inner {
    width: 100%;
}

.portal2-welcome {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portal2-welcome span {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.portal2-user-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.portal2-avatar {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    box-shadow: 2px 6px 8px 0 rgba(0,0,0,0.4);
}

.portal2-user-text {
    padding-top: 10px;
    text-align: center;
}

.portal2-user-text span:first-child {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.portal2-user-text span:last-child {
    color: white;
    font-size: 14px;
    font-weight: normal;
}

.portal2-profile-spacer {
    height: 70px;
}

.portal2-content-shell {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: -50px;
    display: flex;
    justify-content: center;
    border-radius: 50px 50px 0 0;
    background-color: white;
    overflow: visible;
    z-index: 2;
}

.portal2-content-inner {
    width: 100%;
    background-color: transparent;
    padding: 20px 40px;
}

.portal2-compact .portal2-welcome {
    display: none;
}

.portal2-compact .portal2-profile-inner {
    padding: 28px 34px 76px;
}

.portal2-compact .portal2-user-row {
    justify-content: flex-start;
    flex-direction: row;
    gap: 32px;
}

.portal2-compact .portal2-user-text {
    padding-top: 0;
    text-align: left;
}

.portal2-compact .portal2-user-text span:first-child {
    font-size: 18px;
    line-height: 1.25;
}

.portal2-compact .portal2-user-text span:last-child {
    font-size: 15px;
    line-height: 1.35;
}

.portal2-compact .portal2-profile-spacer {
    display: none;
}

.portal2-compact .portal2-content-inner {
    padding-top: 14px;
}

.portal2-compact .portal2-content-shell {
    overflow: hidden;
}

@media (max-width: 767px) {
    .portal2-compact .portal2-profile-header {
        border-radius: 46px 46px 0 0;
    }

    .portal2-compact .portal2-profile-inner {
        padding: 28px 28px 74px;
    }

    .portal2-compact .portal2-user-row {
        gap: 28px;
    }

    .portal2-compact .portal2-user-text span:first-child {
        font-size: 18px;
    }

    .portal2-compact .portal2-user-text span:last-child {
        font-size: 16px;
    }

    .portal2-compact .portal2-content-inner {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.portal2-datos-page {
    width: 100%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}

.portal2-datos-page .row {
    margin-right: 0;
    margin-left: 0;
}

.portal2-datos-page [class*="col-"],
.portal2-datos-page .form-group {
    float: none !important;
    width: 100% !important;
    max-width: 320px;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    text-align: left;
}

@media (max-width: 767px) {
    .auth-page {
        width: calc(100% - 32px);
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .auth-page .row {
        margin-right: 0;
        margin-left: 0;
    }

    .auth-page [class*="col-"] {
        float: none !important;
        width: 100% !important;
        max-width: 320px;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: left;
    }

    .auth-page .form,
    .auth-page .form-horizontal,
    .auth-page .form-group {
        max-width: 320px;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: left;
    }

    .auth-page .form-control,
    .auth-page .ps-password-field,
    .auth-page .ps-button {
        width: 300px !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .auth-page p,
    .auth-page ul,
    .auth-page h2,
    .auth-page h3,
    .auth-page h4,
    .auth-page hr {
        max-width: 320px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}




.map-responsive {
    overflow: hidden;
    padding-bottom: 400px;
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }


.modal {
    text-align: center;
    padding: 0 !important;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px; /* Adjusts for spacing */
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}




.imagen-grises:hover {
    filter: grayscale(100%);
}


.imagen-giro:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.dropdown-menu-ps {
    position: absolute;
    top: 100%;
    left: 0;
    /*z-index: 1000;*/
    display: none;
    float: left;
    min-width: 100%;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}





.ps-spc {
    height: 30px;
}

.ps-spc1 {
    height: 40px;
}


.ps-spc2 {
    height: 0px;
}

@media screen and (max-width: 736px) {

    .ps-spc {
        height: 110px;
    }

    .ps-spc1 {
        height: 280px !important;
    }

    .ps-spc2 {
        height: 40px !important;
    }
}






.collapsing {
    transition: height 1.6s;
}


.titmenu {
    color: black;
    font-size: 18px;
    margin: 0 0 0 0;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
}

.titmenu1 {
    color: gray;
    font-size: 16px;
    margin: 0 0 0 0;
    padding-left: 10px;
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 5px;
}

.titmenuadmin1 {
    color: black;
    font-size: 16px;
    margin: 0 0 0 0;
    padding-left: 0px;
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 5px;
}


.titmenuadmin2 p {
    color: gray;
    font-size: 14px;
    margin: 0 0 0 0;
    padding-left: 10px;
    font-weight: 400;
    padding-top: 5px;
    padding-bottom: 5px;
}


.titpb {
    color: black;
    font-size: 22px;
    margin: 0 0 0 0;
    font-weight: 400;
    padding-top: 20px;
    padding-bottom: 20px;
}


.titp1 {
    color: black;
    font-size: 1.25em;
    margin: 0 0 0.5em 0;
    font-weight: 800;
    letter-spacing: 0.225em;
}

.titp2 {
    margin: 0 0 0.5em 0;
    font-weight: 600;
    font-size: 32px;
    color: #000000 !important;
    line-height: 1.2em;
}

.titp3 {
    margin: 0 0 0.5em 0;
    font-weight: 300;
    font-size: 16px;
    color: #000000 !important;
    line-height: 1.2em;
}



.titp {
    text-align: center;
    color: black;
    font-size: 2.25em;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    font-weight: 400;
    letter-spacing: 0.125em;
}




.ps_servicios {
    color: black;
    font-size: 14px;
    margin: 0 0 0 0;
    font-weight: 300;
    text-align: left;
    padding: 10px;
}

    .ps_servicios h2 {
        color: #4f4d4d;
        font-size: 14px;
        margin: 0 0 0 0;
        font-weight: 600;
        text-align: left;
    }

    .ps_servicios p {
        color: #4f4d4d;
        font-size: 14px;
        margin: 0 0 0 0;
        font-weight: 300;
        text-align: left;
        padding-bottom: 20px;
    }



.titl h1 {
    color: black;
    font-size: 50px;
    margin: 0 0 0 0;
    font-weight: 700;
    /*letter-spacing: 0.225em;*/
}


.files {
    color: black;
    text-decoration: none;
}

    .files:link {
        color: black;
        text-decoration: none;
    }

    .files:visited {
        color: black;
        text-decoration: none;
    }


    .files:hover {
        color: steelblue;
        text-decoration: none;
    }

    .files:active {
        color: steelblue;
        text-decoration: none;
    }

.ps-view {
    border: 1px solid #CCC;
    border-radius: 4px;
    background-color: white;
    -webkit-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    box-shadow: 2px 6px 8px 0px rgba(0,0,0,0.4);
    padding: 5px;
    overflow: hidden;
}
/* PS global button selection reset */
button:focus,
button:active,
input[type="button"]:focus,
input[type="button"]:active,
input[type="submit"]:focus,
input[type="submit"]:active,
input[type="reset"]:focus,
input[type="reset"]:active,
a.ps-button-admin:focus,
a.ps-button-admin:active,
.ps-button-admin:focus,
.ps-button-admin:active,
.btn:focus,
.btn:active,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

button::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner {
    border: 0;
}

