/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/atoms/input/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
/******* Colors *******/
/******* Status Colors *******/
/******* Effect Styles Colors *******/
/******* FONT SETUP *******/
/******* Colors *******/
/******* Status Colors *******/
/******* Effect Styles Colors *******/
/******* FONT SETUP *******/
.submit__form__button {
  cursor: pointer;
  background: #224267;
  font-family: "Mali", Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  padding: 10px 15px;
  letter-spacing: 0.18em;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  display: inline-block;
}

.submit__form__button {
  position: relative;
  color: #ffffff;
}
.loading.submit__form__button {
  color: #224267;
  background: #224267;
}
.submit__form__button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  transition: all 0.3s ease;
}

.loading.submit__form__button {
  position: relative;
  pointer-events: none;
}
.loading.submit__form__button::before {
  content: "";
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid transparent;
  animation: loading 1s infinite linear;
  border-radius: 50%;
}
@keyframes loading {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes move_down {
  0% {
    transform: translate(0, -10px) rotate(45deg);
  }
  100% {
    transform: translate(0, 10px) rotate(45deg);
  }
}

@keyframes move_right_before {
  0% {
    transform: translate(-5px, 0) rotate(-45deg);
  }
  80% {
    transform: translate(5px, 0) rotate(-45deg);
  }
  100% {
    transform: translate(-5px, 0) rotate(-45deg);
  }
}
@keyframes move_right_after {
  0% {
    transform: translate(-5px, 0) rotate(-45deg);
  }
  80% {
    transform: translate(15px, 0) rotate(-45deg);
  }
  100% {
    transform: translate(-5px, 0) rotate(-45deg);
  }
}

/******* Colors *******/
/******* Status Colors *******/
/******* Effect Styles Colors *******/
/******* FONT SETUP *******/
@keyframes slideDown {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.input .wp-editor {
  position: relative;
  z-index: 3;
}

.input__label input,
.input__label span,
.input__label select,
.input__label button,
.input__label p {
  font-family: "Mali", Arial, sans-serif;
  color: #121212;
  font-weight: 500;
}

.input__label {
  position: relative;
  padding-bottom: 5px;
  gap: 5px;
  text-align: left;
  margin-bottom: 10px !important;
}
@media (min-width: 960px) {
  .input__label {
    display: inline-flex;
    align-items: center;
  }
}
.input__label input {
  width: 100%;
  margin-bottom: 10px;
}
.input__label .input__title {
  flex-shrink: 0;
  width: 280px;
  text-align: left;
  display: block;
  margin-bottom: 5px;
}
.input__label .input__file {
  background: transparent;
  border: 2px solid #224267;
  border-radius: 5px;
  padding: 8px;
}
.input__label .select_container {
  position: relative;
}
.input__label .select_container svg {
  position: absolute;
  right: 0;
  top: 31%;
  transform: translate(0, -50%);
  pointer-events: none;
}
.input__label .select_container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}
.input__label .select_container select::-ms-expand {
  display: none;
}
.input__label .input__text {
  border: 0;
  border: 2px solid #224267;
  border-radius: 5px;
  background: none;
  padding: 8px;
  font-family: "Mali", Arial, sans-serif;
  font-size: 1rem;
  color: #224267;
  outline: 0;
  resize: none;
}
.input__label .input__text::-moz-placeholder {
  font-weight: 500;
  color: #224267;
}
.input__label .input__text::placeholder {
  font-weight: 500;
  color: #224267;
}
.input__label.wrapper__textarea {
  text-align: left;
  letter-spacing: unset;
  display: inline-block;
}
.input__label.wrapper__textarea .input__title {
  margin-bottom: 5px;
  display: block;
}
.input__label.wrapper__textarea .input__text {
  text-align: left;
  resize: none;
}
.input__label.wrapper__textarea textarea {
  width: 100%;
  background: none;
  border: 0;
  outline: none;
  border: 2px solid #224267;
  color: #224267;
  font-size: 16px;
  font-family: "Mali", Arial, sans-serif;
  position: relative;
  margin-bottom: 8px;
  resize: none;
}
.input__label.wrapper__textarea textarea:placeholder {
  font-family: inherit;
}
.input__label .alert-msg {
  font-family: "Mali", Arial, sans-serif;
  position: absolute;
  width: 100%;
  bottom: -4px;
  right: 0;
  font-weight: 400;
  text-align: right;
}
.input__label.custom-checkbox .alert-msg {
  bottom: -16px;
}

.custom-checkbox {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-checkbox .checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  min-width: 18px;
  min-height: 18px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  border: 2px solid #224267;
}
.custom-checkbox .checkbox:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 3px;
  height: 8px;
  border: solid #224267;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.custom-checkbox .checkbox:checked:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.custom-checkbox label {
  font-weight: 500;
  cursor: pointer;
}
.custom-checkbox a {
  color: #224267;
}

.submit__form__button {
  margin-inline: auto;
  letter-spacing: 0.18em;
  transition: all 0.3s ease-in-out;
}
.submit__form__button.sending {
  cursor: progress;
}

.submit__form__button__nft {
  height: -moz-fit-content;
  height: fit-content;
}

.return_message {
  font-family: "Mali", Arial, sans-serif;
}

.custom-select {
  position: relative;
  margin-bottom: 24px;
}
.custom-select__label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid rgba(34, 66, 103, 0.8);
  padding-bottom: 8px;
  color: #224267;
  font-family: "Mali", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.custom-select__label:after {
  content: "";
  background: transparent;
  height: 12px;
  width: 12px;
  border-left: 3px solid #224267;
  border-top: 3px solid #224267;
  transform: translate(-5px, 25%) rotate(45deg);
  transition: all 0.2s ease-in-out;
}
.custom-select__options {
  list-style: none;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  position: absolute;
  top: calc(100% + 8px);
  background: #224267;
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
  overflow: auto;
  max-height: 215px;
  z-index: 10;
  overscroll-behavior: contain;
}
.custom-select__options li {
  padding: 12px 0 12px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  font-family: "Mali", Arial, sans-serif;
}
.custom-select__options li.hide {
  display: none;
}
.custom-select--open .custom-select__label {
  border-color: #224267;
}
.custom-select--open .custom-select__label:after {
  transform: translate(-5px, 25%) rotate(225deg);
}
.custom-select--open .custom-select__options {
  animation: slideDown 0.3s ease-in-out forwards;
}
.custom-select .alert-msg {
  font-family: "Mali", Arial, sans-serif;
  display: block;
  margin-top: 7px;
}
@media (min-width: ) {
  .custom-select {
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .custom-checkbox {
    gap: 16px;
  }
}

/*# sourceMappingURL=style-index.css.map*/