
/* -------------------------------- 

xsigin/signup popup 

-------------------------------- */
.cd-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 999;
  overflow-y: auto;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}

.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
	
  position: relative;
  width: 90%;
  max-width: 600px;
  background: #f9f9f9 url("../images/noisy2.png") repeat scroll 0 0;
  margin: 7% auto;
  cursor: auto;
		top:10%;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-user-modal-container .cd-switcher:after {
  content: "";
  display: table;
  clear: both;
}

.cd-user-modal-container .cd-switcher {
	width:100%;
	display: initial;
	
	}

.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
		list-style-type:none;
}
.cd-user-modal-container .cd-switcher li:first-child a {
  border-radius: .25em 0 0 0;
}
.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 .25em 0 0;
}
.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  /*background: #d2d8d8;*/
		background: #f8d086 url("../images/noisy2.png") repeat scroll 0 0;
-webkit-box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.7);
-moz-box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.7);
box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.7);  
color: #fff;
 font-size: 16px;
    font-weight: 600;
				text-shadow: 1px 0 0 #1e1e1e;
}
.cd-user-modal-container .cd-switcher a.selected {
  	background: #f8d086 url("../images/noisy2.png") repeat scroll 0 0;
  color: #fff;
-webkit-box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.4);
-moz-box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.4);
box-shadow: inset 9px -32px 54px -24px rgba(15,14,12,0.4);}
@media only screen and (min-width: 600px) {
  .cd-user-modal-container {
    margin: 7% auto;
  }
  .cd-user-modal-container .cd-switcher a {
    height: 45px;
    line-height: 45px;
					background: #3C4759 url("../images/noisy2.png") repeat scroll 0 0;
					
  }
}

.cd-form {
  padding: 1.4em;
}
.cd-form .fieldset {
  position: relative;
  margin: 0.3em 0.2em;
		
}
.cd-form .fieldset:first-child {
  margin-top: 0;
}
.cd-form .fieldset:last-child {
  margin-bottom: 0;
}
.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.cd-form label.cd-user {
  background-image: url("../images/form/user.png");
}
.cd-form label.cd-email {
  background-image: url("../images/form/email.png");
}
.cd-form label.cd-password {
  background-image: url("../images/form/cd-icon-password.svg");
}
.cd-form label.cd-mobile {
  background-image: url("../images/form/mobile.png");
}
.cd-form label.cd-address {
  background-image: url("../images/form/v-card.png");
}
.cd-form label.cd-city {
  background-image: url("../images/form/dribbble-with-circle.png");
}
.cd-form label.cd-state {
  background-image: url("../images/form/dribbble.png");
}
.cd-form label.cd-country {
  background-image: url("../images/form/globe.png");
}


.cd-form select {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}
.cd-form select.full-width {
  width: 100%;
}
.cd-form select.has-padding {
  padding: 10px 20px 10px 50px;
}
.cd-form select.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}
.cd-form input.full-width {
  width: 100%;
}
.cd-form input.has-padding {
  padding: 10px 20px 10px 50px;
}
.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}
.cd-form input.has-error {
  border: 1px solid #d76666;
}
.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}
.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #2f889a;
  color: #FFF;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
  background: #3599ae;
  outline: none;
}
.cd-form .hide-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
}
.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: .8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  
  opacity: 1;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}
.cd-form .cd-error-message::after {
  /* triangle */
  content: '';
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}
.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 1em;
  }
  .cd-form .fieldset {
    margin: 0.3em 0.2em;
				display: inline-flex;
    width: 48%;
  }
  .cd-form .fieldset:first-child {
    margin-top: 0;
  }
  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .cd-form input.has-padding {
    padding: 10px 20px 10px 50px;
  }
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .cd-form-message {
    padding: 2em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("../images/form/cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: block;
  }
}

/*#cd-login, #cd-signup, #cd-reset-password {
  display: none;
}

#cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
  display: block;
}
*/

.processingdivarea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 54, 66, 0.9);
  z-index: 9991;
  overflow-y: auto;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}




.processingdivareacontent {
    background: #fff none repeat scroll 0 0;
    border: 3px solid #86aac8;
    border-radius: 5px;
    cursor: auto;
    margin: 3em auto;
    max-width: 315px;
    position: relative;
    text-align: center;
    top: 60px;
    width: 100%;
    z-index: 9992 !important;
}




.cartbuttonnew input[type="submit"] {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background: #ee7326 url("../images/noisy2.png") repeat scroll 0 0;
    border-color: -moz-use-text-color -moz-use-text-color rgba(0, 0, 0, 0.3);
    border-image: none;
    border-radius: 4px;
    border-style: none none solid;
    border-width: medium medium 2px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-weight: bold;
    padding: 12px 28px;
    text-align: center;
    text-decoration: none;
}
.cartbuttonnew input[type="submit"] {
    text-shadow: 0 -1px 1px #507e1a;
    width: 100%;
}
.cartbuttonnew input[type="submit"]:hover {
    box-shadow: 0 2px 5px #333;
    color: #fff;
}
