/* ======================== */
/*   UX-APP NAMESPACE ROOT  */
/* ======================== */


#ux-app .menuicon {
    position: relative;
    top:3px;
}


#ux-app .page-app-user {
    max-width:100rem;
    margin-inline: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}


#ux-app .app-header {
    background-color: var(--footer-bg);

    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 10000;
    padding-top: 10px;
    padding-right: 4vw;
    padding-bottom: 10px;
    padding-left: 4vw;
    color:white;
}
#ux-app .user-login-block {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#ux-app {
    --modal-background-color: #f9f9f9;
    --modal-background-color2: #f8f8f8;
    --detail-value-background-color: #f3f3f3;
    --secondary-color: #2ecc71;
    --font-size-large: 19px;
    --font-size-tablegrid: 15px;
    --font-size-small: 13px;
    --font-size-app-elements: 16px;
    --font-size-app-field-label: 15px;
    --font-size-header-app: 14px;
    --font-size-login: 15px;
}

/* Responsive vars */
@media only screen and (max-width: 850px) {
    #ux-app {
    --font-size-large: 19px;
    --font-size-tablegrid: 15px;
    --font-size-small: 13px;
    --font-size-app-elements: 15px;
    --font-size-header-app: 14px;
    --font-size-login: 15px;
    }
}

/* ======================== */
/*     DISPLAY UTILS        */
/* ======================== */

#ux-app .hide-column-always {
    display: none;
}

@media only screen and (max-width: 850px) {
    #ux-app .hide-column-mobile-medium {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    #ux-app .hide-column-mobile-small {
        display: none;
    }
    #ux-app .folder {
        display: none !important;
    }
    #ux-app .tab-content {
        display: flex !important;
    }
}

/* ======================== */
/*    MODALS & OVERLAYS     */
/* ======================== */

#ux-app .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}



/* ======================== */
/* LOGIN HELPERS */
/* ======================== */

#ux-app .helper-login ,.helper-login a {
    display: flex;
    gap: 4px;
    font-size: var(--font-size-header-app) !important;
}

#ux-app .helper-login-footer {
    display: flex;
    gap: 4px;
    font-size: var(--font-size-header-app) !important;
    flex-direction: column;
    line-height: normal;
}

#ux-app .helper-login-footer p {
    color: #d4d4d4;
}

#ux-app .log-in-out {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-wrap: nowrap;
}

#ux-app .log-in-out svg.icon {
    margin-right: 8px;
}

/* ======================== */
/*    TYPOGRAPHY & UI       */
/* ======================== */


#ux-app .ajax-container,
#ux-app #ajax-container a,
#ux-app #ajax-container,
#ux-app #details-modal,
#ux-app #details-modal a,
#ux-app #details-modal2,
#ux-app #details-modal2 a,
#ux-app button,
#ux-app input,
#ux-app select,
#ux-app #app-top-buttons,
#ux-app .app-btn,
#ux-app .helper-login,
#ux-app .helper-login a,
#ux-app #error-banner,
#ux-app #error-banner a,
#ux-app #modal-banner,
#ux-app #modal-banner a,
#ux-app .app-top-banner,
#ux-app #success-banner {
    font-size: var(--font-size-app-elements);
    font-family: var(--font-body);
    /*font-weight: 500;*/
}

#ux-app .ebtainfoheader {
    min-height: 50px;
}



/* ======================== */
/*      SUCCESS BANNER      */
/* ======================== */

#ux-app .banner {
    position: fixed;
    bottom: 11%;
    left: 2%;
    background-color: #4f4f0b;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    display: none;
    z-index: 10000;
    box-shadow: 20px 20px 50px #111010;
    border: 1px solid #050700;
}

#ux-app #success-message {
    margin-top: -3px;
    margin-right: 50px;
}

#ux-app .success-banner-close-btn {
    position: absolute;
    right: 15px;
    top: 13%;
    background: none;
    border: 2px solid transparent;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s ease;
}

#ux-app .success-banner-close-btn:hover {
    border-color: #444;
    background-color: #444;
}

/* ======================== */
/* MODAL BANNER */
/* ======================== */

#ux-app .modal-banner {
    flex-wrap: wrap;
    position: fixed;
    top: 6%;
    left: 25%;
    max-width: 50%;
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    display: none;
    z-index: 9000;
    box-shadow: 20px 20px 50px #111010;
    border: 1px solid #050700;
    gap: 7px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    #ux-app .modal-banner {
        max-width: 100%;
        left: 0;
    }
}

/* ======================== */
/* ERROR BANNER */
/* ======================== */

#ux-app .error-banner {
    flex-wrap: wrap;
    position: fixed;
    top: 25%;
    left: 10%;
    max-width: 80%;
    background-color: white;
    padding: 15px;
    border-radius: 15px;
    display: none;
    z-index: 10000;
    box-shadow: 20px 20px 50px #111010;
    border: 1px solid #050700;
    gap: 7px;
}

#ux-app .error-ajax-message {
    color: #fa6767;
    font-weight: bold;
    text-align: center;
}

#ux-app .error-ajax-message::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
}

#ux-app #error-message {
    margin-top: -3px;
    margin-right: 50px;
    font-weight: bold;
    color: black;
}

#ux-app .error-banner-close-btn {
    position: absolute;
    right: 15px;
    top: 8%;
    background: none;
    border: 2px solid transparent;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s ease;
    color: black;
}

#ux-app .error-banner-close-btn:hover {
    border-color: #444;
    background-color: whitesmoke;
}

/* ======================== */
/* SITE HEADER OVERRIDE */
/* ======================== */

#ux-app .custom-logo {
  width: 5rem;
  border-radius: 0;
  box-shadow: none;
}


#ux-app .tiny-site-tittle {
    display: none;
}

/* ======================== */
/* MENU ICONS */
/* ======================== */

#ux-app .menu-item-home a::before {
    content: '\f015';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 10px;
}

#ux-app .menu-item-members a::before {
    content: '\f0c0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    padding-right: 10px;
}

/* ======================== */
/* AJAX CONTAINER */
/* ======================== */

#ux-app .ajax-container,
#ux-app #ajax-container,
#ux-app #details-modal {
    overflow-x: auto;
}

#ux-app #app-top-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#ux-app .app-top-banner {
    padding: .9em 1.375em !important;
    min-height: 50px;
    border-radius: 10px;
    background-color: rgb(245 241 238);
    border: 1px solid #44362f1c;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

#ux-app .ebta-header-app {
    display: none;
}

#ux-app .app-title {
    font-size: var(--font-size-app-elements);
    font-weight: bold;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
}

#ux-app .title-app-group {
    gap: 2px;
}

#ux-app #ajax-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
    /*margin-top:25px;*/
}

#ux-app #loader {
    position: fixed;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20000;
    color: black;
}

/* ======================== */
/* PROFESSIONALS GRID */
/* ======================== */

#ux-app .profesionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
    gap: 1rem;
}

#ux-app .prof-card {
    background: #fff;
    border-radius: .5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

#ux-app .prof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#ux-app .prof-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    overflow: hidden;
}

#ux-app .prof-thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#ux-app .prof-info {
    padding: 1rem;
    flex-grow: 1;
}

#ux-app .prof-info ul {
    padding-inline-start: 25px;
}

#ux-app .prof-info h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
}

#ux-app .prof-info p {
    margin: .25rem 0;
    font-size: .95rem;
    color: #333;
}

/* ======================== */
/* PRACTITIONERS */
/* ======================== */

#ux-app .toyohari-practitioners,
#ux-app .toyohari-practitioners a {
    font-size: var(--font-size-app-elements) !important;
    
    font-weight: 500;
}

#ux-app .pr-country-heading,
#ux-app .pr-city-heading {
    grid-column: 1/-1;
}

#ux-app .pr-wrapper {
    max-width: 90%;
    margin: 0 auto;
    padding: 1em;
}

@media (max-width: 768px) {
    #ux-app .pr-wrapper {
        max-width: 100%;
        padding: 1em .5em;
    }
}

#ux-app .pr-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(380px,1fr));
    gap: 1em;
}

#ux-app .pr-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 1em;
    margin: 1em 0 1em 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

#ux-app .pr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#ux-app .pr-card p {
    margin: .2em 0;
}

#ux-app .pr-country-heading {
    margin: .5em 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: .2em;
}

#ux-app .pr-city-heading {
    margin: .5em 0 -.7em 7px;
    font-size: 1.2em;
    color: #555;
}

#ux-app .pr-card label {
    font-weight: 600;
    margin-right: 4px;
}

