.pop-up {
  position      : fixed !important;
  top           : 0;
  left          : 0;
  width         : 100%;
  height        : 100% !important;
  background    : #232528cc;
  z-index       : 10000000000;
  flex-direction: column;
  align-items   : center;
  padding       : 20px !important;
  display       : none;
  overflow-y    : auto !important;
}

.pop-up::-webkit-scrollbar {
  width: 3px;
}

.pop-up::-webkit-scrollbar-track {
  background: #d9dbdd;
}

.pop-up::-webkit-scrollbar-thumb {
  background   : #929497;
  border-radius: 3px;
}

.pop-up::-webkit-scrollbar-thumb:hover {
  background: #65615e;
}

.pop-up.active {
  display  : flex;
  animation: fadeIn 0.5s forwards;
}

.pop-up_content-box {
  background   : #fff;
  border-radius: 4px;
  width        : 100%;
  max-width    : 500px;
  margin       : auto;
}

.pop-up_header {
  padding        : 16px;
  border-bottom  : 1px solid #e3e3e3;
  display        : flex;
  justify-content: center;
  position       : relative;
}

.pop-up_header .pop-up_header-title {
  font-weight: 500;
  font-size  : 16px;
  line-height: 24px;
  color      : #232528;
  text-align : center;
  padding    : 0 32px;
}

.pop-up_header .back-button {
  background: 0 0;
  border    : none;
  width     : 24px;
  height    : 24px;
  position  : absolute;
  top       : 16px;
  left      : 16px;
}

.pop-up_header .back-button:focus {
  outline: 0;
}

@media (hover: hover) and (pointer: fine) {
  .pop-up_header .back-button:hover svg path {
    fill: #3578ea;
  }
}

.pop-up_header .back-button svg {
  width : 100%;
  height: 100%;
}

.pop-up_header .back-button svg path {
  fill      : #232528;
  transition: 0.3s;
}

.pop-up_header .close-button {
  width     : 24px;
  height    : 24px;
  border    : none;
  background: 0 0;
  position  : absolute;
  right     : 16px;
  top       : 16px;
}

.pop-up_header .close-button:before {
  content      : "";
  position     : absolute;
  top          : 0;
  left         : 0;
  width        : 100%;
  height       : 100%;
  border-radius: 4px;
  border       : 1px solid #232528;
  opacity      : 0;
  transition   : 0.3s;
}

.pop-up_header .close-button:focus {
  outline: 0;
}

.pop-up_header .close-button:focus:before {
  opacity: 1;
}

.pop-up_header .close-button img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
}

.pop-up_body {
  padding: 32px;
}

#login-register_popup .multiple-account .title-wrapper {
  margin-bottom: 24px;
}

#login-register_popup .multiple-account .account-list {
  max-height: 280px;
}

.login-form .content-title {
  font-weight  : 500;
  font-size    : 20px;
  line-height  : 20px;
  color        : #232528;
  text-align   : center;
  margin-bottom: 28px;
}

.login-form .content-subtitle {
  font-weight  : 500;
  font-size    : 16px;
  line-height  : 24px;
  color        : #232528;
  text-align   : center;
  margin-bottom: 32px;
}

.login-form form {
  max-width: 330px;
  margin   : 0 auto;
}

.login-form form .input_wrapper {
  display       : flex;
  flex-direction: column;
  margin-bottom : 16px;
}

.login-form form .input_wrapper.validatable-input.invalid-input .error-message {
  display: none !important;
}

.login-form form .input_wrapper.invalid-input input {
  border-color: #ea3535;
}

.login-form form .input_wrapper.invalid-input .error-message {
  display: block;
}

.login-form form .input_wrapper .error-message {
  font-size  : 12px;
  font-weight: 400;
  color      : #ea3535;
  display    : none;
  margin-top : 6px;
}

.login-form form .input_wrapper label {
  font-weight  : 500;
  font-size    : 14px;
  line-height  : 20px;
  color        : #515254;
  display      : block;
  margin-bottom: 4px;
}

.login-form form .input_wrapper input {
  border       : 1px solid #c5c7cb;
  border-radius: 4px;
  padding      : 0 16px;
  font-size    : 14px;
  height       : 36px;
  transition   : 0.3s;
}

.login-form form .input_wrapper input:focus {
  border-color: #232528;
  outline     : 0;
}

.login-form form .checkbox-wrapper label {
  font-weight : 500;
  font-size   : 12px;
  line-height : 16px;
  display     : block;
  color       : #232528;
  padding-left: 25px;
}

.login-form form .password-input {
  width   : 100%;
  position: relative;
}

.login-form form .password-input input {
  width        : 100%;
  padding-right: 50px;
}

.login-form form .password-input .visibility-icon {
  position  : absolute;
  top       : 50%;
  transform : translateY(-50%);
  right     : 16px;
  width     : 20px;
  height    : 20px;
  border    : none;
  background: 0 0;
}

.login-form form .password-input .visibility-icon:focus {
  outline: 0;
}

.login-form form .password-input .visibility-icon.active img.hide {
  opacity: 1;
}

.login-form form .password-input .visibility-icon.active img.show {
  opacity: 0;
}

.login-form form .password-input .visibility-icon img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
  position  : absolute;
  top       : 0;
  left      : 0;
  transition: 0.3s;
}

.login-form form .password-input .visibility-icon img.hide {
  opacity: 0;
}

.login-form form .links_wrapper {
  display        : flex;
  justify-content: space-between;
  margin         : 24px 0;
}

.login-form form .links_wrapper .pop-up_inner-button {
  font-weight         : 500;
  font-size           : 12px;
  line-height         : 16px;
  text-decoration-line: underline;
  color               : #3578ea;
  transition          : 0.3s;
  border              : none;
  background          : 0 0;
  text-decoration     : none;
  position            : relative;
}

.login-form form .links_wrapper .pop-up_inner-button:focus {
  outline: 0;
}

@media (hover: hover) and (pointer: fine) {
  .login-form form .links_wrapper .pop-up_inner-button:hover {
    color: #1764e9;
  }

  .login-form form .links_wrapper .pop-up_inner-button:hover:before {
    width  : 100%;
    opacity: 1;
  }
}

.login-form form .links_wrapper .pop-up_inner-button:before {
  content   : "";
  position  : absolute;
  top       : 100%;
  left      : 50%;
  transform : translateX(-50%);
  width     : 0;
  opacity   : 0;
  height    : 1px;
  background: #1764e9;
  transition: 0.3s;
}

.login-form form .recaptcha-box {
  width : 100%;
  height: 78px;
}

.login-form form .button-blue {
  width        : 100%;
  min-height   : 44px;
  display      : flex;
  align-items  : center;
  border-radius: 4px !important;

}

.login-form form .button-grey {
  width           : 100%;
  background-color: #E8E9EA !important;
  border-radius   : 4px;
  color           : #231F20 !important;
  text-align      : center;
  font-family     : Inter;
  font-size       : 14px !important;
  font-style      : normal;
  font-weight     : 500;
  line-height     : 20px;
  padding         : 12px 0;
  transition      : all 0.3s;
  border          : none;
}

.login-form form .button-grey:hover {
  background: #1764e9 !important;
  color     : #fff !important;
}

.login-form .is-member {
  display        : flex;
  justify-content: center;
  margin-top     : 24px;
}

.login-form .is-member p {
  font-weight : 500;
  font-size   : 14px;
  line-height : 16px;
  color       : #232528;
  margin-right: 4px;
}

.login-form .is-member .pop-up_inner-button {
  font-weight    : 500;
  font-size      : 14px;
  line-height    : 16px;
  color          : #3578ea;
  text-decoration: none;
  position       : relative;
  border         : none;
  background     : 0 0;
}

.login-form .is-member .pop-up_inner-button:focus {
  outline: 0;
}

@media (hover: hover) and (pointer: fine) {
  .login-form .is-member .pop-up_inner-button:hover:before {
    width  : 100%;
    opacity: 1;
  }
}

.login-form .is-member .pop-up_inner-button:before {
  content   : "";
  position  : absolute;
  top       : 100%;
  left      : 50%;
  transform : translateX(-50%);
  width     : 0;
  height    : 1px;
  background: #3578ea;
  transition: 0.3s;
  opacity   : 0;
}

.login-form .validation-criteria-wrapper {
  max-height: 0;
  overflow-y: hidden;
  transition: 0.3s;
}

.login-form .validation-criteria {
  list-style: none;
  margin-top: 16px;
}

.login-form .validation-criteria .criteria {
  font-weight : 400;
  font-size   : 12px;
  line-height : 20px;
  color       : #232528;
  padding-left: 28px;
  position    : relative;
}

.login-form .validation-criteria .criteria:not(:last-child) {
  margin-bottom: 4px;
}

.login-form .validation-criteria .criteria.valid:before {
  border-color: #20c84f;
}

.login-form .validation-criteria .criteria.valid:after {
  background-image: url(/uploads/12037607/File/embroidery/assets/tick-green.svg);
  transform       : translate(1px, 1px) scale(1, 1);
}

.login-form .validation-criteria .criteria.invalid:before {
  border-color: #ea3535;
}

.login-form .validation-criteria .criteria.invalid:after {
  background-image: url(/uploads/12037607/File/embroidery/assets/close-red.svg);
  transform       : translate(1px, 1px) scale(1, 1);
}

.login-form .validation-criteria .criteria:after,
.login-form .validation-criteria .criteria:before {
  content         : "";
  position        : absolute;
  top             : 4px;
  left            : 6px;
  transition-delay: 0.3s;
  transition      : 0.3s;
  box-sizing      : border-box;
}

.login-form .validation-criteria .criteria:before {
  width        : 12px;
  height       : 12px;
  border-radius: 100%;
  border       : 1px solid #232528;
}

.login-form .validation-criteria .criteria:after {
  width          : 10px;
  height         : 10px;
  transform      : translate(1px, 1px) scale(0, 0);
  background-size: contain;
}

@media (min-width: 576px) {
  .multiple-account {
    padding: 24px 10px 24px 24px;
  }
}

.multiple-account .header-content {
  margin-bottom: 28px;
}

@media (min-width: 576px) {
  .multiple-account .header-content {
    padding-right: 14px;
  }
}

@media (max-width: 576px) {
  .multiple-account .header-content {
    margin-bottom: 10px;
  }
}

.multiple-account .header-content .title-wrapper {
  background     : #f9ffd3;
  border-radius  : 4px;
  padding        : 10px 16px 10px 12px;
  display        : flex;
  justify-content: space-between;
  margin-bottom  : 44px;
}

.multiple-account .header-content .title-wrapper .icon {
  width : 24px;
  height: 24px;
}

.multiple-account .header-content .title-wrapper .icon img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
}

.multiple-account .header-content .content-subtitle {
  width      : calc(100% - 32px);
  font-weight: 400;
  font-size  : 16px;
  line-height: 26px;
  color      : #354156;
}

@media (max-width: 576px) {
  .multiple-account .header-content .content-subtitle {
    font-size  : 13px;
    line-height: 21px;
  }
}

.multiple-account .header-content .content-subtitle span {
  font-weight: 500;
  color      : #0b1629;
}

.multiple-account .header-content .text {
  font-weight: 400;
  font-size  : 16px;
  line-height: 20px;
  color      : #354156;
}

.multiple-account .account-list {
  list-style: none;
  padding   : 0;
  max-height: 350px;
}

@media (min-width: 576px) {
  .multiple-account .account-list {
    padding-right: 14px;
    overflow-y   : auto;
  }

  .multiple-account .account-list::-webkit-scrollbar {
    width: 3px;
  }

  .multiple-account .account-list::-webkit-scrollbar-track {
    background: #d9dbdd;
  }

  .multiple-account .account-list::-webkit-scrollbar-thumb {
    background   : #929497;
    border-radius: 3px;
  }

  .multiple-account .account-list::-webkit-scrollbar-thumb:hover {
    background: #65615e;
  }
}

@media (max-width: 576px) {
  .multiple-account .account-list {
    max-height: unset;
  }
}

.multiple-account .account-list li {
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  padding        : 16px 0;
}

.multiple-account .account-list li:not(:last-child) {
  border-bottom: 1px solid #f4f5f7;
}

@media (max-width: 576px) {
  .multiple-account .account-list li:not(:last-child) {
    padding: 20px 0;
  }
}

.multiple-account .account-list li:nth-child(5n + 1) .dp {
  background: #e75493;
}

.multiple-account .account-list li:nth-child(5n + 2) .dp {
  background: #68affb;
}

.multiple-account .account-list li:nth-child(5n + 3) .dp {
  background: #f6c336;
}

.multiple-account .account-list li:nth-child(5n + 4) .dp {
  background: #36fb99;
}

.multiple-account .account-list li:nth-child(5n + 5) .dp {
  background: #fc5fff;
}

.multiple-account .account-list li .user-detail {
  display: flex;
  width  : calc(100% - 135px);
}

.multiple-account .account-list li .user-detail .dp {
  width          : 36px;
  height         : 36px;
  margin-right   : 8px;
  display        : flex;
  justify-content: center;
  align-items    : center;
  border-radius  : 100%;
  font-weight    : 500;
  font-size      : 18px;
  line-height    : 36px;
  text-align     : center;
  color          : #f6faff;
}

@media (max-width: 576px) {
  .multiple-account .account-list li .user-detail .dp {
    width      : 24px;
    height     : 24px;
    font-size  : 12px;
    line-height: 24px;
  }
}

.multiple-account .account-list li .user-detail .content {
  width: calc(100% - 44px);
}

@media (max-width: 576px) {
  .multiple-account .account-list li .user-detail .content {
    width: calc(100% - 32px);
  }
}

.multiple-account .account-list li .user-detail .name {
  font-weight  : 500;
  font-size    : 16px;
  line-height  : 20px;
  color        : #172640;
  margin-bottom: 2px;
}

@media (max-width: 576px) {
  .multiple-account .account-list li .user-detail .name {
    font-size: 14px;
  }
}

.multiple-account .account-list li .user-detail .date {
  font-weight: 500;
  font-size  : 12px;
  line-height: 20px;
  color      : #555e6d;
}

@media (max-width: 576px) {
  .multiple-account .account-list li .user-detail .date {
    font-size: 10px;
  }
}

.multiple-account .account-list li .button-outline {
  line-height: 20px;
  padding    : 7px 16px;
}

.multiple-account .account-list li .button-outline:focus {
  outline: 0;
}

.success-form {
  padding: 0 24px 24px;
}

.success-form .symbol {
  width : 48px;
  height: 48px;
  margin: 0 auto 24px;
}

.success-form .symbol img {
  width     : 100%;
  height    : 100%;
  object-fit: contain;
}

.success-form .content-title {
  font-weight  : 500;
  font-size    : 20px;
  line-height  : 30px;
  color        : #232528;
  text-align   : center;
  margin-bottom: 8px;
}

.success-form .content-subtitle {
  font-weight  : 500;
  font-size    : 14px;
  line-height  : 20px;
  color        : #4d4f53;
  text-align   : center;
  margin-bottom: 32px;
}

.success-form .button-blue {
  width    : 100%;
  max-width: 330px;
  margin   : 0 auto;
}

@media (max-width: 991.98px) {
  #login-register_popup {
    display: none !important;
  }
}

#login-register_popup .pop-up_content-box {
  display: none;
}

#login-register_popup .pop-up_content-box.active {
  animation: fadeIn 0.3s forwards;
  display  : block;
}

#login-register_popup .pop-up_body {
  padding: 20px;
}

#popup_successful-message .pop-up_header {
  border         : none;
  justify-content: flex-end;
  padding-bottom : 8px;
}

#popup_successful-message .close-button {
  position: relative;
  top     : unset;
  right   : unset;
}