
/* --------------------------------  */

.js .floating-labels .cd-label, .phone-ico input::placeholder {
  position: absolute;
  top: 13px;
  left: 18px;
  font: 18px "Roboto";
  color: #5d778c;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}

/* -------------------------------- 

Form

-------------------------------- */
.cd-form {

}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 15px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}

form..cd-form input,
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
form.cd-form input,
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #94aab0;
  background-color: #ffffff;
}
form.cd-form input:focus,
form.cd-form textarea:focus,
form.cd-form select:focus,
.cd-form .icon input:focus {
  outline: none;
  border: 2px solid #5d778c;
  margin: -1px;
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/catalog/view/theme/theme097/image/sel_arr.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  cursor: pointer;
  -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
	padding-right:30px !important;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
  color: #333;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 14px;
  height: 14px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 2px solid #94aab0;
  background: #ffffff;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #2c97de;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("/catalog/view/theme/theme097/image/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("/catalog/view/theme/theme097/image/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  1box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
  width: 18px;
  height: 18px;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 130px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #42a2e1;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}

.cd-form .label_np {
  cursor: pointer;
}

.cd-form input:checked {
  color: #000;
}

/* -------------------------------- 

Custom icons

-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 45px !important;
    box-sizing: border-box;
    width: 100%;
    padding: 12px 15px;
    padding-right: 30px;
    border: 1px solid #94aab0;
    border-radius: 4px;
    outline: 0px none;
    font: 18px "Roboto";
    color: #333;
    line-height: 24px;
    box-shadow: none;
}

.cd-form .email-ico:before,
.cd-form .user-ico:before,
.cd-form .phone-ico:before,
.cd-form .password-ico:before,
.cd-form .city-ico:before,
.cd-form .search-ico:before,
.cd-form .shipping-ico:before,
.cd-form .location-ico:before,
.cd-form .payment-ico:before,
.cd-form .message-ico:before {
	content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 14px;
    left: 13px;
	z-index:9;
}

.cd-form .search-ico-loading:before {
  background: none;
}

.cd-form .email-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-email.svg") no-repeat 0 0;}
.cd-form .user-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-user.svg") no-repeat 0 0;}
.cd-form .phone-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-phone.svg") no-repeat 0 0;}
.cd-form .password-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-password.svg") no-repeat 0 0;}
.cd-form .city-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-city.svg") no-repeat 0 0;}
.cd-form .search-ico:before {background: url("/catalog/view/theme/theme097/image/icons-search-pop.svg") no-repeat 0 0;}
.cd-form .shipping-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-shipping.svg") no-repeat 0 0;}
.cd-form .location-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-location.svg") no-repeat 0 0;}
.cd-form .payment-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-payment.svg") no-repeat 0 0;}
.cd-form .message-ico:before {background: url("/catalog/view/theme/theme097/image/cd-icon-message.svg") no-repeat 0 0;}

.cd-form .required:after {
	content: "";
    position: absolute;
    width: 22px;
    height: 20px;
    top: 16px;
    right: 0px;
    background: url("/catalog/view/theme/theme097/image/cd-required.svg") no-repeat 0 0;
}

.password-control {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-block;
	width: 28px;
	height: 28px;
	background: url("/catalog/view/theme/theme097/image/view.svg") 0 0 no-repeat;
	background-size: 28px;
}
.password-control.view {
	background: url("/catalog/view/theme/theme097/image/no-view.svg") 0 0 no-repeat;
	background-size: 28px;
}

/* -------------------------------- 

FLoating labels 

-------------------------------- */

::-webkit-input-placeholder {color:#999; font-size:16px;}
::-moz-placeholder          {color:#999; font-size:16px;}/* Firefox 19+ */
:-moz-placeholder           {color:#999; font-size:16px;}/* Firefox 18- */
:-ms-input-placeholder      {color:#999; font-size:16px;}

.js .floating-labels .icon .cd-label {
  left: 45px;
  margin:0;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  top: -14px;
    left: 15px !important;
    font: 14px 'Roboto';
    font-weight: bold;
    background: #5d778c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
	z-index: 9;
}

#cd-fixed-label {
  top: -14px;
  left: 15px !important;
  font: 14px 'Roboto';
  font-weight: bold;
  background: #5d778c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
}



/* Change Autocomplete styles */
@keyframes autofill {
    0%,100% {
        color: #333;
        background: #fff;
		box-shadow: 0 0 0px 1000px #fff inset;
  		transition: background-color 5000s ease-in-out 0s;
    }
}
@-webkit-keyframes autofill {
    0%,100% {
        color: #333;
        background: #fff;
    }
}

input:-webkit-autofill {
    -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

input {
  filter: none; /* Firefox Autocomplete */
}


