/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.login-shopping-logo {
  width: 256px;
  height: 256px;
  background: url('../img/ls_logo.png') center center;
  background-size: contain;
}
.login-shopping-logo__fixed {
  position: fixed;
  left: 50%;
  top: 40%;
  margin-left: -128px;
  margin-top: -128px;
}
.login-shopping-privacy-link {
  width: 100%;
  position: fixed;
  text-align: center;
  bottom: 20px;
  font-size: 11px;
}
.login-shopping-privacy-page {
  font-size: 90%;
  padding: 20px 10px 30px;
}
#login-form .row {
  margin: 0;
}
#login-form .col-12 {
  padding: 0;
}
#login-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 18px;
  position: relative;
}
#login-form .form-group:last-child {
  margin: 0;
}
#login-form .form-group > .form-group {
  width: 50%;
  margin: 0;
}
#login-form .form-group > .form-group:last-child {
  padding: 0 0 0 13px;
}
#login-form .form-group.has-error.required:after {
  color: #E75220;
}
#login-form .form-group.has-error.required .form-control {
  border: 1px solid #E68B6C;
}
#login-form .form-group.has-error.field-loginusers-phone:before,
#login-form .form-group.has-error.field-loginusers-firstname:before,
#login-form .form-group.has-error.field-loginusers-email:before {
  background-color: #FFF4F4;
  border-top: 1px solid #E68B6C;
  border-bottom: 1px solid #E68B6C;
  border-left: 1px solid #E68B6C;
}
#login-form .form-group.required:after {
  content: '*';
  position: absolute;
  display: inline-block;
  background-color: #fff;
  top: -9px;
  right: 8px;
  font-size: 15px;
  line-height: 20px;
  color: #3DCD58;
  padding: 3px;
}
#login-form .form-control:disabled,
#login-form .form-control[readonly] {
  background-color: #ffffff;
  cursor: default;
}
#login-form .form-control {
  position: relative;
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  padding: 11px 12px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
}
#login-form .form-control:focus {
  box-shadow: none;
}
#login-form .iti__selected-flag:focus {
  outline: none;
  border: 1px solid;
}
#login-form .iti {
  width: 100%;
}
#login-form .input-group {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
#login-form .field-loginusers-gender {
  display: none !important;
}
#login-form input::-webkit-outer-spin-button,
#login-form input::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}
#login-form input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}
#login-form .help-block.invalid-feedback {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 9px;
  background: #fff;
  box-sizing: border-box;
  margin: 0;
  width: auto;
  padding: 0 2px 0 4px;
}
#login-form .field-loginusers-phone .help-block.invalid-feedback {
  left: 5px;
}
#login-form .field-loginusers-phone,
#login-form .field-loginusers-firstname,
#login-form .field-loginusers-email {
  padding: 0 0 0 40px;
}
#login-form .field-loginusers-phone .form-control,
#login-form .field-loginusers-firstname .form-control,
#login-form .field-loginusers-email .form-control {
  border-radius: 0 2px 2px 0;
}
#login-form .field-loginusers-phone:before,
#login-form .field-loginusers-firstname:before,
#login-form .field-loginusers-email:before {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  border-left: 1px solid #E2E2E2;
  border-radius: 2px 0 0 2px;
  background-color: #F7F7F7;
  background-position: center;
  background-repeat: no-repeat;
}
#login-form .field-loginusers-phone input {
  padding: 0 0 0 50px;
}
#login-form .field-loginusers-phone:before {
  background-image: url('/img/icon-phone.svg');
}
#login-form .field-loginusers-email:before {
  background-image: url('/img/icon-email.svg');
}
#login-form .field-loginusers-firstname:before {
  background-image: url('/img/icon-name.svg');
}
.form-container {
  background-color: #fff;
}
.form-container.blur {
  position: relative;
  filter: blur(3px);
}
.form-container.blur::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.form-container__body {
  padding: 20px 26px 11px;
  border-bottom: 1px solid #E0E0E0;
}
.form-container__footer {
  padding: 15px 15px 17px;
}
.form-container__footer .form-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}
.form-container__disclaimer {
  font-size: 11px;
  line-height: 20px;
}
.form-container__disclaimer .mark {
  color: #3DCD58;
  background-color: transparent;
  padding: 0;
}
.form-container__clear {
  width: 165px;
  height: 41px;
  border: none;
  font-size: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  text-transform: uppercase;
  color: #9D9D9D;
  background: #EFEFEF;
  border-radius: 2px;
  cursor: pointer;
}
.form-container__clear:focus {
  outline: none;
}
.form-container__clear:hover {
  background: #e9e9e9;
}
.form-container__clear:disabled {
  cursor: default;
}
.form-container__clear:disabled:hover {
  background: #e9e9e9;
}
.form-container__submit {
  width: 185px;
  height: 41px;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  background: #676767;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.form-container__submit:focus {
  outline: none;
}
.form-container__submit:hover {
  background: #5d5d5d;
}
.form-container__submit:disabled {
  cursor: default;
}
.form-container__submit:disabled:hover {
  background: #676767;
}
@media (max-width: 480px) {
  .form-container__clear {
    width: 43%;
  }
  .form-container__submit {
    width: 53%;
  }
}
@media (max-width: 376px) {
  .form-container__body {
    padding: 10px 15px;
  }
  .form-container__footer {
    padding: 10px 15px;
  }
}
