.kr-auth-popup-box {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 30;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.kr-auth-popup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.kr-auth-popup-box.kr-opened .kr-auth-popup-bg {
  opacity: 1;
}

.kr-auth-popup-main {
  width: 497px;
  max-width: 100%;
  max-height: 100vh;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.kr-auth-popup-box.kr-opened .kr-auth-popup-main {
  opacity: 1;
}

.kr-auth-popup-close {
  position: absolute;
  background: #FFF url(../img/auth/close05.svg) center/contain no-repeat;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  z-index: 5;
  border: none;
  width: 34px;
  height: 34px;
  top: 0;
  right: -54px;
}

.kr-auth-popup-box.noclosable .kr-auth-popup-close {
  display: none;
}

.kr-auth-popup-main-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}


.kr-auth-popup-mobile-header {
  display: none;
}

.kr-auth-popup-wrapper {
  padding: 40px 64px 30px;
  background: #FFFFFF;
  border-radius: 20px;
}

.kr-auth-popup-recovery,
.kr-auth-popup-register {
  padding-bottom: 50px;
}

.kr-auth-popup-recovery.kr-step1 {
  padding-bottom: 40px;
}

.kr-auth-popup-title {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: #2D2D2D;
}

.kr-auth-popup-box .kr-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 18px 30px;
  border-radius: 30px;
  border: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #FFF;
  background: #60d18d;
  transition: all .3s ease-in-out;
}

.kr-auth-label {
  display: block;
}

.kr-auth-label input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
}

.kr-auth-label input + span {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #2D2D2D;
  padding-left: 28px;
}

.kr-auth-label input[type=checkbox] + span:before {
  position: absolute;
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #FFFFFF;
  border: 1px solid #6D3DCC;
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
}

.kr-auth-label input[type=checkbox]:checked + span:before {
  background: #6D3DCC;
  border-color: #6D3DCC;
}

.kr-auth-label input[type=checkbox] + span:after {
  position: absolute;
  transform: scale(0.1);
  content: " ";
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background: url(../img/auth/checked01.svg) center/8px no-repeat;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
}

.kr-auth-label input[type=checkbox]:checked + span:after {
  opacity: 1;
  transform: scale(1);
}

.kr-auth-popup-form-input-box {
  position: relative;
  margin-bottom: 20px;
}

.kr-auth-popup-form-input-img {
  position: absolute;
  display: block;
  width: 24px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.kr-auth-input-img {
  width: 100%;
  padding: 13px 19px 12px;
  padding-left: 53px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  background: transparent;
  color: #2D2D2D;
  -webkit-appearance: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.kr-auth-input-img:disabled {
  background: #FFF;
  opacity: 0.3;
}

.kr-auth-input-img[type=password] {
  padding-right: 53px;
}

.kr-auth-input-img.parsley-error,
.kr-auth-input-img.kr-error {
  border-color: #FF4C4C;
}

.kr-auth-input-img::placeholder {color: #B5B5B5;}
.kr-auth-input-img::-webkit-input-placeholder {color: #B5B5B5;}
.kr-auth-input-img::-moz-placeholder {color: #B5B5B5;}
.kr-auth-input-img:-moz-placeholder {color: #B5B5B5;}
.kr-auth-input-img:-ms-input-placeholder {color: #B5B5B5;}

.kr-auth-toggle-pass-visibility-btn {
  padding: 0;
  border: none;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: url(../img/auth/auth-eye01.svg) center/24px no-repeat;
}

.kr-auth-toggle-pass-visibility-btn.kr-visible {
  background-image: url(../img/auth/auth-eye02.svg);
}

.kr-auth-change-recovery-phone-btn {
  padding: 0;
  border: none;
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: url(../img/auth/edit.svg) center/24px no-repeat;
}

.kr-auth-popup-form-pass-control {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.kr-auth-popup-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: underline;
  color: #6D3DCC;
}

.kr-auth-popup-form-pass-control .kr-auth-popup-link {
  text-align: right;
  margin-left: 20px;
}

.kr-auth-popup-form-message {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 24px;
}

.kr-auth-popup-form-message-error,
.kr-auth-popup-form-message-noequal {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #FF4C4C;
  position: relative;
  padding-left: 34px;
}

.kr-auth-popup-form-message-error::before,
.kr-auth-popup-form-message-noequal::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/auth/error.svg) center/contain no-repeat;
}

.kr-auth-popup-form-submit-box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.kr-auth-popup-recovery.kr-step3 .kr-auth-popup-form-submit-box,
.kr-auth-popup-register.kr-step3 .kr-auth-popup-form-submit-box {
  margin-top: 30px;
}

.kr-auth-popup-recovery.kr-step3 .kr-auth-popup-form-message:not(.kr-hidden) + .kr-auth-popup-form-submit-box,
.kr-auth-popup-register.kr-step3 .kr-auth-popup-form-message:not(.kr-hidden) + .kr-auth-popup-form-submit-box {
  margin-top: 0;
}

.kr-auth-popup-form-submit-btn {
  padding: 10px 32px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.kr-auth-popup-login .kr-auth-popup-form-submit-btn {
  width: 205px;
}

.kr-auth-popup-form-submit-btn img {
  display: block;
  width: 24px;
  margin-right: 10px;
}

.kr-auth-popup-bottom-box {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}

.kr-auth-popup-bottom-box::before {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% + 64px + 64px);
  height: 1px;
  background: #EAEAEA;
}

.kr-auth-popup-agreement-box {
  margin-top: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #B5B5B5;
}

.kr-auth-popup-agreement-box a {
  color: #B5B5B5;
}

.kr-auth-popup-form-input-text-centered {
  text-align: center;
}

.kr-auth-popup-subtitle {
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #2D2D2D;
}

.kr-auth-popup-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: #2D2D2D;
}

.kr-auth-code-field-box {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 30px;
}

.kr-auth-code-field-box + .kr-auth-popup-form-message:not(.kr-hidden) {
  margin-top: -10px;
}

.kr-auth-code-field {
  width: 46px;
  height: 46px;
  padding: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #2D2D2D;
  border: 1px solid #EAEAEA;
  border-radius: 10px;
  background: #FFF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-align: center;
  margin-right: 18px;
}

.kr-auth-code-field::-webkit-outer-spin-button,
.kr-auth-code-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.kr-auth-code-field:last-child {
  margin-right: 0;
}

.kr-auth-popup-recovery-recode {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
  color: #6D3DCC;
}

.kr-auth-popup-recovery-recode img {
  width: 24px;
  display: block;
  margin-right: 10px;
}

.kr-auth-popup-timer {
  margin-left: 7px;
  font-weight: 400;
  color: #6D3DCC;
  width: 38px;
  display: inline-block;
}

.kr-header-desctop-login-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: #FFF;
  background: #6D3DCC;
  transition: all 0.3s ease-in-out;
  margin: 0;
  margin-left: 20px;
  font-size: 16px;
  line-height: 19px;
  padding: 11px 23px;
}

.kr-header-desctop-login-btn img {
  width: 24px;
  display: block;
  margin-right: 10px;
}

.kr-header-desctop-user-box {
  position: relative;
  margin-left: 20px;
}

.kr-header-desctop-user-btn {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border: none;
  padding: 0;
  background: none;
  padding-right: 20px;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--auth-btn-color);
}

.kr-header-desctop-user-btn img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.kr-header-desctop-user-btn::after {
  position: absolute;
  display: block;
  content: "";
  width: 9px;
  height: 5px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/auth/arrow-dropdown.svg) center/contain no-repeat;
  transition: all 0.3s ease-in-out;
}

.kr-header-desctop-user-box:hover .kr-header-desctop-user-btn::after {
  transform: rotate(180deg) translateY(50%);
}

.kr-header-desctop-user-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.kr-header-desctop-user-box:hover .kr-header-desctop-user-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
}

.kr-header-desctop-user-dropdown-inner {
  width: 246px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px var(--auth-dropdown-shadow);
  border-radius: 20px;
  padding: 10px;
}

.kr-header-desctop-user-dropdown-mobile-head {
  display: none;
}

.kr-header-desctop-dropdown-section {
  padding: 10px 0;
  border-bottom: 1px solid var(--auth-dropdown-section-separator);
}

.kr-header-desctop-dropdown-section:last-child {
  border-bottom: 0;
  padding-bottom: 5px;
}

.kr-header-desctop-dropdown-section-title {
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  color: var(--auth-dropdown-section-title);
}

.kr-header-dropdown-link {
  padding: 5px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none;
}

.kr-header-dropdown-link-img {
  width: 24px;
  margin-right: 10px;
  display: block;
}

.kr-header-dropdown-link-text {
  -webkit-flex: 1;
  flex: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--auth-dropdown-link-color);
}

a:hover .kr-header-dropdown-link-text {
  text-decoration: underline;
}

.kr-header-dropdown-link-counter {
  display: block;
  margin-left: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--auth-dropdown-link-counter-color);
  padding: 1px 4px;
  text-align: center;
  background: var(--auth-dropdown-link-counter-bg);
  border-radius: 10px;
  min-width: 19px;
}

.kr-header-dropdown-business-link {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  padding: 10px 0;
  padding-right: 40px;
  border-bottom: 1px solid var(--auth-dropdown-business-separator);
  text-decoration: none;
}

.kr-header-dropdown-business-link:last-child {
  border-bottom: none;
}

.kr-header-dropdown-business-link::after {
  position: absolute;
  display: block;
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/auth/arrow-more.svg) center/contain no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.kr-header-dropdown-business-link-img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.kr-header-dropdown-business-link-text {
  -webkit-flex: 1;
  flex: 1;
}

.kr-header-dropdown-business-link-title {
  font-weight: 300;
  font-size: 12px;
  line-height: 19px;
  color: var(--auth-dropdown-section-title);
}

.kr-header-dropdown-business-link-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: var(--auth-dropdown-link-color);
}

.kr-header-dropdown-business-btn {
  position: relative;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  color: var(--auth-dropdown-btn-color);
  background: var(--auth-dropdown-btn-bg);
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.kr-header-dropdown-business-btn:hover {
  color: var(--auth-dropdown-btn-color);
}

.kr-header-dropdown-business-btn img {
  display: block;
  width: 24px;
  margin-right: 10px;
}

.kr-header-mobile-user-popup  {
  display: none;
}

@media (max-width: 991.98px) {
  .kr-auth-popup-main {
    width: 100%;
    height: 100%;
  }

  .kr-auth-popup-mobile-header {
    display: block;
    padding: 11px 15px 12px;
    background: #FFF;
    position: relative;
  }

  .kr-auth-popup-mobile-header::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 5px;
    background: linear-gradient(180deg, rgba(196, 196, 196, 0.2) 0%, rgba(196, 196, 196, 0) 100%);
    left: 0;
    top: 100%;
  }

  .kr-auth-popup-mobile-header-logo {
    height: 32px;
    display: block;
  }

  .kr-auth-popup-close {
    width: 44px;
    height: 44px;
    top: 5px;
    right: 5px;
    background-image: url(../img/auth/close02.svg);
    background-size: 24px;
  }

  .kr-auth-popup-wrapper {
    -webkit-flex: 1;
    flex: 1;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .kr-auth-popup-scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 35px 15px;
    -webkit-flex: 1;
    flex: 1;
  }

  .kr-auth-popup-title {
    font-size: 20px;
    line-height: 24px;
  }

  .kr-auth-popup-box .kr-btn {
    font-size: 16px;
    line-height: 19px;
  }

  .kr-auth-popup-bottom-box::before {
    width: 100vw;
  }

  .kr-auth-popup-subtitle {
    font-size: 16px;
    line-height: 19px;
  }

  .kr-header-desctop-user-dropdown-mobile-head {
    display: block;
  }

  .kr-header-desctop-user-dropdown-mobile-head img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
  }

  .kr-header-desctop-user-dropdown-mobile-head span {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 19px;
    color: var(--auth-dropdown-link-color);
  }

  .kr-header-desctop-dropdown-section {
    padding: 20px 0;
  }

  .kr-header-dropdown-link {
    padding: 12px 0;
  }

  .kr-header-dropdown-link-text {
    font-size: 20px;
  }

  .kr-header-desctop-dropdown-section-title {
    font-size: 16px;
  }

  .kr-header-dropdown-business-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .kr-header-dropdown-business-link:first-child {
    padding-top: 10px;
  }

  .kr-header-dropdown-business-link:last-child {
    padding-bottom: 10px;
  }

  .kr-header-dropdown-business-link::after {
    width: 24px;
    height: 24px;
    background-image: url(../img/auth/arrow-menu.svg);
  }

  .kr-header-dropdown-business-link-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .kr-header-dropdown-business-link-title {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .kr-header-dropdown-business-link-name {
    font-size: 18px;
  }

  .kr-header-dropdown-business-btn {
    padding: 13px;
  }

  .kr-header-mobile-user-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 25;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .kr-header-mobile-user-popup.kr-opened {
    transform: translateX(0);
  }

  .kr-header-mobile-user-popup .kr-header-mobile-popup-header {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    padding: 5px 10px;
  }

  .kr-header-mobile-user-popup .kr-header-mobile-popup-header::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 5px;
    background: linear-gradient(180deg, rgba(196, 196, 196, 0.2) 0%, rgba(196, 196, 196, 0) 100%);
    top: 100%;
    left: 0;
  }

  .kr-header-mobile-user-popup-img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 50%;
  }

  .kr-header-mobile-user-popup-name {
    -webkit-flex: 1;
    flex: 1;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: #2D2D2D;
  }


  .kr-header-mobile-user-popup .kr-header-mobile-popup-close {
    width: 44px;
    height: 44px;
    border: none;
    padding: 0;
    background: url(../img/auth/close02.svg) center/24px no-repeat;
    position: absolute;
    top: 5px;
    right: 5px;
    margin: 0;
  }

  .kr-header-mobile-user-popup-main {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    -webkit-flex: 1;
    flex: 1;
    overflow: auto;
  }
}
