@import "../fonts/neue-helvetica/style.css";
@keyframes loadingPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blob {
  0% {
    transform: scaleX(1) scaleY(1);
  }
  50% {
    transform: scaleX(1.4) scaleY(1.4);
  }
  100% {
    transform: scaleX(1) scaleY(1);
  }
}
@keyframes growDown {
  0% {
    transform: scaleY(0);
  }
  80% {
    transform: scaleY(1.05);
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes modalIn {
  0% {
    transform: scale(0.7, 0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.dropdown-arrow:after {
  content: "▼";
  position: absolute;
  font-size: 0.5rem;
  z-index: 1;
  text-align: center;
  width: 10%;
  height: 100%;
  pointer-events: none;
  top: 46%;
  transform: translateY(-20%);
  right: 8px;
}
.spinner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
}
.spinner-container span {
  font-size: 18px;
  margin-left: 20px;
}
.commonLoadingSpinner {
  opacity: 0.5;
  position: relative;
}
.commonLoadingSpinner * {
  pointer-events: none;
}
.commonLoadingSpinner:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1ce";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  font-size: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  z-index: 2;
  color: #222;
}
.not-selectable {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                   supported by Chrome and Opera */
}
.svg-icon {
  display: inline-block;
}
.flat-button {
  height: 25px;
  padding: 0 0.5rem;
  border: 0;
  outline: 0;
}
.flat-button:not(.classic-button):hover,
.flat-button:not(.classic-button)[disabled]:hover {
  border: 0;
  outline: 0;
  background-color: transparent;
  background-image: none;
}
.flat-button[disabled] {
  color: var(--primary-color);
}
.form-select {
  padding: var(--input-padding);
  min-width: 82px;
  background: var(--input-background);
  border-radius: 6px;
}
input.toggle {
  display: none;
}
input.toggle + label {
  user-select: none;
}
input.toggle + label:hover:after {
  color: var(--href-hover-color);
}
input.toggle + label:after {
  vertical-align: middle;
  margin: 0 5px;
  font-size: 18px;
  content: "\f204";
  color: var(--href-color);
}
input.toggle:checked + label:after {
  content: "\f205";
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-success {
  color: var(--message-success-color) !important;
}
.text-info {
  color: var(--message-info-color) !important;
}
.text-warning {
  color: var(--message-warning-color) !important;
}
.text-danger {
  color: var(--message-error-color) !important;
}
.bg-danger {
  background-color: var(--message-error-color) !important;
}
body {
  padding-top: 0;
  /* added for keywords processing */
  /*# sourceMappingURL=custom.css.map */
}
body .componentHolder {
  padding-left: 40px;
  padding-right: 40px;
}
body .table-holder {
  margin-top: 10px;
  width: 100%;
}
body .table-holder center {
  width: 100%;
}
body #b-table thead tr th {
  top: 64px !important;
}
body #b-table thead tr:not(.gridCellRow) th:nth-child(2) {
  max-width: 20px;
  width: 20px;
}
body #b-table td.right {
  text-align: right;
}
body .pageHeader {
  display: none;
}
body input {
  color: black !important;
}
body body a:hover {
  text-decoration: underline;
}
body .entry {
  display: flex;
  text-align: left;
  width: 100%;
  position: relative;
  align-items: baseline;
}
body .entry input {
  margin-top: 8px;
}
body .entry .icon {
  font-size: 18px;
}
body .entry .ASINCompeting {
  width: 745px;
}
body .entry tags {
  width: 50%;
  margin-right: 10px;
}
body .entry tags.tagify tag:first-child > div::before,
body .entry tags .item-tag > div::before {
  background: #d5e2f1;
}
body .entry .firstLabel {
  width: 100px;
  display: inline-block;
  margin-right: 10px;
}
body .entry .compButton {
  margin: 8px 4px 0 0px !important;
  position: relative !important;
  top: 3px !important;
  padding: 6px !important;
}
body .componentHolder {
  position: relative;
}
body .componentHolder .selection {
  width: 845px;
  border: 1px solid #d4d4d4;
  overflow: hidden;
  background-color: white;
  position: absolute;
  top: 47px !important;
  left: 150px !important;
  display: none;
  z-index: 90;
  border-radius: var(--border-radius-large);
  box-shadow: 0 0 22px var(--popup-box-shadow);
}
body .componentHolder .selection .compSelector {
  margin: 0 0 0 5px;
}
body .componentHolder .selection .competing-container {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
body .componentHolder .selection .competing-container > span.selected {
  border: 1px solid var(--button-hover-background);
  background-color: var(--button-hover-background);
  color: var(--button-hover-color);
}
body .componentHolder .selection .competing-container > span {
  border: 1px solid silver;
  margin: 10px;
  width: 100px;
  height: 140px;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  float: left;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--border-radius-basic);
}
body .componentHolder .selection .competing-container img {
  max-width: 98px;
  max-height: 100px;
}
body .componentHolder .selection .competing-container hr {
  display: block;
  width: 100%;
}
body #component-a {
  margin-bottom: 20px;
}
body body .paginator-wrapper {
  align-items: center;
}
body #process-keywords-container {
  margin: 0 0 0 auto;
}
body #process-keywords-button {
  margin-left: 25px;
}
body .gridCell {
  position: relative;
}
body #keywords-connect-container {
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  max-width: 100%;
  position: sticky;
  top: 0;
  padding: 8px 0;
  background: var(--background-color);
}
body #keywords-connect-container .counts {
  padding: 0.5rem 1.5rem;
}
body #keywords-connect-container #hidden-keywords-count {
  padding-left: 1.5rem;
}
body #keywords-connect-container .first-button {
  margin-left: auto;
}
body #keywords-connect-container span.jsDropDownMenu > div.submenu {
  left: 0;
  top: 32px;
}
body .select-keyword {
  width: 100%;
  display: block;
}
body .select-keyword:hover {
  cursor: pointer;
}
body .select-keyword * {
  vertical-align: middle;
}
body .select-keywords {
  max-width: 1200px;
  margin: 10px auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px;
}
body .select-keywords .button-dropdown {
  display: inline-block;
}
body .select-keywords > h5 {
  margin: 10px 10px 0;
}
body .select-keywords .flex {
  display: flex;
  align-items: center;
}
body .select-keywords .flex > section {
  padding: 5px;
}
body .select-keywords .containingText {
  width: 100px;
}
body .select-keywords .selected-keywords-area {
  width: 100%;
  height: 70px;
  color: black;
  font-family: 'Karla', sans-serif;
}
body .select-keywords .textarea-section {
  overflow: hidden;
  height: 1px;
}
body .select-keywords .textarea-section textarea {
  height: 1px;
  resize: none;
  width: 1px;
  margin-left: -50px;
}
body body {
  padding-top: 5px;
}
body body.with-scrollbar .componentHolder {
  padding-right: 27px;
}
body table.engine-grid {
  min-width: 100% !important;
}
body body table.engine-grid > thead tr:not(.gridCellRow) th {
  top: 0;
}
body body table.engine-grid > thead tr:not(.gridCellRow) th:nth-child(2) {
  max-width: 20px;
  width: 20px;
}
body body table.engine-grid > tbody > tr > td:nth-child(2) {
  padding: 0.5rem 0;
}
body .ASINDataContainer {
  display: flex;
}
body .ASINDataContainer > div {
  border: 1px solid 1px solid var(--border-color);
  background: var(--table-input-color);
  color: var(--table-header-color);
  border-radius: var(--border-radius-basic);
}
body .ASINDataContainer > div:nth-child(2) {
  margin-left: 10px;
  flex-grow: 1;
}
body .ASINDataContainer > div > table > tbody > tr > td {
  vertical-align: top;
}
body .ASINData2 {
  width: 650px;
  flex-shrink: 0;
  padding: 15px;
  border: none;
  background: white;
  color: black;
}
body .ASINData2 span {
  font-size: 12px;
  color: black;
}
body .ASINData2 td {
  height: 100%;
}
body .ASINData {
  width: 650px;
  flex-shrink: 0;
  padding: 15px;
  border: none;
  background: white;
  color: black;
}
body .ASINData th {
  text-align: left;
  font-weight: normal;
  width: 80px;
  vertical-align: top;
}
body .ASINData td {
  text-align: left;
  word-wrap: break-word;
}
body .ASINData td.name {
  font-size: 20px;
}
body .ASINData td.image img {
  max-height: 77px;
  max-width: 220px;
  padding-right: 20px;
  border-radius: var(--border-radius-basic);
}
body .ASINData td.image {
  text-align: center;
  width: 180px;
}
body .ASINData td.right {
  text-align: right;
  padding-right: 20px;
}
body .ASINData p.init {
  display: flex;
  align-items: center;
}
body .ASINData p.init .icon-circle-notch {
  font-size: 30px;
  margin-right: 20px;
}
/*# sourceMappingURL=asinr.css.map */