﻿body {
    font-family: Verdana;
    font-size: 14px;
    padding: 0;
    margin:0;
}

input, select {
    padding: 10px;
    box-sizing: border-box;
}

a {
    color: #914b68;
    text-decoration: none
}

.line1 {
    float: left;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}

.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button1 {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

    .button1:hover {
        background-color: #4CAF50;
        color: white;
    }

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
}

    .button2:hover {
        background-color: #008CBA;
        color: white;
    }

.button3 {
    background-color: white;
    color: black;
    border: 2px solid chocolate;
}

    .button3:hover {
        background-color: chocolate;
        color: white;
    }

.no_data {
    font-size: 12px;
    color: Maroon;
    font-style: italic;
    text-align: center;
    height: 50px;
    vertical-align: middle
}

.button99 {
    color: white;
    padding: 2px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-weight: normal;
    border-radius: 4px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    width: 24%;
    height: 50px;
}

.txt_amt {
    border-bottom: 1px solid black;
    height: 15px;
    padding: 5px;
    border-width: 0px;
    text-align: right
}

.modal {
    /*  display: none; Hidden by default*/
    opacity: 0.8;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    border-radius: 15px;
    margin: auto;
    padding: 20px;
    text-align: center;
    border: 1px solid #888;
    width: 50%;
}

