/*error line css*/
@keyframes error {
    from {
        background-color: #990000;
        color: white
    }
    to {
        background-color: #FF0000;
        color: white
    }
}

@-webkit-keyframes error {
    from {
        background-color: #990000;
        color: white
    }
    to {
        background-color: #FF0000;
        color: white
    }
}

.error {
    -webkit-animation: error 2s infinite;
    -moz-animation: error 2s infinite;
    animation: error 2s infinite;
}

/*info line css*/
@keyframes info {
    from {
        background-color: #009900;
        color: white
    }
    to {
        background-color: #00FF00;
        color: white
    }
}

@-webkit-keyframes info {
    from {
        background-color: #990000;
        color: white
    }
    to {
        background-color: #FF0000;
        color: white
    }
}

.info {
    -webkit-animation: info 2s infinite;
    -moz-animation: info 2s infinite;
    animation: info 2s infinite;
}

/*table css*/
.table th {
    text-align: center;
    background-color: lightgrey !important;
}

/*input css*/
input {
    margin: 0 auto !important;
}

::-webkit-input-placeholder {
    font-style: italic;
}

:-moz-placeholder {
    font-style: italic;
}

::-moz-placeholder {
    font-style: italic;
}

:-ms-input-placeholder {
    font-style: italic;
}

/*MODAL css*/
.modal {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }

    .mytab {
    }

}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*HELP css*/
div.help {
    display: none;
    /* Make sure the info element is initially hidden */
    color: #777;
    font-size: 12px;
    margin: 2px 0;
    text-indent: 1em;
}

input:focus + div.help, select:focus + div.help, textarea:focus + div.help {
    /* This selector selects the div.info that comes right after
       the focused input */
    display: block;
    /* Make the element visible */
}

.myborder {
    border: 2px solid lightgrey;
}

.no-border {
    border: 0 !important;
    box-shadow: none !important;
}

.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}

.tab-content {
    padding-top: 10px;
}

.nav-tabs {
    margin: 0 !important;
}

.padding-1 {
    padding-right: 1px;
    padding-left: 1px;
}
/* for scan reports */
#legend {
    font-family: Arial, sans-serif;
    font-size: small;
    background: #fff;
    padding: 3px;
    margin: 3px;
    border: 1px solid #000;
}

.circle {
    white-space: pre;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background-color: red;
}

.green {
    background-color: greenyellow;
}

.orange {
    background-color: orange;
}

/* Added Fieldsets */
.fieldset {
    border: solid 1px #DDDDDD !important;
    padding: 0 10px 10px 10px;
    border-bottom: none;
}

.legend {
    padding: 0 10px;
    border-bottom: none;
}
.table-bordered, .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid darkcyan; //your desired color
}


