div.validation-summary-valid {
    display: none;
}

.contenido {
    width: 400px;
    font-size: 13px;
    color: #333333;
    overflow: hidden; /* Escondemos la parte sobrante */
    white-space: nowrap; /* Indicamos que no realice salto de linea si no cabe en la anchura indicada */
    text-overflow: ellipsis; /* Ponemos los dos puntos */
}

.html5buttons {
    display: block;
    width: 100%;
    margin-bottom: 10px !important;
}

.dataTables_length {
    display: block;
}

.dataTables_filter {
    float: none;
    display: block;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 8px;
    white-space: nowrap;
    /* width: 300px; */
    float: right !important;
    padding-right: 20px !important;
}

table.dataTable {
    margin-top: 5% !important;
}

.fa-dashboard {
    font: normal normal normal 14px/1 FontAwesome !important;
}

.framius {
    height: 600px;
}

.box-notification {
    position: absolute;
    z-index: 2;
    top: 50px;
    left: 50px;
    height: 600px;
    width: 400px;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
}

    .box-notification.show-menu {
        transform: translate3d(150px, 0, 0);
    }

    .box-notification .header {
        height: 60px;
        width: 100%;
        background: #2D9CDB;
    }

        .box-notification .header .menu-icon {
            position: absolute;
            width: 29px;
            height: 15px;
            top: 23px;
            left: 20px;
            cursor: pointer;
        }

            /*
                Color Icons
            */
            .box-notification .header .menu-icon:hover .dash-top,
            .box-notification .header .menu-icon:hover .dash-bottom,
            .box-notification .header .menu-icon:hover .circle {
                background: #fff;
            }

            .box-notification .header .menu-icon .dash-top, .box-notification .header .menu-icon .dash-bottom {
                position: absolute;
                width: 20px;
                height: 3px;
                top: 0;
                left: 0;
                background: #B2DAFF;
                border-radius: 3px;
                transition: all 0.2s ease-in-out;
            }

            .box-notification .header .menu-icon .dash-bottom {
                width: 29px;
                top: auto;
                bottom: 0;
            }

            .box-notification .header .menu-icon .circle {
                position: absolute;
                height: 7px;
                width: 7px;
                border-radius: 4px;
                top: -2px;
                right: 0;
                background: #B2DAFF;
                transition: all 0.2s ease-in-out;
            }

        .box-notification .header .title {
            display: block;
            text-align: center;
            line-height: 60px;
            color: #fff;
            font-weight: 600;
            font-size: 15px;
        }

        .box-notification .header .search-input {
            box-sizing: border-box;
            position: absolute;
            top: 13px;
            right: 55px;
            width: 230px;
            height: 34px;
            border-radius: 17px;
            border: none;
            background: #fff;
            padding: 0 17px;
            font-size: 13px;
            color: #666;
            transition: all 0.3s ease-in-out;
            transform: translateX(15px);
            opacity: 0;
            pointer-events: none;
        }

            .box-notification .header .search-input:focus {
                outline: none;
            }

            .box-notification .header .search-input.active {
                transform: translateX(0);
                opacity: 1;
                pointer-events: all;
            }

        .box-notification .header .search-icon {
            position: absolute;
            z-index: 2;
            font-size: 21px;
            color: #B2DAFF;
            top: 18px;
            right: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

            .box-notification .header .search-icon:hover {
                color: #fff;
            }

    .box-notification .notifications {
        position: relative;
        height: 100%;
        / /*overflow: hidden*/;
        overflow-y: auto;
    }

        .box-notification .notifications .line {
            position: absolute;
            top: 0;
            left: 27px;
            bottom: 0;
            width: 3px;
            background: #EBEBEB;
        }

        .box-notification .notifications .notification {
            position: relative;
            z-index: 2;
            margin: 25px 20px 25px 43px;
        }

            .box-notification .notifications .notification:nth-child(2) {
                animation: here-am-i 0.5s ease-out 0.4s;
                animation-fill-mode: both;
            }

            .box-notification .notifications .notification:nth-child(3) {
                animation: here-am-i 0.5s ease-out 0.6s;
                animation-fill-mode: both;
            }

            .box-notification .notifications .notification:nth-child(4) {
                animation: here-am-i 0.5s ease-out 0.8s;
                animation-fill-mode: both;
            }

            .box-notification .notifications .notification:nth-child(5) {
                animation: here-am-i 0.5s ease-out 0.8s;
                animation-fill-mode: both;
            }

            .box-notification .notifications .notification:hover {
                color: #2D9CDB;
                cursor: pointer;
                text-decoration: underline;
            }

            .box-notification .notifications .notification .circle {
                position: absolute;
                height: 11px;
                width: 11px;
                /*background: #fff;
                //border: 2px solid #5F98CD;
                //box-shadow: 0 0 0 3px #fff;
                /border-radius: 6px;*/
                top: 0;
                left: -20px;
            }

                .box-notification .notifications .notification .circle:before {
                    content: "\f10c";
                    color: #2D9CDB;
                    font-family: FontAwesome;
                    font-weight: 900;
                    -webkit-font-smoothing: antialiased;
                    display: inline-block;
                    font-style: normal;
                    font-variant: normal;
                    text-rendering: auto;
                }

            .box-notification .notifications .notification .checked-circle {
                position: absolute;
                height: 11px;
                width: 11px;
                top: 0;
                left: -20px;
            }

                .box-notification .notifications .notification .checked-circle:after {
                    content: "\f058";
                    color: #2D9CDB;
                    font-family: FontAwesome;
                    font-weight: 900;
                    -webkit-font-smoothing: antialiased;
                    display: inline-block;
                    font-style: normal;
                    font-variant: normal;
                    text-rendering: auto;
                }


            .box-notification .notifications .notification .time {
                display: block;
                font-size: 11px;
                line-height: 11px;
                margin-bottom: 2px;
                text-decoration: underline
            }

            .box-notification .notifications .notification p {
                font-size: 15px;
                line-height: 20px;
                margin: 0;
            }

                .box-notification .notifications .notification p b {
                    font-weight: 600;
                }

.menu {
    position: absolute;
    width: 170px;
    height: 270px;
    top: 65px;
    left: 50px;
    background: #2D9CDB;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
    transform: translate3d(20px, 0, 0);
}

    .menu.active {
        box-shadow: 5px 5px 8px 0 rgba(0, 0, 0, 0.2);
        transform: translate3d(0, 0, 0);
    }

    .menu ul {
        margin: 0;
        padding: 10px 0;
    }

    .menu li {
        color: #93B2CD;
        margin: 0;
        padding: 18px 17px;
        list-style: none;
        font-size: 14px;
        line-height: 14px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

        .menu li:hover {
            color: #fff;
            background: #385269;
        }

        .menu li span {
            display: block;
            float: left;
            margin-right: 8px;
            margin-top: -1px;
        }

        .menu li .fa-gear, .menu li .fa-user, .menu li .fa-bell {
            margin-top: 0;
        }

@keyframes here-am-i {
    from {
        transform: translate3d(0, 50px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.notifications::-webkit-scrollbar {
    -webkit-overflow-scrolling: touch;
    height: 10px;
    width: 3px;
}


.notifications::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #E3EBEF;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #E3EBEF;
}

.notifications::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #9FB6C3;
    -webkit-box-shadow: none;
}

    .notifications::-webkit-scrollbar-thumb:window-inactive {
        background: #9FB6C3;
    }



/*
    Soft Scrollbar
*/

.soft-scrollbar::-webkit-scrollbar {
    -webkit-overflow-scrolling: touch;
    height: 10px;
    width: 3px;
}


.soft-scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #E3EBEF;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #E3EBEF;
}

.soft-scrollbar::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #9FB6C3;
    -webkit-box-shadow: none;
}

    .soft-scrollbar::-webkit-scrollbar-thumb:window-inactive {
        background: #9FB6C3;
    }
