/* Plugin front-end CSS */

.ajax-submit-form {
	position: relative;
	max-width: 200px;
}

#registration-form-container, #password-lost-form-container {
	display: none;
}

.tax-container{
  display: none;
}

.tax-container:first-child{
  display: block;
}

.tax-table-container{
  background-color: white;
  padding: 20px;
  margin: 10px 0;
}

.tax-table-toggle.open{
  display: none;
}

.currency {
  float: left;
}

.ajax-submit-form input{
	outline: none;
} 

.overlay{ 
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.8);
}

#nrdq-user-switching {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 0px;
  background-color: rgba(255,255,255,1);
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 20px;
  display: inline-block;
  max-width: 440px;
  z-index: 1000;
  -webkit-box-shadow: 0 0 35px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 0 35px 2px rgba(0,0,0,.2);
  box-shadow: 0 0 35px 2px rgba(0,0,0,.2);
}

#nrdq-user-switching h3, #nrdq-user-switching a{
  max-width: 350px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#nrdq-user-switching a{
  text-align: center;
  width: 100%;
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;    
  left: 50%; 
  transform: translate(-50%, -50%); 

}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}