/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* F7H FORM */
 .f7h-form.is-loading {
   pointer-events: none;
 }

 .f7h-form .f7h-form-input {
   display: block;
   margin-bottom: 20px;
 }

 .f7h-form .label {
   display: block;
   font-weight: 400;
   font-size: 14px;
   line-height: 140%;
   color: #696969;
   margin-bottom: 6px;
 }

 .f7h-form .f7h-form-input--block input,
 .f7h-form .f7h-form-input--block textarea {
   display: block;
   width: 100%;
 }

 .f7h-form input[type=color],
 .f7h-form input[type=date],
 .f7h-form input[type=datetime-local],
 .f7h-form input[type=datetime],
 .f7h-form input[type=email],
 .f7h-form input[type=month],
 .f7h-form input[type=number],
 .f7h-form input[type=password],
 .f7h-form input[type=range],
 .f7h-form input[type=search],
 .f7h-form input[type=tel],
 .f7h-form input[type=text],
 .f7h-form input[type=time],
 .f7h-form input[type=url],
 .f7h-form input[type=week],
 .f7h-form textarea {
   font-size: 16px;
   line-height: 140%;
   padding: 18px 16px;
   border: 1px solid #D4D4D4;
   border-radius: 4px;
   max-height: 58px;
 }

 .f7h-form input.error,
 .f7h-form textarea.error {
   border-color: #D82137;
 }

 .f7h-form .f7h-btn--lg {
   min-height: 56px;
   font-size: 16px;
 }

 .f7h-form-input div.error {
   font-weight: 400;
   font-size: 14px;
   line-height: 140%;
   color: #D82137;
   margin-top: 4px;
 }

 .f7h-form-errors {
   font-weight: 400;
   font-size: 14px;
   line-height: 140%;
   color: #D82137;
   margin: 20px 0;
 }


.f7h-form-social .f7h-social-login--google {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  height: 48px;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #000000;
}

.f7h-form-social .f7h-social-login--google img {
  width: 14px;
  margin-right: 8px;
}

.f7h-form-social .f7h-social-login--google.is-loading img {
  display: none;
}

.f7h-form-social .f7h-social-login--apple {
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  height: 48px;
}

.form-login-apple-btn-container {
  border: 2px solid #D4D4D4;
  border-radius: 4px;
  margin-top: 24px;
}

.f7h-social-login.f7h-social-login--apple {
  cursor: pointer;
}



@media (min-width: 768px) {
  .form-login-apple-btn-container {
    margin-top: 0;
    margin-left: 24px;
  }

  .checkout-login-form .form-login-apple-btn-container {
    width: 50%;
  }

  .container--myaccount .form-login-apple-btn-container {
    margin-left: 0;
  }
}

.f7h-form-social .f7h-myaccount-btn-loading-spinner {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

@keyframes rotate-spinner {
	to {transform: rotate(360deg);}
}


.f7h-form-social .f7h-myaccount-btn-loading-spinner:before {
  content: '';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border-left: 2px solid transparent;
  -webkit-animation: rotate-spinner 1s linear infinite;
  animation: rotate-spinner 1s linear infinite;
  border-top: 2px solid #D82137;
  border-right: 2px solid #D82137;
  border-bottom: 2px solid #D82137;
}
