.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.spinner {
  color: #333;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 0;
}
.spinner:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/** Spinner Wheel**/
.spinner.spinner-wheel {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  font-size: 0;
}
.spinner.spinner-wheel:before,
.spinner.spinner-wheel:after {
  content: none;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.text-input-container {
  align-items: center;
  display: flex;
}
.text-input-container label {
  margin-right: 10px;
}
.text-input-container .text-input {
  background-color: white;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  flex-grow: 1;
  padding: 8px 10px;
}
.text-input-container .input-wrapper {
  display: flex;
  flex-grow: 1;
  position: relative;
}
.text-input-container .input-buttons {
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 15px;
  top: 7px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.basic-form .input-row .input-type-address {
  flex-wrap: wrap;
}
.basic-form .input-row .input-type-address > label {
  width: 100%;
}
.basic-form .input-row label + .spinner {
  flex-grow: 0;
  margin: 0;
}
.basic-form .input-row.input-type-hidden {
  display: none;
}
.admin-management-edit.user .edit-form.details .basic-form .submit-button-wrapper {
  display: none;
}
.admin-management-edit.user .edit-form.details .basic-form > .input-row:not(.input-type-hidden) {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  justify-content: flex-start;
}
.admin-management-edit.user .edit-form.details .basic-form > .input-row:not(.input-type-hidden) > div {
  width: 100%;
}
.admin-management-edit.user .edit-form.details .basic-form > .input-row:not(.input-type-hidden) .error {
  position: absolute;
  border-left: 0;
  bottom: -20px;
  left: 110px;
}
.admin-management-edit.user .edit-form.details .basic-form .input-name-addresss > label {
  display: none;
}
.admin-management-edit.user .edit-form.details .basic-form .input-name-addresss .text-input-container {
  margin-bottom: 2rem;
}

.checkbox-input-container {
  align-items: center;
  display: flex;
}
.checkbox-input-container label {
  margin-left: 10px;
}
.checkbox-input {
  background-color: white;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  display: inline-block;
  height: 18px;
  position: relative;
  transition: background-color 0.2s;
  width: 18px;
}
.checkbox-input:not(:disabled) {
  cursor: pointer;
}
.checkbox-input.disabled {
  background-color: #E3E3E3;
}
.checkbox-input.checked {
  background-color: #369F11;
  border-color: #369F11;
}
.checkbox-input.checked.disabled {
  background-color: #E3E3E3;
  border-color: #E3E3E3;
}
.checkbox-input:after {
  content: '';
  position: absolute;
}
.checkbox-input.checked:after {
  border: solid white;
  border-width: 0 2px 2px 0;
  height: 8px;
  left: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 3px;
  width: 4px;
}

.generic-numberic-input {
  display: flex;
  align-items: center;
}
.generic-numberic-input .qty-btn {
  display: inline-block;
  width: 15px;
  text-align: center;
  cursor: pointer;
}

.dropdown-input-container {
  align-items: center;
  display: flex;
}
.dropdown-input-container label {
  margin-right: 10px;
}
.dropdown-input {
  flex-grow: 1;
}
.dropdown-input > div {
  border-color: #E3E3E3;
}

.generic-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 99;
}
.generic-modal__wrapper {
  background: #fff;
  width: 800px;
  max-width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.generic-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.generic-modal__header h3 {
  margin: 0;
}
.generic-modal__close {
  font-size: 40px;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s;
  transform-origin: center;
}
.generic-modal__close:hover {
  transform: rotate(90deg);
}
.generic-modal__header,
.generic-modal__footer {
  height: 80px;
  padding: 30px;
}
.generic-modal__content {
  border-top: 1px solid #fafafa;
  border-bottom: 1px solid #fafafa;
  padding: 30px;
  max-height: calc(80vh - 160px);
  overflow-y: auto;
}
.generic-modal__footer {
  display: flex;
  justify-content: flex-end;
}
.generic-modal__footer button {
  margin-left: 20px;
  border: 0;
  padding: 5px 15px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #eee;
  transition: background-color 0.3s;
  box-shadow: none;
}
.generic-modal__footer button:focus {
  outline: none;
}
.generic-modal__footer button:hover {
  background-color: #ddd;
}
.generic-modal__footer button.confirm {
  background-color: #589e58;
  color: #fff;
}
.generic-modal__footer button.confirm:hover {
  background-color: #66aa66;
}

