:root {
  --vc-login-font: "Inter", Arial, Helvetica, sans-serif;
  --vc-login-black: #000000;
  --vc-login-white: #ffffff;
  --vc-login-text: #000000;
  --vc-login-muted: #777777;
  --vc-login-border: #d3d3d3;
  --vc-login-line: #eeeeee;
  --vc-login-error: #b00020;
  --vc-login-success: #0a7a32;
  --vc-login-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.vc-login-user,
.vc-login-user * {
  box-sizing: border-box;
}

.vc-login-user {
  font-family: var(--vc-login-font);
  line-height: 1.35;
}

body.vc-login-modal-open {
  overflow: hidden;
}

.vc-login-user__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--vc-login-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  cursor: pointer;
  font: 500 14px/1 var(--vc-login-font);
  text-decoration: none;
  box-shadow: none;
}

.vc-login-user__trigger:hover,
.vc-login-user__trigger:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.vc-login-user__trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.vc-login-user__trigger-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.vc-login-user__trigger-icon i {
  font-size: 24px;
  line-height: 1;
}

.vc-login-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-family: var(--vc-login-font);
}

.vc-login-modal.is-open {
  display: flex;
}

.vc-login-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.vc-login-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: var(--vc-login-white);
  color: var(--vc-login-text);
  padding: 49px 14px 20px;
  box-shadow: var(--vc-login-shadow);
  font-family: var(--vc-login-font);
}

.vc-login-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  position: absolute;
  top: 12px;
  right: 13px;
  width: 26px;
  height: 26px;
  padding: 0;
  color: var(--vc-login-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.vc-login-modal__close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.vc-login-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.vc-login-modal__close i {
  font-size: 20px;
  line-height: 1;
}

.vc-login-modal__close:hover,
.vc-login-modal__close:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.vc-login-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.vc-login-tabs__button {
  appearance: none;
  border: 1px solid var(--vc-login-border);
  background: var(--vc-login-white);
  color: var(--vc-login-black);
  min-height: 42px;
  padding: 11px 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font: 500 14px/1 var(--vc-login-font);
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.vc-login-tabs__button:hover,
.vc-login-tabs__button:focus {
  outline: none;
  box-shadow: none;
}

.vc-login-tabs__button.is-active {
  background: var(--vc-login-black);
  border-color: var(--vc-login-black);
  color: var(--vc-login-white);
}

.vc-login-panel {
  display: none;
  padding-top: 2px;
  border-top: 1px solid var(--vc-login-line);
}

.vc-login-panel.is-active {
  display: block;
}

.vc-login-panel__title {
  margin: 20px 0 19px;
  color: var(--vc-login-black);
  text-align: center;
  font: 700 15px/1.25 var(--vc-login-font);
}

.vc-login-panel__title--forgot {
  margin-top: 20px;
  margin-bottom: 24px;
}

.vc-login-panel__text {
  margin: 0 auto 22px;
  max-width: 282px;
  color: var(--vc-login-black);
  text-align: center;
  font: 400 15px/1.18 var(--vc-login-font);
}

.vc-login-social {
  display: grid;
  gap: 20px;
  margin-bottom: 23px;
}

.vc-login-social__button {
  appearance: none;
  border: 1px solid var(--vc-login-border);
  background: var(--vc-login-white);
  color: var(--vc-login-black);
  min-height: 40px;
  width: 100%;
  padding: 8px 16px 8px 22px;
  display: grid;
  grid-template-columns: 22px 1fr 22px;
  align-items: center;
  column-gap: 11px;
  cursor: pointer;
  font: 400 15px/1.2 var(--vc-login-font);
  text-align: center;
  box-shadow: none;
  border-radius: 0;
}

.vc-login-social__button:hover,
.vc-login-social__button:focus {
  border-color: #bdbdbd;
  background: #fafafa;
  outline: none;
  box-shadow: none;
}

.vc-login-social__button svg {
  width: 17px;
  height: 17px;
  justify-self: center;
}

.vc-login-social__button span {
  grid-column: 2;
}

.vc-login-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 17px;
  color: var(--vc-login-black);
  font: 400 13px/1 var(--vc-login-font);
  text-transform: lowercase;
}

.vc-login-divider::before,
.vc-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vc-login-line);
}

.vc-login-divider span {
  padding: 0 15px;
}

.vc-login-form {
  display: grid;
  gap: 16px;
}

.vc-login-form--login,
.vc-login-form--forgot {
  gap: 18px;
}

.vc-login-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--vc-login-black);
  font: 400 13px/1.25 var(--vc-login-font);
}

.vc-login-form label span b {
  color: #c00000;
  font-weight: 400;
}

.vc-login-form__row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vc-login-form input[type="text"],
.vc-login-form input[type="email"],
.vc-login-form input[type="password"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--vc-login-border);
  border-radius: 0;
  background: var(--vc-login-white);
  color: var(--vc-login-black);
  padding: 8px 11px;
  font: 400 15px/1.2 var(--vc-login-font);
  outline: none;
  box-shadow: none;
}

.vc-login-form input[type="text"]:hover,
.vc-login-form input[type="email"]:hover,
.vc-login-form input[type="password"]:hover {
  box-shadow: none;
}

.vc-login-form input:focus {
  border-color: var(--vc-login-black);
  box-shadow: none;
}

.vc-login-form__password-wrap {
  position: relative;
  display: block;
}

.vc-login-form__password-wrap input {
  padding-right: 42px;
}

.vc-login-form__eye {
  appearance: none;
  border: 0;
  background: transparent;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  padding: 3px;
  color: var(--vc-login-black);
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.vc-login-form__eye:hover,
.vc-login-form__eye:focus,
.vc-login-form__eye:active {
  background: transparent !important;
  border-color: transparent !important;
  color: inherit;
  outline: none;
  box-shadow: none !important;
}

.vc-login-form__eye svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vc-login-check {
  display: grid !important;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 9px !important;
  margin: 1px 0 0 !important;
  color: var(--vc-login-black);
  font: 400 13px/1.35 var(--vc-login-font) !important;
}

.vc-login-check input[type="checkbox"] {
  appearance: none;
  width: 13px;
  height: 13px;
  min-width: 13px;
  margin: 1px 0 0;
  border: 1px solid var(--vc-login-border);
  border-radius: 0;
  background: var(--vc-login-white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: none;
}

.vc-login-check input[type="checkbox"]:hover,
.vc-login-check input[type="checkbox"]:focus {
  box-shadow: none;
  outline: none;
}

.vc-login-check input[type="checkbox"]:checked {
  background: #4b6665;
  border-color: #4b6665;
}

.vc-login-check input[type="checkbox"]:checked::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translateY(-1px);
}

.vc-login-check a {
  color: var(--vc-login-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vc-login-check a:hover,
.vc-login-check a:focus {
  color: var(--vc-login-black);
}

.vc-login-form__forgot {
  appearance: none;
  border: 0;
  background: transparent;
  color: #707070;
  width: fit-content;
  padding: 0;
  margin: -4px 0 2px;
  text-decoration: underline;
  text-align: left;
  font: 400 13px/1.2 var(--vc-login-font);
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.vc-login-form__forgot:hover,
.vc-login-form__forgot:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.vc-login-form__submit {
  appearance: none;
  border: 1px solid var(--vc-login-black);
  background: var(--vc-login-black);
  color: var(--vc-login-white);
  width: 100%;
  min-height: 41px;
  padding: 11px 16px;
  margin-top: 3px;
  cursor: pointer;
  text-align: center;
  font: 700 14px/1.2 var(--vc-login-font);
  box-shadow: none;
  border-radius: 0;
}

.vc-login-form__submit:hover,
.vc-login-form__submit:focus {
  background: #111111;
  border-color: #111111;
  outline: none;
  box-shadow: none;
}

.vc-login-form__submit[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.vc-login-form__message {
  display: none;
  margin-top: 0;
  padding: 9px 10px;
  border: 1px solid transparent;
  font: 400 13px/1.35 var(--vc-login-font);
}

.vc-login-form__message.is-visible {
  display: block;
}

.vc-login-form__message.is-error {
  color: var(--vc-login-error);
  border-color: rgba(176, 0, 32, 0.2);
  background: rgba(176, 0, 32, 0.06);
}

.vc-login-form__message.is-success {
  color: var(--vc-login-success);
  border-color: rgba(10, 122, 50, 0.2);
  background: rgba(10, 122, 50, 0.06);
}

.vc-login-user__logged-box {
  text-align: center;
  padding: 10px 0 4px;
}

.vc-login-user__logged-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.vc-login-user__logged-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--vc-login-black);
}

.vc-login-user__logged-box h3 {
  margin: 0 0 8px;
  font: 700 16px/1.2 var(--vc-login-font);
  color: var(--vc-login-black);
}

.vc-login-user__logged-box p {
  margin: 0 0 18px;
  color: var(--vc-login-muted);
  font: 400 14px/1.35 var(--vc-login-font);
}

@media (max-width: 480px) {
  .vc-login-modal {
    padding: 14px;
    align-items: center;
  }

  .vc-login-modal__dialog {
    width: min(100%, 350px);
    padding-left: 13px;
    padding-right: 13px;
  }

  .vc-login-tabs {
    gap: 14px;
  }

  .vc-login-social__button {
    padding-left: 20px;
    font-size: 14px;
  }

  .vc-login-form__row--two {
    gap: 19px;
  }
}

/* Login User - VC v1.1.2 | cache-buster: icons-switchers */
.vc-login-form__eye,
.vc-login-form__eye:hover,
.vc-login-form__eye:focus,
.vc-login-form__eye:active {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none;
}
