:root{
  --primary: #4cceac;
  --secondary:#fff;
  --ternery:#001837;
}
.navbar::before
{
  content: none;
  display: block;
}
.navbar::after
{
  content: none;
  display: block;
}
/*body
{
  background: url(images/blur-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-size: 14px;
}*/
#estern_client {
  display: none;
}
#nonestern_client {
  display: none;
}

.last {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.dropdown-menu {
  padding-top: 0.5rem;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}
.profile-img {
  border-radius: 50%;
  background-color: #f9c2c2;
  color: #e3248a;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  line-height: 30px;
  height: 45px;
  width: 45px;
  z-index: 5;
  text-align: center;
  display: inline-block;
}

.logos
{
  width: 30%;
  height: auto;
}

a:hover {
  text-decoration: none;
}
.label {
  padding: 0 5px;
  font-weight: 500;
}
.welcome_msg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.welcome_msg1 {
  background-color: #fafafa;
  text-align: center;
  color: #3b3739;
  font-size: 24px;
}
.middle {
  padding-top: 1.5rem;
}
.middle-head {
  border-bottom: solid;
  border-bottom-width: 1px;
  border-bottom-color: #ebe8e8;
  padding: 0.5rem;
}
.middle-left {
  border-right: solid;
  border-right-width: 1px;
  border-right-color: #ebe8e8;
  display: inline-flex;
  padding-top: 2rem;
}
.icon {
  float: right;
  font-size: 12px;
  margin: 0px;
  color: #b5b0b0;
  font-weight: normal;
}
.table .thead-light th {
  background: var(--primary);
  border-style: solid none;
  border-width: 2px;
  border-color: #fff;
  color: #fff;
  font-weight: normal;
}
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}

.table .thead-light .thead2 th {
   background: var(--ternery);
  border-style: solid none;
  border-width: 2px;
  color:#fff;
  font-weight: 600;
  font-size: 15px;
}

#signup_tbody tr td:first-child {
  color: #000;
  font-weight: bold;

  font-size: 14px;
}

#signup_tbody tr td {
  font-size: 14px;
}
#previous_tbody tr td:first-child {
  color: none;
  font-weight: bold;
  font-size: 14px;
}

#previous_tbody tr td {
  border: none;
  font-size: 14px;
}

.login-btn
{
  text-align: right;
}
.login-btn a
{
  background-color: #1b4388;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  height: 39px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  border-radius: 0.25rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.apply_btn
{
  width: max-content;
  background: var(--primary);
  border: none;
  font-size: 14px;
  color: var(--secondary);
  padding: 5px;
  animation: glowing 1000ms infinite;
}
@keyframes glowing {
  0% { box-shadow: 0 0 -10px var(--primary) }
  40% { box-shadow: 0 3px 10px var(--primary) }
  60% { box-shadow: 0 3px 10px var(--primary) }
  100% { box-shadow: 0 0 -10px var(--primary) }
}
.bid_btn {
  width: 100%;
  background: #dceff9;
  border: none;
  font-size: 14px;
  color: #1745de;
}

.apply_btn:hover {
    cursor: pointer;
    -webkit-animation: none;
    animation: none; 
  }

.showData {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  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 */
  padding-top: 60px;
}

/* The Close Button (x) */
.clo_se {
  position: absolute;
  right: 2px;
  top: -16px;
  color: #000;
  font-size: 35px;
}

.clo_se:hover,
.clo_se:focus {
  color: #000;
  cursor: pointer;
}

.effect8 {
  position: relative;
}
.effect8:before,
.effect8:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  top: 10px;
  /*bottom:10px;*/
  left: 0;
  right: 0;
}
/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s;
  /*border: 5px solid #9AD3DE;*/ /*
  box-shadow: 0px 1px 1px rgba(000,000,000,0.5),inset 1px 2px 0px rgba(255,255,255,0.4);*/
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.table-striped tbody tr td:nth-of-type(even) {
  text-align: right;
}
.table_striped {
  padding: 2rem;
}
.table-striped td {
  border-style: none;
  color: #808080;
  font-weight: normal;
}
.bid_disbtn {
  margin-left: 20px;
  border-radius: 2px;
  width: 55px;
  height: fit-content;
  background: #dceff9;
  border: none;
  font-size: 14px;
  color: #1745de;
  text-decoration: none;
}
.table-striped {
  margin-top: 1rem;
  font-size: 14px;
  font-family: Calibri;
  font: caption;
}
.alert-warning {
  margin-top: 0.5rem;
  font-size: 14px;
}
.vpa {
  display: flex;
  border-bottom-style: solid;
  border-width: 1px;
  width: fit-content;
  border-color: #c4c4c4;
  margin-top: 2rem;
}
.vpa .text {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
}
.vpa .select {
  border: none;
  background: transparent;
  outline: none;
}
.checkbox {
  border-color: #c4c4c4;
  border-bottom-style: solid;
  border-width: 1px;
  background: transparent;
  border-left-style: none;
  border-right-style: none;
  border-top-style: none;
  outline: none;
}
.text_box {
  border-color: #c4c4c4;
  border-bottom-style: solid;
  border-width: 1px;
  background: transparent;
  border-left-style: none;
  border-right-style: none;
  border-top-style: none;
  outline: none;
  width: 100%;
}
.items_details {
  margin-top: 2rem;
}
.items_details td {
  border-style: none;
  width: max-content;
}
.items_details .chec_kbox {
  width: 119px;
  padding: 8px 0;
}
.items_details tbody tr td
{
  border-style: none;
}

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
  font-weight: normal;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border: 1px solid #ddd;
  background: transparent;
  border-radius: 2px;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  position: absolute;
  top: 5px;
  left: 5px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.declare {
  font-size: 12px;
  color: #c4c4c4;
  text-align: left;
}
.submit_btn {
  display: flex;
  margin-top: 1rem;
}
.submit_btn p {
  margin-left: auto;
}
.bided-area {
  background: linear-gradient(to right, #fff 40%, #fafafb 40% 60%);
  width: 60%;
  height: auto;
  overflow: auto;
}
@media only screen and (max-width: 600px) {
  .showData {
    padding: 0;
  }
  .bided-area {
    width: 100%;
    background: linear-gradient(to bottom, #fff 47%, #fafafb 47% 53%);
  }
}
#signup_tbody,
#showbiddata,
#previous_tbody
{
  background: #FFFFFF;
}
#signup_tbody,
#previous_tbody
{
  border: 1px solid #e9ecef;
}
.footer
{
  position: relative;
  margin-top: 15px;
  background-color: transparent;
}
.footer-text
{
  bottom: 0;
  width:100%;
  text-align: center;
  font-size: 14px;
}



.wrapper{
  width:70%;
}
@media(max-width:992px){
 .wrapper{
  width:100%;
} 
}
.panel-heading {
  padding: 0;
  border:0;
}
.panel-title>a, .panel-title>a:active{
  display:block;
  padding: 4px 14px;
  color:#000;
  font-size:14px;
  font-weight:bold;
  text-transform:uppercase;
  letter-spacing:1px;
  word-spacing:3px;
  text-decoration:none;
}
.panel-heading  a:before {
   font-family: 'Glyphicons Halflings';
   content: "\e114";
   float: right;
   transition: all 0.5s;
}
.panel-heading.active a:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
} 

.panel-default>.panel-heading
{
  background: linear-gradient(rgba(245, 247, 244, 0), #ddded9);
}
.w-60 {
    width: 60%!important;
}
.w-40 {
    width: 40%!important;
}
.select_upi
{
  background: transparent;
  border: none;
  display: block;
  width: 100%;
  padding: .5rem .75rem;
  font-size: 15px;
  line-height: 1.25;
  color: #495057;
}
.btn{
  font-size: 15px;
}

.detail_div
{
  flex-wrap: nowrap;
}
strong
{
  font-weight: 700;
}
.table_res caption
{
  background: #1b4388;
    border-style: solid none;
    border-width: 2px;
    border-color: #fff;
    color: #fff;
    font-weight: 600;
    vertical-align: bottom;
    padding: 0.75rem;
    caption-side: top;
    text-align: center;
    font-size: 18px;
}
@media screen and (max-width: 600px) {
  .table_res {
    border: 0;
  }
  
  .table_res thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .table_res tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  .table_res td {
    border-bottom: 1px solid #ddd;
    display: flow-root;
    font-size: 14px;
    text-align: right;
    background-color: #fff;
  }
  
  .table_res td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    border-style: solid none;
    border-width: 2px;
    border-color: #fff;
    color: #1d2969;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
  }
  
  .table_res td:last-child {
    border-bottom: 0;
  }
}
  #mobileview
  {
    display: none;
  }
  #webview
  {
    display: block;
  }
  #bidded
  {
    background: #fff; width: 30%; height: auto; padding: 3em;
  }
  @media screen and (max-width: 600px)
  {
    #mobileview
    {
      display: block;
    }
    #webview
    {
      display: none;
    }
    .apply_btn
    {
      width: 100%;
    }
    #bidded
    {
      width: 100%;
    }

  }
  .max-auto
  {
    width: fit-content;
  }
  .f-18
  {
    font-size: 18px;
  }
  .logout_label
  {
    font-size: 16px;
    font-weight: 600;
  }
  .d-contents
  {
    display: contents;
  }
  .mt-5
  {
    margin-top: 3rem;
  }
  .ipo_link u a:hover
  {
    color: #0000EE;
  }


   .edit-popup{
    width: 35%;
    background: #fff;
  }
  .padding_editdiv
  {
    padding-right: 55px;
    padding-left: 55px;
    padding-top: 29px;
    padding-bottom: 50px;
  }
  @media only screen and (max-width: 600px) {
  .edit-popup{
      width: 100%;
      top: 10%;
    }
    .editInfo{
      left: 16%;
      bottom: 0;
    }
    .padding_editdiv
    {
      padding-right: 16px;
      padding-left: 16px;
    }
}

 .editInfo{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  z-index:10;
  left: 76%;
  bottom: 72%;
  display: block;
  background: #1b4388;
  margin: -25px 0 0 -25px;
  color: #6d4a07;
  line-height: 50px;
  font-size: 25px;
  text-align: center;
  cursor: pointer;
}

.icon-pencil{
  font-weight:bold;
  font-size:20px;
  color:#fff;
  text-align:center;
  margin-top:-10px;
}

.overlay-bg{
  display: none;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 11;
}
.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #475927;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s linear infinite;
  margin-left: 45%;
  margin-top: 30%;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media screen and (max-width: 600px)
{
  .editInfo{
    left: 16%;
    bottom: 0;
  }
}
@media screen and (max-width: 1183px)
{
  .editInfo{
    left: 73%;
    bottom: 73%;
  }
}
@media screen and (max-width: 1024px)
{
  .editInfo{
    bottom: 87%;
  }
}
@media screen and (max-width: 973px)
{
  .editInfo{
    left: 67%;
    bottom: 76%;
  }
}
@media screen and (max-width: 768px)
{
  .editInfo{
    left: 70%;
    bottom: 85%;
  }
}
@media screen and (max-width: 540px)
{
  .editInfo{
    left: 70%;
    bottom: -5%;
  }
}
@media screen and (max-width: 375px)
{
  .editInfo{
    left: 15%;
    bottom: 0;
  }
}
.f-w-normal
{
  font-weight: normal;
}