#portal_empleado_sugerencias {
    display: none;
}

#portal_empleado_sugerencias #seleccionInicial {
    display: flex;
}

#portal_empleado_sugerencias .cuadro_opcion_sugerencias {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    border: 2px solid #e1e1e19c;
    padding: 10px;
    border-radius: 10px;
    background: white;
    margin: 10px;
    margin-bottom: 0px;
    transition: 0.5s;
}

#portal_empleado_sugerencias .cuadro_opcion_sugerencias:hover {
    background: #e1e1e19c;
}

#portal_empleado_sugerencias .documento {
    padding: 10px;
    border: 1px solid #ebebeb;
    width: 50%;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

#portal_empleado_sugerencias .documento span {
    text-overflow: ellipsis;
    overflow: hidden; 
}

#portal_empleado_sugerencias .documento:hover {
    background: #ebebeb;
}

#portal_empleado_sugerencias .documento>img {
    margin-right: 10px;
    float:left;
}

#portal_empleado_sugerencias .cuadro_opcion_sugerencias:first-child {
    margin-left: 0px;
}

#sugerencias_nav main {
    min-width: 320px;
    margin: 0px;
}

#sugerencias_nav main span {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    font-weight: 600;
    text-align: center;
    color: #bbb;
    border: 1px solid transparent;
}

#sugerencias_nav main span:hover {
    color: #888;
    cursor: pointer;
}

#sugerencias_nav main .checked {
    color: #555;
    border: none;
    border-bottom: 3px solid #33438a;
}

#portal_empleado_sugerencias table {
    background: white;
}

#portal_empleado_sugerencias table thead {
    border-bottom: 4px solid #f7f4fa;
}

#portal_empleado_sugerencias table thead th {
    border: none;
    padding: 30px;
    font-size: 13px;
    font-weight: 500;
    color: gray;
}

#portal_empleado_sugerencias table tbody tr {
    margin-bottom: 10px;
    border-bottom: 4px solid #f7f4fa;
}

#portal_empleado_sugerencias table tbody tr td {
    border: none;
    padding: 30px;
    font-size: 14px;
    background: #fff;
    vertical-align: middle;
}

#portal_empleado_sugerencias table tbody tr td img {
    width: 50px;
    padding: 5px;
    border-radius: 10px;
    margin-right: 10px;
    border: 2px solid #e1e1e19c
}

#portal_empleado_sugerencias table tbody tr td .badge {
    border-radius: 30px;
    padding: 5px 15px 5px 15px;
}

#portal_empleado_sugerencias table tbody tr td .badge i {
    margin-right: 10px;
    margin-left: -10px;
}

#portal_empleado_sugerencias table tbody tr td .green {
    background: #7bed9f6c;
    border: 1px solid #2ed573;
    color:#2ed573;
}

#portal_empleado_sugerencias table tbody tr td .yellow {
    background: rgba(246, 245, 207, 0.4);
    border: 1px solid #ffa502;
    color: #ffa502;
}

#portal_empleado_sugerencias table tbody tr td .blue {
    background: rgba(207, 211, 246, 0.4);
    border: 1px solid #1e90ff;
    color: #1e90ff;
}

#portal_empleado_sugerencias table tbody tr td .red {
    background: rgba(246, 207, 207, 0.4);
    border: 1px solid #ff4757;
    color: #ff4757;
}

#portal_empleado_sugerencias .alerta {
    color: white;
    background: #ff4d4d;
    border: 2px solid #ff3838;
    padding: 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: auto;
}

#portal_empleado_sugerencias .alertablue {
    background: rgba(207, 211, 246, 0.4);
    border: 1px solid #1e90ff;
    color: #1e90ff;
    padding: 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: auto;
}