﻿body {
    padding: 0px;
    overflow-x: hidden;
}

.header_top_menu {
    background-color: #1EB1E2;
    border-bottom: 1px solid #dadada;
    -webkit-box-shadow: 0 -1px 3px rgba(0,0,0,.03) inset;
    box-shadow: 0 -1px 3px rgba(0,0,0,.03) inset;
    padding: 5px 0;
    height: 35px;
}

.Logo {
    color: black !important;
    font-weight: bold;
    font-size: large;
    background-image: url("../Images/logoicon.png");
    background-repeat: no-repeat;
    background-position-x: 15px;
    background-size: 40px;
    margin-left: 55px;
    padding-left: 55px;
}

input:invalid, select:invalid, .ng-invalid.form-control {
    border-top-style: solid;
    border-color: rgba(246, 182, 165, 0.99) !important;
    background-color: seashell !important;
    border-width: 1px;
}




textarea {
    height: 50px !important;
}



@media (min-width: 768px) {
    .equalheight {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .equalheight > [class*='col-'] {
            flex: 1 1 auto;
            display: flex;
        }

            .equalheight > [class*='col-'] > * {
                flex: 1 0 100%;
            }
}

.addon-group {
    max-width: 500px;
    width: 100%;
    height: 34px;
    display: table;
}

.addon-item {
    display: table-cell;
    border: 1px solid #cccccc;
}

.form-control-group {
    max-width: 280px;
    width: 100%;
    display: table;
}

    .form-control-group div {
        display: table-cell;
        vertical-align: top;
    }

    .form-control-group .form-control-left {
        border-radius: 4px 0px 0px 4px;
    }

    .form-control-group .form-control-mid {
        border-radius: 0px 0px 0px 0px;
        border-left: none;
    }

    .form-control-group .form-control-right {
        border-radius: 0px 4px 4px 0px;
        border-left: none;
    }

.form-checked-group {
    max-width: 280px;
    height: 34px;
    display: table;
}

    .form-checked-group input[type="checkbox"], .form-checked-group input[type="radio"] {
        width: 24px !important;
        display: table-cell;
        height: 24px !important;
        cursor: pointer;
        text-align: center;
        margin: 4px;
    }

    .form-checked-group > div {
        border: 1px solid #cccccc;
        height: 100%;
        width: 100%;
        border-radius: 4px 0px 0px 4px;
        vertical-align: central;
        text-align: center;
        background-color: gainsboro;
    }

    .form-checked-group > label {
        border: 1px solid #cccccc;
        border-radius: 0px 4px 4px 0px;
        display: table-cell;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        vertical-align: middle;
        cursor: pointer;
    }

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* 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 */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.disabled {
    background-color: #eeeeee;
}

.ui-spinner-input {
    text-align: right;
}
tr.selectedrow {
    background-color: #2e6da4 !important;
    color: white;
}
tr.deletedrow td {
    position: relative
}
/* Setup a new coordinate system   */
tr.deletedrow td:before { /* Create a new element that       */
    content: " "; /* …has no text content            */
    position: absolute; /* …is absolutely positioned       */
    left: 0;
    top: 50%;
    width: 100%; /* …with the top across the middle */
    border-bottom: 1px solid #000; /* …and with a border on the top   */
}  