﻿body {
}


.full_page {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px;
    padding-top: 90px;
    position:relative;
}

.container_cotizador {
    width: 100%;
    height: 100%;
    flex-direction: row;
    display: flex;
    overflow: hidden;
    grid-gap:10px;
    position:relative;
}

.container_cotizador__left {
    max-width: 300px;
    background: white;
    display: flex;
    width: 100%;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.container_cotizador__right {
    background: white;
    padding: 10px;
    width: 100%;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container_cotizador__right--table_container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.container_cotizador__right__header {
    grid-gap: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom:10px;
}

.header_info {
    display: flex;
    flex-direction: row;
}

.header_info__user {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.header_info__user p {
    color: var(--color-500);
    font-weight: 500;
    font-size: var(--fs-sm);
}

.search {
    position: relative;
    width: 100%;
}

.search_input {
    width: 100%;
    padding-left: 50px;
}

.search svg{
    color: red;
}

.search_icon {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
    color: red;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.container_cotizador__right__body {
    display: flex;
    flex-direction: column;
    /*    border: 1px solid red;*/
    overflow-y: scroll;
    overflow-x: hidden;
    box-sizing: content-box;
    flex: 1;
    padding: 10px;
    gap: 10px;
}


.container_cotizador__right__header__movil {
    display: none;
    align-items: center;
    justify-content: center;
    height: 30px;
    gap: 10px;
    font-weight: 400;
    color: white;
    background: white;
    position: fixed;
    width: 100%;
    top: 60px;
    left: 0;
    border-bottom: 1px solid var(--color-700);
    background: rgba(100, 53, 148, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.6px);
    -webkit-backdrop-filter: blur(9.6px);
    border-bottom: 1px solid rgba(100, 53, 148, 1);
}

.container_cotizador__right__header__movil svg {
    width: 20px;
}



.wrapper__tags {
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DCDCDE;
    /*    min-height: 57px;*/
}

.wrapper__tags__title {
    font-weight: 500;
    color: var(--color-500);
    font-weight:600;
}

.wrapper__tags__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 10px;
    height: auto;
    width: 100%;
}

.tag {
    white-space: nowrap;
    max-width: max-content;
    display: flex;
    grid-gap: 5px;
    height: 30px;
    align-items: center;
    padding: 0px 10px;
    background: var(--color-50);
    border: 1px solid var(--color-600);
    color: var(--color-950);
    cursor: pointer;
    transition: 0.5s;
    border-radius: 30px;
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* estándar moderno */
    /* Opcional: quita el highlight en móviles WebKit al tocar */
    -webkit-tap-highlight-color: transparent;
}

.tag p{
    font-size: 12px;
    font-weight:500;
}

.tag svg{
    width:15px;
    
}

.tag:hover {
    background: var(--color-300);
}

.table-loader-overlay {
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
    color: white;
    font-weight: 600;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
}


.table_welcome_overlay {
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
    color: white;
    font-weight: 600;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    text-align: center;
    padding: 20px 10px 20px 10px;
    color: #1F2937;
}

.table_welcome_overlay__circle {
    max-height: 150px;
    height: 100%;
    max-width: 150px;
    width: 100%;
    background: #EFF0F5;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.table_welcome_overlay__titles{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.table_welcome_overlay__titles p{
    font-weight:500;
}


.loader {
    width: 60px;
    padding: 6px;
    background: white;
}

.tableEmptyState {
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
    color: var(--color-900);
    font-weight: 500;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    font-size: var(--fs-base);
    background: #D9DFEB;
    cursor:default;
}

.tableEmptyState p {
    max-width:300px;
    text-wrap:petty;
}


.tableEmptyState__circle {
    background: #F9F9FB;
    border: 1px solid var(--color-300);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.pop_up {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.4px);
    -webkit-backdrop-filter: blur(3.4px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 10px 10px 10px;
    box-sizing:border-box;
}

.pop_up__alert{
    max-width:1000px;
    max-height:700px;
    width:100%;
    height:100%;
    background:white;
    border-radius:20px;
    display:flex;
    flex-direction:row;
}

.pop_up__alert__left {
    width: 100%;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    gap: 10px;
/*    overflow: auto;*/
}


.input_box__birthday {
    display: flex;
    flex-direction: row;
    grid-gap: 10px;
}

.pop_up__alert__left__inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    overflow: auto;
    height: 100%;
}

.pop_up__alert__right {
    width: 100%;
    background: #F5F7F9;
    border-radius: inherit;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    overflow: hidden;
}

.pop_up__alert__right {
    display: flex;
    width: 100%;
    object-fit: contain;
    overflow: hidden;
    position: relative;
}

.pop_up__alert__right img {
    object-fit: contain;
    max-width: 1500px;
    position: absolute;
    top: 80%;
    left: 90%;
    transform: translate(-50%, -50%);
}

.pop_up__alert__right__logo {
    display: flex;
    top: 20%;
    left: 55%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.pop_up__alert__right__logo img{
    width: 150px;
}

.row_inputs{
    display:flex;
    flex-direction:row;
    gap:20px;
}

.input_box {
    width: 100%;
}


@media only screen and (max-width: 1000px) {
    .pop_up__alert__left {
        padding: 20px;
    }

    .pop_up__alert__right{
        display:none;
    }

    .p1 {
        display: flex;
        gap: 10px;
    }

}


@media only screen and (max-width: 769px) {
    .full_page {
        padding-top: 100px;
    }

    .container_cotizador__right__header__movil {
        display: flex;
    }

    .table {
        border: none !important;
        gap: 10px;
        display: flex !important;
        flex-direction: column;
    }

    .row.header {
        display: none;
    }

    .container_cotizador {
        flex-direction: column;
    }

    .container_cotizador__left {
        position: absolute;
        z-index: 9;
        width: 100%;
        max-width: 100%;
        height: 100%;
        display: none;
        right: 0;
    }

    /*    .wrapper__filter_checkbox{
    max-width:300px;
}*/

    .wrapper__tags__container {
        grid-gap: 5px;
        height: 30px;
        width: auto;
        overflow-x: scroll; /* Permite el desplazamiento horizontal */
        overflow-y: hidden; /* Oculta el desplazamiento vertical */
        flex-wrap: nowrap;
        /* Ocultar la barra de desplazamiento en navegadores WebKit */
        -ms-overflow-style: none; /* IE y Edge */
        scrollbar-width: none; /* Firefox */
    }

        .wrapper__tags__container::-webkit-scrollbar {
            display: none; /* Ocultar la barra de desplazamiento en Chrome, Safari y Opera */
        }

    ::-webkit-scrollbar {
        width: 1px; /* Ancho de la barra de desplazamiento vertical */
        height: 1px; /* Altura de la barra de desplazamiento horizontal */
    }
}

