@import url(form.css);
@import url(grid.css);
@import url(menu.css);
@import url(select.css);
@import url(types.css);

.bgLoginImage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 841px;
    z-index: -1;
}

.backdropLogin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    background: rgba(223, 223, 223, 0.40);
    backdrop-filter: blur(48.79999923706055px);
    z-index: 0;
}

.loader {
    z-index: 999999;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100dvw;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .5s;
}

.loader img {
    width: 100px;
}

.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999;
    pointer-events: none;
    width: 400px;
    height: 0;
}

.notification {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 4px 16.1px 0 rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(5.900000095367432px);
    padding: 10px;
    min-width: 320px;
    max-width: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-120%) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-content-icon {
    display: flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 41px;
    background: #FFF;
    box-shadow: 0 4px 8.2px 0 rgba(255, 255, 255, 0.836);
}

.notification-content-icon img {
    width: 30px;
}

.notification.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.notification.hide {
    transform: translateY(-120%) scale(0.9);
    opacity: 0;
}

/* Efecto de apilamiento tipo iPhone - las más antiguas detrás */
.notification[data-stack="1"] {
    transform: translateY(-6px) scale(0.98);
    opacity: 0.9;
    z-index: -1;
}

.notification[data-stack="2"] {
    transform: translateY(-12px) scale(0.96);
    opacity: 0.7;
    z-index: -2;
}

.notification[data-stack="3"],
.notification[data-stack="4"],
.notification[data-stack="5"] {
    transform: translateY(-18px) scale(0.94);
    opacity: 0.5;
    z-index: -3;
}

.notification-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
        background: linear-gradient(270deg, #ffffff 0.73%, #ffffff9f 93.96%);
    width: 0%;
    z-index: -1;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.notification img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notification-title {
    font-weight: 700;
    font-size: var(--font-title);
    color: #1f2937;
    margin: 0;
}

.notification-text {
    font-size: var(--font-little);
    color: #4b4b4b;
    margin: 0;
}

.notification-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background-color: #f3f4f6;
    color: #6b7280;
}

.imgUser {
    width: 47px;
    height: 47px;
    border-radius: 50px;
}

.imgUserEditProfile {
    width: 102px;
    height: 102px;
    border-radius: 100px;
}



/* SUGGESTIONS */

.inputSuggestion {
    display: flex;
    padding: 10px 20px;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 15px;
    background: #FFF;
    color: #767272;
    text-align: center;
    width: 100%;
    border: none;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    transition: all .5s;
    outline: none;
}

.inputSuggestion:hover {
    transform: translate(5px, 0px);
    background: #FBF8FB;
    color: black;
}


.suggestionListed {
    display: flex !important;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
    
    justify-content: space-between;
    border-radius: 25px;
        background: #fbf8f838;
    border: solid 1px #e2e2e6;
    text-align: center;
    font-family: Poppins;
    font-size: 13px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    transition: all .5s;
    outline: none;
    width: auto !important;
    background-color: #e9ebf1;
    color: #000000;
}

.suggestionListed .btnInvisible {
    background-color: #fff;
}

.inputSuggestion:hover,
.inputSuggestion.highlighted {
    background-color: #f0f7ff;
    color: #0066cc;
}

/* SUGGESTIONS */