/*
*
* Site Name: Shopify Product Data Generator
* Date Created: 2022-05-22
* Date Modified: 2022-05-25
* Design & Coding : Manoj Rajendiran(svencreations@gmail.com)
*
*/
:root {
  --font-family: 'League Spartan', sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body, button, input, optgroup, select, textarea {
  font-family: var(--font-family);
}

body {
  font-size: 18px;
}

img.flip-horizontal {
  transform: scaleX(-1);
}

#tool-intro {
  background: #ECE9E6;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #ECE9E6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.navbar-item img {
  max-height: 2.5rem;
}

.abs-limit {
  position: absolute;
  left: 0.25em;
  top: -1.35em;
  width: 100%;
  display: block;
  font-weight: 500;
}

#query-limit {
  position: relative;
  z-index: 1;
}

.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 1em auto;
  max-width: 60em;
  letter-spacing: normal;
  color: #222222;
}

.accordionjs > li {
  border-bottom: 1px solid #ABABAB;
}

.faq-question {
  position: relative;
  padding: 1em 2.5em 1em 0.75em;
  font-size: 1em;
  font-weight: 800;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
  font-size: 1.2em;
  color: #3e56c4;
}

.acc_active .faq-question::after{
  content: '-';
}

.faq-answer {
  display: none;
  padding: 0 0.5em 0.5em 0.75em;
  font-size: 1em;
  font-weight: 500;
  opacity: 0.8;
}

.faq-answer p:nth-of-type(1) {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .accordionjs {
    margin: 2em auto;
  }
  .faq-question, .faq-answer {
    font-size: 1.25em;
  }
}

figcaption {
  color: #363636;
  font-weight: bold;
}

.brewing-col img {
  transition: all 0.3s ease 0s;
  border-radius: 0.75em;
  box-shadow: 0 3px 10px rgb(0 0 0 / 20%)
}
.brewing-col img:hover {
  opacity: 0.8;
}

#cookies-notif {
  position: fixed;
  bottom: 1em;
  right: 1em;
  width: 100%;
  max-width: 20em;
}

.shopify-url {
  resize: vertical;
}

@media only screen and (max-width: 768px) {
    #generate-csv > .is-grouped {
        flex-direction: column;
        row-gap: 1.5em;
    }
}