html,
body {
    height: 100%;
    width: 97%;
    margin-left: 40px;
}

@media (max-width: 768px) {
    html,
    body {
        height: 100%;
        margin-left: 0px;
    }
}

@media (max-width: 1250px) {

    html,
    body {
        height: 100%;
        margin-left: auto;
    }
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after,
a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings", serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    /*border-left: 3px solid #eed3d7;*/
    padding: 10px 20px 5px 20px;
    /* margin: 0 0 15px 0; */
    border-radius: 8px;
    box-shadow: 0px 0px 8px #eed3d7;
}

.hasDatePicker {
}

.ui-datepicker .ui-datepicker-prev {
    width: 0px !important;
    height: 0px !important;
    border-style: solid !important;
    border-width: 10px !important;
    border-left-width: 0px !important;
    border-color: transparent white transparent transparent !important;
    background-color: transparent !important;
}

.ui-datepicker .ui-state-hover .ui-state-focus .ui-datepicker-prev-hover {
}

.ui-datepicker .ui-datepicker-next {
    width: 0px !important;
    height: 0px !important;
    border-style: solid !important;
    border-width: 10px !important;
    border-right-width: 0px !important;
    border-color: transparent transparent transparent white !important;
    background-color: transparent !important;
}

.pagination {
    margin: 5px 0px !important;
}

.grid-view .table {
    margin-bottom: 0px !important;
}

.bt-buscar-label {
    padding: 0px;
    border: 0px;
    background-color: transparent;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#c-slider {
    margin: auto;
    width: 85%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 10px #fff, 0 15px 50px;
}

#slider {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 300%;
}

#slider section {
    width: 100%;
}

#slider img {
    display: block;
    width: 100%;
    height: 100%;
}

#btn-prev,
#btn-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 40px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    font-family: monospace;
    cursor: pointer;
}

#btn-prev:hover,
#btn-next:hover {
    background: rgba(255, 255, 255, 1);
}

#btn-prev {
    left: 10px;
}

#btn-next {
    right: 10px;
}

.form-control1 {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

/*form input[type="email"] {
  border: 2px solid red;
}

/Si el valor que el usuario escribe es valido, obtendra un color verde
form input[type="email"]:required:valid {
  border: 2px solid green;
  /* otras propiedades 
}
/*caso contrario, el color sera rojo
form input[type="email"]:focus:required:invalid {
  border: 2px solid red;
   otras propiedades */

/*
input#mail {
    border: 2px solid red;
}

input#mail:required:valid {
    border: 2px solid green;
}

input#mail:focus:required:invalid {
    border: 2px solid red;
}
*/

input#mail.valid {
    border: 2px solid green;
}

input#mail.invalid {
    border: 2px solid red;
}
