.login-container {
    border:1px solid gray;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
    max-width: 400px;
    margin: 30px auto;
    padding:20px;
    text-align: center;
}

.cst {
    max-width: 300px;
    text-align: center;
    background: white;
    padding:20px;
    margin: 20px auto;
    border-radius: 10px;
}

.verr {
    border-color: red;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 48, 48, 0.4); /* Black background with opacity */
    z-index: 98; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
} 

.overlay2 {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 48, 48, 0.4); /* Black background with opacity */
    z-index: 97; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.newmodal {
    position: fixed; /* Sit on top of the page content */
    width:70%;
    height: 70%;
    background: white;
    top: 15vh;
    right: 15vw;
    left: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: 100;
    padding:20px;
}

.loader {
  display: none;
  position: fixed; /* Sit on top of the page content */
  top: 40vh;
  right: 45vw;
  left: 0;
  bottom: 0;
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #ffc107; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  z-index: 101;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body {
    background-color:darkgray;
}

.section {
    background-color: white;
    padding:10px;
    margin-top:10px;
    margin-right:55px;
}

.title {
    font-weight: bolder;
}

.tab-text {
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
}

.tab-active {
    background: #ffc107;
}

.table-body-height {
    max-height: 300px;
}

.no-records {
    font-weight: bolder;
    text-align: center;
}

.tableFixHead {
    overflow-y: auto; /* make the table scrollable if height is more than 200 px  */
    height: 200px; /* gives an initial height of 200px to the table */
  }

.tableFixHead thead th {
    position: sticky; /* make the table heads sticky */
    top: 0px; /* table head will be placed from the top of the table and sticks to it */
}

.tableFixHead table {
    border-collapse: collapse; /* make the table borders collapse to each other */
    width: 100%;
}

.page-title {
    font-weight: bolder;
    font-size: 22px;
    margin-left:30px;
}

.nav-tabs {
    table-layout:fixed;
    width:100%;
    text-align:center;
    border: none;
    border-bottom: 2px solid black;
}

.rmenu {
    position:fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height:100vh;
    background-color: #ffc107;
    width:50px
}

.menu-icon {
    text-align: center;
    margin-top:30px;
}

