﻿/*.pagination > li:last-child > a, 
.pagination > li:last-child > span,*/
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    background: none;
}

.pagination li a.Next {
    border: 1px solid #0096d7 !important;
    color: #0096d7;
    margin-left: 7px;
    border-radius: 2px;
    font-weight: 700;
    padding: 5px 12px;
}

.pagination li a.Previous {
    border: 1px solid #0096d7 !important;
    color: #0096d7;
    margin-right: 7px;
    border-radius: 2px;
    font-weight: 700;
    padding: 5px 12px;
}

.dataTables_length label {
    display: inline;
}

.alert-inline {
    padding: 20px 15px 18px 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    position: fixed;
    right: 40%;
    top: 0;
    border-radius: 0 0 0 0 !important;
    z-index: 1030;
    opacity: 1;
}

.alert-inline-message {
    padding-right: 10px;
    line-height: 1.7;
}

.alert-inline-success {
    color: #3c763d;
    background-color: #dff0d8;
    /*background-color: rgba(223, 240, 216, 0.8);*/
    border-color: #d6e9c6;
}

.alert-inline-danger {
    color: #a94442;
    background-color: #f2dede;
    /*background-color: rgba(85, 87, 87, 0.8);*/
    border-color: #ebccd1;
}

.alert-inline-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    /*background-color: rgba(99, 97, 89, 0.8);*/
    border-color: #faebcc;
}

/* styles for validation helpers start */
.field-validation-error {
    font-family: 'OpenSans-Regular';
    color: #b94a48;
    font-size: 95%;
}

    .field-validation-error span {
        line-height: 2;
    }

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #b94a48 !important;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}
/* styles for validation helpers end */

/* ajax loader start*/

.ajax-bounce-loader {
    margin-top: 5px;
    width: 100px;
    text-align: center;
}

    .ajax-bounce-loader .ajax-bounce-child {
        width: 16px;
        height: 16px;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: ajax-bounce-loader 1.4s ease-in-out 0s infinite both;
        animation: ajax-bounce-loader 1.4s ease-in-out 0s infinite both;
    }

    .ajax-bounce-loader .ajax-bounce1 {
        -webkit-animation-delay: -0.64s;
        animation-delay: -0.64s;
    }

    .ajax-bounce-loader .ajax-bounce2 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .ajax-bounce-loader .ajax-bounce3 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

    .ajax-bounce-loader .ajax-bounce4 {
        -webkit-animation-delay: -0.01s;
        animation-delay: -0.01s;
    }

@-webkit-keyframes ajax-bounce-loader {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ajax-bounce-loader {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.ajax-bounce1 {
    background-color: #86BC25 !important;
    border-radius: 100%;
}

.ajax-bounce2 {
    border-radius: 100%;
    background-color: #00a3e0 !important;
}

.ajax-bounce3 {
    border-radius: 100%;
    background-color: #FFCD00 !important;
}

.ajax-bounce4 {
    border-radius: 100%;
    background-color: #DA291C !important;
}

/* ajax loader end */

/* wait dialog style START*/
.waitdialog {
    background: transparent !important;
    overflow: hidden;
    display: none;
    top: 30%;
    position: fixed;
    top: 50%;
    left: 50%;
}
/* first div inside waitdialog div. */
.waitdialog > div {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
}

.wait-modalcontent {
    background-clip: padding-box;
    background-color: #fff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 0 0;
    display: table;
    height: auto !important;
    margin: 10% 0 0;
    outline: 0 none;
    overflow-x: hidden;
    padding: 0;
    position: relative;
}
/* wait dialog style END*/

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.error {
    font-weight: 200 !important;
    color: red;
}

.form-control .error {
    border: 1px #ff0000 solid;
    animation: blink 1s;
    animation-iteration-count: 3;
}
@keyframes blink {
    50% {
        border-color: #fff;
    }
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(126, 239, 104, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
    outline: 0 none;
}

div#spinner {
    display: none;
    width: 100px;
    height: 100px;
    position: fixed;
    top: 50%;
    left: 50%;
    background: url(spinner.gif) no-repeat center #fff;
    text-align: center;
    padding: 10px;
    font: normal 16px Tahoma, Geneva, sans-serif;
    border: 1px solid #666;
    margin-left: -50px;
    margin-top: -50px;
    z-index: 2;
    overflow: auto;
}

input[type=button],
input[type=radio],
input[type=submit],
input[type=checkbox] {
    cursor: pointer;
}

img.carousel {
    box-shadow: 3px 3px 1px #ccc;
}