/*:root {
    border-right:1px solid;
    border-left:1px solid;
    border-color:#B0B1B5;
    background-color:#FC0;
    color: white;*/
    /*! color:#fff */
    /*font-size: 62.5%;*/
    /* default size is 16 px. 62.5% is 10px. */
/*}*/

* {
    /*box-sizing: border-box;*/
    /* to include border size in the box size */
    /*font-family: Verdana, Arial, sans-serif;*/
    /*margin: 0;*/
    padding: 0;
    /*color: #333;*/
}

h1,
h2,
h3,
h4 {
    margin: 1rem;
}

/* Utilities */

.poppers-finder-page {
  background-color:rgb(66, 121, 184);
  color: white;
}

.container {
    /*30, 103, 156*/
    /*width: 100vw;
    height: 100vh;*/
    justify-content: center;
    align-items: center;
    /*max-width: 80rem;*/
    margin: 0 auto;
    /*padding: 2rem;*/
}

.container>* {
  width: 100%;
}

.price-container {
  color: black;
  font-weight: 700;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Buttons */

.btn {
  /*
    font-size: 1.8rem;
    padding: 1rem 0;
    width: 20rem;
    text-align: center;
    border: 0.1rem solid black;
    margin-bottom: 1rem;
    text-decoration: none;
    color: black;
    
    background-color: white;
    white-space: nowrap;*/
}

.btn:hover {
    cursor: pointer;
    /*box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);*/
    /*transform: translateY(-0.1rem);
    transition: transform 150ms;*/
}

.btn[disabled]:hover {
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* FORMS */
/*
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    */
/*
input {
    margin-bottom: 1rem;
    width: 20rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    border: none;
    box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
}
*/

input::placeholder {
    color: #aaa;
}


/*Question*/
/*#code-block {
    width: 500px;
    align-self: center;
    margin-bottom: 20px;
}*/

.choices-container {
    /*min-height: 30vh;*/
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 90%;
    margin: 0 auto;
}
.choice-container {
    /*display: flex;*/
    margin-bottom: 0.5rem;
    width: 100%;
    /*font-size: 1.8rem;*/
    border: 0.1rem solid rgb(86, 165, 235, 0.2);
    background-color: white;
}


.choice-prefix {
    padding: 1.5rem 2.5rem;
    background-color: black;
    color: white;
}

.choice-text {
    /*padding: 1.5rem;*/
    width: 100%;
    pointer-events: none;
}

/* HUD */

#hud {
    justify-content: space-between;
}

.hud-prefix {
    text-align: center;
    font-size: 2rem;
    line-height: 2rem;
    margin-bottom: 1rem;
}

.hud-main-text {
    text-align: center;
}

#progressBar {
    width: 20rem;
    height: 4rem;
    border: 0.3rem solid black;
    margin-top: 1.5rem;
}

#progressBarFull {
    height: 3.4rem;
    background-color: black;
    width: 50%;
}

/* LOADER */
#loader {
    border: 1.4rem solid black;
    border-radius: 50%;
    border-top: 1.6rem solid #DBD9D6;
    width: 10rem;
    height: 10rem;
    animation: spin 2s linear infinite;
    background-color: black;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

  /*.widget-container {
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 16px;
    margin-right: 16px;
  }*/
  .buttons-container .button {
    flex-basis: 30%; 
  }
  .answer.button {
    flex-basis: 45%;
  }
  .slide.results > .content-container {
    gap: 4%;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .widget-title {
    height: 150px;
  }
  .answer.button {
    flex-basis: 30%;
  }
  .buttons-container .button {
    flex-basis: 25%;
  }
  .slide.results > .content-container > .result {
    flex-basis: 22%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .buttons-container .button {
    flex-basis: 20%;
  }
  .slide.results > .content-container > .result {
  max-width: 22%;
}
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .widget-title {
    height: 200px;
  }
  .buttons-container .button {
    flex-basis: 15%;
  }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}

/* tailwindcss */
.grid {
    display:grid;
    margin: 0 0 0 0;
    width: 100%;
}

.grid-cols-2
{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-auto
{
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
}

/*
a {
    color:inherit;
    text-decoration:inherit
}
*/
.shadow-lg {
    --tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.relative
{
  position: relative;
}
.border-none
{
  border-style: none;
}

w-5
{
  width: 1.25rem;
}
.h-5
{
  height: 1.25rem;
}

.text-black
{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-base
{
  font-size: 1rem;
  line-height: 1.5rem;
}
.px-2
{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.border-none
{
  border-style: none;
}
.w-\[50px\]
{
  width: 75px;
}
.min-h-full
{
  min-height: 100%;
}
.text-center
{
  text-align: center;
}
.bg-\[\#a8dbff\]
{
  --tw-bg-opacity: 1;
  background-color: rgb(168 219 255 / var(--tw-bg-opacity));
}
.w-fit
{
  width: -moz-fit-content;
  width: fit-content;
}
.rounded-lg
{
  border-radius: 0.5rem;
}
.bg-white
{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.pb-12
{
  padding-bottom: 3rem;
}
.py-2
{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4
{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.px-2
{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.gap-4
{
  gap: 2rem;
}
.p-2
{
  padding: 0.5rem;
}

button{
  box-sizing:border-box;
  border-width:0;
  border-style:solid;
  border-color:#e5e7eb
}

.md\:ml-2
  {
    margin-left: 0.5rem;
  }
.md\:static
  {
    position: static;
  }
.bg-\[\#333\]
{
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity));
}

.bg-green
{
  --tw-bg-opacity: 1;
  background-color: green;
}
.icon{
  color: white;
  pointer-events: none; 
}
.cart{
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 2px;
}
.hover\:bg-gray-400:hover {
  --tw-bg-opacity:1;
  background-color:rgb(156 163 175 / var(--tw-bg-opacity))
}
.hover\:bg-green-600:hover {
  --tw-bg-opacity:1;
  background-color:rgb(22 163 74 / var(--tw-bg-opacity))
}

.grid_d {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
}

.text_box {
  grid-column: 1 / 6;
  padding: 5px;
  padding-right: 20%;
  font-size: 16px;
}

.img_box{
  grid-row: 2;
  grid-column: -1;
}

.grid_cart {
  width: 100%;
  box-sizing: border-box;
}