/*//////////////////////////////////////////////////////////////////
[ FONT ]*/
:root{
  --primary:rgba(24, 55, 167, 0.27);
  --secondary:#1c559b;
  --ternery:#000;
}
/* @font-face {
  
  src: url("../fonts/OpenSans/Roboto-Black.ttf");
} */

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-size: 13px;
  color: #444444;
  font-family:Arial, Helvetica, sans-serif;
}

/*---------------------------------------------*/
a {
  
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
  outline: none !important;
}

a:hover {
  text-decoration: none;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  text-align: Left;
  line-height: 1.7;
  color: #666666;
  margin: 0px;
}

ul,
li {
  margin: 0px;
  list-style-type: none;
}

/*---------------------------------------------*/
input {
  outline: none;
  border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus,
/* input:focus {
  border-color: #475927 !important;
} */

input::-webkit-input-placeholder {
  color: #666666;
}
input:-moz-placeholder {
  color: #666666;
}
input::-moz-placeholder {
  color: #666666;
}
input:-ms-input-placeholder {
  color: #666666;
}

textarea::-webkit-input-placeholder {
  color: #666666;
}
textarea:-moz-placeholder {
  color: #666666;
}
textarea::-moz-placeholder {
  color: #666666;
}
textarea:-ms-input-placeholder {
  color: #666666;
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*//////////////////////////////////////////////////////////////////
[ Utility ]*/

#bidTable thead th { background-color:darkslateblue;}
#bidTable tfoot th { background-color:darkslateblue;}


.dataTables_filter {
  float: left !important;
}

.txtsmall {
  font-size: 11px;
 
}

.log-but {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  border-radius: 8px;
  margin:0px 5px 0px 5px;
}

.apply-but {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  border-radius: 8px;
}



.txt1 {
  
  font-size: 15px;
  line-height: 1.4;
  color: #999999;
}

.txt2 {
  
  font-size: 15px;
  line-height: 1.4;
  color: #4272d7;
}

.hov1:hover {
  text-decoration: underline;
}


.select-opt-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-opt-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-opt-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-opt-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-opt-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-opt-hide {
  display: none;
}

.select-opt-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}




/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  height: 80%
  margin: 0 auto;
  background:rgba(228, 228, 228, 0.7);
}

.container-login {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  
}

.login-outer {
  width: 584px;
  background: #fff;
  padding: 20px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc; 
  overflow: hidden;
  margin: auto;
  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
}



.login-but {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family:Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  width:100%;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.login-but:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.login-but:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

/***** Modal **/


.modal-clnew {		
	color: #000;
	width: 400px;
}

.modal-clnew .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
	text-align: center;
	font-size: 14px;
	color:#36F;
}
.modal-clnew .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-clnew h4 {
	background: #fe921f; 
	color: #ffffff; 
	display: inline-block; 
	font-family: 'Lato', sans-serif; font-size: 12px; 
	font-weight: bold; 
	line-height: 12px; 
	letter-spacing: 1px; 
	margin: 5px 0 0px; 
	padding: 10px 15px 8px; 
	text-transform: uppercase; 
}

.modal-clnew .close {
	position: absolute;
	top: -5px;
	right: -2px;
}
.modal-clnew .modal-body {
	color: #999;

}

.modal-body p {
	font-size:18px;
	text-align:center;
}


.modal-clnew .modal-footer {
	border: none;
	text-align: center;		
	border-radius: 5px;
	font-size: 13px;
	padding: 10px 15px 25px;
}
.modal-clnew .modal-footer a {
	color: #999;
}		
.modal-clnew .icon-box {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	z-index: 9;
	text-align: center;
	border: 3px solid #f15e5e;
}
.modal-clnew .icon-box i {
	color: #f15e5e;
	font-size: 46px;
	display: inline-block;
	margin-top: 13px;
}



.modal-clnew .btn, .modal-clnew .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #60c7c1;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	min-width: 120px;
	border: none;
	min-height: 40px;
	border-radius: 3px;
	margin: 0 5px;
}

.modal-clnew .btn:hover {
	color: #FFF;
}

.modal-clnew .btn-secondary {
	background: #069;;
}
.modal-clnew .btn-secondary:hover, .modal-clnew .btn-secondary:focus {
	background: #3CF;
}
.modal-clnew .btn-danger {
	background: #f15e5e;
}
.modal-clnew .btn-danger:hover, .modal-clnew .btn-danger:focus {
	background: #ee3535;
}






.modal-confirm {		
	color: #000;
	width: 400px;
}

.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
	text-align: center;
	font-size: 18px;
	color:#36F;
}
.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-confirm h4 {
	background: #fe921f; 
	color: #ffffff; 
	display: inline-block; 
	font-family: 'Lato', sans-serif; font-size: 12px; 
	font-weight: bold; 
	line-height: 12px; 
	letter-spacing: 1px; 
	margin: 20px 0 20px; 
	padding: 10px 15px 8px; 
	text-transform: uppercase; 
}

.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -2px;
}
.modal-confirm .modal-body {
	color: #999;

}

.modal-body p {
	font-size:18px;
	text-align:center;
}


.modal-confirm .modal-footer {
	border: none;
	text-align: center;		
	border-radius: 5px;
	font-size: 13px;
	padding: 10px 15px 25px;
}
.modal-confirm .modal-footer a {
	color: #999;
}		
.modal-confirm .icon-box {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	z-index: 9;
	text-align: center;
	border: 3px solid #f15e5e;
}
.modal-confirm .icon-box i {
	color: #f15e5e;
	font-size: 46px;
	display: inline-block;
	margin-top: 13px;
}



.modal-confirm .btn, .modal-confirm .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #60c7c1;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	min-width: 120px;
	border: none;
	min-height: 40px;
	border-radius: 3px;
	margin: 0 5px;
}

.modal-confirm .btn:hover {
	color: #FFF;
}

.modal-confirm .btn-secondary {
	background: #069;;
}
.modal-confirm .btn-secondary:hover, .modal-confirm .btn-secondary:focus {
	background: #3CF;
}
.modal-confirm .btn-danger {
	background: #f15e5e;
}
.modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus {
	background: #ee3535;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
	
}

.error_msg {
 color: #C00;
 font-size:12px;
	
}

.linktxt {
	font-size:12px;
	font-weight:bold;
	color:#36C;
}

.bidTxt {
	border-radius: 25px;
    padding: 15px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:15px;

}


.bidtxtbox {
  height: 70px;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  border-radius: 25px;
  border: 1px solid #00B3ED;
  font-size:10px;
}


.biddetbox {
  height: 200px;
  position: relative;
  margin-bottom: 10px;
  margin-top: 20px;
  text-transform: uppercase;
  color: #000;
  border-radius: 25px;
  border: 1px solid #C00;
  font-size:15px;
}

.biddethead {
  top: 15px;
  padding: 8px 10px;
  font-family:Arial, Helvetica, sans-serif;
  color:#FFF;
  background: #C00;
  box-shadow: -1px 2px 3px rgba(0,0,0,.3);
}
.bidethead:before, .biddethead:after {
  content: "";
  position: absolute;
}

.amtbox {
	padding: 5px;
	border:1px double #CCC;
	background:#F0F0F0;
	font-weight:bold;
}

.bidLabel {
	font-size:10px;
	font-weight:bold;
	text-align:left;
	padding:0px;
	margin:0px;
	display:block;
}


.bidtxthead {
  top: 15px;
  padding: 8px 10px;
  font-family:Arial, Helvetica, sans-serif;
  color:#FFF;
  background: #00B3ED;
  box-shadow: -1px 2px 3px rgba(0,0,0,.3);
}
.bidtxthead:before, .bidtxthead:after {
  content: "";
  position: absolute;
}





.modal-biddet {		
	color: #000;
	width: 800px;
}


.modal-biddet .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
	text-align: center;
	font-size: 18px;
	color:#36F;
}
.modal-biddet .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-biddet h4 {
	background: #fe921f; 
	color: #ffffff; 
	display: inline-block; 
	font-family: 'Lato', sans-serif; font-size: 12px; 
	font-weight: bold; 
	line-height: 12px; 
	letter-spacing: 1px; 
	margin: 10px 0 10px; 
	padding: 10px 15px 8px; 
	text-transform: uppercase; 
}

.modal-biddet .close {
	position: absolute;
	top: -5px;
	right: -2px;
}
.modal-biddet .modal-body {
	color: #999;

}

.modal-biddet .modal-body p {
	font-size:14px;
	text-align:center;
}


.modal-biddet .modal-footer {
	border: none;
	text-align: center;		
	border-radius: 5px;
	font-size: 13px;
	padding: 10px 15px 25px;
}
.modal-biddet .modal-footer a {
	color: #999;
}		
.modal-biddet .icon-box {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	border-radius: 50%;
	z-index: 9;
	text-align: center;
	border: 3px solid #f15e5e;
}
.modal-biddet .icon-box i {
	color: #f15e5e;
	font-size: 46px;
	display: inline-block;
	margin-top: 13px;
}



.modal-biddet .btn, .modal-biddet .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #60c7c1;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	min-width: 120px;
	border: none;
	min-height: 40px;
	border-radius: 3px;
	margin: 0 5px;
}

.modal-biddet .btn:hover {
	color: #FFF;
}

.modal-biddet .btn-secondary {
	background: #069;;
}
.modal-biddet .btn-secondary:hover, .modal-biddet .btn-secondary:focus {
	background: #3CF;
}
.modal-biddet .btn-danger {
	background: #f15e5e;
}
.modal-biddet.btn-danger:hover, .modal-biddet .btn-danger:focus {
	background: #ee3535;
}





button { cursor: pointer; }

input {
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
}

.container {
  margin: 0 auto;
  max-width:480px;
}

body {
  font-family: 'Roboto', arial;
  font-size: 14px;
  background-color:#fafafa;
}

.percent { width: 85.71429%; }

.panel-primary { border-color: #009dda; }

input { padding: 6px 12px; }

.top-nav {
  min-width: 1200px;
  background-color: #333333;
  height: 40px;
  line-height: 40px;
  color: #aaa;
  font-size: 12px;
}

.top-nav .nav-box {
  float: left;
  height: 40px;
  line-height: 40px;
}

.top-nav a { margin-left: 10px; }

.top-nav a:hover { color: #fff; }

.med-nav {
  min-width: 1200px;
  background-color: #009dda;
}

.med-nav ul { overflow: hidden; }

.med-nav ul li {
  float: left;
  margin-right: 10px;
}

.med-nav ul li a {
  display: block;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 45px;
}

.med-nav ul li a:hover { background-color: #0486b9; }

.med-nav ul li.active > a { background-color: #0486b9; }

/*keep footer always on bottom*/

html, body { height: 100%; }

#container {
  min-height: 100%;
  position: relative;
  max-width:480px;
  margin:0 auto;
}

#body { padding-bottom: 60px;/* Height of the footer */ }

#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  /* Height of the footer */
  background-color: #333333;
}

/*keep footer always on bottom end*/

.handle-counter { overflow: hidden; }

.handle-counter .counter-minus,  .handle-counter .counter-plus,  .handle-counter input {
  float: left;
  text-align: center;
}

.handle-counter .counter-minus,  .handle-counter .counter-plus { text-align: center; }

.handle-counter input {
  width: 50px;
  border-width: 1px;
  border-left: none;
  border-right: none;
}

.btnspin {
  padding: 6px 8px;
  border: 1px solid transparent;
  color: #fff;
}

.btnspin:disabled, .btnspin:disabled:hover {
  background-color: darkgrey;
  cursor: not-allowed;
}

.btnspin-primary { background-color: #009dda; }

.btnspin-primary:hover, .btnspin-primary:focus { background-color: #0486b9; }

.margin-top { margin-top: 150px; }

.margin-bottom { margin-bottom: 20px; }

.pull-right { float: right !important; }

.pull-left { float: left !important; }

.hide { display: none; }

.show { display: block; }

.invisible { visibility: hidden; }

a { color: #999; }

a:hover { color: #FF5113; }

.border { border: 1px solid red; }





/***   ****/

@media (min-width: 768px) {
  .button-71 {
    padding: 16px 48px;
  }
}



@media only screen and (max-width: 600px) {
  .login-outer{
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
  }
  .container-login
  {
    padding: 0px;
  }
}

/*==================================================================
[ Form ]*/

.alert{
  font-size: 13px;
    text-align: center !important;
    padding-top: 10px;
}
.login-form {
  width: 100%;
}


.login-form-title h1 {
text-align: center;
    font-size:16px; font-weight:300; color:#222; letter-spacing:1px;
    text-transform: uppercase;

    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 10px;
    align-items: center;
}

.login-form-title h1:after,.login-form-title h1:before {
    content: " ";
    display: block;
    border-bottom: 1px solid #c50000;
    border-top: 1px solid #c50000;
    height: 5px;
  background-color:#f8f8f8;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
}

.wrap-input100.rs1 {
  /* border-top: none; */
  margin-top: 5px;
}

.input100 {
  display: block;
  width: 100%;
  height: 44px;
  cursor: pointer;
  
  font-size: 15px;
  color: #666666;
  line-height: 1.2; 
  margin-bottom: 15px;
  background-color: transparent; 
  border:2px solid #cccccc;
  padding-left: 15px;
}

/*---------------------------------------------*/
input.input100 {
  height: 45px;
  padding: 0 5px;
}
select.input100 {
  height: 45px;
  padding: 0 25px 0 25px;
}

/*------------------------------------------------------------------
[ Focus Input ]*/

.focus-input100-1,
.focus-input100-2 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100-1::before,
.focus-input100-2::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #4272d7;
}

.focus-input100-1::before {
  top: -1px;
  left: 0;
}

.focus-input100-2::before {
  bottom: -1px;
  right: 0;
}

.focus-input100-1::after,
.focus-input100-2::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #4272d7;
}

.focus-input100-1::after {
  top: 0;
  right: -1px;
}

.focus-input100-2::after {
  bottom: 0;
  left: -1px;
}

.input100:focus + .focus-input100-1::before {
  -webkit-animation: full-w 0.2s linear 0s;
  animation: full-w 0.2s linear 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1::after {
  -webkit-animation: full-h 0.1s linear 0.2s;
  animation: full-h 0.1s linear 0.2s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::before {
  -webkit-animation: full-w 0.2s linear 0.3s;
  animation: full-w 0.2s linear 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::after {
  -webkit-animation: full-h 0.1s linear 0.5s;
  animation: full-h 0.1s linear 0.5s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

@keyframes full-w {
  to {
    width: calc(100% + 1px);
  }
}

@keyframes full-h {
  to {
    height: calc(100% + 1px);
  }
}

/*------------------------------------------------------------------
[ Button ]*/
.container-login-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.login-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: inline-block;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  width: 100%;
  height: 44px;
  background-color: #0683c7;
  
  font-size: 14px;
  color: #fff;
  border-radius:0 ;
  border-width: 2px;
  border-style: outset;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 2px outset rgb(118, 118, 118);
}

.login-form-btn:hover {
  background-color:#5e5e5e;
  color: #fff;
  border: 2px outset #5e5e5e;
  transition: 0.3s all ease;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

.otp-msg {
  float: right;
  color: #5e5e5e;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.wait-msg {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../img/wait.gif) center no-repeat rgba(255,255,255,0.8);
}


.wait-msg1 {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../img/wait1.gif) center no-repeat rgba(255,255,255,0.8);
}

#nonestern_client {
  display: none;
}
