@font-face {
  font-family: 'Poppins';
  src: url('./Poppins-Regular.woff') format('truetype');
  font-weight: 400;
  font-display: swap;
}

* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  user-select: none;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  background-color: #e9e9e9;
  position: relative;
  overscroll-behavior-y: contain;
}

body:hover, body:active, body:focus {
  -webkit-tap-highlight-color: transparent;
}

select {
  background-color: inherit;
}

.backgroundImage {
  display: flex;
  position: relative;
  width: 950px;
  align-self: flex-end;
}

.regFormWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 700px;
  max-width: 100%;
  right: 0;
  background-color: #ffffff;
  opacity: .97;
}

.regFormTitle {
  margin-top: 100px;
  font-size: 42px;
  font-weight: 700;
  color: #e5171a;
  text-align: center;
}

.regForm {
  display: flex;
  position: relative;
  width: 350px;
  max-width: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.regFormInput {
  display: flex;
  min-width: 0;
  min-height: 40px;
  border: 2px solid #E6E5E5;
  border-radius: 6px;
  padding-left: 15px;
  outline: none;
  box-sizing: unset;
}

.regFormSubmit {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  min-width: 0;
  min-height: 40px;
  background-color: #E5171A;
  color: #FFFFFF;
  border: 2px solid #E6E5E5;
  border-radius: 6px;
  padding-left: 15px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-sizing: unset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.regFormLabel {
  display: flex;
  border-radius: 6px;
  margin: 12px 0px;
}

.regFormFullNameWrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
}

.regFormNameWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48%;
}

.regFormPhoneWrapper {
  display: flex;
  justify-content: space-between;
}

.regFormPhoneWrapper > input {
  flex: 1;
  margin-left: 16px;
}

.checkoutPanelPhoneWrapper > select {
  width: 80px;
}

.notice-container {
  display: none;
  position: fixed;
  background-color: #80808080;
  height: 100%;
  width: 100%;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.notice {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 400px;
  max-width: 100%;
  border-radius: 6px;
  padding: 40px 8px;
  background-color: #ffffff;
  align-items: center;
}

.notice-close {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  margin: 8px 8px 0 0;
  justify-content: center;
  height: 25px;
  width: 25px;
  padding: 2px;
  border-radius: 6px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  -moz-box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  cursor: pointer;
}

.notice-text {
  text-align: center;
  user-select: none;
}

.notice-ok {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 150px;
  padding: 2px;
  margin-top: 20px;
  border-radius: 6px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  -moz-box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  box-shadow: 0px 2px 5px -1px rgba(199,199,199,1);
  cursor: pointer;
}
/* end notice popups */

div.notice-container div.notice div.notice-text p {
  font-weight: 700;
}

div.notice-container div.notice div.notice-text span {
  color: #e5171a;
}

.loaderContainer {
  display: none;
  flex-direction: column;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #ffffff77;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

@keyframes ldio {
  0% { transform: scale(1.1500000000000001) }
  100% { transform: scale(1) }
}

.ldio-spinner {
  width: 75px;
  height: 75px;
  display: flex;
}

.ldio div {
  display: flex;
  position: relative;
  width: 40%;
  height: 40%;
  margin: 5%;
  background: #000000;
  animation: ldio 1s cubic-bezier(0,0.5,0.5,1) infinite;
  animation-delay: -0.3s;
  box-sizing: border-box;
}

.ldio div:nth-child(2) {
  background: #e9e9e9;
  animation-delay: -0.2s;
  border: 2px solid;
}

.ldio div:nth-child(3) {
  background: #e9e9e9;
  animation-delay: 0s;
  border: 2px solid #e5171a;
}

.ldio div:nth-child(4) {
  background: #e5171a;
  animation-delay: -0.1s;
}

.ldio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
