﻿
/*============PopUp Start===========*/
/* Outer */
.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.75);
}

/* Inner */
.popup-inner {
    /*max-width: 700px;
    width: 90%;*/
    position: absolute;
    top: 50%;
    left: 40%;
    -webkit-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 5px;
    background: #fff;
}

/* Close Button */
.popup-close {
    width: 25px;
    height: 25px;
    padding-top: 2px;
    display: normal;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(45, 138, 62, 0.7);
    font-family: Arial, Sans-Serif;
    font-size: 15px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

    .popup-close:hover {
        -webkit-transform: translate(50%, -50%) rotate(180deg);
        transform: translate(50%, -50%) rotate(180deg);
        background: rgba(255, 0, 0, 1);
        text-decoration: none;
    }
/*==========PopUp End=========*/
/*======Grid Input Start==========*/

.input {
    width: 100% !important;
}

th {
    text-align: center !important;
    width: 80px !important;
}

td {
    cursor: pointer;
}

/*========Grid Input End=======*/
/*========Exception Notification Start =======*/
.control-label {
    text-align: left !important;
}

sup {
    color: rgb(255, 3, 3);
    font-size: 17px;
}

.notificationpan {
    display: none;
    width: 100%;
    position: absolute;
    top: 70px;
    right: 200px;
    padding: 10px 10px;
    width: auto;
    height: auto;
    -webkit-border-radius: 9px 9px 9px 9px;
    border-radius: 9px 9px 9px 9px;
    background-color: #FF0000;
}

.closenotificationpan {
    position: absolute;
    margin: 0px 0px 0px 0px;
    top: 6px;
    right: 6px;
}

#notification {
    margin: 0px;
    padding: 0px;
    top: -100px;
    position: relative;
}
/*========Exception Notification End =======*/

