body{
      background-color: #edeaea;
          font-family: roboto,sans-serif;
}


a{
    color: black;
    text-decoration: none !important;
}
a:hover{
    color: black;
    text-decoration: none !important;
}



.table th, .table td {
    padding: 0.5rem;
  }

.untbtd{
    color: red;
    border: 2px dotted #9e9e9e !important;
    border-width: 0px 1px !important;
    background-color: bisque;
}
.matchtbtd{
    border: 2px dotted #9e9e9e !important;
    border-width: 0px 1px !important;
    background-color: cadetblue !important;
}


.side_nav li a:hover{

  color: #880e4f !important;
  background-color: #edeaea;
}

.small{
  font-size: 75% !important;
}

.side_nav li a {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.side_nav li i {
      color: #009688;
}
.menu_name{
      background-color: #fffafa;
      color: #000;
}
.menu_name a{
      color: #000;
}
.cmpny_name {
    color: #0a194e !important;
    font-weight: 700;
    border: 1px solid;
    border-style: dotted;
    padding: 5px;
    border-radius: 6px;
    text-transform: uppercase;
}
.ftcmpname{
    text-decoration: none !important;
    text-shadow: 0px 2px 0px black;
    color: #959191;
    font-size: 12px;
}

.ftcmpname:hover, .ftcmpname:focus {
    text-decoration: none !important;
    text-shadow: 0px 2px 0px black;
    color: #959191;
}

.text-sidenav{
    color: #343a40 !important;
}

.active_sidenav{
      color: #880e4f !important;
  background-color: #edeaea;
}

.white_box{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    padding: 1rem !important;
    background: #fff;
    border-radius: 6px;
}

.curs_point{
  cursor: pointer;
}


.blink {
            animation: blinker 1s linear infinite;
            color: red;
            font-family: sans-serif;
        }
    @keyframes blinker {
        50% {
            opacity: 0;
            }
    }


.header_logo{
  color: #6c5e4b;
    font-weight: 900;
    text-shadow: 3px -1px 3px #ffffff, 1px 3px 5px #1616ff;
}



.table{
  font-size: 11px;

}

.smtable a{
  font-size: 15px;
}

.smtable_head{
  font-size: 14px;
}

.file_upload_div{
	padding: 20px;
	background: #fff;
	border-radius: 6px;
}
.upload_btn{
    border-style: dotted;
    color: cadetblue;
    border-radius: 6px;
}

.alert {
    float: right;
    right: 15px;
    bottom: 30px;
    width: 350px;
    height: 75px;
    text-align: center;
}

.close_alert{
  position: absolute;
  top: 0;
  right: 14px;
  transform: rotate(45deg);
  cursor: pointer;
  font-size: 36px;
}
.img-logo{
     max-width: 16%;
}
.dropdown-item:active:focus {
   border-style: outset;
   color: black;
   background-color: white;
} 

.auth-body{
  background-image:url("/images/background.jpg");
       background-repeat: no-repeat;
     background-size: cover;
}
.arcard_img{
  background-image: url("../images/cardimage.jpg");
  background-repeat: no-repeat;
  background-size: cover; 
  background-color: #cccccc;
}
.bg-transp{
  background-color: #607d8b75;
}

.ptable{
  width: 100%;
}




/*loader*/

.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.tableditinp{
    display: block;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px solid #009688;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.side-menu-btn{
  display: none;
}

.proc-none {
    pointer-events: none!important;
    background-color: #9e9e9e !important;
    border-color: #9e9e9e !important;
}


@media only screen and (max-width: 768px) {
  body {
    }
    .side_menu{
      display: none;
    }
    .side-menu-btn{
     display: flex;
     }
}

/* dashboard */


.small-box {
    border-radius: .25rem;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    display: block;
    margin-bottom: 20px;
  }
.inner {
  padding: 10px;
}
.small-box-footer{

    background-color: rgba(0,0,0,.15);
    padding: 3px 0;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}

.small-box .icon {
    color: rgba(0,0,0,.15);
    z-index: 0;
}
.small-box .icon>i {
    font-size: 44px;
    right: 15px;
    top: 15px;
}

.small-box p{
    width: 100%;
    text-align: center;
    padding: 2px;
    background-color: #000000 !important;
}
.inner h2{
  font-weight: 400;
}


.table-val{
  background-color: #f5c6cb5c !important;
  border-color: #ed969e87 !important;
}


.button-21 {
    align-items: center;
    appearance: none;
    background-color: #3EB2FD;
    background-image: linear-gradient(1deg, #4F58FD, #149BF3 99%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: CircularStd, sans-serif;
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s, background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
    }
