/*===================================================================================
====================================== GENERAL ======================================
===================================================================================*/

* {
    outline: none;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto.eot');
    src: url('fonts/Roboto.eot?#iefix') format('embedded-opentype'),
    /*url('fonts/Roboto.woff') format('woff'),*/
    url('fonts/Roboto.ttf') format('truetype'), url('fonts/Roboto.svg#Roboto') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #eceae7;
    color: #686868;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0 auto;
}

/*a { color: #d55043; text-decoration: none; }
a:hover { border-bottom: 1px dotted #d55043 }*/
a.gray {
    color: #686868;
    border-bottom: 1px dotted #686868;
}

.content {
    margin: 0 auto;
    width: 980px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

fieldset {
    border: 0;
    padding: 0;
}

.block {
    background-color: #FFF;
    border: 1px solid #d4d4d4;
    box-shadow: 1px 1px 3px #d1d1d1;
}

/*TITLE*/
div.head_title {
    border-bottom: 1px dotted #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 16px;
}

    div.head_title h2 {
        margin: 0;
    }

    div.head_title h5 {
        color: #9C9C9C;
        font-weight: normal;
        margin: 6px 0 0;
    }

/*h2.head_title, .form h2, .form-horizontal h2 { 
	border-bottom: 1px dotted #e0e0e0;
	margin: 0 0 20px; 
	padding-bottom: 10px;
}*/

/*BUTTONS*/
/*====login====*/
.Btn {
    border: 0;
    color: #FFF;
    display: block;
    font-size: 18px;
    padding: 12px;
    text-align: center;
}

    .Btn.blue {
        background: #178daa;
        border-bottom: 8px solid #117992;
        text-shadow: 1px 2px 3px #0d2a3e;
        width: 100%;
    }

    .Btn.yellow {
        background: #178daa;
        border-bottom: 8px solid #117992;
        text-shadow: 1px 2px 3px #0d2a3e;
        width: 100%;
    }


    .Btn.blue:hover {
        background-color: #1890ae;
    }

    .Btn.blue:active {
        background-color: #16839d;
        border-bottom: 0px;
        box-shadow: 0 0 8px #094452 inset;
        padding: 16px 0;
    }

.saveBtn {
    overflow: hidden;
}

    .saveBtn .btn {
        float: right;
    }


/*===================================================================================
=================================== FORM STYLES =====================================
===================================================================================*/

input[type="text"], input[type="password"], textarea, .formstyle div.select, select {
    border: 1px solid #dfdfdf !important;
    border-radius: 0 !important;
    box-shadow: 0 0 6px #e2e2e2 inset !important;
    color: #989898 !important;
    display: block;
    height: auto;
    margin-bottom: 10px;
    /*padding: 10px;*/
}

select {
    height: auto !important;
    margin-bottom: 0 !important !important;
}

    input[type="text"]:focus, textarea:focus, select:focus {
        outline: none !important;
    }

.formstyle {
    margin: 0;
}

    .formstyle input.Btn {
        margin-bottom: 15px;
    }

    /*select*/
    .formstyle .select {
        background: #FFF url('images/selectrow.png') no-repeat 95% 50%;
        overflow: hidden;
        padding: 0 !important;
        width: 200px;
    }

    .formstyle div.select select {
        background-color: transparent;
        border: 0;
        padding: 8px;
        width: 124%;
        -webkit-appearance: value;
        -moz-appearance: none;
        appearance: none;
    }

/*checkbox*/
input.checkbox {
    display: none;
}

    input.checkbox + label {
        background: url('images/checkbox.png') no-repeat 0 0;
        cursor: pointer;
        display: inline-block;
        height: 15px;
        line-height: 15px;
        padding-left: 20px;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    input.checkbox:checked + label {
        background: url('images/checkbox.png') no-repeat 0 -16px;
    }

/*===================================================================================
======================================= HEADER ======================================
===================================================================================*/

#main_menu {
    background-color: #3e3e3e;
    border-bottom: 5px solid #d55043;
    box-shadow: 0px 0 15px #4E4E4E;
    min-width: 980px;
    padding: 0 10px;
}

    #main_menu h2 {
        display: block;
        font-size: 24px;
        float: left;
        margin: 0;
        padding: 16px 30px 16px 0;
    }

        #main_menu h2 .logo, #main_menu #nav a {
            color: #FFF;
            text-decoration: none;
        }

            #main_menu h2 .logo:hover {
                border: 0;
            }

    #main_menu #nav {
        border-left: 1px solid #333333;
        float: left;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #main_menu #nav.login {
            border: none;
            float: right;
        }

        #main_menu #nav li {
            border-left: 1px solid #4b4a4a;
            border-right: 1px solid #333333;
            float: left;
            position: relative;
            -moz-transition: 0.25s;
            -webkit-transition: 0.25s;
            -0-transition: 0.25s;
            transition: 0.25s;
        }

        #main_menu #nav.login li:first-child {
            border-left: none !important;
        }

        #main_menu #nav li:last-child {
            border-right: none !important;
        }

        #main_menu #nav li:hover, #main_menu #nav li.current_item {
            background-color: #d55043;
            border-bottom: 0;
            border-left: 1px solid transparent;
            border-right: 1px solid transparent;
        }

        #main_menu #nav li a {
            display: block;
            /*font-size: 12px;*/
            padding: 6px 22px;
            text-decoration: none;
            text-transform: uppercase;
        }

        #main_menu #nav.login li a {
            padding: 16px;
        }

        #main_menu #nav li a span {
            background-size: 90% !important;
            display: block;
            height: 24px;
            margin: 4px auto -8px;
            width: 24px;
        }

            #main_menu #nav li a span.home {
                background: url('images/nav/home.png') no-repeat;
            }

            #main_menu #nav li a span.clock {
                background: url('images/nav/clock.png') no-repeat;
            }

            #main_menu #nav li a span.archive {
                background: url('images/nav/archive.png') no-repeat;
            }

            #main_menu #nav li a span.user {
                background: url('images/nav/user.png') no-repeat;
            }

            #main_menu #nav li a span.admin {
                background: url('images/nav/admin.png') no-repeat;
            }

            #main_menu #nav li a span.closed {
                background: url('images/nav/close.png') no-repeat;
            }

        #main_menu #nav li .subnav {
            display: none;
            margin: 0;
            padding: 10px 0 0;
            position: absolute;
            top: 50px;
            width: 190px;
            z-index: 9999;
        }

        #main_menu #nav li:hover .subnav {
            display: block;
        }

        #main_menu #nav li .subnav li {
            border-bottom: 1px solid #c4473b;
            float: none;
            list-style: none;
        }

        #main_menu #nav li .subnav li {
            background-color: #d55043;
            border: none;
        }

            #main_menu #nav li .subnav li:hover {
                background-color: #c4473b;
            }

.form {
    background-color: #FFF;
    border: 1px solid #d4d4d4;
    box-shadow: 1px 1px 3px #d1d1d1;
    padding: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}

    .form h3 {
        font-size: 18px;
        margin: 0 0 25px;
        text-align: center;
    }


/*===================================================================================
======================================= LOGIN =======================================
===================================================================================*/

#login {
    background-color: #FFF;
    border: 1px solid #d4d4d4;
    box-shadow: 1px 0px 3px #d1d1d1;
    padding: 25px;
    margin: 8% auto 0;
    width: 420px;
}

    #login h3 {
        font-size: 18px;
        margin: 0 0 30px;
        text-align: center;
    }

{
    margin-bottom: 15px;
}

#login .formstyle input[type="text"], #login .formstyle input[type="password"] {
    box-shadow: none !important;
    margin-bottom: 15px !important;
    padding: 15px !important;
    width: 100% !important;
}

    #login .formstyle input[type="text"]:focus, #login .formstyle input[type="password"]:focus {
        box-shadow: 0 0 6px #d1d1d1 inset !important;
        padding: 15px !important;
    }

#login .formstyle input#user {
    background: url('images/user_inpt_icon.png') no-repeat 96% 10px;
}

#login .formstyle input#pass {
    background: url('images/pass_inpt_icon.png') no-repeat 96% 10px;
}


#login a#forgot-password {
    color: #178daa;
    text-decoration: underline;
}

    #login a#forgot-password:hover {
        border: 0;
    }

#login .formstyle input.checkbox + label {
    float: right;
}


/*===================================================================================
======================================= REGISTRO =======================================
===================================================================================*/

#Registro {
    background-color: #FFF;
    border: 1px solid #d4d4d4;
    box-shadow: 1px 0px 3px #d1d1d1;
    padding: 25px;
    margin: 2% auto 0;
    width: 55%;
}

    #Registro h3 {
        font-size: 18px;
        margin: 0 0 25px;
        text-align: center;
    }

    #Registro .formstyle input[type="password"] {
        box-shadow: none;
        padding: 15px;
        width: 100%
    }

        #Registro .formstyle input[type="password"]:focus {
            box-shadow: 0 0 6px #d1d1d1 inset;
            padding: 15px;
            width: 100%
        }

    #Registro .formstyle input[type="text"] {
        box-shadow: none;
        padding: 15px;
        width: 100%
    }

        #Registro .formstyle input[type="text"]:focus {
            box-shadow: 0 0 6px #d1d1d1 inset;
            padding: 15px;
            width: 100%
        }

    #Registro .formstyle input#user {
        background: url('images/user_inpt_icon.png') no-repeat 96% 10px;
    }

    #Registro .formstyle input#pass {
        background: url('images/pass_inpt_icon.png') no-repeat 96% 10px;
    }


    #Registro a#forgot-password {
        color: #178daa;
        text-decoration: underline;
    }

        #Registro a#forgot-password:hover {
            border: 0;
        }

    #Registro .formstyle input.checkbox + label {
        float: right;
    }




/*===================================================================================
======================================== HOME =======================================
===================================================================================*/

#informations {
    background-color: #FFF;
    box-shadow: 0 0px 7px #d1d1d1;
    height: 50%;
    min-width: 980px;
    overflow: hidden;
    padding-top: 30px;
}

@media only screen and (min-width : 1824px) {
    #informations {
        height: 58%;
    }
}

#informations .column {
    float: left;
    padding: 0 26px;
    margin-bottom: 50px;
    min-height: 230px;
    width: 326px;
}

    #informations .column:first-child {
        padding-left: 0;
    }

    #informations .column.middle {
        border-left: 1px solid #e4e4e4;
        border-right: 1px solid #e4e4e4;
    }

    #informations .column.last {
        padding-right: 0 !important;
    }

    #informations .column .ribbon {
        color: #FFF;
        font-size: 15px;
        font-weight: normal;
        margin: 0;
        padding: 15px;
        position: relative;
        text-transform: uppercase;
    }

        #informations .column .ribbon:before {
            bottom: -12px;
            border-style: solid;
            border-width: 12px 15px 0 15px;
            content: '';
            height: 0px;
            left: 18px;
            position: absolute;
            width: 0px;
        }

        #informations .column .ribbon.blue {
            background-color: #1f6f94;
        }

        #informations .column .ribbon.green {
            background-color: #80964b;
        }

        #informations .column .ribbon.brown {
            background-color: #a88e66;
        }

        #informations .column .ribbon.blue:before {
            border-color: #1f6f94 transparent transparent transparent;
        }

        #informations .column .ribbon.green:before {
            border-color: #80964b transparent transparent transparent;
        }

        #informations .column .ribbon.brown:before {
            border-color: #a88e66 transparent transparent transparent;
        }

        #informations .column .ribbon img {
            float: left;
            margin: -2px 10px 0 0;
        }

    #informations .column .video {
        color: #686868;
        display: block;
        text-decoration: none;
    }

        #informations .column .video .thumbnail {
            border: 1px solid #CCC;
            border-radius: 0;
            margin-top: 4px;
            padding: 5px;
            width: 100%;
        }

            #informations .column .video .thumbnail img {
                width: 100%;
            }

        #informations .column .video span {
            display: block;
            font-size: 15px;
            font-weight: bold;
        }

            #informations .column .video span img {
                float: left;
                margin: 5px 5px 0 0;
                position: relative;
            }

    #informations .column ul {
        margin: 30px 0 0;
        padding-left: 20px;
    }

        #informations .column ul.blueBullet {
            list-style-image: url('images/blueBullet.jpg');
        }

        #informations .column ul.greenBullet {
            list-style-image: url('images/greenBullet.jpg');
        }

        #informations .column ul.brownBullet {
            list-style-image: url('images/brownBullet.jpg');
        }

        #informations .column ul li {
            margin-bottom: 8px;
        }

            #informations .column ul li a {
                text-decoration: none;
            }

            #informations .column ul li strong {
                font-size: 11px
            }

#informations .footer {
    border-top: 1px solid #e3e3e3;
    clear: both;
    color: #737373;
    font-size: 12px;
    margin: 0;
    padding: 10px 0;
}

/*===================================================================================
====================================== HORARIOS =====================================
===================================================================================*/

.submenu {
    border-bottom: 1px solid #cacaca;
    margin: 50px 0 30px;
    height: 30px;
    position: relative;
}

    .submenu ul {
        bottom: -8px;
        list-style: none;
        margin: 0;
        overflow: hidden;
        padding: 0;
        position: absolute;
    }

    .submenu li {
        float: left;
        margin-right: 25px;
    }

        .submenu li a {
            color: #474747;
            display: block;
            font-size: 16px;
            /*letter-spacing: -1px;*/
            padding: 0 0 8px 0;
            text-decoration: none;
            text-transform: uppercase;
        }

        /*.submenu li a:hover, */ .submenu li.active a {
            border-bottom: 0;
            background: url('images/rowBottom.png') no-repeat center bottom;
        }

        .submenu li a span {
            display: block;
            /*padding: 0 25px 5px 25px;*/
            padding-bottom: 5px;
        }

            .submenu li a span:hover, .submenu li.active a span {
                border-bottom: 4px solid #178daa;
            }

#Ruta_Secuencia, #Horario_Secuencia {
    padding: 6px 10px !important;
}

#opt-schedule {
    margin-bottom: 10px;
    overflow: hidden;
    width: 100%;
}

    #opt-schedule .row {
        margin: 0;
        width: 100%
    }

    #opt-schedule .form-field-group {
        float: left;
        margin-right: 20px;
        width: 31.90%;
    }

        #opt-schedule .form-field-group:last-child {
            margin-right: 0;
        }

    #opt-schedule label {
        color: #474747;
        display: block;
        float: none;
        font-weight: bold;
        margin: 5px 5px 0 0;
        padding: 0;
        width: 70px;
    }

    /*#opt-schedule div { 
			float: left;
			margin-right: 20px; 
			width: 31.90%;
		} */

    #opt-schedule div.editor {
        float: none;
        margin: 0;
        padding: 0;
        width: auto;
    }

    #opt-schedule select {
        min-width: 200px;
    }

    #opt-schedule #semana {
        width: 150px
    }

#calendar {
    background-color: #f6f6f6;
    border: 1px solid #e2e2e2;
    clear: both;
    overflow: hidden;
    padding: 10px 0 0 10px;
}

    #calendar h3.puesto {
        background-color: #616161;
        color: #fff;
        margin: -10px -10px 4px;
        padding: 10px 0;
        text-align: center;
    }

    #calendar #week .cel {
        background: none;
        border-color: transparent;
        color: #686868;
        font-size: 13px;
        height: auto;
        padding: 0 8px 5px;
        text-align: center;
        text-transform: uppercase;
    }

    #calendar .row {
        clear: both;
        margin: 0;
        overflow: hidden;
    }

        #calendar .row .cel {
            background: #FFF;
            border: 1px solid #eaeaea;
            float: left;
            /* height: 98px; */
            height: 118px;
            margin: 0 -1px -1px 0;
            padding: 10px 8px;
            position: relative;
        }

            #calendar .row .cel.mydays {
                width: 12.18% !important;
            }

            #calendar .row .cel a.anotar {
                color: #b3b3b3;
                display: block;
                line-height: 18px;
                height: 100%;
                overflow: hidden; /*Si el turno permite agregar mas de 3 personas no se salga del marco*/
                text-decoration: none;
                width: 100%;
            }

            #calendar .row .cel a:hover {
                border: 0;
            }

            #calendar .row .cel.days span.avilable {
                display: block;
                font-size: 11px;
            }

            #calendar .row .cel a span.name.hc {
                color: #178daa;
                font-weight: bold;
            }

            #calendar .row .cel a span.name {
                color: #686868;
                display: block;
                font-size: 13px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            #calendar .row .cel a.operaciones {
                background: url('../images/gear.png') no-repeat;
                background-size: 100%;
                display: block;
                height: 14px;
                line-height: 42px;
                opacity: 0.4;
                overflow: hidden;
                position: absolute;
                top: 10px;
                right: 8px;
                width: 12px;
            }

            #calendar .row .cel:last-child {
                border-right: 0;
            }

            #calendar .row .cel.time {
                background: none;
                border: 0;
                color: #80a8af;
                /* padding: 16px 10px 0 0; */
                padding: 25px 10px 0 0;
                text-align: center;
                text-transform: uppercase;
                /*width: 80px;*/
                width: 150px;
            }

                #calendar .row .cel.time h4 {
                    margin: 0 0 5px;
                }

                #calendar .row .cel.time span {
                    display: block;
                    margin-bottom: -5px
                }

            /*#calendar .row .cel.days label { float: right; }

		#calendar .row .cel.days span { 
			color: #b3b3b3;
			display: block; 
			float: left; 
			line-height: 12px;
			width: 30px;
		}*/

            #calendar .row .cel.days.checked {
                box-shadow: 0 3px 0 #d55043 inset;
            }

            #calendar .row .cel.days.full {
                background: #FFFCF7;
            }

            #calendar .row .cel.days.disabled {
                background: #FAFAFA;
                color: #A5A5A5;
                font-family: tahoma;
                font-size: 10px;
                text-align: center;
                text-transform: uppercase;
            }

                #calendar .row .cel.days.disabled span {
                    border: 1px solid #CCC;
                    border-radius: 40px;
                    display: block;
                    height: 22px;
                    line-height: 18px;
                    margin: 24% auto 0;
                    width: 22px;
                }

/*Turnos Programados*/

#shifts {
    margin-left: -10px;
    padding: 0;
    -webkit-column-count: 4;
    -webkit-column-gap: 10px;
    -webkit-column-fill: auto;
    -moz-column-count: 4;
    -moz-column-gap: 10px;
    column-count: 4;
    column-gap: 10px;
    column-fill: auto;
}

    #shifts .block {
        border-color: #DDD;
        box-shadow: 0 6px 0 #d55043 inset;
        display: inline-block;
        /*float: left;*/
        min-height: 210px;
        margin: 0 0 20px 10px;
        padding: 20px 15px 40px;
        position: relative;
        /*width: 23.98%;*/
        width: auto;
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        -ms-column-break-inside: avoid;
        column-break-inside: avoid;
        -webkit-transition: height 3s;
        -moz-transition: height 3s;
        -o-transition: height 3s;
        transition: height 3s;
    }

        #shifts .block h4 {
            margin: 0 0 20px;
            text-align: center;
        }

        #shifts .block ul {
            margin: 0;
            padding-left: 20px;
        }

            #shifts .block ul.participants {
                display: none;
            }

            #shifts .block ul li {
                list-style: square;
            }

            #shifts .block ul.participants li {
                margin-bottom: 8px;
            }

            #shifts .block ul li b {
                color: #178daa;
            }

            #shifts .block ul.participants ul li {
                list-style-type: circle;
                margin-bottom: 4px;
            }

        #shifts .block span.flip {
            bottom: 10px;
            color: #178daa;
            cursor: pointer;
            display: block;
            position: absolute;
            right: 15px;
        }

/*Datos Puesto*/
#schedule-info {
    margin-top: 15px;
    overflow: hidden;
}

    #schedule-info .block {
        float: left;
        min-height: 200px;
        padding: 15px;
        width: 316px;
    }

        #schedule-info .block:nth-child(2) {
            margin: 0 15px;
        }

        #schedule-info .block h4 {
            border-bottom: 1px dotted #e0e0e0;
            margin: 0 0 15px;
            padding-bottom: 10px;
        }

        #schedule-info .block ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

            #schedule-info .block ul li {
                margin-bottom: 6px
            }

    #schedule-info .contact b {
        color: #178daa;
    }

    #schedule-info .puesto ul {
        list-style: square;
        padding-left: 15px;
    }

        #schedule-info .puesto ul li a.gray {
            display: block;
            margin-bottom: 3px;
        }

    #schedule-info .nota p {
        color: #d55043;
    }

/*Box Add Turn*/
.modal-header div.head_title {
    margin-bottom: 15px;
    padding-bottom: 10px;
}

    .modal-header div.head_title h2 {
        font-size: 26px;
    }

#turn_info {
    background-color: #F0F0F0;
    font-size: 16px;
    overflow: hidden;
    padding: 15px;
}

    #turn_info div {
        float: left;
        margin-right: 30px;
    }

        #turn_info div:last-child {
            margin-right: 0;
        }

        #turn_info div strong {
            margin-right: 10px;
        }

#pioneers {
    padding: 0 20px 20px;
}

    #pioneers strong.title {
        color: #178daa;
        display: block;
        margin-bottom: 3px;
    }

    #pioneers ul {
        margin: 0;
        padding-left: 0;
    }

        #pioneers ul li {
            list-style: none;
            margin-bottom: 20px;
        }

            #pioneers ul li b {
                font-size: 18px;
            }

            #pioneers ul li ul {
                padding-left: 10px;
            }

                #pioneers ul li ul li {
                    margin-bottom: 10px;
                }

                    #pioneers ul li ul li div.note {
                        margin-top: -5px;
                    }

/*===================================================================================
===================================== INFORME =======================================
===================================================================================*/

#informe .rows, #b-study {
    overflow: hidden;
}

    #informe .rows .cel, #b-study .cel {
        background-color: #eceae7;
        border-bottom: 1px solid #c9c8c5;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        float: left;
        font-size: 13px;
        min-height: 20px;
        padding: 8px 10px;
        position: relative;
        text-align: center;
        width: 8.33%;
    }

        #informe .rows .cel:last-child {
            padding-right: 0;
            width: 76px;
        }

        #informe .rows .cel.lang, #b-study .cel.lang {
            background-color: #6d6d6d;
            border-bottom: 1px solid #605f5f;
            color: #FFF;
            padding: 8px;
            text-align: left;
        }

        #informe .rows:last-child .cel.lang, #b-study .cel.lang {
            padding-bottom: 7px;
        }

#informe .headrow .cel {
    background-color: transparent !important;
    border-bottom: 0;
    overflow: hidden;
    padding: 0 4px;
}

    #informe .headrow .cel.lang {
        border-bottom: 0
    }

    #informe .headrow .cel.pub img {
        border: 1px solid #848484;
        border-bottom: 0;
        max-width: 100%;
    }

    #informe .headrow .cel.pub span {
        background-color: #161616;
        bottom: 0;
        color: #FFF;
        display: block;
        font-size: 11px;
        left: 4px;
        line-height: 18px;
        position: absolute;
        text-align: center;
        width: 69px;
    }

    #informe .headrow .cel.pub:last-child span {
        left: 5px;
        width: 70px;
    }

#informe .rows .cel input, #b-study .cel input {
    border: 1px solid #D5D5D4 !important;
    box-shadow: 1px 1px 6px #CDCDCD inset !important;
    font-size: 12px;
    margin: 0;
    padding: 3px 5px;
    text-align: center;
    width: 100%;
}

#legend {
    margin-top: 20px;
    overflow: hidden;
}

    #legend div {
        float: left;
        margin-right: 20px
    }

        #legend div span {
            height: 10px;
            display: inline-block;
            margin-right: 5px;
            width: 10px;
        }

            #legend div span.t33 {
                background-color: #d3c81f;
                border: 1px solid #cabf1d;
            }

            #legend div span.t37 {
                background-color: #f8f1cb;
                border: 1px solid #efe8c4;
            }

            #legend div span.t30 {
                background-color: #1fafc7;
                border: 1px solid #1ea8bf;
            }

            #legend div span.t35 {
                background-color: #b66b8c;
                border: 1px solid #aa6583;
            }

            #legend div span.t32 {
                background-color: #79c1ae;
                border: 1px solid #73b8a6;
            }

            #legend div span.t31 {
                background-color: #ab8fbf;
                border: 1px solid #a489b7;
            }

            #legend div span.t27 {
                background-color: #5395c6;
                border: 1px solid #4d8bb8;
            }

#b-study {
    margin-top: 2px;
}

    #b-study .cel.inpt {
        border-top: 1px solid #c9c8c5;
        width: 91.6%
    }

    #b-study .cel input {
        width: 58px
    }

/*===================================================================================
===================================== ADMIN ZONE ====================================
===================================================================================*/

#extended_search {
    background-color: #f7f7f7;
    margin: 20px 0;
    overflow: hidden;
    padding: 10px 15px;
}

    #extended_search .form-field-group {
        float: left;
        margin-right: 10px;
        overflow: hidden;
        width: 220px;
    }

        #extended_search .form-field-group:last-child {
            margin-right: 0
        }

        #extended_search .form-field-group.estado {
            width: 160px;
        }

        #extended_search .form-field-group.pub {
            width: 360px;
        }

        #extended_search .form-field-group.searchbtn {
            width: 68px;
        }

        #extended_search .form-field-group label {
            display: block;
            padding-left: 0;
        }

        #extended_search .form-field-group input[type="text"], #extended_search .form-field-group select {
            margin: 0;
            width: 100%;
        }

        #extended_search .form-field-group.general_search {
            width: 268px;
        }

            #extended_search .form-field-group.general_search label {
                margin-bottom: 31px;
            }

        #extended_search .form-field-group.searchbtn label {
            margin-bottom: 26px;
        }

        #extended_search .form-field-group.general_search input[type="text"] {
            float: left;
            margin-right: 10px;
            padding: 7.5px 10px;
            width: 190px;
        }

        #extended_search .form-field-group.general_search .btn-group .btn {
            padding: 7.5px 10px;
        }

/*===================================================================================
======================================= VIDEO =======================================
===================================================================================*/

#video {
    margin-top: 30px
}

    #video h1 {
        font-size: 26px;
        margin: 0 auto 15px;
        width: 80%;
    }

    #video video {
        background-color: #000;
        display: block;
        margin: 0 auto 20px auto;
        width: 80%;
    }

    #video #playlist {
        border-top: 1px dotted #C7C7C7;
        overflow: hidden;
        padding-top: 15px;
    }

        #video #playlist ul {
            margin: 0 0 0 -20px;
            padding: 0;
        }

            #video #playlist ul li {
                float: left;
                list-style: none;
                margin: 0 0 20px 20px;
                width: 230px;
            }

                #video #playlist ul li a {
                    text-decoration: none;
                }

                #video #playlist ul li img {
                    background-color: #FFF;
                    border: 1px solid #CCC;
                    display: block;
                    height: 150px;
                    padding: 5px;
                    width: 100%
                }

                    #video #playlist ul li img:hover {
                        background-color: #d55043;
                        -moz-transition: 0.5s;
                        -o-transition: 0.5s;
                        transition: 0.5s;
                        -webkit-transition: 0.5s;
                    }

                #video #playlist ul li span {
                    color: #686868;
                    display: block;
                    margin-top: 4px;
                    overflow: hidden;
                    text-decoration: none;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    width: 100%;
                }

/*===================================================================================
======================================= FOOTER ======================================
===================================================================================*/

footer {
    border-top: 1px solid #dad9d7;
    clear: both;
    margin-top: 30px !important;
}

    footer p {
        margin-top: 10px;
    }

.table-bordered input.integer-number {
    width: 100% !important
}


/*===================================================================================
====================================== BOOTSTRAP ====================================
===================================================================================*/

/*====forms====*/
.save-button, .button-cancel, .button-ok, .report-button, .btn-primary, .create-button, .back-button {
    border: 0;
    border-radius: 0;
    color: #FFF !important;
    outline: none !important;
    padding: 5px 12px;
    text-shadow: none;
    width: auto;
}

    .save-button.btn-default, .btn-primary, .create-button {
        background: #178daa;
        border-bottom: 3px solid #117992 !important;
    }

        .save-button.btn-default:hover, .save-button.btn-default:focus, .btn-primary:hover, .btn-primary:focus, .create-button:hover {
            background-color: #339AB4 !important;
            border-color: #1B8DA8
        }

        .save-button.btn-default:active, .btn-primary:active, .create-button:active {
            background-color: #1B8DA8 !important;
            border-bottom: 3px solid #1B8DA8 !important;
        }

    .save-button .glyphicon-ok {
        margin-right: 5px;
    }

.button-cancel {
    background: #d55043 !important;
    border-bottom: 3px solid #bd3f32 !important;
}

    .button-cancel:hover {
        background-color: #e95c4f !important;
        border-color: #d04739 !important;
    }

    .button-cancel:active {
        background: #d04739 !important;
        border-bottom: 3px solid #d04739 !important;
    }

.report-button {
    background: #80964b !important;
    border-bottom: 3px solid #6c7f3e !important;
}

    .report-button:hover {
        background-color: #92ab55 !important;
        border-color: #7b9147 !important;
    }

    .report-button:active {
        background: #7b9147 !important;
        border-bottom: 3px solid #7b9147 !important;
    }

.back-button {
    background: #a8a8a8 !important;
    border-bottom: 3px solid #8f8f8f !important;
}

    .back-button:hover {
        background-color: #b9b9b9 !important;
        border-color: #9f9f9f !important;
    }

    .back-button:active {
        background: #9f9f9f !important;
        border-bottom: 3px solid #9f9f9f !important;
    }

.page-content.inset {
    padding: 0;
}

    .page-content.inset .entity-form-container {
        margin-top: 0;
    }
    /*.page-content.inset .entity-form-container h2 { border-bottom: 1px dotted #e0e0e0; margin: 0 0 20px; padding-bottom: 10px; }*/
    .page-content.inset hr {
        display: none;
    }

.form-horizontal .col-md-offset-2.col-md-10 {
    margin: 20px 0 0 0 !important;
}

.form-horizontal .control-label {
    text-align: left !important;
}

button {
    border-radius: 0 !important;
}

/*tables*/
table {
    box-sizing: border-box;
    moz-box-sizing: content-box;
    -webkit-box-sizing: border-box;
}

    table.publication th, table.publication td {
        padding: 5px !important;
    }

        table.publication td.amount {
            text-align: center;
        }

    table td, table th {
        border: 1px solid #EBEBEB !important;
    }

    table th {
        border: 1px solid #737E7E !important;
        vertical-align: middle;
    }

    table thead tr {
        background: #878F8F;
        color: #FFF;
    }

.row-options {
    width: 90px !important;
    text-align: center;
}

    .row-options a.btn-md {
        color: #bdc3c7;
        padding: 0 6px;
    }

    .row-options a.row-edit:hover, .row-options a.row-popup-edit:hover {
        color: #f39c12;
    }

    .row-options a.row-details:hover {
        color: #27ae60;
    }

    .row-options a.row-delete:hover {
        background-color: #E95545;
        border: 1px solid #CF4848;
    }

.alert-danger {
    float: none !important;
    /*margin: 15px auto -50px !important; */
    margin: 15px auto 5px !important;
    padding: 10px !important;
    text-align: center;
    width: 500px;
}

.info-box {
    background-color: #e7ebeb;
    color: #178daa;
    border: 1px solid #b4dde7;
    padding: 15px 20px;
    margin: auto !important;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    max-width: 650px;
    border-radius: 6px;
    background-image: none; /* Quita el icono que aparece por defecto */
}

.row-options .btn-sm {
    margin-right: 4px;
    padding: 2px 6px;
}
/*END tables*/

span.k-picker-wrap.k-state-default {
    border: 1px solid #dfdfdf !important;
}

.k-picker-wrap.k-state-default input.k-input {
    border: 0 !important;
    margin: 0 !important;
    padding: 0.177em 0 !important;
    outline: none !important;
}

.pagination li a, .pagination li span {
    padding: 2px 10px;
}

.dataTables_length .form-control {
    display: inline-block !important;
    float: none !important;
    margin: 3px 5px !important;
}

.form-inline .form-control { /*display: inline-block !important;*/
    float: left;
    margin: 0 5px;
    padding: 5px 10px !important;
}

/*====fancybox====*/
.modal .modal-dialog {
    max-width: 600px;
    min-width: 290px;
}

.modal-content {
    border-radius: 0 !important
}

.modal-header {
    border-bottom: 0; /*padding: 0; position: absolute; right: 10px; top: 5px;*/
}

    .modal-header .close {
        font-size: 26px;
    }

.modal-body, .modal-footer {
    padding: 15px;
}

.modal-footer {
    background-color: #F5F5F5;
    margin-top: 0;
}

/*====Horario alerta====*/
.alert {
    border-radius: 0;
    float: left;
    margin: 0 10px 10px 0;
    padding: 5px 15px 5px 40px;
    min-width: 300px;
}

    .alert strong {
        font-weight: normal;
    }

.alert-info {
    background: #e7ebeb url('../images/bluecalendar.png') no-repeat 15px 10px;
    border-color: #b4dde7;
    color: #178daa;
}

.alert-warning {
    background: #f3d9d6 url('../images/redperson.png') no-repeat 15px 10px;
    border-color: #fbbdb7;
    color: #d55043;
}

.alert-success {
    background-image: url('../images/success.png');
    background-position: 15px 10px;
    background-repeat: no-repeat;
    color: #92ad61;
}








/*====Informes 2016====*/

#informe .col {
    border: 1px solid #ccc;
    border-radius: 3px;
    float: left;
    overflow: hidden;
    width: 280px;
}

    #informe .col:nth-child(2) {
        margin: 0 40px;
    }

    #informe .col h3 {
        background-color: #737D80;
        color: #FFF;
        padding: 5px 15px;
        margin: 0;
    }

#informe .cont {
    padding: 15px;
    width: 100%;
}

    #informe .cont table tr {
        border-bottom: 1px solid #ccc;
    }

        #informe .cont table tr:last-child {
            border-bottom: 0;
        }

            #informe .cont table tr:last-child td {
                padding-bottom: 0;
            }

    #informe .cont table th {
        color: #178daa;
        text-align: left;
        padding-bottom: 10px;
    }

    #informe .cont table td {
        padding: 10px 0;
    }

#informe .col strong {
    color: #178daa;
    display: block;
    margin-bottom: 5px;
}

#informe .col b {
    display: block;
}

#informe .col input {
    width: 100%;
}


/*----------------------Encuestas---------------------*/

#encuesta {
    border: 1px solid #CCC;
    border-radius: 3px;
    margin-bottom: 30px;
    padding: 20px;
}

    #encuesta:last-child {
        margin-bottom: 0;
    }

    #encuesta legend {
        margin-bottom: 0;
        width: auto;
    }

    #encuesta h4 {
        margin: 0 0 30px;
    }

    #encuesta .title {
        display: block;
        font-size: 15px;
        margin-bottom: 5px;
    }

    #encuesta label {
        font-weight: normal;
        display: inline-block;
        margin: 0 10px 0 20px
    }

    #encuesta input[type="radio"], #encuesta input[type="checkbox"] {
        margin-right: 5px;
    }





/*---------DISPONIBILIDAD--------*/
.btn-primary {
    font-size: 14px;
}

table.t_available {
    border-collapse: collapse;
    clear: both;
    margin-top: 10px;
    width: 100%;
}

table.color_line tr:nth-child(2n) {
    background-color: #ededed;
}

table.t_available th.puesto {
    width: 18%;
}

table.t_available th {
    background-color: #3e3e3e;
    border: 1px solid #3e3e3e !important;
    color: #FFF;
    font-size: 15px;
    padding: 5px 15px;
    text-align: left;
    width: 10%
}

table.t_available td {
    border: 1px solid #ccc !important;
    font-size: 13px;
    padding: 8px 15px;
}

    table.t_available td span {
        display: block;
        margin-bottom: 10px;
    }

        table.t_available td span:last-child, table.t_available td label:last-child {
            margin-bottom: 0;
        }

    table.t_available td label {
        display: block;
        margin-bottom: 10px;
    }

#available_form h3 {
    text-align: left;
}

#available_form div {
    margin-bottom: 10px;
}

    #available_form div table {
        margin-bottom: 30px;
        width: 100%;
    }

        #available_form div table th, #available_form div table td {
            /*border: 0 !important; */
            font-size: 14px;
            padding: 2px 5px;
        }

        #available_form div table th {
            background-color: #3e3e3e;
            color: #FFF;
        }

        #available_form div table label {
            display: block;
            margin-bottom: 3px;
        }


.forgot-password-btn {
    display: inline-block;
    width: 100%;
    text-align: center;    
    font-size: 16px;
    padding: 12px 20px;
    margin-top: 15px;
    color: #fff !important;
    background-color: #e67373; /* Rojo coral suave */
    border: none;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.3s;
}

    .forgot-password-btn:hover {
        background-color: #cc5c5c;
        color: #fff;
        text-decoration: none;
    }
