﻿/*body {
    padding-top: 50px;
    padding-bottom: 20px;
}


.body-content {
    padding-left: 15px;
    padding-right: 15px;
}


input,
select,
textarea {
    max-width: 280px;
}*/

label.error{
    font-size:14px;
    color:red;
    font-weight:bold;
}
.form-control {
    max-width: 400px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bg-light-gray{
    background-color:#ededed;
}
.bg-danger-light {
  background-color: #ef929b !important;
}
.bg-gray{
    background-color:#d2d2d2;
}

.bg-light-info-active{
    background-color:#a4dbee;
}
.loader {
    border: 16px solid #fff; /* Light grey */
    border-top: 16px solid #00e2ff; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: relative;
    margin: auto;
    top: 40%;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table.withindex tbody tr {
  counter-increment: row-num;
}
table.withindex tbody tr td:first-child::before {
    content: counter(row-num) ". ";
}