/*!*************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./src/css/apps/ascustomui.scss ***!
  \*************************************************************************************************************************************************************************************************************************/
.material-icons-outlined {
  line-height: unset;
}

.augmentedstore-app-content footer {
  display: flex;
}

.augmentedstore-root-container {
  overflow-y: auto;
  display: flex;
}
.augmentedstore-root-container small {
  color: lightgray;
  font-size: 1rem;
  font-style: italic;
}
.augmentedstore-root-container #input-domain::placeholder {
  color: lightgray;
}
.augmentedstore-root-container #overlay {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3490196078);
  z-index: 2;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.augmentedstore-root-container .reset-icon {
  font-size: 1.2rem;
  color: lightgray;
  margin-left: 1rem;
  cursor: pointer;
}

.augmentedstore-spinner {
  top: 50%;
  left: 55%;
  position: absolute;
  text-align: center;
}

.logo-container {
  padding: 0.25rem;
}
.logo-container .drop-zone {
  width: 10rem;
  height: 10rem;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  color: #cccccc;
  border: 3px dashed #9ac239;
  border-radius: 2px;
}
.logo-container .drop-zone.link-not-empty {
  -webkit-box-shadow: 0px -1px 6px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0px -1px 6px 1px rgba(0, 0, 0, 0.18);
  padding: unset;
  border: none;
}
.logo-container .drop-zone .drop-zone--over {
  border-style: solid;
}
.logo-container .drop-zone .drop-zone__input {
  display: none;
}
.logo-container .drop-zone .drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.logo-container .drop-zone .drop-zone__thumb:hover::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: rgba(126, 126, 126, 0.9215686275);
  font-size: 0.7rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25rem 0.5rem;
  letter-spacing: 1px;
}
.logo-container .logo-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.logo-container .logo-buttons button {
  background: none;
  border: none;
}
.logo-container .logo-buttons button:disabled {
  opacity: 0.5;
}

/*COLOR PICKER*/
[type=color] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid lightgray;
  cursor: pointer;
}

[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}

[type=color]::-webkit-color-swatch {
  border: 1px solid lightgray;
}

.color-picker {
  min-width: 15rem;
  cursor: pointer;
}

#augmentedstore-modal #modal-refresh-button {
  background: none;
  border: none;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#augmentedstore-modal .selected .link__thumb::after {
  background: #9ac239;
  color: black;
}

.link {
  position: relative;
  width: 10rem;
  height: 10rem;
  padding: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  color: #cccccc;
  border-width: 3px;
  border-style: dashed;
  border-color: rgba(141, 146, 145, 0.231372549);
  border-radius: 2px;
}
.link.link-not-empty {
  -webkit-box-shadow: 0px -1px 6px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0px -1px 6px 1px rgba(0, 0, 0, 0.18);
  padding: unset;
  border: none;
}
.link .link__prompt {
  display: flex;
}
.link .button-container {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  border-radius: 2px 2px 0px 0px;
  background-color: rgba(126, 126, 126, 0.9215686275);
}
.link .button-container button {
  cursor: pointer;
}
.link .button-container span {
  color: whitesmoke;
  font-size: 1.2rem;
}
.link button {
  background: none;
  border: none;
}
.link .link--over {
  border-style: solid;
}
.link .link__input {
  display: none;
}
.link .link__thumb {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.link .link__thumb:hover .button-container {
  display: inherit;
  cursor: default;
}
.link .link__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: rgba(126, 126, 126, 0.9215686275);
  font-size: 0.7rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.25rem 0.5rem;
  letter-spacing: 1px;
}

/*# sourceMappingURL=ascustomui.css.map*/