﻿
body {
    font-family: Calibri
}

h3 {
    color: #696969;
}

.link-underline {
    text-decoration: underline;
}

.simple-heading {
    font-weight: 700;
}

.td {
    padding: 1% !important;
}

.cell-overflow {
    overflow-y: auto;
    height: 30px;
}

.top-margin {
    margin-top: 1%;
}

.margin-for-twoway {
    margin-top: 1.5% !important
}

.zero-padding {
    padding: 0 !important;
}

.extra-padding {
    padding: 1% !important
}

.int-add-btn-padding {
    padding: 2.5% 0 0 0;
}

/* Ripple effect */
.ripple-btn {
    background: #4682B4;
    background-position: center;
    transition: background 0.1s ease-in;
    color: #fff;
    border-radius: .3em;
    border: 1px solid #DCDCDC;
}

    .ripple-btn:hover {
        background: #5c9bd1 radial-gradient(circle, transparent 1%, #5c9bd1 1%) center/15000%;
    }

    .ripple-btn:active {
        background-color: aliceblue;
        background-size: 100%;
        transition: background .0s;
    }

.ripple-btn-login-update {
    background: #46c25e;
    background-position: center;
    transition: background 0.1s ease-in;
    padding: 1% 4%;
    border-radius: .3em;
    text-transform: uppercase;
    display: block;
    padding: 4%;
    width: 100%;
    margin: 0px auto;
    color: #ffffff;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .ripple-btn-login-update:hover {
        background: #46c25e radial-gradient(circle, transparent 1%, #46c25e 1%) center/15000%;
    }

    .ripple-btn-login-update:active {
        background-color: #9fdfab;
        background-size: 100%;
        transition: background .0s;
    }

.overlay {
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=80);
    opacity: 0.80;
}

.theprogress {
    background-color: black;
    width: 110px;
    height: 24px;
    text-align: center;
    filter: alpha(opacity=100);
    opacity: 1;
}

.modalprogress {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px 0 0 -55px;
    color: white;
}

body > .modalprogress {
    position: fixed;
}

.inputwithicon {
    position: relative;
}

    .inputwithicon input[type=text] {
        padding-left: 40px;
    }

    .inputwithicon i {
        position: absolute;
        left: 0;
        top: 3px;
        padding: 9px 8px;
        color: #aaa;
    }

    .inputwithicon input[type=text]:focus + i {
        color: dodgerblue
    }

.passwithicon {
    position: relative;
}

    .passwithicon input[type=password] {
        padding-left: 40px;
    }

    .passwithicon i {
        position: absolute;
        left: 0;
        top: 3px;
        padding: 9px 8px;
        color: #aaa;
    }

    .passwithicon input[type=password]:focus + i {
        color: dodgerblue
    }

input[type=checkbox] {
    display: none;
}

    input[type=checkbox] + label {
        display: block;
        margin: 0.2em;
        cursor: pointer;
        font-weight: 500;
    }

        input[type=checkbox] + label:before {
            content: '\2714';
            border: 0.1em solid #000;
            display: inline-block;
            width: 1em;
            height: .2em;
            padding-bottom: 1.1em;
            margin-bottom: 0.2em;
            margin-right: 0.2em;
            vertical-align: bottom;
            color: transparent;
            transition: .2s;
        }

    input[type=checkbox]:checked + label:before {
        background-color: #fff;
        border-color: #fff;
        color: #000
    }

    input[type=checkbox] + label:active:before {
        transform: scale(0)
    }

    input[type=checkbox] + label:disabled:before {
        transform: scale(1);
        border-color: #aaa;
        background: white;
    }

    input[type=checkbox]:checked + label:before {
        background-color: #fff;
        border-color: #fff;
        color: #000;
    }

    input[type=checkbox]:checked:disabled:before {
        transform: scale(1);
        background-color: #fff;
        border-color: #fff;
        color: #000;
        cursor: not-allowed
    }

input[type=radio]:checked, input[type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    input[type=radio]:checked + label,
    input[type=radio]:not(:checked) + label {
        position: relative;
        padding-left: 20px;
        padding-right: 2px;
        cursor: pointer;
        line-height: 20px;
        display: inline-block;
        color: #666;
    }

        input[type=radio]:checked + label:before,
        input[type=radio]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 18px;
            height: 18px;
            border: 1px solid #000;
            border-radius: 100%;
            background: #fff;
        }

        input[type=radio]:checked + label:after,
        input[type=radio]:not(:checked) + label:after {
            content: '';
            width: 10px;
            height: 10px;
            background: mediumseagreen;
            position: absolute;
            top: 4px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        input[type=radio]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0)
        }

    input[type=radio]:checked:after {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

.input-fields-div {
    height: auto;
    min-height: 80px;
    padding-top: 1%;
    padding-bottom: 1%;
    -webkit-box-shadow: 0 10px 6px -6px #777;
    -moz-box-shadow: 0 10px 6px -6px #777;
    box-shadow: 0 10px 6px -6px #777;
}

.grid-view-css {
    height: auto;
    width: 100%;
    font-weight: 600
}

.alterrow {
    background-color: #F4F6F6;
    background-color: #E6E6FA;
    text-align: left;
    font-size: 0.88em;
}

.rowStyle {
    background-color: #F4F6F6;
    color: black;
    text-align: left;
    font-size: 0.88em;
}

.grid-header {
    background: -moz-linear-gradient(top, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0));
    background: -webkit-linear-gradient(top, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), -webkit-linear-gradient(left top, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0));
    background: linear-gradient(to bottom, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(to right bottom, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0));
    background-color: #4682B4;
    color: #F8F8FF;
    /*height: 50px;*/
    padding: 1% !important;
    text-align: center;
    width: 100% !important;
}

th {
    background: -moz-linear-gradient(top, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), -moz-linear-gradient(left top, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0)) !important;
    background: -webkit-linear-gradient(top, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), -webkit-linear-gradient(left top, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0)) !important;
    background: linear-gradient(to bottom, rgba(3, 97, 145, 0.15), rgba(0, 0, 0, 0.25)), linear-gradient(to right bottom, rgba(3, 97, 145, 0), rgba(3, 97, 145, 0.15) 50%, rgba(3, 97, 145, 0) 50%, rgba(3, 97, 145, 0)) !important;
    background-color: #4682B4 !important;
    color: #F8F8FF !important;
    text-align: center !important
}

.error-div {
    padding: 1%;
    background: linear-gradient(to top left,#FF4F30, #FF3082);
    border-radius: 1em 1em 0 0;
    height: auto;
    color: #fff !important;
}

.success-div {
    padding: 1%;
    background: linear-gradient(to top left,seagreen, #00FF00);
    border-radius: 1em 1em 0 0;
    height: auto;
    color: #fff !important;
}

.link-msg {
    color: white;
}

/*Overlay for Message*/

.message-label {
    font-family: Calibri;
    font-size: large;
    line-height: 20px;
    font-weight: 500;
    text-align: left;
}

#show {
    cursor: pointer;
    background: gray;
    background-position: center;
    transition: background 0.3s ease-in;
    color: #fff;
    border-bottom-left-radius: 5em;
}

    #show:active {
        background-color: #DCDCDC;
        background-size: 100%;
        transition: background .3s;
        color: #000;
    }

.message-overlay {
    padding: 5% 23% 10% 23%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 11;
    display: none;
}

.message-modal {
    padding: 2%;
    background: -webkit-linear-gradient(right, #53a7ea, #b9dcdb);
    background: -o-linear-gradient(left, #53a7ea, #b9dcdb);
    background: -moz-linear-gradient(left, #53a7ea, #b9dcdb);
    background: linear-gradient(to left, #53a7ea, #b9dcdb);
    background-color: #53a7ea;
    border-radius: 5px;
    z-index: 11;
}

.message-cancel {
    cursor: pointer;
    height: 35px;
    width: 35px;
}

.message-content {
    margin: 30px;
}

@media only screen and (max-width: 1153px) {

    li.active > a {
        font-size: .9em !important;
    }

    .ripple-btn {
        font-size: .8em !important;
    }

    .arrow-dropdown {
        padding: 0px 5px !important;
    }

    p {
        font-size: .9em !important;
    }

    table {
        font-size: .9em !important;
    }

    span {
        font-size: .8em !important;
    }
}

@media (min-width:300px) and (max-width:500px) {
    th {
        font-size: .8em;
        font-weight: 400
    }
}
