/*
  Please wrap your collapsible content in a single element or so help me
  Must add a transition or it breaks because that's the whole purpose of this
  Only one transition-duration works (see explanation on line #141 in JS)
  You can add more to an inner wrapper (.details-styling)
*/
.collapse-init summary + * {
  transition: all 0.25s ease-in-out;
  overflow: hidden;
}

/*
  Closed state. Any CSS transitions work here
  The JS has a height calculation to make sliding opened/closed easier, but it's not necessary
  Remove the height prop for a simple toggle on/off (after all that work I did for you?)
*/
.collapse-init :not(.panel-active) summary + * {
  height: 0;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: bottom center;
}

.collapse-init summary {
  list-style: none;
}
.collapse-init summary::-webkit-details-marker {
  display: none;
}
.collapse-init summary::before {
  display: none;
}
.collapse-init summary {
  cursor: pointer;
}

/*
  This element exists so .details-wrapper has no extra margin/padding that can screw with the smooth height collapse
  You can style .details-wrapper decoratively but avoid anything that modifies the box and add it to .details-styling instead
  Otherwise, this element is totally optional. Remove if you hate divitis
*/
.details-styling {
  padding: 1em;
}

::-moz-selection {
  background: #fbcb6a;
  color: #4d4433;
}

::selection {
  background: #fbcb6a;
  color: #4d4433;
}


.faq-grasper h2 {
    text-align: center;
    
}

.faq-grasper h3, p {
    text-align: justify;
    font-size: 1.25em;
}

/*

h1 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}
h1 + p {
  margin-left: auto;
  margin-right: auto;
  max-width: 50ch;
}
h1 ~ p {
  font-size: 1.2em;
  text-align: center;
} */

p {
    color: #fff;
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

abbr {
  font-variant: small-caps;
  text-transform: lowercase;
  font-size: 1.2em;
}

[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
[type=checkbox] + label {
  background: #efe7fd;
  border-left: 4px solid #5b13ec;
  cursor: pointer;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  transition: 0.1s;
  padding: 0.75em 1em;
}
[type=checkbox] + label::before {
  border: 2px solid;
  border-radius: 2px;
  color: #5b13ec;
  content: "";
  display: inline-block;
  margin-right: 0.75ch;
  transition: 0.1s;
  width: 1ch;
  height: 1ch;
  vertical-align: baseline;
}
[type=checkbox]:focus + label {
  outline: 2px solid #5b13ec;
}
[type=checkbox]:checked + label::before {
  background: currentColor;
  box-shadow: inset 0 0 0 2px #fff;
}

.container {
  color: #fff;    
  padding: 72px 56px;
  border-radius: 50px;
  box-shadow: inset 0 39px 56px -56px rgba(255, 255, 255, 0.25), inset 0 7px 21px 0 rgba(255, 255, 255, 0.2), inset 0 -82px 68px 0 rgba(96, 68, 144, 0.18), inset 0 -98px 100px -108px rgba(202, 172, 255, 0.1), inset 0 4px 18px 0 rgba(154, 146, 210, 0.15), inset 0 1px 40px 0 rgba(227, 222, 255, 0.15);
}

.rarity_list {
    list-style-type: none;
    padding: 0px;
}

.rarity_list li:hover {
    list-style-type: none;
    background-color: #6148ff59;
}

.rarity-left {
    width: 80%;
    text-align: left;
    border: 1px solid black;
    display: inline-block;
}

.rarity-right {
    width: 20%;
    text-align: center;
    border: 1px solid black;
    display: inline-block;
}

details {
  background: #ffffff26;
  border-bottom: 0;
  list-style: none;
  text-align: left;
}
details:first-child {
  border-radius: 6px 6px 0 0;
}
details:last-child {
  border-radius: 0 0 6px 6px;
}

summary {
  font-size: 1.5em;
  letter-spacing: 3px;
  display: block;
  transition: 0.2s;
  font-weight: 700;
  border: 2px solid transparent;
  padding: 1em;
  cursor: pointer;
}
summary:hover {
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid #0095958f;
}
.collapse-init summary::after {
  border-right: 2px solid;
  border-bottom: 2px solid;
  content: "";
  float: right;
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.25em;
  transform: rotate(45deg);
  transition: inherit;
}


[open] summary {
  border-radius: 5px;
  border: 2px solid #0095958f;
  background: #00ffff4a;
  color: #f8f5fe;
}
/*
[open] summary::after {
  margin-top: 0.5em;
  transform: rotate(225deg);
}  */



@media screen and (max-width: 1440px) {
 summary {
     font-size: 1.15em;
    
}

.faq-grasper h3, p {
    text-align: justify;
    font-size: 0.8em;
}
}

@media screen and (max-width: 900px) {
 summary {
     font-size: 0.9em;
     margin-left: -10px;
     
}

.rarity_list {
    font-size: 0.75em;
}

.faq-grasper h3, p {
    text-align: justify;
    font-size: 0.65em;
}
}




